QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
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 Q_OBJECT
32
33 public:
38
42 void deleteSelectedNode();
43
44 void activate() override;
45 void layoutPressEvent( QgsLayoutViewMouseEvent *event ) override;
46 void layoutMoveEvent( QgsLayoutViewMouseEvent *event ) override;
47 void layoutReleaseEvent( QgsLayoutViewMouseEvent *event ) override;
48 void layoutDoubleClickEvent( QgsLayoutViewMouseEvent *event ) override;
49 void keyPressEvent( QKeyEvent *event ) override;
50 void deactivate() override;
51 QList<QgsLayoutItem *> ignoredSnapItems() const override;
52
53 private:
54 const double mMoveContentSearchRadius = 25;
55
56 QPointer<QgsLayoutNodesItem> mNodesItem;
57 int mNodesItemIndex = -1;
58
60 QPointF mMoveContentStartPos;
61
62 bool isMoving = false;
63
64 void displayNodes( bool display = true );
65 void deselectNodes();
66 void setSelectedNode( QgsLayoutNodesItem *shape, int index );
67};
68
69#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.
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53