QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgslayoutviewtooleditnodes.h
Go to the documentation of this file.
1/***************************************************************************
2 qgslayoutviewtooleditnodes.h
3 -------------------------
4 Date : October 2017
5 Copyright : (C) 2017 Nyall Dawson
6 Email : nyall dot dawson at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#ifndef QGSLAYOUTVIEWTOOLEDITNODES_H
17#define QGSLAYOUTVIEWTOOLEDITNODES_H
18
19#include "qgis_sip.h"
20#include "qgis_gui.h"
21#include "qgslayoutviewtool.h"
22
24
30{
31
32 Q_OBJECT
33
34 public:
35
40
44 void deleteSelectedNode();
45
46 void activate() override;
47 void layoutPressEvent( QgsLayoutViewMouseEvent *event ) override;
48 void layoutMoveEvent( QgsLayoutViewMouseEvent *event ) override;
49 void layoutReleaseEvent( QgsLayoutViewMouseEvent *event ) override;
50 void layoutDoubleClickEvent( QgsLayoutViewMouseEvent *event ) override;
51 void keyPressEvent( QKeyEvent *event ) override;
52 void deactivate() override;
53 QList< QgsLayoutItem * > ignoredSnapItems() const override;
54
55 private:
56
57 const double mMoveContentSearchRadius = 25;
58
59 QPointer< QgsLayoutNodesItem > mNodesItem;
60 int mNodesItemIndex = -1;
61
63 QPointF mMoveContentStartPos;
64
65 bool isMoving = false;
66
67 void displayNodes( bool display = true );
68 void deselectNodes();
69 void setSelectedNode( QgsLayoutNodesItem *shape, int index );
70
71
72};
73
74#endif // QGSLAYOUTVIEWTOOLEDITNODES_H
An abstract layout item that provides generic methods for node based shapes such as polygon or polyli...
A QgsLayoutViewMouseEvent is the result of a user interaction with the mouse on a QgsLayoutView.
Layout view tool for edit node based items in the layout.
Abstract base class for all layout view tools.
virtual QList< QgsLayoutItem * > ignoredSnapItems() const
Returns a list of items which should be ignored while snapping events for this tool.
virtual void deactivate()
Called when tool is deactivated.
virtual void layoutDoubleClickEvent(QgsLayoutViewMouseEvent *event)
Mouse double-click event for overriding.
virtual void activate()
Called when tool is set as the currently active layout tool.
virtual void layoutMoveEvent(QgsLayoutViewMouseEvent *event)
Mouse move event for overriding.
virtual void layoutPressEvent(QgsLayoutViewMouseEvent *event)
Mouse press event for overriding.
virtual void layoutReleaseEvent(QgsLayoutViewMouseEvent *event)
Mouse release event for overriding.
virtual void keyPressEvent(QKeyEvent *event)
Key press event for overriding.
A graphical widget to display and interact with QgsLayouts.
Definition: qgslayoutview.h:50
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:53