QGIS API Documentation
3.20.0-Odense (decaadbb31)
|
Model view tool for zooming into and out of the model. More...
#include <qgsmodelviewtoolzoom.h>
Public Member Functions | |
QgsModelViewToolZoom (QgsModelGraphicsView *view) | |
Constructor for QgsModelViewToolZoom. More... | |
void | deactivate () override |
Called when tool is deactivated. More... | |
void | keyPressEvent (QKeyEvent *event) override |
Key press event for overriding. More... | |
void | keyReleaseEvent (QKeyEvent *event) override |
Key release event for overriding. More... | |
void | modelMoveEvent (QgsModelViewMouseEvent *event) override |
Mouse move event for overriding. More... | |
void | modelPressEvent (QgsModelViewMouseEvent *event) override |
Mouse press event for overriding. More... | |
void | modelReleaseEvent (QgsModelViewMouseEvent *event) override |
Mouse release event for overriding. More... | |
Public Member Functions inherited from QgsModelViewTool | |
~QgsModelViewTool () override | |
QAction * | action () |
Returns the action associated with the tool or nullptr if no action is associated. More... | |
virtual void | activate () |
Called when tool is set as the currently active model tool. More... | |
virtual bool | allowItemInteraction () |
Returns true if the tool allows interaction with component graphic items. More... | |
QgsModelViewTool::Flags | flags () const |
Returns the current combination of flags set for the tool. More... | |
virtual void | modelDoubleClickEvent (QgsModelViewMouseEvent *event) |
Mouse double-click event for overriding. More... | |
QgsModelGraphicsScene * | scene () const |
Returns the scene associated with the tool. More... | |
void | setAction (QAction *action) |
Associates an action with this tool. More... | |
void | setCursor (const QCursor &cursor) |
Sets a user defined cursor for use when the tool is active. More... | |
QString | toolName () const |
Returns a user-visible, translated name for the tool. More... | |
QgsModelGraphicsView * | view () const |
Returns the view associated with the tool. More... | |
virtual void | wheelEvent (QWheelEvent *event) |
Mouse wheel event for overriding. More... | |
Protected Attributes | |
bool | mMarqueeZoom = false |
Will be true will marquee zoom operation is in progress. More... | |
Additional Inherited Members | |
Public Types inherited from QgsModelViewTool | |
enum | Flag { FlagSnaps = 1 << 1 } |
Flags for controlling how a tool behaves. More... | |
Signals inherited from QgsModelViewTool | |
void | activated () |
Emitted when the tool is activated. More... | |
void | deactivated () |
Emitted when the tool is deactivated. More... | |
void | itemFocused (QgsModelComponentGraphicItem *item) |
Emitted when an item is "focused" by the tool, i.e. More... | |
Protected Member Functions inherited from QgsModelViewTool | |
QgsModelViewTool (QgsModelGraphicsView *view, const QString &name) | |
Constructor for QgsModelViewTool, taking a model view and tool name as parameters. More... | |
bool | isClickAndDrag (QPoint startViewPoint, QPoint endViewPoint) const |
Returns true if a mouse press/release operation which started at startViewPoint and ended at endViewPoint should be considered a "click and drag". More... | |
void | setFlags (QgsModelViewTool::Flags flags) |
Sets the combination of flags that will be used for the tool. More... | |
Model view tool for zooming into and out of the model.
Definition at line 32 of file qgsmodelviewtoolzoom.h.
QgsModelViewToolZoom::QgsModelViewToolZoom | ( | QgsModelGraphicsView * | view | ) |
Constructor for QgsModelViewToolZoom.
Definition at line 24 of file qgsmodelviewtoolzoom.cpp.
|
overridevirtual |
Called when tool is deactivated.
Overridden implementations must take care to call the base class implementation.
Reimplemented from QgsModelViewTool.
Definition at line 128 of file qgsmodelviewtoolzoom.cpp.
|
overridevirtual |
Key press event for overriding.
Default implementation does nothing.
Reimplemented from QgsModelViewTool.
Definition at line 102 of file qgsmodelviewtoolzoom.cpp.
|
overridevirtual |
Key release event for overriding.
Default implementation does nothing.
Reimplemented from QgsModelViewTool.
Definition at line 115 of file qgsmodelviewtoolzoom.cpp.
|
overridevirtual |
Mouse move event for overriding.
Default implementation does nothing.
Reimplemented from QgsModelViewTool.
Definition at line 63 of file qgsmodelviewtoolzoom.cpp.
|
overridevirtual |
Mouse press event for overriding.
Default implementation does nothing. Note that subclasses must ensure that they correctly handle cases when a modelPressEvent is called without a corresponding modelReleaseEvent (e.g. due to tool being changed mid way through a press-release operation).
Reimplemented from QgsModelViewTool.
Definition at line 33 of file qgsmodelviewtoolzoom.cpp.
|
overridevirtual |
Mouse release event for overriding.
Default implementation does nothing. Note that subclasses must ensure that they correctly handle cases when a modelPressEvent is called without a corresponding modelReleaseEvent (e.g. due to tool being changed mid way through a press-release operation).
Reimplemented from QgsModelViewTool.
Definition at line 74 of file qgsmodelviewtoolzoom.cpp.
|
protected |
Will be true
will marquee zoom operation is in progress.
Definition at line 54 of file qgsmodelviewtoolzoom.h.