QGIS API Documentation  2.14.0-Essen
qgsvectorlayertools.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsvectorlayertools.h
3  --------------------------------------
4  Date : 29.5.2013
5  Copyright : (C) 2013 Matthias Kuhn
6  Email : matthias at opengis dot ch
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 QGSVECTORLAYERTOOLS_H
17 #define QGSVECTORLAYERTOOLS_H
18 
19 #include "qgsfeature.h"
20 #include "qgsgeometry.h"
21 
22 class QgsVectorLayer;
23 
33 class GUI_EXPORT QgsVectorLayerTools
34 {
35  public:
37 
38  virtual ~QgsVectorLayerTools() {}
39 
49  virtual bool addFeature( QgsVectorLayer* layer, const QgsAttributeMap& defaultValues = QgsAttributeMap(), const QgsGeometry& defaultGeometry = QgsGeometry(), QgsFeature* feature = nullptr ) const = 0;
50 
60  virtual bool startEditing( QgsVectorLayer* layer ) const = 0;
61 
70  virtual bool stopEditing( QgsVectorLayer* layer, bool allowCancel = true ) const = 0;
71 
78  virtual bool saveEdits( QgsVectorLayer* layer ) const = 0;
79 
80 };
81 
82 #endif // QGSVECTORLAYERTOOLS_H
Methods in this class are used to handle basic operations on vector layers.
QMap< int, QVariant > QgsAttributeMap
Definition: qgsfeature.h:104
A geometry is the spatial representation of a feature.
Definition: qgsgeometry.h:76
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
Definition: qgsfeature.h:187
Represents a vector layer which manages a vector based data sets.