Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgshtmlannotation.h 3 : : ------------------------ 4 : : begin : February 9, 2010 5 : : copyright : (C) 2010 by Marco Hugentobler 6 : : email : marco dot hugentobler at hugis dot net 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 : : #ifndef QGSHTMLANNOTATION_H 19 : : #define QGSHTMLANNOTATION_H 20 : : 21 : : #include "qgsannotation.h" 22 : : #include "qgsfeature.h" 23 : : 24 : : #include "qgis_core.h" 25 : : 26 : : class QgsWebPage; 27 : : 28 : : /** 29 : : * \class QgsHtmlAnnotation 30 : : * \ingroup core 31 : : * \brief An annotation item that embeds HTML content. 32 : : * \since QGIS 3.0 33 : : */ 34 : : 35 : : class CORE_EXPORT QgsHtmlAnnotation: public QgsAnnotation 36 : : { 37 : : Q_OBJECT 38 : : public: 39 : : 40 : : /** 41 : : * Constructor for QgsHtmlAnnotation. 42 : : */ 43 : : QgsHtmlAnnotation( QObject *parent SIP_TRANSFERTHIS = nullptr ); 44 : : 45 : : QgsHtmlAnnotation *clone() const override SIP_FACTORY; 46 : : 47 : : QSizeF minimumFrameSize() const override; 48 : : 49 : : /** 50 : : * Sets the file path for the source HTML file. 51 : : * \see sourceFile() 52 : : */ 53 : : void setSourceFile( const QString &htmlFile ); 54 : : 55 : : /** 56 : : * Returns the file path for the source HTML file. 57 : : * \see setSourceFile() 58 : : */ 59 : 0 : QString sourceFile() const { return mHtmlFile; } 60 : : 61 : : void writeXml( QDomElement &elem, QDomDocument &doc, const QgsReadWriteContext &context ) const override; 62 : : void readXml( const QDomElement &itemElem, const QgsReadWriteContext &context ) override; 63 : : 64 : : void setAssociatedFeature( const QgsFeature &feature ) override; 65 : : 66 : : /** 67 : : * Returns a new QgsHtmlAnnotation object. 68 : : */ 69 : 0 : static QgsHtmlAnnotation *create() SIP_FACTORY { return new QgsHtmlAnnotation(); } 70 : : 71 : : protected: 72 : : 73 : : void renderAnnotation( QgsRenderContext &context, QSizeF size ) const override; 74 : : 75 : : private slots: 76 : : 77 : : void javascript(); 78 : : 79 : : private: 80 : : QgsWebPage *mWebPage = nullptr; 81 : : QString mHtmlFile; 82 : : QString mHtmlSource; 83 : : 84 : : }; 85 : : 86 : : #endif // QGSHTMLANNOTATION_H