QGIS API Documentation 3.99.0-Master (d270888f95f)
Loading...
Searching...
No Matches
qgshtmlwidgetwrapper.h
Go to the documentation of this file.
1/***************************************************************************
2 qgshtmlwidgetwrapper.h
3
4 ---------------------
5 begin : 23.03.2019
6 copyright : (C) 2019 by Alessandro Pasotti
7 email : elpaso at itopen dot it
8 ***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16#ifndef QGSHTMLWIDGETWRAPPER_H
17#define QGSHTMLWIDGETWRAPPER_H
18
19#include "qgis_gui.h"
20#include "qgis_sip.h"
21#include "qgswebview.h"
22#include "qgswidgetwrapper.h"
23
29class GUI_EXPORT QgsHtmlWidgetWrapper : public QgsWidgetWrapper
30{
31 Q_OBJECT
32
33 public:
41 QgsHtmlWidgetWrapper( QgsVectorLayer *layer, QWidget *editor, QWidget *parent );
42
43 bool valid() const override;
44
45 QWidget *createWidget( QWidget *parent ) override;
46
47 void initWidget( QWidget *editor ) override;
48
50 void reinitWidget();
51
53 void setHtmlCode( const QString &htmlCode );
54
59 bool needsGeometry() const;
60
61 public slots:
62 void setFeature( const QgsFeature &feature ) override;
63
64 private slots:
66 void setHtmlContext();
67
68 private:
70 void checkGeometryNeeds();
71
72 QString mHtmlCode;
73 QgsWebView *mWidget = nullptr;
74 QgsFeature mFeature;
75 bool mNeedsGeometry = false;
76 QgsFeature mFormFeature;
77 bool mRequiresFormScope = false;
78
80};
81
82
83#ifndef SIP_RUN
85
91class HtmlExpression : public QObject
92{
93 Q_OBJECT
94
95 public:
97 void setExpressionContext( const QgsExpressionContext &context );
98
99 public:
101 Q_INVOKABLE QString evaluate( const QString &expression ) const;
102
103 private:
104 QgsExpressionContext mExpressionContext;
105};
106
113class NeedsGeometryEvaluator : public QObject
114{
115 Q_OBJECT
116
117 public:
119 bool needsGeometry() const { return mNeedsGeometry; }
120
122 void setExpressionContext( const QgsExpressionContext &context );
123
125 Q_INVOKABLE void evaluate( const QString &expression );
126
127 private:
128 bool mNeedsGeometry = false;
129 QgsExpressionContext mExpressionContext;
130};
131
132
134#endif //SIP_RUN
135
136#endif // QGSHTMLWIDGETWRAPPER_H
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:60
void reinitWidget()
Clears the content and makes new initialization.
QgsHtmlWidgetWrapper(QgsVectorLayer *layer, QWidget *editor, QWidget *parent)
Create a html widget wrapper.
void setHtmlCode(const QString &htmlCode)
Sets the HTML code to htmlCode.
bool needsGeometry() const
Returns true if the widget needs feature geometry.
friend class TestQgsHtmlWidgetWrapper
Represents a vector layer which manages a vector based dataset.
A collection of stubs to mimic the API of QWebView on systems where the real library is not available...
Definition qgswebview.h:39
virtual void setFeature(const QgsFeature &feature)=0
Is called when the value of the widget needs to be changed.
virtual bool valid() const =0
Returns true if the widget has been properly initialized.
virtual void initWidget(QWidget *editor)
This method should initialize the editor widget with runtime data.
QgsWidgetWrapper(QgsVectorLayer *vl, QWidget *editor=nullptr, QWidget *parent=nullptr)
Create a new widget wrapper.
QgsVectorLayer * layer() const
Returns the vector layer associated with the widget.
virtual QWidget * createWidget(QWidget *parent)=0
This method should create a new widget with the provided parent.