QGIS API Documentation  3.6.0-Noosa (5873452)
qgsmaptool.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsmaptool.cpp - base class for map canvas tools
3  ----------------------
4  begin : January 2006
5  copyright : (C) 2006 by Martin Dobias
6  email : wonder.sk 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 #include "qgslogger.h"
17 #include "qgsmaptool.h"
18 #include "qgsmapcanvas.h"
19 #include "qgsmaptopixel.h"
20 #include "qgsrendercontext.h"
21 #include "qgssettings.h"
22 #include "qgsmapmouseevent.h"
23 
24 #include <QAction>
25 #include <QAbstractButton>
26 
28  : QObject( canvas )
29  , mCanvas( canvas )
30  , mCursor( Qt::CrossCursor )
31 {
32 }
33 
34 
36 {
37  mCanvas->unsetMapTool( this );
38 }
39 
40 
42 {
44 }
45 
47 {
48  QgsPointXY result = mCanvas->mapSettings().layerToMapCoordinates( layer, QgsPointXY( point.x(), point.y() ) );
49  return QgsPoint( result );
50 }
51 
52 
54 {
55  QgsPointXY pt = toMapCoordinates( point );
56  return toLayerCoordinates( layer, pt );
57 }
58 
60 {
61  return mCanvas->mapSettings().mapToLayerCoordinates( layer, point );
62 }
63 
65 {
66  return mCanvas->mapSettings().layerToMapCoordinates( layer, point );
67 }
68 
70 {
71  return mCanvas->mapSettings().mapToLayerCoordinates( layer, rect );
72 }
73 
75 {
76  qreal x = point.x(), y = point.y();
78  return QPoint( std::round( x ), std::round( y ) );
79 }
80 
81 
83 {
84  // make action and/or button active
85  if ( mAction )
86  mAction->setChecked( true );
87  if ( mButton )
88  mButton->setChecked( true );
89 
90  // set cursor (map tools usually set it in constructor)
91  mCanvas->setCursor( mCursor );
92  QgsDebugMsg( QStringLiteral( "Cursor has been set" ) );
93 
94  emit activated();
95 }
96 
97 
99 {
100  if ( mAction )
101  mAction->setChecked( false );
102  if ( mButton )
103  mButton->setChecked( false );
104 
105  emit deactivated();
106 }
107 
109 {
110 
111 }
112 
114 {
115  if ( mAction )
116  disconnect( mAction, &QObject::destroyed, this, &QgsMapTool::actionDestroyed );
117  mAction = action;
118  if ( mAction )
119  connect( mAction, &QObject::destroyed, this, &QgsMapTool::actionDestroyed );
120 }
121 
122 void QgsMapTool::actionDestroyed()
123 {
124  if ( mAction == sender() )
125  mAction = nullptr;
126 }
127 
129 {
130  return mAction;
131 }
132 
134 {
135  return mCanvas && mCanvas->mapTool() == this;
136 }
137 
138 void QgsMapTool::setButton( QAbstractButton *button )
139 {
140  mButton = button;
141 }
142 
143 QAbstractButton *QgsMapTool::button()
144 {
145  return mButton;
146 }
147 
148 void QgsMapTool::setCursor( const QCursor &cursor )
149 {
150  mCursor = cursor;
151  if ( isActive() )
152  mCanvas->setCursor( mCursor );
153 }
154 
155 
157 {
158  Q_UNUSED( e );
159 }
160 
162 {
163  Q_UNUSED( e );
164 }
165 
167 {
168  Q_UNUSED( e );
169 }
170 
172 {
173  Q_UNUSED( e );
174 }
175 
176 void QgsMapTool::wheelEvent( QWheelEvent *e )
177 {
178  e->ignore();
179 }
180 
181 void QgsMapTool::keyPressEvent( QKeyEvent *e )
182 {
183  Q_UNUSED( e );
184 }
185 
186 void QgsMapTool::keyReleaseEvent( QKeyEvent *e )
187 {
188  Q_UNUSED( e );
189 }
190 
191 bool QgsMapTool::gestureEvent( QGestureEvent *e )
192 {
193  Q_UNUSED( e );
194  return true;
195 }
196 
198 {
199  return mCanvas;
200 }
201 
203 {
204  QgsSettings settings;
205  double radius = settings.value( QStringLiteral( "Map/searchRadiusMM" ), Qgis::DEFAULT_SEARCH_RADIUS_MM ).toDouble();
206 
207  if ( radius > 0 )
208  {
209  return radius;
210  }
212 }
213 
215 {
216  return searchRadiusMM() * context.scaleFactor() * context.mapToPixel().mapUnitsPerPixel();
217 }
218 
220 {
221  if ( !canvas )
222  {
223  return 0;
224  }
225  QgsMapSettings mapSettings = canvas->mapSettings();
226  QgsRenderContext context = QgsRenderContext::fromMapSettings( mapSettings );
227  return searchRadiusMU( context );
228 }
void unsetMapTool(QgsMapTool *mapTool)
Unset the current map tool or last non zoom tool.
A rectangle specified with double values.
Definition: qgsrectangle.h:41
Base class for all map layer types.
Definition: qgsmaplayer.h:64
double y
Definition: qgspoint.h:42
virtual void canvasMoveEvent(QgsMapMouseEvent *e)
Mouse move event for overriding. Default implementation does nothing.
Definition: qgsmaptool.cpp:156
static double searchRadiusMU(const QgsRenderContext &context)
Gets search radius in map units for given context.
Definition: qgsmaptool.cpp:214
QAbstractButton * button()
Returns associated button with map tool or NULL if no button is associated.
Definition: qgsmaptool.cpp:143
This class is a composition of two QSettings instances:
Definition: qgssettings.h:58
QVariant value(const QString &key, const QVariant &defaultValue=QVariant(), Section section=NoSection) const
Returns the value for setting key.
#define QgsDebugMsg(str)
Definition: qgslogger.h:38
double y
Definition: qgspointxy.h:48
A class to represent a 2D point.
Definition: qgspointxy.h:43
QAbstractButton * mButton
optionally map tool can have pointer to a button which will be used to set that action as active ...
Definition: qgsmaptool.h:256
~QgsMapTool() override
Definition: qgsmaptool.cpp:35
A QgsMapMouseEvent is the result of a user interaction with the mouse on a QgsMapCanvas.
QgsPointXY toMapCoordinates(QPoint point)
transformation from screen coordinates to map coordinates
Definition: qgsmaptool.cpp:41
QgsMapTool * mapTool()
Returns the currently active tool.
Map canvas is a class for displaying all GIS data types on a canvas.
Definition: qgsmapcanvas.h:73
virtual void canvasPressEvent(QgsMapMouseEvent *e)
Mouse press event for overriding. Default implementation does nothing.
Definition: qgsmaptool.cpp:166
void setButton(QAbstractButton *button)
Use this to associate a button to this maptool.
Definition: qgsmaptool.cpp:138
The QgsMapSettings class contains configuration for rendering of the map.
void transformInPlace(double &x, double &y) const
Transform device coordinates to map coordinates.
virtual void activate()
called when set as currently active map tool
Definition: qgsmaptool.cpp:82
QgsMapCanvas * mCanvas
pointer to map canvas
Definition: qgsmaptool.h:241
virtual void keyReleaseEvent(QKeyEvent *e)
Key event for overriding. Default implementation does nothing.
Definition: qgsmaptool.cpp:186
QCursor mCursor
cursor used in map tool
Definition: qgsmaptool.h:244
QgsMapCanvas * canvas()
returns pointer to the tool&#39;s map canvas
Definition: qgsmaptool.cpp:197
void setAction(QAction *action)
Use this to associate a QAction to this maptool.
Definition: qgsmaptool.cpp:113
static const double DEFAULT_SEARCH_RADIUS_MM
Identify search radius in mm.
Definition: qgis.h:100
virtual void deactivate()
called when map tool is being deactivated
Definition: qgsmaptool.cpp:98
double mapUnitsPerPixel() const
Returns current map units per pixel.
virtual void wheelEvent(QWheelEvent *e)
Mouse wheel event for overriding. Default implementation does nothing.
Definition: qgsmaptool.cpp:176
Point geometry type, with support for z-dimension and m-values.
Definition: qgspoint.h:37
void activated()
signal emitted once the map tool is activated
double x
Definition: qgspointxy.h:47
bool isActive() const
Returns if the current map tool active on the map canvas.
Definition: qgsmaptool.cpp:133
QAction * action()
Returns associated action with map tool or NULL if no action is associated.
Definition: qgsmaptool.cpp:128
virtual void keyPressEvent(QKeyEvent *e)
Key event for overriding. Default implementation does nothing.
Definition: qgsmaptool.cpp:181
const QgsMapSettings & mapSettings() const
Gets access to properties used for map rendering.
Contains information about the context of a rendering operation.
QgsPointXY toLayerCoordinates(const QgsMapLayer *layer, QPoint point)
transformation from screen coordinates to layer&#39;s coordinates
Definition: qgsmaptool.cpp:53
void deactivated()
signal emitted once the map tool is deactivated
const QgsMapToPixel & mapToPixel() const
virtual bool gestureEvent(QGestureEvent *e)
gesture event for overriding. Default implementation does nothing.
Definition: qgsmaptool.cpp:191
virtual void canvasDoubleClickEvent(QgsMapMouseEvent *e)
Mouse double-click event for overriding. Default implementation does nothing.
Definition: qgsmaptool.cpp:161
QgsPointXY layerToMapCoordinates(const QgsMapLayer *layer, QgsPointXY point) const
transform point coordinates from layer&#39;s CRS to output CRS
static QgsRenderContext fromMapSettings(const QgsMapSettings &mapSettings)
create initialized QgsRenderContext instance from given QgsMapSettings
QAction * mAction
optionally map tool can have pointer to action which will be used to set that action as active ...
Definition: qgsmaptool.h:250
const QgsMapToPixel * getCoordinateTransform()
Gets the current coordinate transform.
virtual void setCursor(const QCursor &cursor)
Sets a user defined cursor.
Definition: qgsmaptool.cpp:148
QgsMapTool(QgsMapCanvas *canvas)
constructor takes map canvas as a parameter
Definition: qgsmaptool.cpp:27
QgsPointXY mapToLayerCoordinates(const QgsMapLayer *layer, QgsPointXY point) const
transform point coordinates from output CRS to layer&#39;s CRS
double scaleFactor() const
Returns the scaling factor for the render to convert painter units to physical sizes.
QPoint toCanvasCoordinates(const QgsPointXY &point)
transformation from map coordinates to screen coordinates
Definition: qgsmaptool.cpp:74
virtual void clean()
convenient method to clean members
Definition: qgsmaptool.cpp:108
QgsPointXY toMapCoordinates(int x, int y) const
Transform device coordinates to map (world) coordinates.
static double searchRadiusMM()
Gets search radius in mm.
Definition: qgsmaptool.cpp:202
double x
Definition: qgspoint.h:41
virtual void canvasReleaseEvent(QgsMapMouseEvent *e)
Mouse release event for overriding. Default implementation does nothing.
Definition: qgsmaptool.cpp:171