| 104 | } |
| 105 | |
| 106 | bool ProcessorWindow::isFullyVisible() const { |
| 107 | return m_screenCaptureRect.getX() >= 0 && m_screenCaptureRect.getY() >= 0 && |
| 108 | m_screenCaptureRect.getRight() <= m_totalRect.getRight() && |
| 109 | m_screenCaptureRect.getBottom() <= m_totalRect.getBottom(); |
| 110 | } |
| 111 | |
| 112 | void ProcessorWindow::updateScreenCaptureArea() { |
| 113 | traceScope(); |
nothing calls this directly
no outgoing calls
no test coverage detected