QGIS API Documentation 4.1.0-Master (5bf3c20f3c9)
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
104 expRe( QStringLiteral( R"re(expression.evaluate\s*\‍(\s*"(.*)"\))re" ), QRegularExpression::PatternOption::MultilineOption | QRegularExpression::PatternOption::DotMatchesEverythingOption );
105 QRegularExpressionMatchIterator matchIt = expRe.globalMatch( mQmlCode );
106 while ( !ok && matchIt.hasNext() )
107 {
108 const QRegularExpressionMatch match = matchIt.next();
109 const QgsExpression exp = match.captured( 1 );
111 }
112 mRequiresFormScope = ok;
113
114 if ( !mQmlFile.open() )
115 {
116 QgsMessageLog::logMessage( tr( "Failed to open temporary QML file" ) );
117 return;
118 }
119
120 mQmlFile.resize( 0 );
121 mQmlFile.write( mQmlCode.toUtf8() );
122
123 mQmlFile.close();
124}
125
126void QgsQmlWidgetWrapper::setQmlContext()
127{
128 if ( !mWidget )
129 return;
130
131 const QgsAttributeEditorContext attributecontext = context();
132 QgsExpressionContext expressionContext = layer()->createExpressionContext();
133 expressionContext << QgsExpressionContextUtils::formScope( mFormFeature, attributecontext.attributeFormModeString() );
134 if ( attributecontext.parentFormFeature().isValid() )
135 {
136 expressionContext << QgsExpressionContextUtils::parentFormScope( attributecontext.parentFormFeature() );
137 }
138
139 expressionContext.setFeature( mFeature );
140
141 QmlExpression *qmlExpression = new QmlExpression();
142 qmlExpression->setExpressionContext( expressionContext );
143
144 mWidget->rootContext()->setContextProperty( "expression", qmlExpression );
145}
146
148{
149 if ( !mWidget )
150 return;
151
152 mFeature = feature;
153 mFormFeature = feature;
154
155 setQmlContext();
156}
157
159void QmlExpression::setExpressionContext( const QgsExpressionContext &context )
160{
161 mExpressionContext = context;
162}
163
164QVariant QmlExpression::evaluate( const QString &expression ) const
165{
166 QgsExpression exp = QgsExpression( expression );
167 exp.prepare( &mExpressionContext );
168 return exp.evaluate( &mExpressionContext );
169}
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:60
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(), Qgis::StringFormat format=Qgis::StringFormat::PlainText)
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.