QGIS API Documentation
3.20.0-Odense (decaadbb31)
|
Abstract base class for widgets which allow users to specify the properties of a Processing parameter. More...
#include <qgsprocessingparameterdefinitionwidget.h>
Public Member Functions | |
QgsProcessingAbstractParameterDefinitionWidget (QgsProcessingContext &context, const QgsProcessingParameterWidgetContext &widgetContext, const QgsProcessingParameterDefinition *definition=nullptr, const QgsProcessingAlgorithm *algorithm=nullptr, QWidget *parent=nullptr) | |
Creates a new QgsProcessingAbstractParameterDefinitionWidget, with the specified parent widget. More... | |
QgsExpressionContext | createExpressionContext () const override |
This method needs to be reimplemented in all classes which implement this interface and return an expression context. More... | |
virtual QgsProcessingParameterDefinition * | createParameter (const QString &name, const QString &description, QgsProcessingParameterDefinition::Flags flags) const =0 |
Returns a new instance of a parameter definition, using the current settings defined in the dialog. More... | |
void | registerProcessingContextGenerator (QgsProcessingContextGenerator *generator) |
Registers a Processing context generator class that will be used to retrieve a Processing context for the widget when required. More... | |
virtual void | setWidgetContext (const QgsProcessingParameterWidgetContext &context) |
Sets the context in which the Processing definition widget is shown, e.g., the parent model algorithm, a linked map canvas, and other relevant information which allows the widget to fine-tune its behavior. More... | |
const QgsProcessingParameterWidgetContext & | widgetContext () const |
Returns the context in which the Processing definition widget is shown, e.g., the parent model algorithm, a linked map canvas, and other relevant information which allows the widget to fine-tune its behavior. More... | |
Public Member Functions inherited from QgsExpressionContextGenerator | |
virtual | ~QgsExpressionContextGenerator ()=default |
Abstract base class for widgets which allow users to specify the properties of a Processing parameter.
Definition at line 46 of file qgsprocessingparameterdefinitionwidget.h.
QgsProcessingAbstractParameterDefinitionWidget::QgsProcessingAbstractParameterDefinitionWidget | ( | QgsProcessingContext & | context, |
const QgsProcessingParameterWidgetContext & | widgetContext, | ||
const QgsProcessingParameterDefinition * | definition = nullptr , |
||
const QgsProcessingAlgorithm * | algorithm = nullptr , |
||
QWidget * | parent = nullptr |
||
) |
Creates a new QgsProcessingAbstractParameterDefinitionWidget, with the specified parent widget.
The context argument must specify a Processing context, which will be used by the widget to evaluate existing definition properties such as default values. Similarly, the widgetContext argument specifies the wider GUI context in which the widget will be used.
The optional definition argument may be used to provide a parameter definition to use to initially populate the widget's state.
Additionally, the optional algorithm parameter may be used to specify the algorithm or model associated with the parameter.
Definition at line 36 of file qgsprocessingparameterdefinitionwidget.cpp.
|
overridevirtual |
This method needs to be reimplemented in all classes which implement this interface and return an expression context.
Implements QgsExpressionContextGenerator.
Definition at line 61 of file qgsprocessingparameterdefinitionwidget.cpp.
|
pure virtual |
Returns a new instance of a parameter definition, using the current settings defined in the dialog.
Common properties for parameters, including the name, description, and parameter flags are passed to the method. Subclass implementations must use these properties when crafting a parameter definition which also respects the additional properties specific to the parameter type handled by the widget subclass.
void QgsProcessingAbstractParameterDefinitionWidget::registerProcessingContextGenerator | ( | QgsProcessingContextGenerator * | generator | ) |
Registers a Processing context generator class that will be used to retrieve a Processing context for the widget when required.
Definition at line 56 of file qgsprocessingparameterdefinitionwidget.cpp.
|
virtual |
Sets the context in which the Processing definition widget is shown, e.g., the parent model algorithm, a linked map canvas, and other relevant information which allows the widget to fine-tune its behavior.
Subclasses should take care to call the base class method when reimplementing this method.
Definition at line 46 of file qgsprocessingparameterdefinitionwidget.cpp.
const QgsProcessingParameterWidgetContext & QgsProcessingAbstractParameterDefinitionWidget::widgetContext | ( | ) | const |
Returns the context in which the Processing definition widget is shown, e.g., the parent model algorithm, a linked map canvas, and other relevant information which allows the widget to fine-tune its behavior.
Definition at line 51 of file qgsprocessingparameterdefinitionwidget.cpp.