2017-06-07 16:16:21 +02:00
|
|
|
/************************************************************************
|
|
|
|
* This file has been generated automatically from *
|
|
|
|
* *
|
|
|
|
* src/gui/qgsmaptoolidentify.h *
|
|
|
|
* *
|
|
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-01-25 08:06:30 +01:00
|
|
|
class QgsMapToolIdentify : QgsMapTool
|
|
|
|
{
|
2017-06-07 16:16:21 +02:00
|
|
|
%Docstring
|
|
|
|
Map tool for identifying features in layers
|
|
|
|
|
|
|
|
after selecting a point, performs the identification:
|
|
|
|
- for raster layers shows value of underlying pixel
|
|
|
|
- for vector layers shows feature attributes within search radius
|
|
|
|
(allows editing values when vector layer is in editing mode)
|
2013-01-25 08:06:30 +01:00
|
|
|
%End
|
|
|
|
|
2017-06-07 16:16:21 +02:00
|
|
|
%TypeHeaderCode
|
|
|
|
#include "qgsmaptoolidentify.h"
|
|
|
|
%End
|
2013-01-25 08:06:30 +01:00
|
|
|
public:
|
2013-06-23 16:00:16 +02:00
|
|
|
|
2013-01-25 08:06:30 +01:00
|
|
|
enum IdentifyMode
|
|
|
|
{
|
2014-06-02 21:00:51 +02:00
|
|
|
DefaultQgsSetting,
|
2013-06-23 16:00:16 +02:00
|
|
|
ActiveLayer,
|
|
|
|
TopDownStopAtFirst,
|
2013-10-28 08:29:49 +01:00
|
|
|
TopDownAll,
|
|
|
|
LayerSelection
|
2013-01-25 08:06:30 +01:00
|
|
|
};
|
|
|
|
|
2014-08-14 08:25:09 +02:00
|
|
|
enum Type
|
2013-01-25 08:06:30 +01:00
|
|
|
{
|
2013-06-23 16:00:16 +02:00
|
|
|
VectorLayer,
|
2014-08-14 08:25:09 +02:00
|
|
|
RasterLayer,
|
|
|
|
AllLayers
|
2013-01-25 08:06:30 +01:00
|
|
|
};
|
2014-08-14 08:25:09 +02:00
|
|
|
typedef QFlags<QgsMapToolIdentify::Type> LayerType;
|
2013-02-07 10:12:10 +01:00
|
|
|
|
2017-06-07 16:16:21 +02:00
|
|
|
|
2013-02-07 10:12:10 +01:00
|
|
|
struct IdentifyResult
|
2013-01-25 08:06:30 +01:00
|
|
|
{
|
2013-02-07 10:12:10 +01:00
|
|
|
IdentifyResult();
|
2017-11-11 15:22:19 +10:00
|
|
|
%Docstring
|
|
|
|
Constructor for IdentifyResult
|
|
|
|
%End
|
2013-02-07 10:12:10 +01:00
|
|
|
|
2017-05-03 07:45:22 +02:00
|
|
|
IdentifyResult( QgsMapLayer *layer, const QgsFeature &feature, const QMap< QString, QString > &derivedAttributes );
|
|
|
|
IdentifyResult( QgsMapLayer *layer, const QString &label, const QMap< QString, QString > &attributes, const QMap< QString, QString > &derivedAttributes );
|
|
|
|
IdentifyResult( QgsMapLayer *layer, const QString &label, const QgsFields &fields, const QgsFeature &feature, const QMap< QString, QString > &derivedAttributes );
|
2017-05-01 16:42:33 +02:00
|
|
|
QgsMapLayer *mLayer;
|
2013-02-06 15:14:16 +01:00
|
|
|
QString mLabel;
|
|
|
|
QgsFields mFields;
|
|
|
|
QgsFeature mFeature;
|
|
|
|
QMap< QString, QString > mAttributes;
|
|
|
|
QMap< QString, QString > mDerivedAttributes;
|
2013-06-23 16:00:16 +02:00
|
|
|
QMap< QString, QVariant > mParams;
|
2013-01-25 08:06:30 +01:00
|
|
|
};
|
|
|
|
|
2017-05-03 07:45:22 +02:00
|
|
|
QgsMapToolIdentify( QgsMapCanvas *canvas );
|
2017-06-07 16:16:21 +02:00
|
|
|
%Docstring
|
|
|
|
constructor
|
|
|
|
%End
|
2013-06-23 16:00:16 +02:00
|
|
|
|
2017-12-15 08:57:22 +10:00
|
|
|
~QgsMapToolIdentify();
|
2013-01-25 08:06:30 +01:00
|
|
|
|
2016-05-30 06:19:34 +10:00
|
|
|
virtual Flags flags() const;
|
2017-05-03 07:45:22 +02:00
|
|
|
virtual void canvasMoveEvent( QgsMapMouseEvent *e );
|
2017-12-15 08:57:22 +10:00
|
|
|
|
2017-05-03 07:45:22 +02:00
|
|
|
virtual void canvasPressEvent( QgsMapMouseEvent *e );
|
2017-12-15 08:57:22 +10:00
|
|
|
|
2017-05-03 07:45:22 +02:00
|
|
|
virtual void canvasReleaseEvent( QgsMapMouseEvent *e );
|
2017-12-15 08:57:22 +10:00
|
|
|
|
2013-01-25 08:06:30 +01:00
|
|
|
virtual void activate();
|
2017-12-15 08:57:22 +10:00
|
|
|
|
2013-01-25 08:06:30 +01:00
|
|
|
virtual void deactivate();
|
|
|
|
|
2017-12-15 08:57:22 +10:00
|
|
|
|
2017-06-07 16:16:21 +02:00
|
|
|
QList<QgsMapToolIdentify::IdentifyResult> identify( int x, int y, const QList<QgsMapLayer *> &layerList = QList<QgsMapLayer *>(), IdentifyMode mode = DefaultQgsSetting );
|
|
|
|
%Docstring
|
2017-12-15 10:36:55 -04:00
|
|
|
Performs the identification.
|
2017-12-15 21:36:08 -04:00
|
|
|
|
2017-12-15 10:36:55 -04:00
|
|
|
:param x: x coordinates of mouseEvent
|
|
|
|
:param y: y coordinates of mouseEvent
|
|
|
|
:param layerList: Performs the identification within the given list of layers. Default value is an empty list, i.e. uses all the layers.
|
|
|
|
:param mode: Identification mode. Can use Qgis default settings or a defined mode. Default mode is DefaultQgsSetting.
|
|
|
|
|
2017-06-07 16:16:21 +02:00
|
|
|
:return: a list of IdentifyResult*
|
|
|
|
%End
|
|
|
|
|
2016-10-24 09:34:13 +10:00
|
|
|
QList<QgsMapToolIdentify::IdentifyResult> identify( int x, int y, IdentifyMode mode, LayerType layerType = AllLayers );
|
2017-06-07 16:16:21 +02:00
|
|
|
%Docstring
|
2017-12-15 10:36:55 -04:00
|
|
|
Performs the identification.
|
2017-06-07 16:16:21 +02:00
|
|
|
To avoid being forced to specify IdentifyMode with a list of layers
|
|
|
|
this has been made private and two publics methods are offered
|
2017-12-15 21:36:08 -04:00
|
|
|
|
2017-12-15 10:36:55 -04:00
|
|
|
:param x: x coordinates of mouseEvent
|
|
|
|
:param y: y coordinates of mouseEvent
|
|
|
|
:param mode: Identification mode. Can use Qgis default settings or a defined mode.
|
|
|
|
:param layerType: Only performs identification in a certain type of layers (raster, vector). Default value is AllLayers.
|
|
|
|
|
2017-06-07 16:16:21 +02:00
|
|
|
:return: a list of IdentifyResult*
|
|
|
|
%End
|
2013-01-25 08:06:30 +01:00
|
|
|
|
2018-04-20 22:52:31 +02:00
|
|
|
QList<QgsMapToolIdentify::IdentifyResult> identify( const QgsGeometry &geometry, IdentifyMode mode, LayerType layerType );
|
2018-04-21 00:22:06 +02:00
|
|
|
%Docstring
|
|
|
|
Performs identification based on a geometry (in map coordinates)
|
|
|
|
%End
|
2018-04-20 22:52:31 +02:00
|
|
|
QList<QgsMapToolIdentify::IdentifyResult> identify( const QgsGeometry &geometry, IdentifyMode mode, const QList<QgsMapLayer *> &layerList, LayerType layerType );
|
2018-04-21 00:22:06 +02:00
|
|
|
%Docstring
|
|
|
|
Performs identification based on a geometry (in map coordinates)
|
|
|
|
%End
|
2018-04-20 22:52:31 +02:00
|
|
|
|
|
|
|
|
2017-05-01 16:42:33 +02:00
|
|
|
QgsIdentifyMenu *identifyMenu();
|
2017-06-07 16:16:21 +02:00
|
|
|
%Docstring
|
2017-12-15 10:36:55 -04:00
|
|
|
return a pointer to the identify menu which will be used in layer selection mode
|
|
|
|
this menu can also be customized
|
2017-06-07 16:16:21 +02:00
|
|
|
%End
|
2015-02-03 02:21:52 +01:00
|
|
|
|
2013-06-23 16:00:16 +02:00
|
|
|
public slots:
|
|
|
|
void formatChanged( QgsRasterLayer *layer );
|
|
|
|
|
2013-01-25 08:06:30 +01:00
|
|
|
signals:
|
|
|
|
void identifyProgress( int, int );
|
2017-06-07 16:16:21 +02:00
|
|
|
void identifyMessage( const QString & );
|
|
|
|
void changedRasterResults( QList<QgsMapToolIdentify::IdentifyResult> & );
|
2014-05-22 16:39:18 +02:00
|
|
|
|
|
|
|
protected:
|
2017-06-07 16:16:21 +02:00
|
|
|
|
|
|
|
QList<QgsMapToolIdentify::IdentifyResult> identify( int x, int y, IdentifyMode mode, const QList<QgsMapLayer *> &layerList, LayerType layerType = AllLayers );
|
|
|
|
%Docstring
|
2017-12-15 10:36:55 -04:00
|
|
|
Performs the identification.
|
2017-06-07 16:16:21 +02:00
|
|
|
To avoid being forced to specify IdentifyMode with a list of layers
|
|
|
|
this has been made private and two publics methods are offered
|
2017-12-15 21:36:08 -04:00
|
|
|
|
2017-12-15 10:36:55 -04:00
|
|
|
:param x: x coordinates of mouseEvent
|
|
|
|
:param y: y coordinates of mouseEvent
|
|
|
|
:param mode: Identification mode. Can use Qgis default settings or a defined mode.
|
|
|
|
:param layerList: Performs the identification within the given list of layers.
|
|
|
|
:param layerType: Only performs identification in a certain type of layers (raster, vector).
|
|
|
|
|
2017-06-07 16:16:21 +02:00
|
|
|
:return: a list of IdentifyResult*
|
|
|
|
%End
|
|
|
|
|
|
|
|
|
|
|
|
bool identifyLayer( QList<QgsMapToolIdentify::IdentifyResult> *results, QgsMapLayer *layer, const QgsPointXY &point, const QgsRectangle &viewExtent, double mapUnitsPerPixel, QgsMapToolIdentify::LayerType layerType = AllLayers );
|
|
|
|
%Docstring
|
|
|
|
Call the right method depending on layer type
|
|
|
|
%End
|
2014-05-22 16:39:18 +02:00
|
|
|
|
2017-06-01 12:18:43 +02:00
|
|
|
bool identifyRasterLayer( QList<QgsMapToolIdentify::IdentifyResult> *results, QgsRasterLayer *layer, QgsPointXY point, const QgsRectangle &viewExtent, double mapUnitsPerPixel );
|
|
|
|
bool identifyVectorLayer( QList<QgsMapToolIdentify::IdentifyResult> *results, QgsVectorLayer *layer, const QgsPointXY &point );
|
2017-06-07 16:16:21 +02:00
|
|
|
|
|
|
|
};
|
2016-02-14 21:04:41 +11:00
|
|
|
|
2017-06-07 16:16:21 +02:00
|
|
|
QFlags<QgsMapToolIdentify::Type> operator|(QgsMapToolIdentify::Type f1, QFlags<QgsMapToolIdentify::Type> f2);
|
2016-02-14 21:04:41 +11:00
|
|
|
|
Fix project unit confusion (pt 3): add area unit settings with a
ton of available area units (eg m2, km2, mi2, ft2, yd2, ha, ac,
etc)
Adds a new option in both the QGIS setting and project properties to
set the units used for area measurements. Just like the distance
setting, this defaults to the units set in QGIS options, but can
then be overridden for specific projects.
The setting is respected for area calculations in:
- Attribute table field update bar
- Field calculator calculations
- Identify tool derived length and perimeter values
Also adds unit tests to ensure that area calculated by attribute table
update bar, field calculator and identify tool are consistent wrt
ellipsoidal calculations and area units.
TODO: make measure tool respect area setting
(refs #13209, #4252 and fixes #12939, #2402, #4857)
2016-02-15 07:25:32 +11:00
|
|
|
|
2017-06-07 16:16:21 +02:00
|
|
|
/************************************************************************
|
|
|
|
* This file has been generated automatically from *
|
|
|
|
* *
|
|
|
|
* src/gui/qgsmaptoolidentify.h *
|
|
|
|
* *
|
|
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
|
|
************************************************************************/
|