QGIS API Documentation  3.16.0-Hannover (43b64b13f3)
qgshtmlannotation.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgshtmlannotation.h
3  ------------------------
4  begin : February 26, 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 #include "qgshtmlannotation.h"
19 #include "qgsfeature.h"
20 #include "qgsfeatureiterator.h"
21 #include "qgslogger.h"
22 #include "qgsproject.h"
23 #include "qgsvectorlayer.h"
24 #include "qgsexpression.h"
26 #include "qgswebpage.h"
27 #include "qgswebframe.h"
29 
30 #include <QDomElement>
31 #include <QDir>
32 #include <QFile>
33 #include <QFileInfo>
34 #include <QGraphicsProxyWidget>
35 #include <QPainter>
36 #include <QSettings>
37 #include <QWidget>
38 
39 
41  : QgsAnnotation( parent )
42 {
43  mWebPage = new QgsWebPage();
44  mWebPage->mainFrame()->setScrollBarPolicy( Qt::Horizontal, Qt::ScrollBarAlwaysOff );
45  mWebPage->mainFrame()->setScrollBarPolicy( Qt::Vertical, Qt::ScrollBarAlwaysOff );
46  mWebPage->setNetworkAccessManager( QgsNetworkAccessManager::instance() );
47 
48  connect( mWebPage->mainFrame(), &QWebFrame::javaScriptWindowObjectCleared, this, &QgsHtmlAnnotation::javascript );
49 }
50 
52 {
53  std::unique_ptr< QgsHtmlAnnotation > c( new QgsHtmlAnnotation() );
54  copyCommonProperties( c.get() );
55  c->setSourceFile( mHtmlFile );
56  return c.release();
57 }
58 
59 void QgsHtmlAnnotation::setSourceFile( const QString &htmlFile )
60 {
61  QFile file( htmlFile );
62  mHtmlFile = htmlFile;
63  if ( !file.open( QIODevice::ReadOnly | QIODevice::Text ) )
64  {
65  mHtmlSource.clear();
66  }
67  else
68  {
69  QTextStream in( &file );
70  in.setCodec( "UTF-8" );
71  mHtmlSource = in.readAll();
72  }
73 
74  file.close();
76  emit appearanceChanged();
77 }
78 
79 void QgsHtmlAnnotation::renderAnnotation( QgsRenderContext &context, QSizeF size ) const
80 {
81  if ( !context.painter() )
82  {
83  return;
84  }
85 
86  // scale painter back to 96 dpi, so layout prints match screen rendering
87  QgsScopedQPainterState painterState( context.painter() );
88  const double scaleFactor = context.painter()->device()->logicalDpiX() / 96.0;
89  context.painter()->scale( scaleFactor, scaleFactor );
90  size /= scaleFactor;
91 
92  mWebPage->setViewportSize( size.toSize() );
93  mWebPage->mainFrame()->render( context.painter() );
94 }
95 
97 {
98  if ( mWebPage )
99  {
100  QSizeF widgetMinSize = QSizeF( 0, 0 ); // mWebPage->minimumSize();
101  return QSizeF( contentsMargin().left() + contentsMargin().right() + widgetMinSize.width(),
102  contentsMargin().top() + contentsMargin().bottom() + widgetMinSize.height() );
103  }
104  else
105  {
106  return QSizeF( 0, 0 );
107  }
108 }
109 
110 void QgsHtmlAnnotation::writeXml( QDomElement &elem, QDomDocument &doc, const QgsReadWriteContext &context ) const
111 {
112  QDomElement formAnnotationElem = doc.createElement( QStringLiteral( "HtmlAnnotationItem" ) );
113  formAnnotationElem.setAttribute( QStringLiteral( "htmlfile" ), sourceFile() );
114 
115  _writeXml( formAnnotationElem, doc, context );
116  elem.appendChild( formAnnotationElem );
117 }
118 
119 void QgsHtmlAnnotation::readXml( const QDomElement &itemElem, const QgsReadWriteContext &context )
120 {
121  mHtmlFile = itemElem.attribute( QStringLiteral( "htmlfile" ), QString() );
122  QDomElement annotationElem = itemElem.firstChildElement( QStringLiteral( "AnnotationItem" ) );
123  if ( !annotationElem.isNull() )
124  {
125  _readXml( annotationElem, context );
126  }
127 
128  // upgrade old layer
129  if ( !mapLayer() && itemElem.hasAttribute( QStringLiteral( "vectorLayer" ) ) )
130  {
131  setMapLayer( QgsProject::instance()->mapLayer( itemElem.attribute( QStringLiteral( "vectorLayer" ) ) ) );
132  }
133 
134  if ( mWebPage )
135  {
136  setSourceFile( mHtmlFile );
137  }
138 }
139 
141 {
143  QString newText;
144  QgsVectorLayer *vectorLayer = qobject_cast< QgsVectorLayer * >( mapLayer() );
145  if ( feature.isValid() && vectorLayer )
146  {
148  context.setFeature( feature );
149  newText = QgsExpression::replaceExpressionText( mHtmlSource, &context );
150  }
151  else
152  {
153  newText = mHtmlSource;
154  }
155  mWebPage->mainFrame()->setHtml( newText );
156  emit appearanceChanged();
157 }
158 
159 void QgsHtmlAnnotation::javascript()
160 {
161  QWebFrame *frame = mWebPage->mainFrame();
162  frame->addToJavaScriptWindowObject( QStringLiteral( "layer" ), mapLayer() );
163 }
164 
165 
166 
QgsExpressionContext
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
Definition: qgsexpressioncontext.h:370
qgsexpressioncontextutils.h
QgsHtmlAnnotation::QgsHtmlAnnotation
QgsHtmlAnnotation(QObject *parent=nullptr)
Constructor for QgsHtmlAnnotation.
Definition: qgshtmlannotation.cpp:40
QgsAnnotation::_readXml
void _readXml(const QDomElement &annotationElem, const QgsReadWriteContext &context)
Reads common annotation properties from a DOM element.
Definition: qgsannotation.cpp:444
QgsAnnotation::contentsMargin
QgsMargins contentsMargin() const
Returns the margins (in millimeters) between the outside of the frame and the annotation content.
Definition: qgsannotation.h:231
QgsReadWriteContext
The class is used as a container of context for various read/write operations on other objects.
Definition: qgsreadwritecontext.h:35
qgsexpression.h
qgswebframe.h
qgsfeatureiterator.h
QgsHtmlAnnotation::clone
QgsHtmlAnnotation * clone() const override
Clones the annotation, returning a new copy of the annotation reflecting the annotation's current sta...
Definition: qgshtmlannotation.cpp:51
QgsHtmlAnnotation::setSourceFile
void setSourceFile(const QString &htmlFile)
Sets the file path for the source HTML file.
Definition: qgshtmlannotation.cpp:59
QgsHtmlAnnotation::renderAnnotation
void renderAnnotation(QgsRenderContext &context, QSizeF size) const override
Renders the annotation's contents to a target /a context at the specified /a size.
Definition: qgshtmlannotation.cpp:79
qgsfeature.h
QgsRenderContext
Contains information about the context of a rendering operation.
Definition: qgsrendercontext.h:58
QgsProject::instance
static QgsProject * instance()
Returns the QgsProject singleton instance.
Definition: qgsproject.cpp:468
QgsExpressionContextUtils::globalProjectLayerScopes
static QList< QgsExpressionContextScope * > globalProjectLayerScopes(const QgsMapLayer *layer)
Creates a list of three scopes: global, layer's project and layer.
Definition: qgsexpressioncontextutils.cpp:307
QgsAnnotation::mapLayer
QgsMapLayer * mapLayer() const
Returns the map layer associated with the annotation.
Definition: qgsannotation.h:286
QgsWebPage
QWebPage subclass which redirects JavaScript errors and console output to the QGIS message log.
Definition: qgswebpage.h:217
qgswebpage.h
QgsAnnotation
Abstract base class for annotation items which are drawn over a map.
Definition: qgsannotation.h:50
QgsHtmlAnnotation::sourceFile
QString sourceFile() const
Returns the file path for the source HTML file.
Definition: qgshtmlannotation.h:59
QgsFeature::isValid
bool isValid() const
Returns the validity of this feature.
Definition: qgsfeature.cpp:185
QgsHtmlAnnotation::readXml
void readXml(const QDomElement &itemElem, const QgsReadWriteContext &context) override
Restores the annotation's state from a DOM element.
Definition: qgshtmlannotation.cpp:119
qgsnetworkaccessmanager.h
QgsAnnotation::associatedFeature
QgsFeature associatedFeature() const
Returns the feature associated with the annotation, or an invalid feature if none has been set.
Definition: qgsannotation.h:301
QgsHtmlAnnotation::minimumFrameSize
QSizeF minimumFrameSize() const override
Returns the minimum frame size for the annotation.
Definition: qgshtmlannotation.cpp:96
QgsAnnotation::_writeXml
void _writeXml(QDomElement &itemElem, QDomDocument &doc, const QgsReadWriteContext &context) const
Writes common annotation properties to a DOM element.
Definition: qgsannotation.cpp:399
QgsHtmlAnnotation
An annotation item that embeds HTML content.
Definition: qgshtmlannotation.h:36
QgsScopedQPainterState
Scoped object for saving and restoring a QPainter object's state.
Definition: qgsrendercontext.h:1120
QgsAnnotation::setAssociatedFeature
virtual void setAssociatedFeature(const QgsFeature &feature)
Sets the feature associated with the annotation.
Definition: qgsannotation.cpp:181
QgsNetworkAccessManager::instance
static QgsNetworkAccessManager * instance(Qt::ConnectionType connectionType=Qt::BlockingQueuedConnection)
Returns a pointer to the active QgsNetworkAccessManager for the current thread.
Definition: qgsnetworkaccessmanager.cpp:121
qgshtmlannotation.h
qgsvectorlayer.h
QgsHtmlAnnotation::setAssociatedFeature
void setAssociatedFeature(const QgsFeature &feature) override
Sets the feature associated with the annotation.
Definition: qgshtmlannotation.cpp:140
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
QgsVectorLayer
Represents a vector layer which manages a vector based data sets.
Definition: qgsvectorlayer.h:387
QgsAnnotation::appearanceChanged
void appearanceChanged()
Emitted whenever the annotation's appearance changes.
QgsHtmlAnnotation::writeXml
void writeXml(QDomElement &elem, QDomDocument &doc, const QgsReadWriteContext &context) const override
Writes the annotation state to a DOM element.
Definition: qgshtmlannotation.cpp:110
QgsFeature
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
Definition: qgsfeature.h:56
qgslogger.h
QgsRenderContext::painter
QPainter * painter()
Returns the destination QPainter for the render operation.
Definition: qgsrendercontext.h:179
QgsExpression::replaceExpressionText
static QString replaceExpressionText(const QString &action, const QgsExpressionContext *context, const QgsDistanceArea *distanceArea=nullptr)
This function replaces each expression between [% and %] in the string with the result of its evaluat...
Definition: qgsexpression.cpp:430
qgsproject.h
QgsAnnotation::copyCommonProperties
void copyCommonProperties(QgsAnnotation *target) const
Copies common annotation properties to the targe annotation.
Definition: qgsannotation.cpp:546
QWebFrame
The QWebFrame class is a collection of stubs to mimic the API of a QWebFrame on systems where QtWebki...
Definition: qgswebframe.h:38
QgsExpressionContext::setFeature
void setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the context.
Definition: qgsexpressioncontext.cpp:521
QgsAnnotation::setMapLayer
void setMapLayer(QgsMapLayer *layer)
Sets the map layer associated with the annotation.
Definition: qgsannotation.cpp:175