QGIS API Documentation
3.4.15-Madeira (e83d02e274)
|
Methods in this class are used to handle basic operations on vector layers. More...
#include <qgsvectorlayertools.h>
Public Member Functions | |
QgsVectorLayerTools () | |
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. More... | |
virtual bool | copyMoveFeatures (QgsVectorLayer *layer, QgsFeatureRequest &request, double dx=0, double dy=0, QString *errorMsg=nullptr) const |
Copy and move features with defined translation. More... | |
virtual bool | saveEdits (QgsVectorLayer *layer) const =0 |
Should be called, when the features should be committed but the editing session is not ended. More... | |
virtual bool | startEditing (QgsVectorLayer *layer) const =0 |
This will be called, whenever a vector layer should be switched to edit mode. More... | |
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. More... | |
Methods in this class are used to handle basic operations on vector layers.
With an implementation of this class, parts of the application can ask for an operation to be done and the implementation will then take care of it.
Reimplement this class, if you need to have custom checks or GUI elements in your application.
Definition at line 39 of file qgsvectorlayertools.h.
QgsVectorLayerTools::QgsVectorLayerTools | ( | ) |
Definition at line 24 of file qgsvectorlayertools.cpp.
|
pure virtual |
This method should/will be called, whenever a new feature will be added to the layer.
layer | The layer to which the feature should be added |
defaultValues | Default values for the feature to add |
defaultGeometry | A default geometry to add to the feature |
feature | Updated feature after adding will be written back to this |
TODO QGIS 3: remove const qualifier
Implemented in QgsTrackedVectorLayerTools.
|
virtual |
Copy and move features with defined translation.
layer | The layer |
request | The request for the features to be moved. It will be assigned to a new feature request with the newly copied features. |
dx | The translation on x |
dy | The translation on y |
errorMsg | If given, it will contain the error message |
TODO QGIS 3: remove const qualifier
Reimplemented in QgsTrackedVectorLayerTools.
Definition at line 28 of file qgsvectorlayertools.cpp.
|
pure virtual |
Should be called, when the features should be committed but the editing session is not ended.
layer | The layer to commit |
TODO QGIS 3: remove const qualifier
Implemented in QgsTrackedVectorLayerTools.
|
pure virtual |
This will be called, whenever a vector layer should be switched to edit mode.
Check the providers capability to edit in here. If successful layer->startEditing() will be called and true returned.
layer | The layer on which to start an edit session |
TODO QGIS 3: remove const qualifier
Implemented in QgsTrackedVectorLayerTools.
|
pure virtual |
Will be called, when an editing session is ended and the features should be committed.
Appropriate dialogs should be shown like
layer | The layer to commit |
allowCancel | True if a cancel button should be offered |
TODO QGIS 3: remove const qualifier
Implemented in QgsTrackedVectorLayerTools.