QGIS API Documentation  2.10.1-Pisa
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgscomposerhtml.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgscomposerhtml.h
3  ------------------------------------------------------------
4  begin : July 2012
5  copyright : (C) 2012 by Marco Hugentobler
6  email : marco dot hugentobler at sourcepole dot ch
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #ifndef QGSCOMPOSERHTML_H
17 #define QGSCOMPOSERHTML_H
18 
19 #include "qgscomposermultiframe.h"
20 #include <QUrl>
21 
22 class QWebPage;
23 class QImage;
24 class QgsFeature;
25 class QgsVectorLayer;
27 class QgsDistanceArea;
28 
29 class CORE_EXPORT QgsComposerHtml: public QgsComposerMultiFrame
30 {
31  Q_OBJECT
32  public:
33 
37  {
38  Url,
39  ManualHtml
40  };
41 
42  QgsComposerHtml( QgsComposition* c, bool createUndoCommands );
43 
44  ~QgsComposerHtml();
45 
53  void setContentMode( ContentMode mode ) { mContentMode = mode; }
54 
62  ContentMode contentMode() const { return mContentMode; }
63 
71  void setUrl( const QUrl& url );
72 
79  const QUrl& url() const { return mUrl; }
80 
91  void setHtml( const QString html );
92 
100  QString html() const { return mHtml; }
101 
110  bool evaluateExpressions() const { return mEvaluateExpressions; }
111 
120  void setEvaluateExpressions( bool evaluateExpressions );
121 
127  bool useSmartBreaks() const { return mUseSmartBreaks; }
128 
135  void setUseSmartBreaks( bool useSmartBreaks );
136 
149  void setMaxBreakDistance( double maxBreakDistance );
150 
160  double maxBreakDistance() const { return mMaxBreakDistance; }
161 
172  void setUserStylesheet( const QString stylesheet );
173 
181  QString userStylesheet() const { return mUserStylesheet; }
182 
189  void setUserStylesheetEnabled( const bool stylesheetEnabled );
190 
197  bool userStylesheetEnabled() const { return mEnableUserStylesheet; }
198 
199  virtual QString displayName() const override;
200  QSizeF totalSize() const override;
201  void render( QPainter* p, const QRectF& renderExtent, const int frameIndex ) override;
202  bool writeXML( QDomElement& elem, QDomDocument & doc, bool ignoreFrames = false ) const override;
203  bool readXML( const QDomElement& itemElem, const QDomDocument& doc, bool ignoreFrames = false ) override;
204  void addFrame( QgsComposerFrame* frame, bool recalcFrameSizes = true ) override;
205  //overriden to break frames without dividing lines of text
206  double findNearbyPageBreak( double yPos ) override;
207 
208  public slots:
209 
216  void loadHtml( const bool useCache = false );
217 
219  void recalculateFrameSizes() override;
220  void refreshExpressionContext();
221 
223 
224  private slots:
225  void frameLoaded( bool ok = true );
226 
227  private:
228  ContentMode mContentMode;
229  QUrl mUrl;
230  QWebPage* mWebPage;
231  QString mHtml;
232  QString mFetchedHtml;
233  QString mLastFetchedUrl;
234  QString mActualFetchedUrl; //may be different if page was redirected
235  bool mLoaded;
236  QSizeF mSize; //total size in mm
237  double mHtmlUnitsToMM;
238  QImage* mRenderedPage;
239  bool mEvaluateExpressions;
240  bool mUseSmartBreaks;
241  double mMaxBreakDistance;
242 
243  QgsFeature* mExpressionFeature;
244  QgsVectorLayer* mExpressionLayer;
245  QgsDistanceArea* mDistanceArea;
246 
247  QString mUserStylesheet;
248  bool mEnableUserStylesheet;
249 
250  QgsNetworkContentFetcher* mFetcher;
251 
252  double htmlUnitsToMM(); //calculate scale factor
253 
254  //renders a snapshot of the page to a cached image
255  void renderCachedImage();
256 
257  //fetches html content from a url and returns it as a string
258  QString fetchHtml( QUrl url );
259 
261  void setExpressionContext( QgsFeature* feature, QgsVectorLayer* layer );
262 
264  double maxFrameWidth() const;
265 };
266 
267 #endif // QGSCOMPOSERHTML_H
virtual void recalculateFrameSizes()
Recalculates the portion of the multiframe item which is shown in each of it's component frames...
ContentMode contentMode() const
Returns the source mode for item's HTML content.
virtual QString displayName() const
Get multiframe display name.
virtual double findNearbyPageBreak(double yPos)
Finds the optimal position to break a frame at.
virtual QSizeF totalSize() const =0
Returns the total size of the multiframe's content.
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
Definition: qgsfeature.h:162
DataDefinedProperty
Data defined properties for different item types.
QString userStylesheet() const
Returns the user stylesheet CSS rules used while rendering the HTML content.
bool useSmartBreaks() const
Returns whether html item is using smart breaks.
QString html() const
Returns the HTML source displayed in the item if the item is using the QgsComposerHtml::ManualHtml mo...
virtual void addFrame(QgsComposerFrame *frame, bool recalcFrameSizes=true)=0
Adds a frame to the multiframe.
HTTP network content fetcher.
Abstract base class for composer items with the ability to distribute the content to several frames (...
bool evaluateExpressions() const
Returns whether html item will evaluate QGIS expressions prior to rendering the HTML content...
The QWebPage class is a collection of stubs to mimic the API of a QWebPage on systems where QtWebkit ...
Definition: qgswebpage.h:99
Graphics scene for map printing.
Frame item for a composer multiframe item.
const QUrl & url() const
Returns the URL of the content displayed in the item if the item is using the QgsComposerHtml::Url mo...
void setContentMode(ContentMode mode)
Sets the source mode for item's HTML content.
General purpose distance and area calculator.
bool userStylesheetEnabled() const
Returns whether user stylesheets are enabled for the HTML content.
virtual bool writeXML(QDomElement &elem, QDomDocument &doc, bool ignoreFrames=false) const =0
Stores state information about multiframe in DOM element.
double maxBreakDistance() const
Returns the maximum distance allowed when calculating where to place page breaks in the html...
virtual Q_DECL_DEPRECATED void render(QPainter *p, const QRectF &renderExtent)
Renders a portion of the multiframe's content into a painter.
virtual bool readXML(const QDomElement &itemElem, const QDomDocument &doc, bool ignoreFrames=false)=0
Reads multiframe state information from a DOM element.
Represents a vector layer which manages a vector based data sets.
ContentMode
Source modes for the HTML content to render in the item.
virtual void refreshDataDefinedProperty(const DataDefinedProperty property=AllProperties)
Refreshes a data defined property for the item by reevaluating the property's value and redrawing the...