Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsvectorlayereditpassthrough.cpp 3 : : --------------------- 4 : : begin : Jan 12 2015 5 : : copyright : (C) 2015 by Sandro Mani 6 : : email : manisandro at gmail dot com 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 : : #include "qgsvectorlayereditpassthrough.h" 17 : : #include "qgsvectorlayer.h" 18 : : #include "qgsvectordataprovider.h" 19 : : #include "qgsvectorlayerundopassthroughcommand.h" 20 : : #include "qgstransaction.h" 21 : : 22 : 0 : QgsVectorLayerEditPassthrough::QgsVectorLayerEditPassthrough( QgsVectorLayer *layer ) 23 : 0 : : mModified( false ) 24 : 0 : { 25 : 0 : L = layer; 26 : 0 : } 27 : : 28 : 0 : bool QgsVectorLayerEditPassthrough::isModified() const 29 : : { 30 : 0 : return mModified; 31 : : } 32 : : 33 : 0 : bool QgsVectorLayerEditPassthrough::modify( QgsVectorLayerUndoPassthroughCommand *cmd ) 34 : : { 35 : 0 : L->undoStack()->push( cmd ); // push takes ownership -> no need for cmd to be a smart ptr 36 : 0 : if ( cmd->hasError() ) 37 : 0 : return false; 38 : : 39 : 0 : if ( !mModified ) 40 : : { 41 : 0 : mModified = true; 42 : 0 : emit layerModified(); 43 : 0 : } 44 : : 45 : 0 : return true; 46 : 0 : } 47 : : 48 : 0 : bool QgsVectorLayerEditPassthrough::addFeature( QgsFeature &f ) 49 : : { 50 : 0 : QgsVectorLayerUndoPassthroughCommandAddFeatures *cmd = new QgsVectorLayerUndoPassthroughCommandAddFeatures( this, QgsFeatureList() << f ); 51 : 0 : if ( !modify( cmd ) ) // modify takes owneship -> no need for cmd to be a smart ptr 52 : 0 : return false; 53 : : 54 : 0 : const QgsFeatureList features = cmd->features(); 55 : 0 : f = features.at( features.count() - 1 ); 56 : 0 : return true; 57 : 0 : } 58 : : 59 : 0 : bool QgsVectorLayerEditPassthrough::addFeatures( QgsFeatureList &features ) 60 : : { 61 : 0 : QgsVectorLayerUndoPassthroughCommandAddFeatures *cmd = new QgsVectorLayerUndoPassthroughCommandAddFeatures( this, features ); 62 : 0 : if ( !modify( cmd ) ) // modify takes owneship -> no need for cmd to be a smart ptr 63 : 0 : return false; 64 : : 65 : 0 : features = cmd->features(); 66 : 0 : return true; 67 : 0 : } 68 : : 69 : 0 : bool QgsVectorLayerEditPassthrough::deleteFeature( QgsFeatureId fid ) 70 : : { 71 : 0 : return modify( new QgsVectorLayerUndoPassthroughCommandDeleteFeatures( this, QgsFeatureIds() << fid ) ); 72 : 0 : } 73 : : 74 : 0 : bool QgsVectorLayerEditPassthrough::deleteFeatures( const QgsFeatureIds &fids ) 75 : : { 76 : 0 : return modify( new QgsVectorLayerUndoPassthroughCommandDeleteFeatures( this, fids ) ); 77 : 0 : } 78 : : 79 : 0 : bool QgsVectorLayerEditPassthrough::changeGeometry( QgsFeatureId fid, const QgsGeometry &geom ) 80 : : { 81 : 0 : return modify( new QgsVectorLayerUndoPassthroughCommandChangeGeometry( this, fid, geom ) ); 82 : 0 : } 83 : : 84 : 0 : bool QgsVectorLayerEditPassthrough::changeAttributeValue( QgsFeatureId fid, int field, const QVariant &newValue, const QVariant &/*oldValue*/ ) 85 : : { 86 : 0 : return modify( new QgsVectorLayerUndoPassthroughCommandChangeAttribute( this, fid, field, newValue ) ); 87 : 0 : } 88 : : 89 : 0 : bool QgsVectorLayerEditPassthrough::changeAttributeValues( QgsFeatureId fid, const QgsAttributeMap &newValues, const QgsAttributeMap &oldValues ) 90 : : { 91 : 0 : return modify( new QgsVectorLayerUndoPassthroughCommandChangeAttributes( this, fid, newValues, oldValues ) ); 92 : 0 : } 93 : : 94 : 0 : bool QgsVectorLayerEditPassthrough::addAttribute( const QgsField &field ) 95 : : { 96 : 0 : return modify( new QgsVectorLayerUndoPassthroughCommandAddAttribute( this, field ) ); 97 : 0 : } 98 : : 99 : 0 : bool QgsVectorLayerEditPassthrough::deleteAttribute( int attr ) 100 : : { 101 : 0 : return modify( new QgsVectorLayerUndoPassthroughCommandDeleteAttribute( this, attr ) ); 102 : 0 : } 103 : : 104 : 0 : bool QgsVectorLayerEditPassthrough::renameAttribute( int attr, const QString &newName ) 105 : : { 106 : 0 : return modify( new QgsVectorLayerUndoPassthroughCommandRenameAttribute( this, attr, newName ) ); 107 : 0 : } 108 : : 109 : 0 : bool QgsVectorLayerEditPassthrough::commitChanges( QStringList & /*commitErrors*/ ) 110 : : { 111 : 0 : mModified = false; 112 : 0 : return true; 113 : : } 114 : : 115 : 0 : void QgsVectorLayerEditPassthrough::rollBack() 116 : : { 117 : 0 : mModified = false; 118 : 0 : } 119 : : 120 : 0 : bool QgsVectorLayerEditPassthrough::update( QgsTransaction *tr, const QString &sql, const QString &name ) 121 : : { 122 : 0 : return modify( new QgsVectorLayerUndoPassthroughCommandUpdate( this, tr, sql, name ) ); 123 : 0 : }