Branch data Line data Source code
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" 25 : : #include "qgsnetworkaccessmanager.h" 26 : : #include "qgswebpage.h" 27 : : #include "qgswebframe.h" 28 : : #include "qgsexpressioncontextutils.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 : : #include <QTextStream> 39 : : 40 : 0 : QgsHtmlAnnotation::QgsHtmlAnnotation( QObject *parent ) 41 : 0 : : QgsAnnotation( parent ) 42 : 0 : { 43 : 0 : mWebPage = new QgsWebPage(); 44 : 0 : mWebPage->mainFrame()->setScrollBarPolicy( Qt::Horizontal, Qt::ScrollBarAlwaysOff ); 45 : 0 : mWebPage->mainFrame()->setScrollBarPolicy( Qt::Vertical, Qt::ScrollBarAlwaysOff ); 46 : 0 : mWebPage->setNetworkAccessManager( QgsNetworkAccessManager::instance() ); 47 : : 48 : 0 : connect( mWebPage->mainFrame(), &QWebFrame::javaScriptWindowObjectCleared, this, &QgsHtmlAnnotation::javascript ); 49 : 0 : } 50 : : 51 : 0 : QgsHtmlAnnotation *QgsHtmlAnnotation::clone() const 52 : : { 53 : 0 : std::unique_ptr< QgsHtmlAnnotation > c( new QgsHtmlAnnotation() ); 54 : 0 : copyCommonProperties( c.get() ); 55 : 0 : c->setSourceFile( mHtmlFile ); 56 : 0 : return c.release(); 57 : 0 : } 58 : : 59 : 0 : void QgsHtmlAnnotation::setSourceFile( const QString &htmlFile ) 60 : : { 61 : 0 : QFile file( htmlFile ); 62 : 0 : mHtmlFile = htmlFile; 63 : 0 : if ( !file.open( QIODevice::ReadOnly | QIODevice::Text ) ) 64 : : { 65 : 0 : mHtmlSource.clear(); 66 : 0 : } 67 : : else 68 : : { 69 : 0 : QTextStream in( &file ); 70 : : #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) 71 : 0 : in.setCodec( "UTF-8" ); 72 : : #endif 73 : 0 : mHtmlSource = in.readAll(); 74 : 0 : } 75 : : 76 : 0 : file.close(); 77 : 0 : setAssociatedFeature( associatedFeature() ); 78 : 0 : emit appearanceChanged(); 79 : 0 : } 80 : 0 : 81 : 0 : void QgsHtmlAnnotation::renderAnnotation( QgsRenderContext &context, QSizeF size ) const 82 : : { 83 : 0 : if ( !context.painter() ) 84 : : { 85 : 0 : return; 86 : : } 87 : : 88 : : // scale painter back to 96 dpi, so layout prints match screen rendering 89 : 0 : QgsScopedQPainterState painterState( context.painter() ); 90 : 0 : const double scaleFactor = context.painter()->device()->logicalDpiX() / 96.0; 91 : 0 : context.painter()->scale( scaleFactor, scaleFactor ); 92 : 0 : size /= scaleFactor; 93 : : 94 : 0 : mWebPage->setViewportSize( size.toSize() ); 95 : 0 : mWebPage->mainFrame()->render( context.painter() ); 96 : 0 : } 97 : : 98 : 0 : QSizeF QgsHtmlAnnotation::minimumFrameSize() const 99 : : { 100 : 0 : if ( mWebPage ) 101 : : { 102 : 0 : QSizeF widgetMinSize = QSizeF( 0, 0 ); // mWebPage->minimumSize(); 103 : 0 : return QSizeF( contentsMargin().left() + contentsMargin().right() + widgetMinSize.width(), 104 : 0 : contentsMargin().top() + contentsMargin().bottom() + widgetMinSize.height() ); 105 : : } 106 : : else 107 : : { 108 : 0 : return QSizeF( 0, 0 ); 109 : : } 110 : 0 : } 111 : : 112 : 0 : void QgsHtmlAnnotation::writeXml( QDomElement &elem, QDomDocument &doc, const QgsReadWriteContext &context ) const 113 : : { 114 : 0 : QDomElement formAnnotationElem = doc.createElement( QStringLiteral( "HtmlAnnotationItem" ) ); 115 : 0 : formAnnotationElem.setAttribute( QStringLiteral( "htmlfile" ), sourceFile() ); 116 : : 117 : 0 : _writeXml( formAnnotationElem, doc, context ); 118 : 0 : elem.appendChild( formAnnotationElem ); 119 : 0 : } 120 : : 121 : 0 : void QgsHtmlAnnotation::readXml( const QDomElement &itemElem, const QgsReadWriteContext &context ) 122 : : { 123 : 0 : mHtmlFile = itemElem.attribute( QStringLiteral( "htmlfile" ), QString() ); 124 : 0 : QDomElement annotationElem = itemElem.firstChildElement( QStringLiteral( "AnnotationItem" ) ); 125 : 0 : if ( !annotationElem.isNull() ) 126 : : { 127 : 0 : _readXml( annotationElem, context ); 128 : 0 : } 129 : : 130 : : // upgrade old layer 131 : 0 : if ( !mapLayer() && itemElem.hasAttribute( QStringLiteral( "vectorLayer" ) ) ) 132 : : { 133 : 0 : setMapLayer( QgsProject::instance()->mapLayer( itemElem.attribute( QStringLiteral( "vectorLayer" ) ) ) ); 134 : 0 : } 135 : : 136 : 0 : if ( mWebPage ) 137 : : { 138 : 0 : setSourceFile( mHtmlFile ); 139 : 0 : } 140 : 0 : } 141 : : 142 : 0 : void QgsHtmlAnnotation::setAssociatedFeature( const QgsFeature &feature ) 143 : : { 144 : 0 : QgsAnnotation::setAssociatedFeature( feature ); 145 : 0 : QString newText; 146 : 0 : QgsVectorLayer *vectorLayer = qobject_cast< QgsVectorLayer * >( mapLayer() ); 147 : 0 : if ( feature.isValid() && vectorLayer ) 148 : : { 149 : 0 : QgsExpressionContext context( QgsExpressionContextUtils::globalProjectLayerScopes( vectorLayer ) ); 150 : 0 : context.setFeature( feature ); 151 : 0 : newText = QgsExpression::replaceExpressionText( mHtmlSource, &context ); 152 : 0 : } 153 : : else 154 : : { 155 : 0 : newText = mHtmlSource; 156 : : } 157 : 0 : mWebPage->mainFrame()->setHtml( newText ); 158 : 0 : emit appearanceChanged(); 159 : 0 : } 160 : : 161 : 0 : void QgsHtmlAnnotation::javascript() 162 : : { 163 : 0 : QWebFrame *frame = mWebPage->mainFrame(); 164 : 0 : frame->addToJavaScriptWindowObject( QStringLiteral( "layer" ), mapLayer() ); 165 : 0 : } 166 : : 167 : : 168 : :