| 487 | } |
| 488 | |
| 489 | void MapWidget::mouseMoveEvent(QMouseEvent * e) |
| 490 | { |
| 491 | if (m_screenshotMode) |
| 492 | return; |
| 493 | |
| 494 | QOpenGLWidget::mouseMoveEvent(e); |
| 495 | if (IsLeftButton(e)) |
| 496 | m_framework.TouchEvent(GetDfTouchEventFromQMouseEvent(e, df::TouchEvent::TOUCH_MOVE)); |
| 497 | } |
| 498 | |
| 499 | void MapWidget::mouseReleaseEvent(QMouseEvent * e) |
| 500 | { |
nothing calls this directly
no test coverage detected