QGIS/python/core/composer/qgscomposermultiframecommand.sip
Denis Rouzaud c604d2dda6 run sipify
2017-12-15 22:13:44 -04:00

100 lines
2.8 KiB
Plaintext

/************************************************************************
* This file has been generated automatically from *
* *
* src/core/composer/qgscomposermultiframecommand.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
class QgsComposerMultiFrameCommand: QUndoCommand
{
%TypeHeaderCode
#include "qgscomposermultiframecommand.h"
%End
public:
QgsComposerMultiFrameCommand( QgsComposerMultiFrame *multiFrame, const QString &text, QUndoCommand *parent /TransferThis/ = 0 );
%Docstring
Constructor for QgsComposerMultiFrameCommand
%End
virtual void undo();
virtual void redo();
void savePreviousState();
void saveAfterState();
QDomDocument previousState() const;
QDomDocument afterState() const;
bool containsChange() const;
%Docstring
Returns true if previous state and after state are valid and different
%End
const QgsComposerMultiFrame *multiFrame() const;
protected:
QgsComposerMultiFrameCommand(); //forbidden
void saveState( QDomDocument &stateDoc );
void restoreState( QDomDocument &stateDoc );
bool checkFirstRun();
};
class QgsComposerMultiFrameMergeCommand: QgsComposerMultiFrameCommand
{
%Docstring
A composer command that merges together with other commands having the same context (=id)
for multi frame items. Keeps the oldest previous state and uses the newest after state.
The purpose is to avoid too many micro changes in the history*
%End
%TypeHeaderCode
#include "qgscomposermultiframecommand.h"
%End
public:
enum Context
{
Unknown,
//composer
HtmlSource,
HtmlStylesheet,
HtmlBreakDistance,
//attribute
TableMaximumFeatures,
TableMargin,
TableGridStrokeWidth,
TableCellStyle,
TableHeaderFontColor,
TableContentFontColor,
TableGridColor,
TableBackgroundColor,
};
QgsComposerMultiFrameMergeCommand( Context c, QgsComposerMultiFrame *multiFrame, const QString &text );
virtual bool mergeWith( const QUndoCommand *command );
virtual int id() const;
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/composer/qgscomposermultiframecommand.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/