QGIS API Documentation 3.39.0-Master (d85f3c2a281)
Loading...
Searching...
No Matches
Classes | Public Types | Public Slots | Signals | Public Member Functions | Protected Member Functions | List of all members
QgsExpressionBuilderWidget Class Reference

A reusable widget that can be used to build a expression string. More...

#include <qgsexpressionbuilderwidget.h>

Inheritance diagram for QgsExpressionBuilderWidget:
Inheritance graph
[legend]

Public Types

enum  Flag { LoadNothing = 0 , LoadRecent = 1 << 1 , LoadUserExpressions = 1 << 2 , LoadAll = LoadRecent | LoadUserExpressions }
 Flag to determine what should be loaded. More...
 
typedef QFlags< FlagFlags
 

Public Slots

void autosave ()
 Auto save the current Python function code.
 
void editSelectedUserExpression ()
 Edits the selected expression from the stored user expressions, the selected expression must be a user stored expression.
 
const QList< QgsExpressionItem * > findExpressions (const QString &label)
 Returns the list of expression items matching a label.
 
void loadAllUsedValues ()
 Load all unique values from the set layer into the sample area.
 
void loadAllValues ()
 Load all unique values from the set layer into the sample area.
 
void loadSampleUsedValues ()
 Load used sample values into the sample value area.
 
void loadSampleValues ()
 Load sample values into the sample value area.
 
void removeSelectedUserExpression ()
 Removes the selected expression from the stored user expressions, the selected expression must be a user stored expression.
 
void setAutoSave (bool enabled)
 Enabled or disable auto saving.
 
void storeCurrentUserExpression ()
 Adds the current expressions to the stored user expressions.
 

Signals

void evalErrorChanged ()
 Will be set to true if the current expression text reported an eval error with the context.
 
void expressionParsed (bool isValid)
 Emitted when the user changes the expression in the widget.
 
void parserErrorChanged ()
 Will be set to true if the current expression text reported a parser error with the context.
 

Public Member Functions

 QgsExpressionBuilderWidget (QWidget *parent=nullptr)
 Create a new expression builder widget with an optional parent.
 
 ~QgsExpressionBuilderWidget () override
 
bool evalError () const
 Will be set to true if the current expression text reported an eval error with the context.
 
QString expectedOutputFormat ()
 The set expected format string.
 
QgsExpressionContext expressionContext () const
 Returns the expression context for the widget.
 
QString expressionText ()
 Gets the expression string that has been set in the expression area.
 
QgsExpressionTreeViewexpressionTree () const
 Returns the expression tree.
 
void init (const QgsExpressionContext &context=QgsExpressionContext(), const QString &recentCollection=QStringLiteral("generic"), QgsExpressionBuilderWidget::Flags flags=LoadAll)
 Initialize without any layer.
 
void initWithFields (const QgsFields &fields, const QgsExpressionContext &context=QgsExpressionContext(), const QString &recentCollection=QStringLiteral("generic"), QgsExpressionBuilderWidget::Flags flags=LoadAll)
 Initialize with given fields without any layer.
 
void initWithLayer (QgsVectorLayer *layer, const QgsExpressionContext &context=QgsExpressionContext(), const QString &recentCollection=QStringLiteral("generic"), QgsExpressionBuilderWidget::Flags flags=LoadAll)
 Initialize with a layer.
 
bool isExpressionValid ()
 Returns if the expression is valid.
 
QgsVectorLayerlayer () const
 Returns the current layer or a nullptr.
 
void loadCodeFromFile (QString path)
 Loads code from the given file into the function editor.
 
void loadCodeFromProjectFunctions ()
 Loads code from the project into the function editor.
 
Q_DECL_DEPRECATED void loadFieldNames ()
 
Q_DECL_DEPRECATED void loadFieldNames (const QgsFields &fields)
 
Q_DECL_DEPRECATED void loadFieldsAndValues (const QMap< QString, QStringList > &fieldValues)
 Loads field names and values from the specified map.
 
void loadFunctionCode (const QString &code)
 Loads code into the function editor.
 
Q_DECL_DEPRECATED void loadRecent (const QString &collection=QStringLiteral("generic"))
 Loads the recent expressions from the given collection.
 
Q_DECL_DEPRECATED void loadUserExpressions ()
 Loads the user expressions.
 
Q_DECL_DEPRECATED QStandardItemModel * model ()
 Returns a pointer to the dialog's function item model.
 
void newFunctionFile (const QString &fileName="scratch")
 Creates a new file in the function editor.
 
bool parserError () const
 Will be set to true if the current expression text reports a parser error with the context.
 
QgsProjectproject ()
 Returns the project currently associated with the widget.
 
Q_DECL_DEPRECATED void removeFromUserExpressions (const QString &label)
 Removes the expression label from the user stored expressions.
 
void saveFunctionFile (QString fileName)
 Saves the current function editor text to the given file.
 
void saveProjectFunctionsEntry ()
 Saves the current function editor text to a project entry.
 
Q_DECL_DEPRECATED void saveToRecent (const QString &collection="generic")
 Adds the current expression to the given collection.
 
Q_DECL_DEPRECATED void saveToUserExpressions (const QString &label, const QString &expression, const QString &helpText)
 Stores the user expression with given label and helpText.
 
void setCustomPreviewGenerator (const QString &label, const QList< QPair< QString, QVariant > > &choices, const std::function< QgsExpressionContext(const QVariant &) > &previewContextGenerator)
 Sets the widget to run using a custom preview generator.
 
void setExpectedOutputFormat (const QString &expected)
 The set expected format string.
 
void setExpressionContext (const QgsExpressionContext &context)
 Sets the expression context for the widget.
 
void setExpressionPreviewVisible (bool isVisible)
 Sets whether the expression preview is visible.
 
void setExpressionText (const QString &expression)
 Sets the expression string for the widget.
 
void setGeomCalculator (const QgsDistanceArea &da)
 Sets geometry calculator used in distance/area calculations.
 
void setLayer (QgsVectorLayer *layer)
 Sets layer in order to get the fields and values.
 
void setProject (QgsProject *project)
 Sets the project currently associated with the widget.
 
void updateFunctionFileList (const QString &path)
 Updates the list of function files found at the given path.
 

Protected Member Functions

void showEvent (QShowEvent *e) override
 

Detailed Description

A reusable widget that can be used to build a expression string.

See QgsExpressionBuilderDialog for example of usage.

Definition at line 46 of file qgsexpressionbuilderwidget.h.

Member Typedef Documentation

◆ Flags

Definition at line 62 of file qgsexpressionbuilderwidget.h.

Member Enumeration Documentation

◆ Flag

Flag to determine what should be loaded.

Since
QGIS 3.14
Enumerator
LoadNothing 

Do not load anything.

LoadRecent 

Load recent expressions given the collection key.

LoadUserExpressions 

Load user expressions.

LoadAll 

Load everything.

Definition at line 55 of file qgsexpressionbuilderwidget.h.

Constructor & Destructor Documentation

◆ QgsExpressionBuilderWidget()

QgsExpressionBuilderWidget::QgsExpressionBuilderWidget ( QWidget *  parent = nullptr)

Create a new expression builder widget with an optional parent.

Definition at line 72 of file qgsexpressionbuilderwidget.cpp.

◆ ~QgsExpressionBuilderWidget()

QgsExpressionBuilderWidget::~QgsExpressionBuilderWidget ( )
override

Definition at line 247 of file qgsexpressionbuilderwidget.cpp.

Member Function Documentation

◆ autosave

void QgsExpressionBuilderWidget::autosave ( )
slot

Auto save the current Python function code.

Definition at line 1063 of file qgsexpressionbuilderwidget.cpp.

◆ editSelectedUserExpression

void QgsExpressionBuilderWidget::editSelectedUserExpression ( )
slot

Edits the selected expression from the stored user expressions, the selected expression must be a user stored expression.

Since
QGIS 3.14

Definition at line 1104 of file qgsexpressionbuilderwidget.cpp.

◆ evalError()

bool QgsExpressionBuilderWidget::evalError ( ) const

Will be set to true if the current expression text reported an eval error with the context.

Definition at line 796 of file qgsexpressionbuilderwidget.cpp.

◆ evalErrorChanged

void QgsExpressionBuilderWidget::evalErrorChanged ( )
signal

Will be set to true if the current expression text reported an eval error with the context.

◆ expectedOutputFormat()

QString QgsExpressionBuilderWidget::expectedOutputFormat ( )

The set expected format string.

This is pure text format and no expression validation is done against it.

Returns
The expected value format.

Definition at line 759 of file qgsexpressionbuilderwidget.cpp.

◆ expressionContext()

QgsExpressionContext QgsExpressionBuilderWidget::expressionContext ( ) const
inline

Returns the expression context for the widget.

The context is used for the expression preview result and for populating the list of available functions and variables.

See also
setExpressionContext

Definition at line 145 of file qgsexpressionbuilderwidget.h.

◆ expressionParsed

void QgsExpressionBuilderWidget::expressionParsed ( bool  isValid)
signal

Emitted when the user changes the expression in the widget.

Users of this widget should connect to this signal to decide if to let the user continue.

Parameters
isValidIs true if the expression the user has typed is valid.

◆ expressionText()

QString QgsExpressionBuilderWidget::expressionText ( )

Gets the expression string that has been set in the expression area.

Returns
The expression as a string.

Definition at line 749 of file qgsexpressionbuilderwidget.cpp.

◆ expressionTree()

QgsExpressionTreeView * QgsExpressionBuilderWidget::expressionTree ( ) const

Returns the expression tree.

Since
QGIS 3.14

Definition at line 722 of file qgsexpressionbuilderwidget.cpp.

◆ findExpressions

const QList< QgsExpressionItem * > QgsExpressionBuilderWidget::findExpressions ( const QString &  label)
slot

Returns the list of expression items matching a label.

Since
QGIS 3.12
Deprecated:
QGIS 3.14. Use expressionTree()->findExpressions instead.

Definition at line 1232 of file qgsexpressionbuilderwidget.cpp.

◆ init()

void QgsExpressionBuilderWidget::init ( const QgsExpressionContext context = QgsExpressionContext(),
const QString &  recentCollection = QStringLiteral( "generic" ),
QgsExpressionBuilderWidget::Flags  flags = LoadAll 
)

Initialize without any layer.

Since
QGIS 3.14

Definition at line 256 of file qgsexpressionbuilderwidget.cpp.

◆ initWithFields()

void QgsExpressionBuilderWidget::initWithFields ( const QgsFields fields,
const QgsExpressionContext context = QgsExpressionContext(),
const QString &  recentCollection = QStringLiteral( "generic" ),
QgsExpressionBuilderWidget::Flags  flags = LoadAll 
)

Initialize with given fields without any layer.

Since
QGIS 3.14

Definition at line 273 of file qgsexpressionbuilderwidget.cpp.

◆ initWithLayer()

void QgsExpressionBuilderWidget::initWithLayer ( QgsVectorLayer layer,
const QgsExpressionContext context = QgsExpressionContext(),
const QString &  recentCollection = QStringLiteral( "generic" ),
QgsExpressionBuilderWidget::Flags  flags = LoadAll 
)

Initialize with a layer.

Since
QGIS 3.14

Definition at line 267 of file qgsexpressionbuilderwidget.cpp.

◆ isExpressionValid()

bool QgsExpressionBuilderWidget::isExpressionValid ( )

Returns if the expression is valid.

Definition at line 702 of file qgsexpressionbuilderwidget.cpp.

◆ layer()

QgsVectorLayer * QgsExpressionBuilderWidget::layer ( ) const

Returns the current layer or a nullptr.

Definition at line 303 of file qgsexpressionbuilderwidget.cpp.

◆ loadAllUsedValues

void QgsExpressionBuilderWidget::loadAllUsedValues ( )
slot

Load all unique values from the set layer into the sample area.

Only the used ones. Without available values, even if the formatter can provide them (eg. RelationReference).

Since
QGIS 3.12

Definition at line 1034 of file qgsexpressionbuilderwidget.cpp.

◆ loadAllValues

void QgsExpressionBuilderWidget::loadAllValues ( )
slot

Load all unique values from the set layer into the sample area.

Including all available values, in case the formatter can provide them (eg. RelationReference).

Definition at line 994 of file qgsexpressionbuilderwidget.cpp.

◆ loadCodeFromFile()

void QgsExpressionBuilderWidget::loadCodeFromFile ( QString  path)

Loads code from the given file into the function editor.

Definition at line 577 of file qgsexpressionbuilderwidget.cpp.

◆ loadCodeFromProjectFunctions()

void QgsExpressionBuilderWidget::loadCodeFromProjectFunctions ( )

Loads code from the project into the function editor.

Since
QGIS 3.40

Definition at line 585 of file qgsexpressionbuilderwidget.cpp.

◆ loadFieldNames() [1/2]

Q_DECL_DEPRECATED void QgsExpressionBuilderWidget::loadFieldNames ( )
inline
Deprecated:
QGIS 3.14. This is now done automatically.

Definition at line 102 of file qgsexpressionbuilderwidget.h.

◆ loadFieldNames() [2/2]

Q_DECL_DEPRECATED void QgsExpressionBuilderWidget::loadFieldNames ( const QgsFields fields)
inline
Deprecated:
QGIS 3.14. Use expressionTree()->loadFieldNames() instead.

Definition at line 105 of file qgsexpressionbuilderwidget.h.

◆ loadFieldsAndValues()

void QgsExpressionBuilderWidget::loadFieldsAndValues ( const QMap< QString, QStringList > &  fieldValues)

Loads field names and values from the specified map.

Deprecated:
QGIS 3.14. This will not do anything, use setLayer() instead.

Definition at line 602 of file qgsexpressionbuilderwidget.cpp.

◆ loadFunctionCode()

void QgsExpressionBuilderWidget::loadFunctionCode ( const QString &  code)

Loads code into the function editor.

Definition at line 590 of file qgsexpressionbuilderwidget.cpp.

◆ loadRecent()

void QgsExpressionBuilderWidget::loadRecent ( const QString &  collection = QStringLiteral( "generic" ))

Loads the recent expressions from the given collection.

By default it is loaded from the collection "generic".

Deprecated:
QGIS 3.14. Use expressionTree()->loadRecent() instead.

Definition at line 717 of file qgsexpressionbuilderwidget.cpp.

◆ loadSampleUsedValues

void QgsExpressionBuilderWidget::loadSampleUsedValues ( )
slot

Load used sample values into the sample value area.

Only the used ones. Without available values, even if the formatter can provide them (eg. RelationReference).

Since
QGIS 3.12

Definition at line 1014 of file qgsexpressionbuilderwidget.cpp.

◆ loadSampleValues

void QgsExpressionBuilderWidget::loadSampleValues ( )
slot

Load sample values into the sample value area.

Including available values, in case the formatter can provide them (eg. RelationReference).

Definition at line 974 of file qgsexpressionbuilderwidget.cpp.

◆ loadUserExpressions()

void QgsExpressionBuilderWidget::loadUserExpressions ( )

Loads the user expressions.

Deprecated:
QGIS 3.14. Use expressionTree()->loadUserExpressions() instead.
Since
QGIS 3.12

Definition at line 728 of file qgsexpressionbuilderwidget.cpp.

◆ model()

QStandardItemModel * QgsExpressionBuilderWidget::model ( )

Returns a pointer to the dialog's function item model.

This method is exposed for testing purposes only - it should not be used to modify the model.

Deprecated:
QGIS 3.14

Definition at line 801 of file qgsexpressionbuilderwidget.cpp.

◆ newFunctionFile()

void QgsExpressionBuilderWidget::newFunctionFile ( const QString &  fileName = "scratch")

Creates a new file in the function editor.

Definition at line 451 of file qgsexpressionbuilderwidget.cpp.

◆ parserError()

bool QgsExpressionBuilderWidget::parserError ( ) const

Will be set to true if the current expression text reports a parser error with the context.

Definition at line 786 of file qgsexpressionbuilderwidget.cpp.

◆ parserErrorChanged

void QgsExpressionBuilderWidget::parserErrorChanged ( )
signal

Will be set to true if the current expression text reported a parser error with the context.

◆ project()

QgsProject * QgsExpressionBuilderWidget::project ( )

Returns the project currently associated with the widget.

See also
setProject()

Definition at line 808 of file qgsexpressionbuilderwidget.cpp.

◆ removeFromUserExpressions()

void QgsExpressionBuilderWidget::removeFromUserExpressions ( const QString &  label)

Removes the expression label from the user stored expressions.

Deprecated:
QGIS 3.14. Use expressionTree()->removeFromUserExpressions() instead.
Since
QGIS 3.12

Definition at line 738 of file qgsexpressionbuilderwidget.cpp.

◆ removeSelectedUserExpression

void QgsExpressionBuilderWidget::removeSelectedUserExpression ( )
slot

Removes the selected expression from the stored user expressions, the selected expression must be a user stored expression.

Since
QGIS 3.12

Definition at line 1133 of file qgsexpressionbuilderwidget.cpp.

◆ saveFunctionFile()

void QgsExpressionBuilderWidget::saveFunctionFile ( QString  fileName)

Saves the current function editor text to the given file.

Definition at line 380 of file qgsexpressionbuilderwidget.cpp.

◆ saveProjectFunctionsEntry()

void QgsExpressionBuilderWidget::saveProjectFunctionsEntry ( )

Saves the current function editor text to a project entry.

Since
QGIS 3.40

Definition at line 406 of file qgsexpressionbuilderwidget.cpp.

◆ saveToRecent()

void QgsExpressionBuilderWidget::saveToRecent ( const QString &  collection = "generic")

Adds the current expression to the given collection.

By default it is saved to the collection "generic".

Deprecated:
QGIS 3.14. Use expressionTree()->saveRecent() instead.

Definition at line 712 of file qgsexpressionbuilderwidget.cpp.

◆ saveToUserExpressions()

void QgsExpressionBuilderWidget::saveToUserExpressions ( const QString &  label,
const QString &  expression,
const QString &  helpText 
)

Stores the user expression with given label and helpText.

Deprecated:
QGIS 3.14. Use expressionTree()->saveToUserExpressions() instead.
Since
QGIS 3.12

Definition at line 733 of file qgsexpressionbuilderwidget.cpp.

◆ setAutoSave

void QgsExpressionBuilderWidget::setAutoSave ( bool  enabled)
inlineslot

Enabled or disable auto saving.

When enabled Python scripts will be auto saved when text changes.

Parameters
enabledtrue to enable auto saving.

Definition at line 380 of file qgsexpressionbuilderwidget.h.

◆ setCustomPreviewGenerator()

void QgsExpressionBuilderWidget::setCustomPreviewGenerator ( const QString &  label,
const QList< QPair< QString, QVariant > > &  choices,
const std::function< QgsExpressionContext(const QVariant &) > &  previewContextGenerator 
)

Sets the widget to run using a custom preview generator.

In this mode, the widget will call a callback function to generate a new QgsExpressionContext as the previewed object changes. This can be used to provide custom preview values for different objects (i.e. for objects which aren't vector layer features).

Parameters
labelThe label to display for the combo box presenting choices of objects. This should be a representative name, eg "Band" if the widget is showing choices of raster layer bands
choicesA list of choices to present to the user. Each choice is a pair of a human-readable label and a QVariant representing the object to preview.
previewContextGeneratorA function which takes a QVariant representing the object to preview, and returns a QgsExpressionContext to use for previewing the object.
Since
QGIS 3.38

Definition at line 707 of file qgsexpressionbuilderwidget.cpp.

◆ setExpectedOutputFormat()

void QgsExpressionBuilderWidget::setExpectedOutputFormat ( const QString &  expected)

The set expected format string.

This is pure text format and no expression validation is done against it.

Parameters
expectedThe expected value format for the expression.
Note
Only a UI hint and not used for expression validation.

Definition at line 764 of file qgsexpressionbuilderwidget.cpp.

◆ setExpressionContext()

void QgsExpressionBuilderWidget::setExpressionContext ( const QgsExpressionContext context)

Sets the expression context for the widget.

The context is used for the expression preview result and to populate the list of available functions and variables.

Parameters
contextexpression context
See also
expressionContext

Definition at line 770 of file qgsexpressionbuilderwidget.cpp.

◆ setExpressionPreviewVisible()

void QgsExpressionBuilderWidget::setExpressionPreviewVisible ( bool  isVisible)

Sets whether the expression preview is visible.

Since
QGIS 3.22

Definition at line 791 of file qgsexpressionbuilderwidget.cpp.

◆ setExpressionText()

void QgsExpressionBuilderWidget::setExpressionText ( const QString &  expression)

Sets the expression string for the widget.

Definition at line 754 of file qgsexpressionbuilderwidget.cpp.

◆ setGeomCalculator()

void QgsExpressionBuilderWidget::setGeomCalculator ( const QgsDistanceArea da)

Sets geometry calculator used in distance/area calculations.

Definition at line 744 of file qgsexpressionbuilderwidget.cpp.

◆ setLayer()

void QgsExpressionBuilderWidget::setLayer ( QgsVectorLayer layer)

Sets layer in order to get the fields and values.

Note
this needs to be called before calling loadFieldNames().

Definition at line 280 of file qgsexpressionbuilderwidget.cpp.

◆ setProject()

void QgsExpressionBuilderWidget::setProject ( QgsProject project)

Sets the project currently associated with the widget.

This controls which layers and relations and other project-specific items are shown in the widget.

See also
project()

Definition at line 813 of file qgsexpressionbuilderwidget.cpp.

◆ showEvent()

void QgsExpressionBuilderWidget::showEvent ( QShowEvent *  e)
overrideprotected

Definition at line 819 of file qgsexpressionbuilderwidget.cpp.

◆ storeCurrentUserExpression

void QgsExpressionBuilderWidget::storeCurrentUserExpression ( )
slot

Adds the current expressions to the stored user expressions.

Since
QGIS 3.12

Definition at line 1094 of file qgsexpressionbuilderwidget.cpp.

◆ updateFunctionFileList()

void QgsExpressionBuilderWidget::updateFunctionFileList ( const QString &  path)

Updates the list of function files found at the given path.

Definition at line 411 of file qgsexpressionbuilderwidget.cpp.


The documentation for this class was generated from the following files: