QGIS API Documentation
3.8.0-Zanzibar (11aff65)
|
#include <qgsvectorlayereditbuffer.h>
Signals | |
void | attributeAdded (int idx) |
void | attributeDeleted (int idx) |
void | attributeRenamed (int idx, const QString &newName) |
Emitted when an attribute has been renamed. More... | |
void | attributeValueChanged (QgsFeatureId fid, int idx, const QVariant &) |
void | committedAttributesAdded (const QString &layerId, const QList< QgsField > &addedAttributes) |
void | committedAttributesDeleted (const QString &layerId, const QgsAttributeList &deletedAttributes) |
Signals emitted after committing changes. More... | |
void | committedAttributesRenamed (const QString &layerId, const QgsFieldNameMap &renamedAttributes) |
Emitted after committing an attribute rename. More... | |
void | committedAttributeValuesChanges (const QString &layerId, const QgsChangedAttributesMap &changedAttributesValues) |
void | committedFeaturesAdded (const QString &layerId, const QgsFeatureList &addedFeatures) |
void | committedFeaturesRemoved (const QString &layerId, const QgsFeatureIds &deletedFeatureIds) |
void | committedGeometriesChanges (const QString &layerId, const QgsGeometryMap &changedGeometries) |
void | featureAdded (QgsFeatureId fid) |
void | featureDeleted (QgsFeatureId fid) |
void | geometryChanged (QgsFeatureId fid, const QgsGeometry &geom) |
Emitted when a feature's geometry is changed. More... | |
void | layerModified () |
Emitted when modifications has been done on layer. More... | |
Public Member Functions | |
QgsVectorLayerEditBuffer (QgsVectorLayer *layer) | |
virtual bool | addAttribute (const QgsField &field) |
Add an attribute field (but does not commit it) returns true if the field was added. More... | |
QList< QgsField > | addedAttributes () const |
Returns a list of added attributes fields which are not committed. More... | |
QgsFeatureMap | addedFeatures () const |
Returns a map of new features which are not committed. More... | |
virtual bool | addFeature (QgsFeature &f) |
Adds a feature. More... | |
virtual bool | addFeatures (QgsFeatureList &features) |
Insert a copy of the given features into the layer (but does not commit it) More... | |
virtual bool | changeAttributeValue (QgsFeatureId fid, int field, const QVariant &newValue, const QVariant &oldValue=QVariant()) |
Changed an attribute value (but does not commit it) More... | |
virtual bool | changeAttributeValues (QgsFeatureId fid, const QgsAttributeMap &newValues, const QgsAttributeMap &oldValues) |
Changes values of attributes (but does not commit it). More... | |
QgsChangedAttributesMap | changedAttributeValues () const |
Returns a map of features with changed attributes values which are not committed. More... | |
QgsGeometryMap | changedGeometries () const |
Returns a map of features with changed geometries which are not committed. More... | |
virtual bool | changeGeometry (QgsFeatureId fid, const QgsGeometry &geom) |
Change feature's geometry. More... | |
virtual bool | commitChanges (QStringList &commitErrors) |
Attempts to commit any changes to disk. More... | |
virtual bool | deleteAttribute (int attr) |
Delete an attribute field (but does not commit it) More... | |
QgsAttributeList | deletedAttributeIds () const |
Returns a list of deleted attributes fields which are not committed. More... | |
QgsFeatureIds | deletedFeatureIds () const |
Returns a list of deleted feature IDs which are not committed. More... | |
virtual bool | deleteFeature (QgsFeatureId fid) |
Delete a feature from the layer (but does not commit it) More... | |
virtual bool | deleteFeatures (const QgsFeatureIds &fid) |
Deletes a set of features from the layer (but does not commit it) More... | |
bool | isAttributeDeleted (int index) const |
Returns true if the specified attribute has been deleted but not committed. More... | |
bool | isFeatureAdded (QgsFeatureId id) const |
Returns true if the specified feature ID has been added but not committed. More... | |
bool | isFeatureAttributesChanged (QgsFeatureId id) const |
Returns true if the specified feature ID has had an attribute changed but not committed. More... | |
bool | isFeatureDeleted (QgsFeatureId id) const |
Returns true if the specified feature ID has been deleted but not committed. More... | |
bool | isFeatureGeometryChanged (QgsFeatureId id) const |
Returns true if the specified feature ID has had its geometry changed but not committed. More... | |
virtual bool | isModified () const |
Returns true if the provider has been modified since the last commit. More... | |
virtual bool | renameAttribute (int attr, const QString &newName) |
Renames an attribute field (but does not commit it) More... | |
virtual void | rollBack () |
Stop editing and discard the edits. More... | |
Protected Slots | |
void | undoIndexChanged (int index) |
Protected Member Functions | |
QgsVectorLayerEditBuffer ()=default | |
Constructor for QgsVectorLayerEditBuffer. More... | |
void | handleAttributeAdded (int index) |
Update added and changed features after addition of an attribute. More... | |
void | handleAttributeDeleted (int index) |
Update added and changed features after removal of an attribute. More... | |
void | updateAttributeMapIndex (QgsAttributeMap &attrs, int index, int offset) const |
Updates an index in an attribute map to a new value (for updates of changed attributes) More... | |
void | updateChangedAttributes (QgsFeature &f) |
Update feature with uncommitted attribute updates. More... | |
void | updateFeatureGeometry (QgsFeature &f) |
Update feature with uncommitted geometry updates. More... | |
void | updateFields (QgsFields &fields) |
void | updateLayerFields () |
Protected Attributes | |
QgsVectorLayer * | L = nullptr |
QList< QgsField > | mAddedAttributes |
Added attributes fields which are not committed. More... | |
QgsFeatureMap | mAddedFeatures |
New features which are not committed. More... | |
QgsChangedAttributesMap | mChangedAttributeValues |
Changed attributes values which are not committed. More... | |
QgsGeometryMap | mChangedGeometries |
Changed geometries which are not committed. More... | |
QgsAttributeList | mDeletedAttributeIds |
Deleted attributes fields which are not committed. The list is kept sorted. More... | |
QgsFeatureIds | mDeletedFeatureIds |
Deleted feature IDs which are not committed. More... | |
QgsFieldNameMap | mRenamedAttributes |
Renamed attributes which are not committed. More... | |
Definition at line 36 of file qgsvectorlayereditbuffer.h.
QgsVectorLayerEditBuffer::QgsVectorLayerEditBuffer | ( | QgsVectorLayer * | layer | ) |
Definition at line 38 of file qgsvectorlayereditbuffer.cpp.
|
protecteddefault |
Constructor for QgsVectorLayerEditBuffer.
|
virtual |
Add an attribute field (but does not commit it) returns true if the field was added.
Reimplemented in QgsVectorLayerEditPassthrough.
Definition at line 255 of file qgsvectorlayereditbuffer.cpp.
|
inline |
Returns a list of added attributes fields which are not committed.
Definition at line 157 of file qgsvectorlayereditbuffer.h.
|
inline |
Returns a map of new features which are not committed.
Definition at line 116 of file qgsvectorlayereditbuffer.h.
|
virtual |
Adds a feature.
f | feature to add |
true
in case of success and False in case of error Reimplemented in QgsVectorLayerEditPassthrough.
Definition at line 115 of file qgsvectorlayereditbuffer.cpp.
|
virtual |
Insert a copy of the given features into the layer (but does not commit it)
Reimplemented in QgsVectorLayerEditPassthrough.
Definition at line 131 of file qgsvectorlayereditbuffer.cpp.
|
signal |
|
signal |
|
signal |
Emitted when an attribute has been renamed.
idx | attribute index |
newName | new attribute name |
|
signal |
|
virtual |
Changed an attribute value (but does not commit it)
Reimplemented in QgsVectorLayerEditPassthrough.
Definition at line 233 of file qgsvectorlayereditbuffer.cpp.
|
virtual |
Changes values of attributes (but does not commit it).
true
if attributes are well updated, false
otherwise Reimplemented in QgsVectorLayerEditPassthrough.
Definition at line 215 of file qgsvectorlayereditbuffer.cpp.
|
inline |
Returns a map of features with changed attributes values which are not committed.
Definition at line 130 of file qgsvectorlayereditbuffer.h.
|
inline |
Returns a map of features with changed geometries which are not committed.
Definition at line 163 of file qgsvectorlayereditbuffer.h.
|
virtual |
Change feature's geometry.
Reimplemented in QgsVectorLayerEditPassthrough.
Definition at line 194 of file qgsvectorlayereditbuffer.cpp.
|
virtual |
Attempts to commit any changes to disk.
Returns the result of the attempt. If a commit fails, the in-memory changes are left alone.
This allows editing to continue if the commit failed on e.g. a disallowed value in a Postgres database - the user can re-edit and try again.
The commits occur in distinct stages, (add attributes, add features, change attribute values, change geometries, delete features, delete attributes) so if a stage fails, it's difficult to roll back cleanly. Therefore any error message also includes which stage failed so that the user has some chance of repairing the damage cleanly.
Reimplemented in QgsVectorLayerEditPassthrough.
Definition at line 323 of file qgsvectorlayereditbuffer.cpp.
|
signal |
|
signal |
Signals emitted after committing changes.
|
signal |
Emitted after committing an attribute rename.
layerId | ID of layer |
renamedAttributes | map of field index to new name |
|
signal |
|
signal |
|
signal |
|
signal |
|
virtual |
Delete an attribute field (but does not commit it)
Reimplemented in QgsVectorLayerEditPassthrough.
Definition at line 278 of file qgsvectorlayereditbuffer.cpp.
|
inline |
Returns a list of deleted attributes fields which are not committed.
The list is kept sorted.
Definition at line 144 of file qgsvectorlayereditbuffer.h.
|
inline |
Returns a list of deleted feature IDs which are not committed.
Definition at line 177 of file qgsvectorlayereditbuffer.h.
|
virtual |
Delete a feature from the layer (but does not commit it)
Reimplemented in QgsVectorLayerEditPassthrough.
Definition at line 148 of file qgsvectorlayereditbuffer.cpp.
|
virtual |
Deletes a set of features from the layer (but does not commit it)
Reimplemented in QgsVectorLayerEditPassthrough.
Definition at line 177 of file qgsvectorlayereditbuffer.cpp.
|
signal |
|
signal |
|
signal |
Emitted when a feature's geometry is changed.
fid | feature ID |
geom | new feature geometry |
|
protected |
Update added and changed features after addition of an attribute.
Definition at line 730 of file qgsvectorlayereditbuffer.cpp.
|
protected |
Update added and changed features after removal of an attribute.
Definition at line 764 of file qgsvectorlayereditbuffer.cpp.
|
inline |
Returns true
if the specified attribute has been deleted but not committed.
index | attribute index |
Definition at line 152 of file qgsvectorlayereditbuffer.h.
|
inline |
Returns true
if the specified feature ID has been added but not committed.
id | feature ID |
Definition at line 124 of file qgsvectorlayereditbuffer.h.
|
inline |
Returns true
if the specified feature ID has had an attribute changed but not committed.
id | feature ID |
Definition at line 138 of file qgsvectorlayereditbuffer.h.
|
inline |
Returns true
if the specified feature ID has been deleted but not committed.
id | feature ID |
Definition at line 185 of file qgsvectorlayereditbuffer.h.
|
inline |
Returns true
if the specified feature ID has had its geometry changed but not committed.
id | feature ID |
Definition at line 171 of file qgsvectorlayereditbuffer.h.
|
virtual |
Returns true
if the provider has been modified since the last commit.
Reimplemented in QgsVectorLayerEditPassthrough.
Definition at line 44 of file qgsvectorlayereditbuffer.cpp.
|
signal |
Emitted when modifications has been done on layer.
|
virtual |
Renames an attribute field (but does not commit it)
attr | attribute index |
newName | new name of field |
Reimplemented in QgsVectorLayerEditPassthrough.
Definition at line 300 of file qgsvectorlayereditbuffer.cpp.
|
virtual |
Stop editing and discard the edits.
Reimplemented in QgsVectorLayerEditPassthrough.
Definition at line 697 of file qgsvectorlayereditbuffer.cpp.
|
protectedslot |
Definition at line 50 of file qgsvectorlayereditbuffer.cpp.
|
protected |
Updates an index in an attribute map to a new value (for updates of changed attributes)
Definition at line 810 of file qgsvectorlayereditbuffer.cpp.
|
protected |
Update feature with uncommitted attribute updates.
Definition at line 88 of file qgsvectorlayereditbuffer.cpp.
|
protected |
Update feature with uncommitted geometry updates.
Definition at line 81 of file qgsvectorlayereditbuffer.cpp.
|
protected |
Definition at line 58 of file qgsvectorlayereditbuffer.cpp.
|
protected |
Definition at line 823 of file qgsvectorlayereditbuffer.cpp.
|
friend |
Definition at line 307 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 260 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 262 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 267 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 263 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 266 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 265 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 268 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 264 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 269 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 271 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 277 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 272 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 275 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 276 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 274 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 278 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 273 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 279 of file qgsvectorlayereditbuffer.h.
|
friend |
Definition at line 280 of file qgsvectorlayereditbuffer.h.
|
protected |
Definition at line 259 of file qgsvectorlayereditbuffer.h.
|
protected |
Added attributes fields which are not committed.
Definition at line 299 of file qgsvectorlayereditbuffer.h.
|
protected |
New features which are not committed.
Definition at line 290 of file qgsvectorlayereditbuffer.h.
|
protected |
Changed attributes values which are not committed.
Definition at line 293 of file qgsvectorlayereditbuffer.h.
|
protected |
Changed geometries which are not committed.
Definition at line 305 of file qgsvectorlayereditbuffer.h.
|
protected |
Deleted attributes fields which are not committed. The list is kept sorted.
Definition at line 296 of file qgsvectorlayereditbuffer.h.
|
protected |
Deleted feature IDs which are not committed.
Note a feature can be added and then deleted again before the change is committed - in that case the added feature would be removed from mAddedFeatures only and not entered here.
Definition at line 287 of file qgsvectorlayereditbuffer.h.
|
protected |
Renamed attributes which are not committed.
Definition at line 302 of file qgsvectorlayereditbuffer.h.