QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
qgsexpressionselectiondialog.h
Go to the documentation of this file.
1/***************************************************************************
2 qgisexpressionselectiondialog.h
3 --------------------------------------
4 Date : 24.1.2013
5 Copyright : (C) 2013 by Matthias kuhn
6 Email : matthias at opengis dot ch
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 QGSEXPRESSIONSELECTIONDIALOG_H
17#define QGSEXPRESSIONSELECTIONDIALOG_H
18
19#include "ui_qgsexpressionselectiondialogbase.h"
20#include "qgis_sip.h"
21#include "qgshelp.h"
22
23#include <QDialog>
24#include "qgis_gui.h"
25
26class QgsMapCanvas;
27class QgsMessageBar;
28
36class GUI_EXPORT QgsExpressionSelectionDialog : public QDialog, private Ui::QgsExpressionSelectionDialogBase
37{
38 Q_OBJECT
39
40 public:
47 QgsExpressionSelectionDialog( QgsVectorLayer *layer, const QString &startText = QString(), QWidget *parent SIP_TRANSFERTHIS = nullptr );
48
53 QgsExpressionBuilderWidget *expressionBuilder();
54
59 void setExpressionText( const QString &text );
60
65 QString expressionText();
66
70 void setGeomCalculator( const QgsDistanceArea &da );
71
77 void setMessageBar( QgsMessageBar *messageBar );
78
82 void setMapCanvas( QgsMapCanvas *canvas );
83
84 private slots:
85 void mActionSelect_triggered();
86 void mActionAddToSelection_triggered();
87 void mActionRemoveFromSelection_triggered();
88 void mActionSelectIntersect_triggered();
89 void mButtonZoomToFeatures_clicked();
90 void mPbnClose_clicked();
91 void showHelp();
92
93 protected:
99 void closeEvent( QCloseEvent *closeEvent ) override;
100
106 void done( int r ) override;
107
108 private:
109 void saveRecent();
110 void pushSelectedFeaturesMessage();
111 QgsVectorLayer *mLayer = nullptr;
112 QgsMessageBar *mMessageBar = nullptr;
113 QgsMapCanvas *mMapCanvas = nullptr;
114};
115
116#endif
A general purpose distance and area calculator, capable of performing ellipsoid based calculations.
A reusable widget that can be used to build a expression string.
This class offers a dialog to change feature selections.
Map canvas is a class for displaying all GIS data types on a canvas.
A bar for displaying non-blocking messages to the user.
Represents a vector layer which manages a vector based data sets.
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53