QGIS API Documentation  3.4.15-Madeira (e83d02e274)
qgstrackedvectorlayertools.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgstrackedvectorlayertools.h - QgsTrackedVectorLayerTools
3 
4  ---------------------
5  begin : 16.5.2016
6  copyright : (C) 2016 by Matthias Kuhn, OPENGIS.ch
7  email : [email protected]
8  ***************************************************************************
9  * *
10  * This program is free software; you can redistribute it and/or modify *
11  * it under the terms of the GNU General Public License as published by *
12  * the Free Software Foundation; either version 2 of the License, or *
13  * (at your option) any later version. *
14  * *
15  ***************************************************************************/
16 #ifndef QGSTRACKEDVECTORLAYERTOOLS_H
17 #define QGSTRACKEDVECTORLAYERTOOLS_H
18 
19 #include "qgis_core.h"
20 #include "qgsvectorlayertools.h"
21 
27 {
28  Q_OBJECT
29  public:
30 
34  QgsTrackedVectorLayerTools() = default;
35 
36  bool addFeature( QgsVectorLayer *layer, const QgsAttributeMap &defaultValues, const QgsGeometry &defaultGeometry, QgsFeature *feature ) const override;
37  bool startEditing( QgsVectorLayer *layer ) const override;
38  bool stopEditing( QgsVectorLayer *layer, bool allowCancel ) const override;
39  bool saveEdits( QgsVectorLayer *layer ) const override;
40  bool copyMoveFeatures( QgsVectorLayer *layer, QgsFeatureRequest &request, double dx = 0, double dy = 0, QString *errorMsg = nullptr ) const override;
41 
45  void setVectorLayerTools( const QgsVectorLayerTools *tools );
46 
50  void rollback();
51 
52  private:
53 
54  const QgsVectorLayerTools *mBackend = nullptr;
55  // TODO QGIS3: remove mutable once methods are no longer const
56  mutable QMap<QgsVectorLayer *, QgsFeatureIds> mAddedFeatures;
57 };
58 
59 #endif // QGSTRACKEDVECTORLAYERTOOLS_H
Methods in this class are used to handle basic operations on vector layers.
virtual bool saveEdits(QgsVectorLayer *layer) const =0
Should be called, when the features should be committed but the editing session is not ended...
virtual bool startEditing(QgsVectorLayer *layer) const =0
This will be called, whenever a vector layer should be switched to edit mode.
A geometry is the spatial representation of a feature.
Definition: qgsgeometry.h:106
virtual bool stopEditing(QgsVectorLayer *layer, bool allowCancel=true) const =0
Will be called, when an editing session is ended and the features should be committed.
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
This class wraps a request for features to a vector layer (or directly its vector data provider)...
virtual bool copyMoveFeatures(QgsVectorLayer *layer, QgsFeatureRequest &request, double dx=0, double dy=0, QString *errorMsg=nullptr) const
Copy and move features with defined translation.
virtual bool addFeature(QgsVectorLayer *layer, const QgsAttributeMap &defaultValues=QgsAttributeMap(), const QgsGeometry &defaultGeometry=QgsGeometry(), QgsFeature *feature=nullptr) const =0
This method should/will be called, whenever a new feature will be added to the layer.
Represents a vector layer which manages a vector based data sets.