1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/annotations/qgshtmlannotation.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsHtmlAnnotation: QgsAnnotation
{
%Docstring(signature="appended")
An annotation item that embeds HTML content.
%End
%TypeHeaderCode
#include "qgshtmlannotation.h"
%End
public:
QgsHtmlAnnotation( QObject *parent /TransferThis/ = 0 );
%Docstring
Constructor for QgsHtmlAnnotation.
%End
virtual QgsHtmlAnnotation *clone() const /Factory/;
virtual QSizeF minimumFrameSize() const;
void setSourceFile( const QString &htmlFile );
%Docstring
Sets the file path for the source HTML file.
.. seealso:: :py:func:`sourceFile`
%End
QString sourceFile() const;
%Docstring
Returns the file path for the source HTML file.
.. seealso:: :py:func:`setSourceFile`
%End
void setHtmlSource( const QString &htmlSource );
%Docstring
Sets the html source directly (not coming from a file)
:param htmlSource:
%End
QString htmlSource() const;
%Docstring
Returns html source text
%End
virtual void writeXml( QDomElement &elem, QDomDocument &doc, const QgsReadWriteContext &context ) const;
virtual void readXml( const QDomElement &itemElem, const QgsReadWriteContext &context );
virtual void setAssociatedFeature( const QgsFeature &feature );
static QgsHtmlAnnotation *create() /Factory/;
%Docstring
Returns a new QgsHtmlAnnotation object.
%End
protected:
virtual void renderAnnotation( QgsRenderContext &context, QSizeF size ) const;
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/annotations/qgshtmlannotation.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|