QGIS API Documentation  2.8.2-Wien
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgscomposermultiframecommand.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgscomposermultiframecommand.cpp
3  --------------------------------
4  begin : 2012-08-02
5  copyright : (C) 2012 by Marco Hugentobler
6  email : marco dot hugentobler at sourcepole dot ch
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 
19 #include "qgscomposermultiframe.h"
20 #include "qgsproject.h"
21 
22 QgsComposerMultiFrameCommand::QgsComposerMultiFrameCommand( QgsComposerMultiFrame* multiFrame, const QString& text, QUndoCommand* parent ):
23  QUndoCommand( text, parent ), mMultiFrame( multiFrame ), mFirstRun( true )
24 {
25 }
26 
27 QgsComposerMultiFrameCommand::QgsComposerMultiFrameCommand(): QUndoCommand( "", 0 ), mMultiFrame( 0 ), mFirstRun( false )
28 {
29 }
30 
32 {
33 }
34 
36 {
38 }
39 
41 {
42  if ( checkFirstRun() )
43  {
44  return;
45  }
47 }
48 
50 {
52 }
53 
55 {
57 }
58 
59 void QgsComposerMultiFrameCommand::saveState( QDomDocument& stateDoc )
60 {
61  if ( mMultiFrame )
62  {
63  stateDoc.clear();
64  QDomElement documentElement = stateDoc.createElement( "ComposerMultiFrameState" );
65  mMultiFrame->writeXML( documentElement, stateDoc );
66  stateDoc.appendChild( documentElement );
67  }
68 }
69 
70 void QgsComposerMultiFrameCommand::restoreState( QDomDocument& stateDoc )
71 {
72  if ( mMultiFrame )
73  {
74  mMultiFrame->readXML( stateDoc.documentElement().firstChild().toElement(), stateDoc );
75  QgsProject::instance()->dirty( true );
76  }
77 }
78 
80 {
81  if ( !mFirstRun )
82  {
83  return false;
84  }
85  mFirstRun = false;
86  return true;
87 }
88 
90 {
91  return !( mPreviousState.isNull() || mAfterState.isNull() || mPreviousState.toString() == mAfterState.toString() );
92 }
93 
94 
96  : QgsComposerMultiFrameCommand( multiFrame, text )
97  , mContext( c )
98 {
99 
100 }
101 
103 {
104 
105 }
106 
107 bool QgsComposerMultiFrameMergeCommand::mergeWith( const QUndoCommand *command )
108 {
109  const QgsComposerMultiFrameCommand* c = dynamic_cast<const QgsComposerMultiFrameCommand*>( command );
110  if ( !c || mMultiFrame != c->multiFrame() )
111  {
112  return false;
113  }
114  mAfterState = c->afterState();
115  return true;
116 }