QGIS API Documentation  3.2.0-Bonn (bc43194)
qgsmaptoolidentify.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsmaptoolidentify.h - map tool for identifying features
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 #ifndef QGSMAPTOOLIDENTIFY_H
17 #define QGSMAPTOOLIDENTIFY_H
18 
19 #include "qgsfeature.h"
20 #include "qgsfields.h"
21 #include "qgsmaptool.h"
22 #include "qgspointxy.h"
23 #include "qgsunittypes.h"
24 
25 #include <QObject>
26 #include <QPointer>
27 #include "qgis_gui.h"
28 
29 class QgsRasterLayer;
30 class QgsVectorLayer;
31 class QgsMapLayer;
32 class QgsMapCanvas;
33 class QgsHighlight;
34 class QgsIdentifyMenu;
35 class QgsDistanceArea;
36 
46 class GUI_EXPORT QgsMapToolIdentify : public QgsMapTool
47 {
48  Q_OBJECT
49 
50  public:
51 
53  {
54  DefaultQgsSetting = -1,
58  LayerSelection
59  };
60  Q_ENUM( IdentifyMode )
61 
62  enum Type
63  {
64  VectorLayer = 1,
65  RasterLayer = 2,
66  AllLayers = VectorLayer | RasterLayer
67  };
68  Q_DECLARE_FLAGS( LayerType, Type )
69  Q_FLAG( LayerType )
70 
72  {
74  IdentifyResult() = default;
75 
76  IdentifyResult( QgsMapLayer *layer, const QgsFeature &feature, const QMap< QString, QString > &derivedAttributes )
77  : mLayer( layer ), mFeature( feature ), mDerivedAttributes( derivedAttributes ) {}
78 
79  IdentifyResult( QgsMapLayer *layer, const QString &label, const QMap< QString, QString > &attributes, const QMap< QString, QString > &derivedAttributes )
80  : mLayer( layer ), mLabel( label ), mAttributes( attributes ), mDerivedAttributes( derivedAttributes ) {}
81 
82  IdentifyResult( QgsMapLayer *layer, const QString &label, const QgsFields &fields, const QgsFeature &feature, const QMap< QString, QString > &derivedAttributes )
83  : mLayer( layer ), mLabel( label ), mFields( fields ), mFeature( feature ), mDerivedAttributes( derivedAttributes ) {}
84 
85  QgsMapLayer *mLayer = nullptr;
86  QString mLabel;
89  QMap< QString, QString > mAttributes;
90  QMap< QString, QString > mDerivedAttributes;
91  QMap< QString, QVariant > mParams;
92  };
93 
96 
97  ~QgsMapToolIdentify() override;
98 
99  Flags flags() const override { return QgsMapTool::AllowZoomRect; }
100  void canvasMoveEvent( QgsMapMouseEvent *e ) override;
101  void canvasPressEvent( QgsMapMouseEvent *e ) override;
102  void canvasReleaseEvent( QgsMapMouseEvent *e ) override;
103  void activate() override;
104  void deactivate() override;
105 
113  QList<QgsMapToolIdentify::IdentifyResult> identify( int x, int y, const QList<QgsMapLayer *> &layerList = QList<QgsMapLayer *>(), IdentifyMode mode = DefaultQgsSetting );
114 
124  QList<QgsMapToolIdentify::IdentifyResult> identify( int x, int y, IdentifyMode mode, LayerType layerType = AllLayers );
125 
127  QList<QgsMapToolIdentify::IdentifyResult> identify( const QgsGeometry &geometry, IdentifyMode mode, LayerType layerType );
129  QList<QgsMapToolIdentify::IdentifyResult> identify( const QgsGeometry &geometry, IdentifyMode mode, const QList<QgsMapLayer *> &layerList, LayerType layerType );
130 
131 
136  QgsIdentifyMenu *identifyMenu() {return mIdentifyMenu;}
137 
138  public slots:
139  void formatChanged( QgsRasterLayer *layer );
140 
141  signals:
142  void identifyProgress( int, int );
143  void identifyMessage( const QString & );
144  void changedRasterResults( QList<QgsMapToolIdentify::IdentifyResult> & );
145 
146  protected:
147 
158  QList<QgsMapToolIdentify::IdentifyResult> identify( int x, int y, IdentifyMode mode, const QList<QgsMapLayer *> &layerList, LayerType layerType = AllLayers );
159 
160  QgsIdentifyMenu *mIdentifyMenu = nullptr;
161 
163  bool identifyLayer( QList<QgsMapToolIdentify::IdentifyResult> *results, QgsMapLayer *layer, const QgsPointXY &point, const QgsRectangle &viewExtent, double mapUnitsPerPixel, QgsMapToolIdentify::LayerType layerType = AllLayers );
164 
165  bool identifyRasterLayer( QList<QgsMapToolIdentify::IdentifyResult> *results, QgsRasterLayer *layer, QgsPointXY point, const QgsRectangle &viewExtent, double mapUnitsPerPixel );
166  bool identifyVectorLayer( QList<QgsMapToolIdentify::IdentifyResult> *results, QgsVectorLayer *layer, const QgsPointXY &point );
167 
168  private:
169 
170  bool identifyLayer( QList<QgsMapToolIdentify::IdentifyResult> *results, QgsMapLayer *layer, const QgsGeometry &geometry, const QgsRectangle &viewExtent, double mapUnitsPerPixel, QgsMapToolIdentify::LayerType layerType = AllLayers );
171  bool identifyRasterLayer( QList<QgsMapToolIdentify::IdentifyResult> *results, QgsRasterLayer *layer, const QgsGeometry &geometry, const QgsRectangle &viewExtent, double mapUnitsPerPixel );
172  bool identifyVectorLayer( QList<QgsMapToolIdentify::IdentifyResult> *results, QgsVectorLayer *layer, const QgsGeometry &geometry );
173 
179  virtual QgsUnitTypes::DistanceUnit displayDistanceUnits() const;
180 
186  virtual QgsUnitTypes::AreaUnit displayAreaUnits() const;
187 
193  QString formatDistance( double distance ) const;
194 
200  QString formatArea( double area ) const;
201 
206  QString formatDistance( double distance, QgsUnitTypes::DistanceUnit unit ) const;
207 
212  QString formatArea( double area, QgsUnitTypes::AreaUnit unit ) const;
213 
214  QMap< QString, QString > featureDerivedAttributes( const QgsFeature &feature, QgsMapLayer *layer, const QgsPointXY &layerPoint = QgsPointXY() );
215 
219  void closestVertexAttributes( const QgsAbstractGeometry &geometry, QgsVertexId vId, QgsMapLayer *layer, QMap< QString, QString > &derivedAttributes );
220 
221  QString formatCoordinate( const QgsPointXY &canvasPoint ) const;
222  QString formatXCoordinate( const QgsPointXY &canvasPoint ) const;
223  QString formatYCoordinate( const QgsPointXY &canvasPoint ) const;
224 
225  // Last geometry (point or polygon) in map CRS
226  QgsGeometry mLastGeometry;
227 
228  double mLastMapUnitsPerPixel;
229 
230  QgsRectangle mLastExtent;
231 
232  int mCoordinatePrecision;
233 };
234 
235 Q_DECLARE_OPERATORS_FOR_FLAGS( QgsMapToolIdentify::LayerType )
236 
237 #endif
IdentifyResult(QgsMapLayer *layer, const QString &label, const QgsFields &fields, const QgsFeature &feature, const QMap< QString, QString > &derivedAttributes)
IdentifyResult(QgsMapLayer *layer, const QgsFeature &feature, const QMap< QString, QString > &derivedAttributes)
A rectangle specified with double values.
Definition: qgsrectangle.h:40
Base class for all map layer types.
Definition: qgsmaplayer.h:61
virtual void canvasMoveEvent(QgsMapMouseEvent *e)
Mouse move event for overriding. Default implementation does nothing.
Definition: qgsmaptool.cpp:148
QMap< QString, QString > mAttributes
This class provides qgis with the ability to render raster datasets onto the mapcanvas.
A class to represent a 2D point.
Definition: qgspointxy.h:43
Allow zooming by rectangle (by holding shift and dragging) while the tool is active.
Definition: qgsmaptool.h:95
A QgsMapMouseEvent is the result of a user interaction with the mouse on a QgsMapCanvas.
Container of fields for a vector layer.
Definition: qgsfields.h:42
A geometry is the spatial representation of a feature.
Definition: qgsgeometry.h:104
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
Definition: qgsfeature.h:62
Map canvas is a class for displaying all GIS data types on a canvas.
Definition: qgsmapcanvas.h:74
IdentifyResult(QgsMapLayer *layer, const QString &label, const QMap< QString, QString > &attributes, const QMap< QString, QString > &derivedAttributes)
virtual void canvasPressEvent(QgsMapMouseEvent *e)
Mouse press event for overriding. Default implementation does nothing.
Definition: qgsmaptool.cpp:158
virtual void activate()
called when set as currently active map tool
Definition: qgsmaptool.cpp:81
Map tool for identifying features in layers.
Utility class for identifying a unique vertex within a geometry.
A class for highlight features on the map.
Definition: qgshighlight.h:49
The QgsIdentifyMenu class builds a menu to be used with identify results (.
virtual void deactivate()
called when map tool is being deactivated
Definition: qgsmaptool.cpp:97
Abstract base class for all geometries.
DistanceUnit
Units of distance.
Definition: qgsunittypes.h:43
Abstract base class for all map tools.
Definition: qgsmaptool.h:63
A general purpose distance and area calculator, capable of performing ellipsoid based calculations...
QMap< QString, QVariant > mParams
Flags flags() const override
Returns the flags for the map tool.
QgsIdentifyMenu * identifyMenu()
Returns a pointer to the identify menu which will be used in layer selection mode this menu can also ...
Represents a vector layer which manages a vector based data sets.
AreaUnit
Units of area.
Definition: qgsunittypes.h:69
QMap< QString, QString > mDerivedAttributes
virtual void canvasReleaseEvent(QgsMapMouseEvent *e)
Mouse release event for overriding. Default implementation does nothing.
Definition: qgsmaptool.cpp:163