QGIS API Documentation 3.28.0-Firenze (ed3ad0430f)
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_sip.h"
21#include <QObject>
22
23#include "qgsfeature.h"
24#include "qgsgeometry.h"
25
27class QgsVectorLayer;
28
39class CORE_EXPORT QgsVectorLayerTools : public QObject
40{
41 Q_OBJECT
42
43 public:
45
46 // TODO QGIS 4: remove const qualifier
47
61 virtual bool addFeature( QgsVectorLayer *layer, const QgsAttributeMap &defaultValues = QgsAttributeMap(), const QgsGeometry &defaultGeometry = QgsGeometry(), QgsFeature *feature SIP_OUT = nullptr, QWidget *parentWidget = nullptr, bool showModal = true, bool hideParent = false ) const = 0;
62
63 // TODO QGIS 4: remove const qualifier
64
75 virtual bool startEditing( QgsVectorLayer *layer ) const = 0;
76
77 // TODO QGIS 4: remove const qualifier
78
88 virtual bool stopEditing( QgsVectorLayer *layer, bool allowCancel = true ) const = 0;
89
90 // TODO QGIS 4: remove const qualifier
91
99 virtual bool saveEdits( QgsVectorLayer *layer ) const = 0;
100
101 // TODO QGIS 4: remove const qualifier
102
117 virtual bool copyMoveFeatures( QgsVectorLayer *layer, QgsFeatureRequest &request SIP_INOUT, double dx = 0, double dy = 0, QString *errorMsg SIP_OUT = nullptr, const bool topologicalEditing = false, QgsVectorLayer *topologicalLayer = nullptr ) const;
118
125 bool forceSuppressFormPopup() const;
126
135 void setForceSuppressFormPopup( bool forceSuppressFormPopup );
136
137 private:
138
139 bool mForceSuppressFormPopup { false };
140
141
142};
143
144#endif // QGSVECTORLAYERTOOLS_H
This class wraps a request for features to a vector layer (or directly its vector data provider).
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition: qgsfeature.h:56
A geometry is the spatial representation of a feature.
Definition: qgsgeometry.h:164
Methods in this class are used to handle basic operations on vector layers.
virtual bool startEditing(QgsVectorLayer *layer) const =0
This will be called, whenever a vector layer should be switched to edit mode.
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 addFeature(QgsVectorLayer *layer, const QgsAttributeMap &defaultValues=QgsAttributeMap(), const QgsGeometry &defaultGeometry=QgsGeometry(), QgsFeature *feature=nullptr, QWidget *parentWidget=nullptr, bool showModal=true, bool hideParent=false) const =0
This method should/will be called, whenever a new feature will be added to the layer.
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.
Represents a vector layer which manages a vector based data sets.
#define SIP_OUT
Definition: qgis_sip.h:58
#define SIP_INOUT
Definition: qgis_sip.h:71
QMap< int, QVariant > QgsAttributeMap
Definition: qgsattributes.h:42