QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
qgsvectorlayereditpassthrough.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsvectorlayereditpassthrough.h
3  ---------------------
4  begin : Jan 12 2015
5  copyright : (C) 2015 by Sandro Mani
6  email : manisandro at gmail dot com
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 QGSVECTORLAYEREDITPASSTHROUGH_H
16 #define QGSVECTORLAYEREDITPASSTHROUGH_H
17 
18 #include "qgis_core.h"
20 
21 class QgsVectorLayer;
23 class QgsTransaction;
24 
25 #ifdef SIP_RUN
26 % ModuleHeaderCode
28 % End
29 #endif
30 
36 {
37 
38 #ifdef SIP_RUN
40  if ( qobject_cast<QgsVectorLayerEditPassthrough *>( sipCpp ) )
41  sipType = sipType_QgsVectorLayerEditPassthrough;
42  else
43  sipType = nullptr;
44  SIP_END
45 #endif
46 
47  Q_OBJECT
48  public:
50  bool isModified() const override;
51  bool addFeature( QgsFeature &f ) override;
52  bool addFeatures( QgsFeatureList &features ) override;
53  bool deleteFeature( QgsFeatureId fid ) override;
54  bool deleteFeatures( const QgsFeatureIds &fids ) override;
55  bool changeGeometry( QgsFeatureId fid, const QgsGeometry &geom ) override;
56  bool changeAttributeValue( QgsFeatureId fid, int field, const QVariant &newValue, const QVariant &oldValue = QVariant() ) override;
57 
63  bool changeAttributeValues( QgsFeatureId fid, const QgsAttributeMap &newValues, const QgsAttributeMap &oldValues ) override;
64 
65  bool addAttribute( const QgsField &field ) override;
66  bool deleteAttribute( int attr ) override;
67  bool renameAttribute( int attr, const QString &newName ) override;
68  bool commitChanges( QStringList &commitErrors ) override;
69  void rollBack() override;
70 
82  bool update( QgsTransaction *transaction, const QString &sql, const QString &name );
83 
84  private:
85  bool mModified;
86 
87  // utility function to avoid cpy/paste
88  bool modify( QgsVectorLayerUndoPassthroughCommand *cmd );
89 
90 };
91 
92 #endif // QGSVECTORLAYEREDITPASSTHROUGH_H
QSet< QgsFeatureId > QgsFeatureIds
Definition: qgsfeatureid.h:34
virtual bool renameAttribute(int attr, const QString &newName)
Renames an attribute field (but does not commit it)
virtual bool addAttribute(const QgsField &field)
Add an attribute field (but does not commit it) returns true if the field was added.
virtual bool addFeatures(QgsFeatureList &features)
Insert a copy of the given features into the layer (but does not commit it)
virtual bool addFeature(QgsFeature &f)
Adds a feature.
QList< QgsFeature > QgsFeatureList
Definition: qgsfeature.h:571
qint64 QgsFeatureId
Definition: qgsfeatureid.h:25
virtual void rollBack()
Stop editing and discard the edits.
A geometry is the spatial representation of a feature.
Definition: qgsgeometry.h:122
Undo command for vector layer in transaction group mode.
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
Definition: qgsfeature.h:55
QMap< int, QVariant > QgsAttributeMap
Definition: qgsattributes.h:38
virtual bool isModified() const
Returns true if the provider has been modified since the last commit.
virtual bool changeGeometry(QgsFeatureId fid, const QgsGeometry &geom)
Change feature&#39;s geometry.
#define SIP_END
Definition: qgis_sip.h:189
virtual bool deleteFeatures(const QgsFeatureIds &fid)
Deletes a set of features from the layer (but does not commit it)
Encapsulate a field in an attribute table or data source.
Definition: qgsfield.h:48
virtual bool changeAttributeValues(QgsFeatureId fid, const QgsAttributeMap &newValues, const QgsAttributeMap &oldValues)
Changes values of attributes (but does not commit it).
virtual bool commitChanges(QStringList &commitErrors)
Attempts to commit any changes to disk.
virtual bool deleteAttribute(int attr)
Delete an attribute field (but does not commit it)
This class allows including a set of layers in a database-side transaction, provided the layer data p...
#define SIP_CONVERT_TO_SUBCLASS_CODE(code)
Definition: qgis_sip.h:172
virtual bool deleteFeature(QgsFeatureId fid)
Delete a feature from the layer (but does not commit it)
virtual bool changeAttributeValue(QgsFeatureId fid, int field, const QVariant &newValue, const QVariant &oldValue=QVariant())
Changed an attribute value (but does not commit it)
Represents a vector layer which manages a vector based data sets.