QGIS API Documentation 3.99.0-Master (21b3aa880ba)
Loading...
Searching...
No Matches
qgsqmlwidgetwrapper.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsqmlwidgetwrapper.cpp
3
4 ---------------------
5 begin : 25.6.2018
6 copyright : (C) 2018 by Matthias Kuhn
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
17#include "qgsqmlwidgetwrapper.h"
18
19#include "qgsattributeform.h"
21#include "qgsmessagelog.h"
23
24#include <QQmlContext>
25#include <QQmlEngine>
26#include <QUrl>
27
28#include "moc_qgsqmlwidgetwrapper.cpp"
29
31 : QgsWidgetWrapper( layer, editor, parent )
32{
33 connect( this, &QgsWidgetWrapper::contextChanged, this, &QgsQmlWidgetWrapper::setQmlContext );
34}
35
37{
38 return true;
39}
40
41QWidget *QgsQmlWidgetWrapper::createWidget( QWidget *parent )
42{
43 QgsAttributeForm *form = qobject_cast<QgsAttributeForm *>( parent );
44
45 if ( form )
46 {
47 mFormFeature = form->feature();
48 connect( form, &QgsAttributeForm::widgetValueChanged, this, [this]( const QString &attribute, const QVariant &newValue, bool attributeChanged ) {
49 if ( attributeChanged )
50 {
51 if ( mRequiresFormScope )
52 {
53 mFormFeature.setAttribute( attribute, newValue );
54 setQmlContext();
55 }
56 }
57 } );
58 }
59
60 return new QQuickWidget( parent );
61}
62
63void QgsQmlWidgetWrapper::initWidget( QWidget *editor )
64{
65 mWidget = qobject_cast<QQuickWidget *>( editor );
66
67 if ( !mWidget )
68 return;
69
70
71 if ( !mQmlFile.open() )
72 {
73 QgsMessageLog::logMessage( tr( "Failed to open temporary QML file" ) );
74 return;
75 }
76
77 mWidget->setSource( QUrl::fromLocalFile( mQmlFile.fileName() ) );
78
79 mQmlFile.close();
80}
81
82
84{
85 if ( !mWidget )
86 return;
87
88 mWidget->engine()->clearComponentCache();
89
90 initWidget( mWidget );
91}
92
93void QgsQmlWidgetWrapper::setQmlCode( const QString &qmlCode )
94{
95 if ( mQmlCode == qmlCode )
96 {
97 return;
98 }
99
100 mQmlCode = qmlCode;
101
102 bool ok = false;
103 const thread_local QRegularExpression expRe( QStringLiteral( R"re(expression.evaluate\s*\‍(\s*"(.*)"\))re" ), QRegularExpression::PatternOption::MultilineOption | QRegularExpression::PatternOption::DotMatchesEverythingOption );
104 QRegularExpressionMatchIterator matchIt = expRe.globalMatch( mQmlCode );
105 while ( !ok && matchIt.hasNext() )
106 {
107 const QRegularExpressionMatch match = matchIt.next();
108 const QgsExpression exp = match.captured( 1 );
110 }
111 mRequiresFormScope = ok;
112
113 if ( !mQmlFile.open() )
114 {
115 QgsMessageLog::logMessage( tr( "Failed to open temporary QML file" ) );
116 return;
117 }
118
119 mQmlFile.resize( 0 );
120 mQmlFile.write( mQmlCode.toUtf8() );
121
122 mQmlFile.close();
123}
124
125void QgsQmlWidgetWrapper::setQmlContext()
126{
127 if ( !mWidget )
128 return;
129
130 const QgsAttributeEditorContext attributecontext = context();
131 QgsExpressionContext expressionContext = layer()->createExpressionContext();
132 expressionContext << QgsExpressionContextUtils::formScope( mFormFeature, attributecontext.attributeFormModeString() );
133 if ( attributecontext.parentFormFeature().isValid() )
134 {
135 expressionContext << QgsExpressionContextUtils::parentFormScope( attributecontext.parentFormFeature() );
136 }
137
138 expressionContext.setFeature( mFeature );
139
140 QmlExpression *qmlExpression = new QmlExpression();
141 qmlExpression->setExpressionContext( expressionContext );
142
143 mWidget->rootContext()->setContextProperty( "expression", qmlExpression );
144}
145
147{
148 if ( !mWidget )
149 return;
150
151 mFeature = feature;
152 mFormFeature = feature;
153
154 setQmlContext();
155}
156
158void QmlExpression::setExpressionContext( const QgsExpressionContext &context )
159{
160 mExpressionContext = context;
161}
162
163QVariant QmlExpression::evaluate( const QString &expression ) const
164{
165 QgsExpression exp = QgsExpression( expression );
166 exp.prepare( &mExpressionContext );
167 return exp.evaluate( &mExpressionContext );
168}
Contains context information for attribute editor widgets.
QString attributeFormModeString() const
Returns given attributeFormMode as string.
QgsFeature parentFormFeature() const
Returns the feature of the currently edited parent form in its actual state.
The attribute form widget for vector layer features.
void widgetValueChanged(const QString &attribute, const QVariant &value, bool attributeChanged)
Notifies about changes of attributes.
const QgsFeature & feature() const
Returns feature of attribute form.
static QgsExpressionContextScope * parentFormScope(const QgsFeature &formFeature=QgsFeature(), const QString &formMode=QString())
Creates a new scope which contains functions and variables from the current parent attribute form/tab...
static QgsExpressionContextScope * formScope(const QgsFeature &formFeature=QgsFeature(), const QString &formMode=QString())
Creates a new scope which contains functions and variables from the current attribute form/table form...
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
void setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the context.
Handles parsing and evaluation of expressions (formerly called "search strings").
bool prepare(const QgsExpressionContext *context)
Gets the expression ready for evaluation - find out column indexes.
QVariant evaluate()
Evaluate the feature and return the result.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:58
bool isValid() const
Returns the validity of this feature.
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true, const char *file=__builtin_FILE(), const char *function=__builtin_FUNCTION(), int line=__builtin_LINE())
Adds a message to the log instance (and creates it if necessary).
QWidget * createWidget(QWidget *parent) override
This method should create a new widget with the provided parent.
void initWidget(QWidget *editor) override
This method should initialize the editor widget with runtime data.
bool valid() const override
Returns true if the widget has been properly initialized.
void setFeature(const QgsFeature &feature) override
void reinitWidget()
Clears the content and makes new initialization.
void setQmlCode(const QString &qmlCode)
writes the qmlCode into a temporary file
QgsQmlWidgetWrapper(QgsVectorLayer *layer, QWidget *editor, QWidget *parent)
Create a qml widget wrapper.
static bool expressionRequiresFormScope(const QString &expression)
Check if the expression requires a form scope (i.e.
Represents a vector layer which manages a vector based dataset.
QgsExpressionContext createExpressionContext() const final
This method needs to be reimplemented in all classes which implement this interface and return an exp...
void contextChanged()
Signal when QgsAttributeEditorContext mContext changed.
QgsWidgetWrapper(QgsVectorLayer *vl, QWidget *editor=nullptr, QWidget *parent=nullptr)
Create a new widget wrapper.
const QgsAttributeEditorContext & context() const
Returns information about the context in which this widget is shown.
QgsVectorLayer * layer() const
Returns the vector layer associated with the widget.