! \internal This event is called when the layerable shall be selected, as a consequence of a click by the user. Subclasses should react to it by setting their selection state appropriately. The default implementation does nothing. \a event is the mouse event that caused the selection. \a additive indicates, whether the user was holding the multi-select-modifier while performing the
| 1688 | \see selectTest, deselectEvent |
| 1689 | */ |
| 1690 | void QCPLayerable::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) |
| 1691 | { |
| 1692 | Q_UNUSED(event) |
| 1693 | Q_UNUSED(additive) |
| 1694 | Q_UNUSED(details) |
| 1695 | Q_UNUSED(selectionStateChanged) |
| 1696 | } |
| 1697 | |
| 1698 | /*! \internal |
| 1699 |
no test coverage detected