QGIS API Documentation  2.14.0-Essen
qgsfieldexpressionwidget.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsfieldexpressionwidget.h
3  --------------------------------------
4  Date : 01.04.2014
5  Copyright : (C) 2014 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 
16 #ifndef QGSFIELDEXPRESSIONWIDGET_H
17 #define QGSFIELDEXPRESSIONWIDGET_H
18 
19 #include <QSharedPointer>
20 #include <QWidget>
21 #include <QToolButton>
22 #include <QComboBox>
23 #include <QColor>
24 
25 #include "qgsdistancearea.h"
26 #include "qgsfieldproxymodel.h"
27 
28 class QgsMapLayer;
29 class QgsVectorLayer;
30 
31 
40 class GUI_EXPORT QgsFieldExpressionWidget : public QWidget
41 {
42  Q_OBJECT
43  Q_PROPERTY( QString expressionDialogTitle READ expressionDialogTitle WRITE setExpressionDialogTitle )
44  Q_FLAGS( QgsFieldProxyModel::Filters )
45  Q_PROPERTY( QgsFieldProxyModel::Filters filters READ filters WRITE setFilters )
46 
47  public:
51  explicit QgsFieldExpressionWidget( QWidget *parent = nullptr );
52 
54  void setExpressionDialogTitle( const QString& title );
55 
57  const QString expressionDialogTitle() { return mExpressionDialogTitle; }
58 
60  void setFilters( const QgsFieldProxyModel::Filters& filters );
61 
62  void setLeftHandButtonStyle( bool isLeft );
63 
65  QgsFieldProxyModel::Filters filters() const { return mFieldProxyModel->filters(); }
66 
68  void setGeomCalculator( const QgsDistanceArea &da );
69 
75  QString currentField( bool *isExpression = nullptr, bool *isValid = nullptr ) const;
76 
80  bool isValidExpression( QString *expressionError = nullptr ) const;
81 
85  bool isExpression() const;
86 
90  QString currentText() const;
91 
97  QString asExpression() const;
98 
100  QgsVectorLayer* layer() const;
101 
103  typedef QgsExpressionContext( *ExpressionContextCallback )( const void* context );
104 
112  void registerGetExpressionContextCallback( ExpressionContextCallback fnGetExpressionContext, const void* context );
113 
114  signals:
116  void fieldChanged( const QString& fieldName );
117 
119  void fieldChanged( const QString& fieldName, bool isValid );
120 
121 // void returnPressed();
122 
123  public slots:
125  void setLayer( QgsVectorLayer* layer );
126 
128  void setLayer( QgsMapLayer* layer );
129 
131  void setField( const QString &fieldName );
132 
133  protected slots:
135  void editExpression();
136 
138  void expressionEdited( const QString& expression );
139 
141  void expressionEditingFinished();
142 
143  void currentFieldChanged();
144 
150  void updateLineEditStyle( const QString& expression = QString() );
151 
152  bool isExpressionValid( const QString& expressionStr );
153 
154  protected:
155  void changeEvent( QEvent* event ) override;
156 
157  private slots:
158  void reloadLayer();
159 
160  void beforeResetModel();
161  void afterResetModel();
162 
163  private:
164  QComboBox* mCombo;
165  QToolButton* mButton;
166  QgsFieldProxyModel* mFieldProxyModel;
167  QString mExpressionDialogTitle;
169  QScopedPointer< QgsExpressionContext > mExpressionContext;
170  ExpressionContextCallback mExpressionContextCallback;
171  const void* mExpressionContextCallbackContext;
172  QString mBackupExpression;
173 
174  friend class TestQgsFieldExpressionWidget;
175 };
176 
177 #endif // QGSFIELDEXPRESSIONWIDGET_H
The QgsFieldExpressionWidget class reates a widget to choose fields and edit expressions It contains ...
Base class for all map layer types.
Definition: qgsmaplayer.h:49
The QgsFieldProxyModel class provides an easy to use model to display the list of fields of a layer...
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
virtual void changeEvent(QEvent *event)
QgsFieldProxyModel::Filters filters() const
currently used filter on list of fields
General purpose distance and area calculator.
Represents a vector layer which manages a vector based data sets.