! This event gets called when the user presses the mouse button a second time in a double-click, while the cursor is over the layerable. Whether a cursor is over the layerable is decided by a preceding call to \ref selectTest. The \ref mouseDoubleClickEvent is called instead of the second \ref mousePressEvent. So in the case of a double-click, the event succession is pressEvent &nd
| 1806 | \see mousePressEvent, mouseMoveEvent, mouseReleaseEvent, wheelEvent |
| 1807 | */ |
| 1808 | void QCPLayerable::mouseDoubleClickEvent(QMouseEvent *event, const QVariant &details) |
| 1809 | { |
| 1810 | Q_UNUSED(details) |
| 1811 | event->ignore(); |
| 1812 | } |
| 1813 | |
| 1814 | /*! |
| 1815 | This event gets called when the user turns the mouse scroll wheel while the cursor is over the |