QGIS API Documentation  3.4.15-Madeira (e83d02e274)
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 "qgis_core.h"
20 #include "qgis.h"
21 #include <QObject>
22 
23 #include "qgsfeature.h"
24 #include "qgsgeometry.h"
25 
26 class QgsFeatureRequest;
27 class QgsVectorLayer;
28 
39 class CORE_EXPORT QgsVectorLayerTools : public QObject
40 {
41  Q_OBJECT
42 
43  public:
45 
57  virtual bool addFeature( QgsVectorLayer *layer, const QgsAttributeMap &defaultValues = QgsAttributeMap(), const QgsGeometry &defaultGeometry = QgsGeometry(), QgsFeature *feature SIP_OUT = nullptr ) const = 0;
58 
70  virtual bool startEditing( QgsVectorLayer *layer ) const = 0;
71 
82  virtual bool stopEditing( QgsVectorLayer *layer, bool allowCancel = true ) const = 0;
83 
92  virtual bool saveEdits( QgsVectorLayer *layer ) const = 0;
93 
106  virtual bool copyMoveFeatures( QgsVectorLayer *layer, QgsFeatureRequest &request SIP_INOUT, double dx = 0, double dy = 0, QString *errorMsg SIP_OUT = nullptr ) const;
107 
108 };
109 
110 #endif // QGSVECTORLAYERTOOLS_H
Methods in this class are used to handle basic operations on vector layers.
A geometry is the spatial representation of a feature.
Definition: qgsgeometry.h:106
#define SIP_INOUT
Definition: qgis_sip.h:64
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)...
#define SIP_OUT
Definition: qgis_sip.h:51
Represents a vector layer which manages a vector based data sets.