QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgsexpressionfieldbuffer.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsexpressionfieldbuffer.h
3 ---------------------------
4 begin : May 27, 2014
5 copyright : (C) 2014 by Matthias Kuhn
6 email : matthias at opengis dot ch
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
18#ifndef QGSEXPRESSIONFIELDBUFFER_H
19#define QGSEXPRESSIONFIELDBUFFER_H
20
21#include "qgis_core.h"
22#include <QString>
23#include <QList>
24#include <QDomNode>
25
26#include "qgsfields.h"
27#include "qgsexpression.h"
28
34class CORE_EXPORT QgsExpressionFieldBuffer
35{
36 public:
38 {
39 ExpressionField( const QString &exp, const QgsField &fld )
40 : cachedExpression( exp )
41 , field( fld )
42 {}
43
46 };
47
52
59 void addExpression( const QString &exp, const QgsField &fld );
60
66 void removeExpression( int index );
67
75 void renameExpression( int index, const QString &name );
76
84 void updateExpression( int index, const QString &exp );
85
89 void writeXml( QDomNode &layer_node, QDomDocument &document ) const;
90
94 void readXml( const QDomNode &layer_node );
95
101 void updateFields( QgsFields &flds ) const;
102
103 QList<QgsExpressionFieldBuffer::ExpressionField> expressions() const { return mExpressions; }
104
105 private:
106 QList<ExpressionField> mExpressions;
107};
108
109#endif // QGSEXPRESSIONFIELDBUFFER_H
Buffers information about expression fields for a vector layer.
QList< QgsExpressionFieldBuffer::ExpressionField > expressions() const
QgsExpressionFieldBuffer()=default
Constructor for QgsExpressionFieldBuffer.
Class for parsing and evaluation of expressions (formerly called "search strings").
Encapsulate a field in an attribute table or data source.
Definition: qgsfield.h:53
Container of fields for a vector layer.
Definition: qgsfields.h:45
ExpressionField(const QString &exp, const QgsField &fld)