| 129 | } |
| 130 | |
| 131 | QPoint ScreenWindow::cursorPosition() const { |
| 132 | QPoint position; |
| 133 | |
| 134 | position.setX(_screen->getCursorX()); |
| 135 | position.setY(_screen->getCursorY()); |
| 136 | |
| 137 | return position; |
| 138 | } |
| 139 | |
| 140 | int ScreenWindow::getCursorX() const { return _screen->getCursorX(); } |
| 141 | int ScreenWindow::getCursorY() const { return _screen->getCursorY(); } |
no test coverage detected