32 mNofColumns->setMinimum( 1 );
33 mNofColumns->setMaximum( 10 );
34 mNofColumns->setValue( 1 );
44 connect( mAllowMulti, &QAbstractButton::toggled,
this, [ = ](
bool checked )
46 label_nofColumns->setEnabled( checked );
47 mNofColumns->setEnabled( checked );
58 cfg.insert( QStringLiteral(
"Layer" ), mLayerName->currentLayer() ? mLayerName->currentLayer()->id() : QString() );
59 cfg.insert( QStringLiteral(
"LayerName" ), mLayerName->currentLayer() ? mLayerName->currentLayer()->name() : QString() );
60 cfg.insert( QStringLiteral(
"LayerSource" ), mLayerName->currentLayer() ? mLayerName->currentLayer()->publicSource() : QString() );
61 cfg.insert( QStringLiteral(
"LayerProviderName" ), ( mLayerName->currentLayer() && mLayerName->currentLayer()->dataProvider() ) ?
62 mLayerName->currentLayer()->dataProvider()->name() :
64 cfg.insert( QStringLiteral(
"Key" ), mKeyColumn->currentField() );
65 cfg.insert( QStringLiteral(
"Value" ), mValueColumn->currentField() );
66 cfg.insert( QStringLiteral(
"AllowMulti" ), mAllowMulti->isChecked() );
67 cfg.insert( QStringLiteral(
"NofColumns" ), mNofColumns->value() );
68 cfg.insert( QStringLiteral(
"AllowNull" ), mAllowNull->isChecked() );
69 cfg.insert( QStringLiteral(
"OrderByValue" ), mOrderByValue->isChecked() );
70 cfg.insert( QStringLiteral(
"FilterExpression" ), mFilterExpression->toPlainText() );
71 cfg.insert( QStringLiteral(
"UseCompleter" ), mUseCompleter->isChecked() );
79 mLayerName->setLayer( lyr );
80 mKeyColumn->setField( config.value( QStringLiteral(
"Key" ) ).toString() );
81 mValueColumn->setField( config.value( QStringLiteral(
"Value" ) ).toString() );
82 mAllowMulti->setChecked( config.value( QStringLiteral(
"AllowMulti" ) ).toBool() );
83 mNofColumns->setValue( config.value( QStringLiteral(
"NofColumns" ), 1 ).toInt() );
84 if ( !mAllowMulti->isChecked() )
86 label_nofColumns->setEnabled(
false );
87 mNofColumns->setEnabled(
false );
89 mAllowNull->setChecked( config.value( QStringLiteral(
"AllowNull" ) ).toBool() );
90 mOrderByValue->setChecked( config.value( QStringLiteral(
"OrderByValue" ) ).toBool() );
91 mFilterExpression->setPlainText( config.value( QStringLiteral(
"FilterExpression" ) ).toString() );
92 mUseCompleter->setChecked( config.value( QStringLiteral(
"UseCompleter" ) ).toBool() );
106 << QStringLiteral(
"current_feature" )
107 << QStringLiteral(
"form_mode" ) );
110 dlg.setWindowTitle( tr(
"Edit Filter Expression" ) );
112 if ( dlg.exec() == QDialog::Accepted )
114 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)
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.
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.