31 mNofColumns->setMinimum( 1 );
32 mNofColumns->setMaximum( 10 );
33 mNofColumns->setValue( 1 );
43 connect( mAllowMulti, &QAbstractButton::toggled,
this, [ = ](
bool checked )
45 label_nofColumns->setEnabled( checked );
46 mNofColumns->setEnabled( checked );
57 cfg.insert( QStringLiteral(
"Layer" ), mLayerName->currentLayer() ? mLayerName->currentLayer()->id() : QString() );
58 cfg.insert( QStringLiteral(
"Key" ), mKeyColumn->currentField() );
59 cfg.insert( QStringLiteral(
"Value" ), mValueColumn->currentField() );
60 cfg.insert( QStringLiteral(
"AllowMulti" ), mAllowMulti->isChecked() );
61 cfg.insert( QStringLiteral(
"NofColumns" ), mNofColumns->value() );
62 cfg.insert( QStringLiteral(
"AllowNull" ), mAllowNull->isChecked() );
63 cfg.insert( QStringLiteral(
"OrderByValue" ), mOrderByValue->isChecked() );
64 cfg.insert( QStringLiteral(
"FilterExpression" ), mFilterExpression->toPlainText() );
65 cfg.insert( QStringLiteral(
"UseCompleter" ), mUseCompleter->isChecked() );
73 mLayerName->setLayer( lyr );
74 mKeyColumn->setField( config.value( QStringLiteral(
"Key" ) ).toString() );
75 mValueColumn->setField( config.value( QStringLiteral(
"Value" ) ).toString() );
76 mAllowMulti->setChecked( config.value( QStringLiteral(
"AllowMulti" ) ).toBool() );
77 mNofColumns->setValue( config.value( QStringLiteral(
"NofColumns" ), 1 ).toInt() );
78 if ( !mAllowMulti->isChecked() )
80 label_nofColumns->setEnabled(
false );
81 mNofColumns->setEnabled(
false );
83 mAllowNull->setChecked( config.value( QStringLiteral(
"AllowNull" ) ).toBool() );
84 mOrderByValue->setChecked( config.value( QStringLiteral(
"OrderByValue" ) ).toBool() );
85 mFilterExpression->setPlainText( config.value( QStringLiteral(
"FilterExpression" ) ).toString() );
86 mUseCompleter->setChecked( config.value( QStringLiteral(
"UseCompleter" ) ).toBool() );
100 << QStringLiteral(
"current_feature" )
101 << QStringLiteral(
"form_mode" ) );
104 dlg.setWindowTitle( tr(
"Edit Filter Expression" ) );
106 if ( dlg.exec() == QDialog::Accepted )
108 mFilterExpression->setText( dlg.expressionBuilder()->expressionText() );
QVariantMap config() override
Create a configuration from the current GUI state.
void setConfig(const QVariantMap &config) override
Update the configuration widget to represent the given configuration.
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 feat...
void layerChanged(QgsMapLayer *layer)
layerChanged this signal is emitted whenever the currently selected layer changes ...
void setHighlightedFunctions(const QStringList &names)
Sets the list of function names intended to be highlighted to the user.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
static QList< QgsExpressionContextScope * > globalProjectLayerScopes(const QgsMapLayer *layer)
Creates a list of three scopes: global, layer's project and layer.
void setLayer(QgsMapLayer *layer)
Sets the layer for which fields are listed in the combobox.
static QgsProject * instance()
Returns the QgsProject singleton instance.
QgsMapLayer * mapLayer(const QString &layerId) const
Retrieve a pointer to a registered layer by layer ID.
void setHighlightedVariables(const QStringList &variableNames)
Sets the list of variable names within the context intended to be highlighted to the user...
QgsValueRelationConfigDlg(QgsVectorLayer *vl, int fieldIdx, QWidget *parent=nullptr)
Represents a vector layer which manages a vector based data sets.
A generic dialog for building expression strings.