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 : 0 : in.setCodec( "UTF-8" ); 71 : 0 : mHtmlSource = in.readAll(); 72 : 0 : } 73 : : 74 : 0 : file.close(); 75 : 0 : setAssociatedFeature( associatedFeature() ); 76 : 0 : emit appearanceChanged(); 77 : 0 : } 78 : : 79 : 0 : void QgsHtmlAnnotation::renderAnnotation( QgsRenderContext &context, QSizeF size ) const 80 : 0 : { 81 : 0 : if ( !context.painter() ) 82 : : { 83 : 0 : return; 84 : : } 85 : : 86 : : // scale painter back to 96 dpi, so layout prints match screen rendering 87 : 0 : QgsScopedQPainterState painterState( context.painter() ); 88 : 0 : const double scaleFactor = context.painter()->device()->logicalDpiX() / 96.0; 89 : 0 : context.painter()->scale( scaleFactor, scaleFactor ); 90 : 0 : size /= scaleFactor; 91 : : 92 : 0 : mWebPage->setViewportSize( size.toSize() ); 93 : 0 : mWebPage->mainFrame()->render( context.painter() ); 94 : 0 : } 95 : : 96 : 0 : QSizeF QgsHtmlAnnotation::minimumFrameSize() const 97 : : { 98 : 0 : if ( mWebPage ) 99 : : { 100 : 0 : QSizeF widgetMinSize = QSizeF( 0, 0 ); // mWebPage->minimumSize(); 101 : 0 : return QSizeF( contentsMargin().left() + contentsMargin().right() + widgetMinSize.width(), 102 : 0 : contentsMargin().top() + contentsMargin().bottom() + widgetMinSize.height() ); 103 : : } 104 : : else 105 : : { 106 : 0 : return QSizeF( 0, 0 ); 107 : : } 108 : 0 : } 109 : : 110 : 0 : void QgsHtmlAnnotation::writeXml( QDomElement &elem, QDomDocument &doc, const QgsReadWriteContext &context ) const 111 : : { 112 : 0 : QDomElement formAnnotationElem = doc.createElement( QStringLiteral( "HtmlAnnotationItem" ) ); 113 : 0 : formAnnotationElem.setAttribute( QStringLiteral( "htmlfile" ), sourceFile() ); 114 : : 115 : 0 : _writeXml( formAnnotationElem, doc, context ); 116 : 0 : elem.appendChild( formAnnotationElem ); 117 : 0 : } 118 : : 119 : 0 : void QgsHtmlAnnotation::readXml( const QDomElement &itemElem, const QgsReadWriteContext &context ) 120 : : { 121 : 0 : mHtmlFile = itemElem.attribute( QStringLiteral( "htmlfile" ), QString() ); 122 : 0 : QDomElement annotationElem = itemElem.firstChildElement( QStringLiteral( "AnnotationItem" ) ); 123 : 0 : if ( !annotationElem.isNull() ) 124 : : { 125 : 0 : _readXml( annotationElem, context ); 126 : 0 : } 127 : : 128 : : // upgrade old layer 129 : 0 : if ( !mapLayer() && itemElem.hasAttribute( QStringLiteral( "vectorLayer" ) ) ) 130 : : { 131 : 0 : setMapLayer( QgsProject::instance()->mapLayer( itemElem.attribute( QStringLiteral( "vectorLayer" ) ) ) ); 132 : 0 : } 133 : : 134 : 0 : if ( mWebPage ) 135 : : { 136 : 0 : setSourceFile( mHtmlFile ); 137 : 0 : } 138 : 0 : } 139 : : 140 : 0 : void QgsHtmlAnnotation::setAssociatedFeature( const QgsFeature &feature ) 141 : : { 142 : 0 : QgsAnnotation::setAssociatedFeature( feature ); 143 : 0 : QString newText; 144 : 0 : QgsVectorLayer *vectorLayer = qobject_cast< QgsVectorLayer * >( mapLayer() ); 145 : 0 : if ( feature.isValid() && vectorLayer ) 146 : : { 147 : 0 : QgsExpressionContext context( QgsExpressionContextUtils::globalProjectLayerScopes( vectorLayer ) ); 148 : 0 : context.setFeature( feature ); 149 : 0 : newText = QgsExpression::replaceExpressionText( mHtmlSource, &context ); 150 : 0 : } 151 : : else 152 : : { 153 : 0 : newText = mHtmlSource; 154 : : } 155 : 0 : mWebPage->mainFrame()->setHtml( newText ); 156 : 0 : emit appearanceChanged(); 157 : 0 : } 158 : : 159 : 0 : void QgsHtmlAnnotation::javascript() 160 : : { 161 : 0 : QWebFrame *frame = mWebPage->mainFrame(); 162 : 0 : frame->addToJavaScriptWindowObject( QStringLiteral( "layer" ), mapLayer() ); 163 : 0 : } 164 : : 165 : : 166 : :