QGIS API Documentation 3.41.0-Master (af5edcb665c)
Loading...
Searching...
No Matches
qgsfeatureselectiondlg.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsfeatureselectiondlg.h
3 --------------------------------------
4 Date : 11.6.2013
5 Copyright : (C) 2013 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 QGSFEATURESELECTIONDLG_H
17#define QGSFEATURESELECTIONDLG_H
18
20
21#include "ui_qgsfeatureselectiondlg.h"
22#include "qgis_sip.h"
23#include "qgis_gui.h"
24
25#ifdef SIP_RUN
26// This is required for the ConvertToSubClassCode to work properly
27// so RTTI for casting is available in the whole module.
28//%ModuleCode
30//%End
31#endif
32
37class GUI_EXPORT QgsFeatureSelectionDlg : public QDialog, private Ui::QgsFeatureSelectionDlg
38{
39#ifdef SIP_RUN
41 if ( qobject_cast<QgsFeatureSelectionDlg *>( sipCpp ) )
42 sipType = sipType_QgsFeatureSelectionDlg;
43 else
44 sipType = 0;
46#endif
47
48 Q_OBJECT
49
50 public:
52 explicit QgsFeatureSelectionDlg( QgsVectorLayer *vl, const QgsAttributeEditorContext &context, QWidget *parent SIP_TRANSFERTHIS = nullptr );
53
59 const QgsFeatureIds &selectedFeatures();
60
65 void setSelectedFeatures( const QgsFeatureIds &ids );
66
70 void setFilterExpression( const QString &filter, QgsAttributeForm::FilterType type );
71
72 protected:
73 void keyPressEvent( QKeyEvent *evt ) override;
74
76 void showEvent( QShowEvent *event ) override;
77
78 private slots:
79
83 void mActionInvertSelection_triggered();
84
88 void mActionRemoveSelection_triggered();
89
93 void mActionSelectAll_triggered();
94
98 void mActionZoomMapToSelectedRows_triggered();
99
103 void mActionPanMapToSelectedRows_triggered();
104
108 void mActionExpressionSelect_triggered();
109
113 void viewModeChanged( QgsAttributeEditorContext::Mode mode );
114
115 private:
116 QgsVectorLayerSelectionManager *mFeatureSelection = nullptr;
117 QgsVectorLayer *mVectorLayer = nullptr;
119};
120
121#endif // QGSFEATURESELECTIONDLG_H
This class contains context information for attribute editor widgets.
FilterType
Filter types.
Represents a vector layer which manages a vector based data sets.
#define SIP_CONVERT_TO_SUBCLASS_CODE(code)
Definition qgis_sip.h:191
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53
#define SIP_END
Definition qgis_sip.h:208
QSet< QgsFeatureId > QgsFeatureIds