! This event gets called when the user moves the mouse while holding a mouse button, after this layerable has become the mouse grabber by accepting the preceding \ref mousePressEvent. The current pixel position of the cursor on the QCustomPlot widget is accessible via \c event->pos(). The parameter \a startPos indicates the position where the initial \ref mousePressEvent occured, that s
| 1728 | \see mousePressEvent, mouseReleaseEvent, mouseDoubleClickEvent, wheelEvent |
| 1729 | */ |
| 1730 | void QCPLayerable::mouseMoveEvent(QMouseEvent *event, const QPointF &startPos) |
| 1731 | { |
| 1732 | Q_UNUSED(startPos) |
| 1733 | event->ignore(); |
| 1734 | } |
| 1735 | |
| 1736 | /*! |
| 1737 | This event gets called when the user releases the mouse button, after this layerable has become |
nothing calls this directly
no test coverage detected