QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
src
core
layout
qgslayoutserializableobject.cpp
Go to the documentation of this file.
1
/***************************************************************************
2
qgslayoutserializableobject.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 "
qgslayoutserializableobject.h
"
19
#include "
qgsreadwritecontext.h
"
20
#include "
qgslayout.h
"
21
#include "
qgsproject.h
"
22
24
class
QgsLayoutSerializableObjectUndoCommand:
public
QgsAbstractLayoutUndoCommand
25
{
26
public
:
27
28
QgsLayoutSerializableObjectUndoCommand(
QgsLayoutSerializableObject
*
object
,
const
QString &text,
int
id
, QUndoCommand *parent
SIP_TRANSFERTHIS
=
nullptr
)
29
:
QgsAbstractLayoutUndoCommand
( text, id, parent )
30
, mObject( object )
31
{}
32
33
bool
mergeWith(
const
QUndoCommand *command )
override
34
{
35
if
( command->id() == 0 )
36
return
false
;
37
38
const
QgsLayoutSerializableObjectUndoCommand *
c
=
dynamic_cast<
const
QgsLayoutSerializableObjectUndoCommand *
>
( command );
39
if
( !
c
)
40
{
41
return
false
;
42
}
43
44
if
( mObject->stringType() !=
c
->mObject->stringType() )
45
return
false
;
46
47
setAfterState
(
c
->afterState() );
48
return
true
;
49
}
50
51
protected
:
52
53
void
saveState
( QDomDocument &stateDoc )
const override
54
{
55
stateDoc.clear();
56
QDomElement documentElement = stateDoc.createElement( QStringLiteral(
"UndoState"
) );
57
mObject->writeXml( documentElement, stateDoc,
QgsReadWriteContext
() );
58
stateDoc.appendChild( documentElement );
59
}
60
void
restoreState
( QDomDocument &stateDoc )
override
61
{
62
if
( !mObject )
63
{
64
return
;
65
}
66
67
mObject->readXml( stateDoc.documentElement().firstChild().toElement(), stateDoc,
QgsReadWriteContext
() );
68
mObject->layout()->project()->setDirty(
true
);
69
}
70
71
private
:
72
73
QgsLayoutSerializableObject
*mObject =
nullptr
;
74
};
76
77
78
QgsAbstractLayoutUndoCommand
*
QgsLayoutSerializableObject::createCommand
(
const
QString &text,
int
id
, QUndoCommand *parent )
79
{
80
return
new
QgsLayoutSerializableObjectUndoCommand
(
this
, text,
id
, parent );
81
}
QgsAbstractLayoutUndoCommand::saveState
virtual void saveState(QDomDocument &stateDoc) const =0
Saves the state of the object to the specified stateDoc.
QgsReadWriteContext
The class is used as a container of context for various read/write operations on other objects.
Definition:
qgsreadwritecontext.h:34
qgsreadwritecontext.h
QgsLayoutSerializableObject::QgsLayoutSerializableObjectUndoCommand
friend class QgsLayoutSerializableObjectUndoCommand
Definition:
qgslayoutserializableobject.h:67
QgsAbstractLayoutUndoCommand::restoreState
virtual void restoreState(QDomDocument &stateDoc)=0
Restores the state of the object from the specified stateDoc.
qgslayoutserializableobject.h
qgslayout.h
QgsLayoutSerializableObject
An interface for layout objects which can be stored and read from DOM elements.
Definition:
qgslayoutserializableobject.h:35
QgsAbstractLayoutUndoCommand
Base class for commands to undo/redo layout and layout object changes.
Definition:
qgslayoutundocommand.h:34
c
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
Definition:
porting_processing.dox:1
QgsLayoutSerializableObject::createCommand
QgsAbstractLayoutUndoCommand * createCommand(const QString &text, int id, QUndoCommand *parent=nullptr) override
Creates a new layout undo command with the specified text and parent.
Definition:
qgslayoutserializableobject.cpp:78
QgsAbstractLayoutUndoCommand::setAfterState
void setAfterState(const QDomDocument &stateDoc)
Manually sets the after state for the command.
Definition:
qgslayoutundocommand.cpp:58
SIP_TRANSFERTHIS
#define SIP_TRANSFERTHIS
Definition:
qgis_sip.h:53
qgsproject.h
Generated on Sun Sep 11 2022 00:03:17 for QGIS API Documentation by
1.8.17