! \internal This method is called by QCustomPlot to indicate that a selection rect interaction was initiated. The default implementation sets the selection rect to active, initializes the selection rect geometry and emits the \ref started signal. */
| 2916 | geometry and emits the \ref started signal. |
| 2917 | */ |
| 2918 | void QCPSelectionRect::startSelection(QMouseEvent *event) |
| 2919 | { |
| 2920 | mActive = true; |
| 2921 | mRect = QRect(event->pos(), event->pos()); |
| 2922 | emit started(event); |
| 2923 | } |
| 2924 | |
| 2925 | /*! \internal |
| 2926 |