QGIS API Documentation  3.14.0-Pi (9f7028fd23)
qgsfeaturepickerwidget.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsfeaturepickerwidget.h - QgsFeaturePickerWidget
3  ---------------------
4  begin : 03.04.2020
5  copyright : (C) 2020 by Denis Rouzaud
6  email : [email protected]
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 #ifndef QGSFEATURECHOOSER_H
16 #define QGSFEATURECHOOSER_H
17 
18 #include <QWidget>
19 #include <QComboBox>
20 #include <QLineEdit>
21 #include <QCompleter>
22 
23 #include "qgsfeature.h"
24 #include "qgsfeaturerequest.h"
25 #include "qgis_gui.h"
26 
27 class QToolButton;
28 
29 class QgsVectorLayer;
31 class QgsAnimatedIcon;
32 class QgsFilterLineEdit;
33 
34 
44 class GUI_EXPORT QgsFeaturePickerWidget : public QWidget
45 {
46  Q_OBJECT
47 
48  Q_PROPERTY( QgsVectorLayer *layer READ layer WRITE setLayer NOTIFY layerChanged )
49  Q_PROPERTY( QString displayExpression READ displayExpression WRITE setDisplayExpression NOTIFY displayExpressionChanged )
50  Q_PROPERTY( QString filterExpression READ filterExpression WRITE setFilterExpression NOTIFY filterExpressionChanged )
51  Q_PROPERTY( bool allowNull READ allowNull WRITE setAllowNull NOTIFY allowNullChanged )
52  Q_PROPERTY( bool fetchGeometry READ fetchGeometry WRITE setFetchGeometry NOTIFY fetchGeometryChanged )
53  Q_PROPERTY( int fetchLimit READ fetchLimit WRITE setFetchLimit NOTIFY fetchLimitChanged )
54  Q_PROPERTY( bool showBrowserButtons READ showBrowserButtons WRITE setShowBrowserButtons NOTIFY showBrowserButtonsChanged )
55 
56  public:
57 
61  QgsFeaturePickerWidget( QWidget *parent = nullptr );
62 
66  QgsVectorLayer *layer() const;
67 
71  void setLayer( QgsVectorLayer *layer );
72 
76  void setFeature( QgsFeatureId featureId );
77 
81  QgsFeature feature() const;
82 
87  QString displayExpression() const;
88 
93  void setDisplayExpression( const QString &displayExpression );
94 
99  QString filterExpression() const;
100 
105  int nullIndex() const;
106 
111  void setFilterExpression( const QString &filterExpression );
112 
116  bool allowNull() const;
117 
121  void setAllowNull( bool allowNull );
122 
126  bool fetchGeometry() const;
127 
131  void setFetchGeometry( bool fetchGeometry );
132 
136  int fetchLimit() const;
137 
142  void setFetchLimit( int fetchLimit );
143 
147  bool showBrowserButtons() const;
148 
153  void setShowBrowserButtons( bool showBrowserButtons );
154 
155 
159  QModelIndex currentModelIndex() const;
160 
161  void focusOutEvent( QFocusEvent *event ) override;
162 
163  void keyPressEvent( QKeyEvent *event ) override;
164 
165  signals:
166 
170  void modelUpdated();
171 
175  void layerChanged();
176 
181  void displayExpressionChanged();
182 
187  void filterExpressionChanged();
188 
190  void featureChanged( const QgsFeature &feature );
191 
195  void allowNullChanged();
196 
200  void fetchGeometryChanged();
201 
205  void fetchLimitChanged();
206 
208  void showBrowserButtonsChanged();
209 
210  private slots:
211  void onCurrentTextChanged( const QString &text );
212  void onFilterUpdateCompleted();
213  void onLoadingChanged();
214  void onItemSelected( const QModelIndex &index );
215  void onCurrentIndexChanged( int i );
216  void onActivated( QModelIndex index );
217  void storeLineEditState();
218  void restoreLineEditState();
219  void onDataChanged( const QModelIndex &topLeft, const QModelIndex &bottomRight, const QVector<int> &roles = QVector<int>() );
220  void browseFeatures( int direction );
221 
222  private:
223  QComboBox *mComboBox;
224  QToolButton *mPreviousButton;
225  QToolButton *mNextButton;
226  QgsFeaturePickerModel *mModel = nullptr;
227  QCompleter *mCompleter = nullptr;
228  QgsFilterLineEdit *mLineEdit;
229  bool mPopupRequested = false;
230  bool mIsCurrentlyEdited = false;
231  bool mHasStoredEditState = false;
232  bool mShowBrowserButtons = false;
233 };
234 
235 
236 
237 #endif // QGSFEATURECHOOSER_H
qgsfeaturerequest.h
qgsfeature.h
QgsFilterLineEdit
Definition: qgsfilterlineedit.h:39
QgsFeaturePickerModel
Definition: qgsfeaturepickermodel.h:31
QgsAnimatedIcon
Definition: qgsanimatedicon.h:30
QgsVectorLayer
Definition: qgsvectorlayer.h:385
QgsFeature
Definition: qgsfeature.h:55
QgsFeaturePickerWidget
Definition: qgsfeaturepickerwidget.h:44
QgsFeatureId
qint64 QgsFeatureId
Definition: qgsfeatureid.h:25