Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgslayoutundocommand.cpp 3 : : ------------------------ 4 : : begin : July 2017 5 : : copyright : (C) 2017 by Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #include "qgslayoutundocommand.h" 19 : : 20 : : 21 : 0 : QgsAbstractLayoutUndoCommand::QgsAbstractLayoutUndoCommand( const QString &text, int id, QUndoCommand *parent ) 22 : 0 : : QUndoCommand( text, parent ) 23 : 0 : , mId( id ) 24 : 0 : {} 25 : : 26 : 0 : void QgsAbstractLayoutUndoCommand::undo() 27 : : { 28 : 0 : QUndoCommand::undo(); 29 : 0 : restoreState( mBeforeState ); 30 : 0 : } 31 : : 32 : 0 : void QgsAbstractLayoutUndoCommand::redo() 33 : : { 34 : 0 : if ( mFirstRun ) 35 : : { 36 : 0 : mFirstRun = false; 37 : 0 : return; 38 : : } 39 : 0 : QUndoCommand::redo(); 40 : 0 : restoreState( mAfterState ); 41 : 0 : } 42 : : 43 : 0 : void QgsAbstractLayoutUndoCommand::saveBeforeState() 44 : : { 45 : 0 : saveState( mBeforeState ); 46 : 0 : } 47 : : 48 : 0 : void QgsAbstractLayoutUndoCommand::saveAfterState() 49 : : { 50 : 0 : saveState( mAfterState ); 51 : 0 : } 52 : : 53 : 0 : bool QgsAbstractLayoutUndoCommand::containsChange() const 54 : : { 55 : 0 : return !( mBeforeState.isNull() || mAfterState.isNull() || mBeforeState.toString() == mAfterState.toString() ); 56 : 0 : } 57 : : 58 : 0 : void QgsAbstractLayoutUndoCommand::setAfterState( const QDomDocument &stateDoc ) 59 : : { 60 : 0 : mAfterState = stateDoc; 61 : 0 : }