QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgsmodelviewtoolselect.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsmodelviewtoolselect.h
3 -------------------------
4 Date : March 2020
5 Copyright : (C) 2020 Nyall Dawson
6
7 Email : nyall dot dawson at gmail dot com
8 ***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16
17#ifndef QGSMODELVIEWTOOLSELECT_H
18#define QGSMODELVIEWTOOLSELECT_H
19
20#include <memory>
21
22#include "qgis_gui.h"
23#include "qgis_sip.h"
25#include "qgsmodelviewtool.h"
27
28class QgsModelViewMouseHandles;
29class QGraphicsItem;
30
31#define SIP_NO_FILE
32
39{
40 Q_OBJECT
41
42 public:
46 QgsModelViewToolSelect( QgsModelGraphicsView *view SIP_TRANSFERTHIS );
47 ~QgsModelViewToolSelect() override;
48
49 void modelPressEvent( QgsModelViewMouseEvent *event ) override;
50 void modelMoveEvent( QgsModelViewMouseEvent *event ) override;
51 void modelDoubleClickEvent( QgsModelViewMouseEvent *event ) override;
52 void modelReleaseEvent( QgsModelViewMouseEvent *event ) override;
53 void wheelEvent( QWheelEvent *event ) override;
54 void keyPressEvent( QKeyEvent *event ) override;
55 void deactivate() override;
56 bool allowItemInteraction() override;
57
61 QgsModelViewMouseHandles *mouseHandles();
62
64 void setScene( QgsModelGraphicsScene *scene );
65
69 void resetCache();
70
71 private:
72 bool mIsSelecting = false;
73
75 std::unique_ptr<QgsModelViewRubberBand> mRubberBand;
76
77 std::unique_ptr<QgsModelViewToolLink> mLinkTool = nullptr;
78
80 QPoint mMousePressStartPos;
81
83 QPointF mRubberBandStartPos;
84
85 QPointer<QgsModelViewMouseHandles> mMouseHandles; //owned by scene
86 QList<QGraphicsItem *> mHoverEnteredItems;
87};
88
89#endif // QGSMODELVIEWTOOLSELECT_H
A mouse event which is the result of a user interaction with a QgsModelGraphicsView.
void setScene(QgsModelGraphicsScene *scene)
Sets the a scene.
void resetCache()
Resets the internal cache following a scene change.
QgsModelViewMouseHandles * mouseHandles()
Returns the view's mouse handles.
QgsModelViewToolSelect(QgsModelGraphicsView *view)
Constructor for QgsModelViewToolSelect.
QgsModelGraphicsView * view() const
Returns the view associated with the tool.
virtual void modelDoubleClickEvent(QgsModelViewMouseEvent *event)
Mouse double-click event for overriding.
virtual void wheelEvent(QWheelEvent *event)
Mouse wheel event for overriding.
virtual void modelMoveEvent(QgsModelViewMouseEvent *event)
Mouse move event for overriding.
virtual bool allowItemInteraction()
Returns true if the tool allows interaction with component graphic items.
virtual void deactivate()
Called when tool is deactivated.
QgsModelViewTool(QgsModelGraphicsView *view, const QString &name)
Constructor for QgsModelViewTool, taking a model view and tool name as parameters.
virtual void modelPressEvent(QgsModelViewMouseEvent *event)
Mouse press event for overriding.
virtual void keyPressEvent(QKeyEvent *event)
Key press event for overriding.
virtual void modelReleaseEvent(QgsModelViewMouseEvent *event)
Mouse release event for overriding.
QgsModelGraphicsScene * scene() const
Returns the scene associated with the tool.
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53