QGIS API Documentation  2.14.0-Essen
Static Public Member Functions | List of all members
QgsExpressionContextUtils Class Reference

Contains utilities for working with QgsExpressionContext objects, including methods for creating scopes for specific uses (eg project scopes, layer scopes). More...

#include <qgsexpressioncontext.h>

Static Public Member Functions

static QgsExpressionContextScopeatlasScope (const QgsAtlasComposition *atlas)
 Creates a new scope which contains variables and functions relating to a QgsAtlasComposition. More...
 
static QgsExpressionContextScopecomposerItemScope (const QgsComposerItem *composerItem)
 Creates a new scope which contains variables and functions relating to a QgsComposerItem. More...
 
static QgsExpressionContextScopecompositionScope (const QgsComposition *composition)
 Creates a new scope which contains variables and functions relating to a QgsComposition. More...
 
static QgsExpressionContext createFeatureBasedContext (const QgsFeature &feature, const QgsFields &fields)
 Helper function for creating an expression context which contains just a feature and fields collection. More...
 
static QgsExpressionContextScopeglobalScope ()
 Creates a new scope which contains variables and functions relating to the global QGIS context. More...
 
static QgsExpressionContextScopelayerScope (const QgsMapLayer *layer)
 Creates a new scope which contains variables and functions relating to a QgsMapLayer. More...
 
static QgsExpressionContextScopemapSettingsScope (const QgsMapSettings &mapSettings)
 Creates a new scope which contains variables and functions relating to a QgsMapSettings object. More...
 
static QgsExpressionContextScopeprojectScope ()
 Creates a new scope which contains variables and functions relating to the current QGIS project. More...
 
static void registerContextFunctions ()
 Registers all known core functions provided by QgsExpressionContextScope objects. More...
 
static void setComposerItemVariable (QgsComposerItem *composerItem, const QString &name, const QVariant &value)
 Sets a composer item context variable. More...
 
static void setComposerItemVariables (QgsComposerItem *composerItem, const QgsStringMap &variables)
 Sets all composition context variables. More...
 
static void setCompositionVariable (QgsComposition *composition, const QString &name, const QVariant &value)
 Sets a composition context variable. More...
 
static void setCompositionVariables (QgsComposition *composition, const QgsStringMap &variables)
 Sets all composition context variables. More...
 
static void setGlobalVariable (const QString &name, const QVariant &value)
 Sets a global context variable. More...
 
static void setGlobalVariables (const QgsStringMap &variables)
 Sets all global context variables. More...
 
static void setLayerVariable (QgsMapLayer *layer, const QString &name, const QVariant &value)
 Sets a layer context variable. More...
 
static void setLayerVariables (QgsMapLayer *layer, const QgsStringMap &variables)
 Sets all layer context variables. More...
 
static void setProjectVariable (const QString &name, const QVariant &value)
 Sets a project context variable. More...
 
static void setProjectVariables (const QgsStringMap &variables)
 Sets all project context variables. More...
 
static QgsExpressionContextScopeupdateSymbolScope (const QgsSymbolV2 *symbol, QgsExpressionContextScope *symbolScope=nullptr)
 Updates a symbol scope related to a QgsSymbolV2 to an expression context. More...
 

Detailed Description

Contains utilities for working with QgsExpressionContext objects, including methods for creating scopes for specific uses (eg project scopes, layer scopes).

Note
added in QGIS 2.12

Definition at line 456 of file qgsexpressioncontext.h.

Member Function Documentation

QgsExpressionContextScope * QgsExpressionContextUtils::atlasScope ( const QgsAtlasComposition atlas)
static

Creates a new scope which contains variables and functions relating to a QgsAtlasComposition.

For instance, current page name and number.

Parameters
atlassource atlas. If null, a set of default atlas variables will be added to the scope.

Definition at line 816 of file qgsexpressioncontext.cpp.

QgsExpressionContextScope * QgsExpressionContextUtils::composerItemScope ( const QgsComposerItem composerItem)
static

Creates a new scope which contains variables and functions relating to a QgsComposerItem.

For instance, item size and position.

Parameters
composerItemsource composer item

Definition at line 853 of file qgsexpressioncontext.cpp.

QgsExpressionContextScope * QgsExpressionContextUtils::compositionScope ( const QgsComposition composition)
static

Creates a new scope which contains variables and functions relating to a QgsComposition.

For instance, number of pages and page sizes.

Parameters
compositionsource composition

Definition at line 749 of file qgsexpressioncontext.cpp.

QgsExpressionContext QgsExpressionContextUtils::createFeatureBasedContext ( const QgsFeature feature,
const QgsFields fields 
)
static

Helper function for creating an expression context which contains just a feature and fields collection.

Generally this method should not be used as the created context does not include standard scopes such as the global and project scopes.

Definition at line 919 of file qgsexpressioncontext.cpp.

QgsExpressionContextScope * QgsExpressionContextUtils::globalScope ( )
static

Creates a new scope which contains variables and functions relating to the global QGIS context.

For instance, QGIS version numbers and variables specified through QGIS options.

See also
setGlobalVariable()

Definition at line 445 of file qgsexpressioncontext.cpp.

QgsExpressionContextScope * QgsExpressionContextUtils::layerScope ( const QgsMapLayer layer)
static

Creates a new scope which contains variables and functions relating to a QgsMapLayer.

For instance, layer name, id and fields.

Definition at line 639 of file qgsexpressioncontext.cpp.

QgsExpressionContextScope * QgsExpressionContextUtils::mapSettingsScope ( const QgsMapSettings mapSettings)
static

Creates a new scope which contains variables and functions relating to a QgsMapSettings object.

For instance, map scale and rotation.

Definition at line 714 of file qgsexpressioncontext.cpp.

QgsExpressionContextScope * QgsExpressionContextUtils::projectScope ( )
static

Creates a new scope which contains variables and functions relating to the current QGIS project.

For instance, project path and title, and variables specified through the project properties.

See also
setProjectVariable()

Definition at line 572 of file qgsexpressioncontext.cpp.

void QgsExpressionContextUtils::registerContextFunctions ( )
static

Registers all known core functions provided by QgsExpressionContextScope objects.

Definition at line 927 of file qgsexpressioncontext.cpp.

void QgsExpressionContextUtils::setComposerItemVariable ( QgsComposerItem composerItem,
const QString name,
const QVariant value 
)
static

Sets a composer item context variable.

This variable will be contained within scopes retrieved via composerItemScope().

Parameters
composerItemtarget composer item
namevariable name
valuevariable value
See also
setComposerItemVariables()
composerItemScope()

Definition at line 884 of file qgsexpressioncontext.cpp.

void QgsExpressionContextUtils::setComposerItemVariables ( QgsComposerItem composerItem,
const QgsStringMap variables 
)
static

Sets all composition context variables.

Existing compositoin variables will be removed and replaced with the variables specified.

Parameters
composerItemtarget composer item
variablesnew set of layer variables
See also
setComposerItemVariable()
composerItemScope()

Definition at line 900 of file qgsexpressioncontext.cpp.

void QgsExpressionContextUtils::setCompositionVariable ( QgsComposition composition,
const QString name,
const QVariant value 
)
static

Sets a composition context variable.

This variable will be contained within scopes retrieved via compositionScope().

Parameters
compositiontarget composition
namevariable name
valuevariable value
See also
setCompositionVariables()
compositionScope()

Definition at line 781 of file qgsexpressioncontext.cpp.

void QgsExpressionContextUtils::setCompositionVariables ( QgsComposition composition,
const QgsStringMap variables 
)
static

Sets all composition context variables.

Existing composition variables will be removed and replaced with the variables specified.

Parameters
compositiontarget composition
variablesnew set of layer variables
See also
setCompositionVariable()
compositionScope()

Definition at line 797 of file qgsexpressioncontext.cpp.

void QgsExpressionContextUtils::setGlobalVariable ( const QString name,
const QVariant value 
)
static

Sets a global context variable.

This variable will be contained within scopes retrieved via globalScope().

Parameters
namevariable name
valuevariable value
See also
setGlobalVariable()
globalScope()

Definition at line 486 of file qgsexpressioncontext.cpp.

void QgsExpressionContextUtils::setGlobalVariables ( const QgsStringMap variables)
static

Sets all global context variables.

Existing global variables will be removed and replaced with the variables specified.

Parameters
variablesnew set of global variables
See also
setGlobalVariable()
globalScope()

Definition at line 501 of file qgsexpressioncontext.cpp.

void QgsExpressionContextUtils::setLayerVariable ( QgsMapLayer layer,
const QString name,
const QVariant value 
)
static

Sets a layer context variable.

This variable will be contained within scopes retrieved via layerScope().

Parameters
layermap layer
namevariable name
valuevariable value
See also
setLayerVariables()
layerScope()

Definition at line 679 of file qgsexpressioncontext.cpp.

void QgsExpressionContextUtils::setLayerVariables ( QgsMapLayer layer,
const QgsStringMap variables 
)
static

Sets all layer context variables.

Existing layer variables will be removed and replaced with the variables specified.

Parameters
layermap layer
variablesnew set of layer variables
See also
setLayerVariable()
layerScope()

Definition at line 695 of file qgsexpressioncontext.cpp.

void QgsExpressionContextUtils::setProjectVariable ( const QString name,
const QVariant value 
)
static

Sets a project context variable.

This variable will be contained within scopes retrieved via projectScope().

Parameters
namevariable name
valuevariable value
See also
setProjectVariables()
projectScope()

Definition at line 605 of file qgsexpressioncontext.cpp.

void QgsExpressionContextUtils::setProjectVariables ( const QgsStringMap variables)
static

Sets all project context variables.

Existing project variables will be removed and replaced with the variables specified.

Parameters
variablesnew set of project variables
See also
setProjectVariable()
projectScope()

Definition at line 620 of file qgsexpressioncontext.cpp.

QgsExpressionContextScope * QgsExpressionContextUtils::updateSymbolScope ( const QgsSymbolV2 symbol,
QgsExpressionContextScope symbolScope = nullptr 
)
static

Updates a symbol scope related to a QgsSymbolV2 to an expression context.

Parameters
symbolsymbol to extract properties from
symbolScopepointer to an existing scope to update
Note
added in QGIS 2.14

Definition at line 731 of file qgsexpressioncontext.cpp.


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