| 1509 | } |
| 1510 | |
| 1511 | bool Viewer::mouseMove( int mouse_x, int mouse_y ) |
| 1512 | { |
| 1513 | eventsCounter_.counter[size_t( EventType::MouseMove )]++; |
| 1514 | |
| 1515 | if ( signals_->mouseMoveSignal( mouse_x, mouse_y ) ) |
| 1516 | return true; |
| 1517 | |
| 1518 | return false; |
| 1519 | } |
| 1520 | |
| 1521 | bool Viewer::touchStart( int id, int x, int y ) |
| 1522 | { |
no outgoing calls
no test coverage detected