Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgslayoutundostack.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 "qgslayoutundostack.h" 19 : : #include "qgslayout.h" 20 : : #include "qgsproject.h" 21 : : #include <QUndoStack> 22 : : 23 : 0 : QgsLayoutUndoStack::QgsLayoutUndoStack( QgsLayout *layout ) 24 : 0 : : mLayout( layout ) 25 : 0 : , mUndoStack( new QUndoStack( layout ) ) 26 : 0 : { 27 : 0 : connect( mUndoStack.get(), &QUndoStack::indexChanged, this, &QgsLayoutUndoStack::indexChanged ); 28 : 0 : } 29 : : 30 : 0 : void QgsLayoutUndoStack::beginMacro( const QString &commandText ) 31 : : { 32 : 0 : if ( mBlockedCommands == 0 ) 33 : 0 : mUndoStack->beginMacro( commandText ); 34 : 0 : } 35 : : 36 : 0 : void QgsLayoutUndoStack::endMacro() 37 : : { 38 : 0 : if ( mBlockedCommands == 0 ) 39 : 0 : mUndoStack->endMacro(); 40 : 0 : } 41 : : 42 : 0 : void QgsLayoutUndoStack::beginCommand( QgsLayoutUndoObjectInterface *object, const QString &commandText, int id ) 43 : : { 44 : 0 : if ( !object ) 45 : : { 46 : 0 : return; 47 : : } 48 : : 49 : 0 : mActiveCommands.emplace_back( std::unique_ptr< QgsAbstractLayoutUndoCommand >( object->createCommand( commandText, id, nullptr ) ) ); 50 : 0 : mActiveCommands.back()->saveBeforeState(); 51 : 0 : } 52 : : 53 : 0 : void QgsLayoutUndoStack::endCommand() 54 : : { 55 : 0 : if ( mActiveCommands.empty() ) 56 : 0 : return; 57 : : 58 : 0 : mActiveCommands.back()->saveAfterState(); 59 : 0 : if ( mBlockedCommands == 0 && mActiveCommands.back()->containsChange() ) //protect against empty commands 60 : : { 61 : 0 : mUndoStack->push( mActiveCommands.back().release() ); 62 : 0 : mLayout->project()->setDirty( true ); 63 : 0 : } 64 : : 65 : 0 : mActiveCommands.pop_back(); 66 : 0 : } 67 : : 68 : 0 : void QgsLayoutUndoStack::cancelCommand() 69 : : { 70 : 0 : if ( mActiveCommands.empty() ) 71 : 0 : return; 72 : : 73 : 0 : mActiveCommands.pop_back(); 74 : 0 : } 75 : : 76 : 0 : QUndoStack *QgsLayoutUndoStack::stack() 77 : : { 78 : 0 : return mUndoStack.get(); 79 : : } 80 : : 81 : 0 : void QgsLayoutUndoStack::notifyUndoRedoOccurred( QgsLayoutItem *item ) 82 : : { 83 : 0 : mUndoRedoOccurredItemUuids.insert( item->uuid() ); 84 : 0 : } 85 : : 86 : 0 : void QgsLayoutUndoStack::blockCommands( bool blocked ) 87 : : { 88 : 0 : if ( blocked ) 89 : : { 90 : 0 : mBlockedCommands++; 91 : 0 : } 92 : : else 93 : : { 94 : 0 : if ( mBlockedCommands > 0 ) 95 : 0 : mBlockedCommands--; 96 : : } 97 : 0 : } 98 : : 99 : 0 : bool QgsLayoutUndoStack::isBlocked() const 100 : : { 101 : 0 : return mBlockedCommands > 0; 102 : : } 103 : : 104 : 0 : void QgsLayoutUndoStack::push( QUndoCommand *cmd ) 105 : : { 106 : 0 : if ( mBlockedCommands > 0 ) 107 : 0 : delete cmd; 108 : : else 109 : : { 110 : 0 : mUndoStack->push( cmd ); 111 : 0 : mLayout->project()->setDirty( true ); 112 : : } 113 : 0 : } 114 : : 115 : 0 : void QgsLayoutUndoStack::indexChanged() 116 : : { 117 : 0 : if ( mUndoRedoOccurredItemUuids.empty() ) 118 : 0 : return; 119 : : 120 : 0 : emit undoRedoOccurredForItems( mUndoRedoOccurredItemUuids ); 121 : 0 : mUndoRedoOccurredItemUuids.clear(); 122 : 0 : }