mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
62 lines
1.9 KiB
Plaintext
62 lines
1.9 KiB
Plaintext
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/gui/qgscomposerinterface.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
class QgsComposerInterface: QObject
|
|
{
|
|
%Docstring
|
|
A common interface for composer dialogs.
|
|
|
|
Provides a common interface and stable API for composer editor dialogs.
|
|
This interface can be used by plugins and scripts to interact with
|
|
open composer dialogs.
|
|
|
|
.. versionadded:: 3.0
|
|
%End
|
|
|
|
%TypeHeaderCode
|
|
#include "qgscomposerinterface.h"
|
|
%End
|
|
public:
|
|
|
|
QgsComposerInterface( QObject *parent /TransferThis/ = 0 );
|
|
%Docstring
|
|
Constructor for QgsComposerInterface.
|
|
%End
|
|
|
|
virtual ~QgsComposerInterface();
|
|
|
|
virtual QgsComposerView *view() = 0;
|
|
%Docstring
|
|
Returns the composer's QgsComposerView editor widget.
|
|
:rtype: QgsComposerView
|
|
%End
|
|
|
|
virtual QgsComposition *composition() = 0;
|
|
%Docstring
|
|
Returns the composition displated in the composer.
|
|
:rtype: QgsComposition
|
|
%End
|
|
|
|
virtual void close() = 0;
|
|
%Docstring
|
|
Closes the composer window.
|
|
%End
|
|
|
|
};
|
|
|
|
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/gui/qgscomposerinterface.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|