28#include "moc_qgsprocessingwidgetwrapper.cpp"
59 mBrowserModel =
model;
79 return mModelChildAlgorithmId;
115 , mParameterDefinition( parameter )
143 QHBoxLayout *hLayout =
new QHBoxLayout();
144 hLayout->setContentsMargins( 0, 0, 0, 0 );
145 hLayout->addWidget( mWidget, 1 );
147 hLayout->addWidget( mPropertyButton );
149 mPropertyButton->registerEnabledWidget( mWidget,
false );
150 mPropertyButton->registerExpressionContextGenerator(
this );
186 return mParameterDefinition;
191 if ( mPropertyButton && value.userType() == qMetaTypeId<QgsProperty>() )
193 mPropertyButton->setToProperty( value.value<
QgsProperty>() );
197 if ( mPropertyButton )
206 if ( mPropertyButton && mPropertyButton->isActive() )
207 return mPropertyButton->toProperty();
214 return QVariantMap();
237 QString description = mParameterDefinition->
description();
239 description = QObject::tr(
"%1 [optional]" ).arg( description );
240 auto label = std::make_unique<QLabel>( description );
241 label->setToolTip( mParameterDefinition->
toolTip() );
242 label->setWordWrap(
true );
243 return label.release();
251 if ( mPropertyButton )
252 return mPropertyButton->vectorLayer();
269 setDynamicParentLayerParameter( wrapper );
293 auto paramScope = std::make_unique<QgsExpressionContextScope>();
295 for (
const QString &var : additional )
297 paramScope->setVariable( var, QVariant() );
303 highlighted.append( additional );
317 setDynamicParentLayerParameter( wrapper );
323 if ( mPropertyButton )
327 std::unique_ptr<QgsProcessingContext> tmpContext;
333 tmpContext = std::make_unique<QgsProcessingContext>();
334 context = tmpContext.get();
338 if ( val.userType() == qMetaTypeId<QgsProcessingFeatureSourceDefinition>() )
348 mPropertyButton->setVectorLayer(
nullptr );
354 std::unique_ptr<QgsMapLayer> ownedLayer( context->
takeResultLayer( layer->
id() ) );
357 mDynamicLayer.reset( qobject_cast<QgsVectorLayer *>( ownedLayer.release() ) );
358 layer = mDynamicLayer.get();
365 mPropertyButton->setVectorLayer( layer );
371 auto widget = std::make_unique<QgsProcessingModelerParameterWidget>( model, childId, parameter, context );
380 return widget.release();
392 return QStringList();
400 return QStringList();
431 std::unique_ptr<QgsProcessingContext> tmpContext;
432 if ( processingContextGenerator )
437 tmpContext = std::make_unique<QgsProcessingContext>();
438 context = tmpContext.get();
443 if (
auto *lModel = widgetContext.
model() )
456 QStringList highlightedVariables = childScope->
variableNames();
457 QStringList highlightedFunctions = childScope->functionNames();
458 highlightedVariables += algorithmScope->variableNames();
459 highlightedVariables += lModel->variables().keys();
460 highlightedFunctions += algorithmScope->functionNames();
461 c.setHighlightedVariables( highlightedVariables );
462 c.setHighlightedFunctions( highlightedFunctions );
484 if ( mValue == value )
ProcessingMode
Types of modes which Processing widgets can be created for.
@ Batch
Batch processing mode.
@ Standard
Standard (single-run) algorithm mode.
ProcessingModelChildParameterSource
Processing model child parameter sources.
@ ModelOutput
Parameter value is linked to an output parameter for the model.
@ StaticValue
Parameter value is a static value.
@ Optional
Parameter is optional.
static QgsProcessingRegistry * processingRegistry()
Returns the application's processing registry, used for managing processing providers,...
A model for showing available data sources and other items in a structured tree.
Single scope for storing variables and functions for use within a QgsExpressionContext.
QStringList variableNames() const
Returns a list of variable names contained within the scope.
static QgsExpressionContextScope * processingModelAlgorithmScope(const QgsProcessingModelAlgorithm *model, const QVariantMap ¶meters, QgsProcessingContext &context)
Creates a new scope which contains variables and functions relating to a processing model algorithm,...
static QgsExpressionContextScope * processingAlgorithmScope(const QgsProcessingAlgorithm *algorithm, const QVariantMap ¶meters, QgsProcessingContext &context)
Creates a new scope which contains variables and functions relating to a processing algorithm,...
static QgsExpressionContextScope * layerScope(const QgsMapLayer *layer)
Creates a new scope which contains variables and functions relating to a QgsMapLayer.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
QStringList highlightedVariables() const
Returns the current list of variables highlighted within the context.
void appendScope(QgsExpressionContextScope *scope)
Appends a scope to the end of the context.
void setHighlightedVariables(const QStringList &variableNames)
Sets the list of variable names within the context intended to be highlighted to the user.
Map canvas is a class for displaying all GIS data types on a canvas.
Base class for all map layer types.
A bar for displaying non-blocking messages to the user.
Abstract base class for processing algorithms.
An interface for objects which can create Processing contexts.
virtual QgsProcessingContext * processingContext()=0
This method needs to be reimplemented in all classes which implement this interface and return a Proc...
Contains information about the context in which a processing algorithm is executed.
QgsExpressionContext & expressionContext()
Returns the expression context.
QgsMapLayer * takeResultLayer(const QString &id)
Takes the result map layer with matching id from the context and transfers ownership of it back to th...
Base class for all parameter definitions which represent file or layer destinations,...
Encapsulates settings relating to a feature source input to a processing algorithm.
QgsProperty source
Source definition.
Base class for the definition of processing parameters.
QStringList additionalExpressionContextVariables() const
Returns a list of additional expression context variables which are available for use when evaluating...
virtual QString toolTip() const
Returns a formatted tooltip for use with the parameter, which gives helpful information like paramete...
QgsProcessingAlgorithm * algorithm() const
Returns a pointer to the algorithm which owns this parameter.
QString description() const
Returns the description for the parameter.
QVariant defaultValueForGui() const
Returns the default value to use for the parameter in a GUI.
virtual bool isDestination() const
Returns true if this parameter represents a file or layer destination, e.g.
QString dynamicLayerParameterName() const
Returns the name of the parameter for a layer linked to a dynamic parameter, or an empty string if th...
bool isDynamic() const
Returns true if the parameter supports is dynamic, and can support data-defined values (i....
QgsPropertyDefinition dynamicPropertyDefinition() const
Returns the property definition for dynamic properties.
Makes metadata of processing parameters available.
virtual QStringList acceptedOutputTypes() const =0
Returns a list of compatible Processing output types for inputs for this parameter type.
virtual QList< int > acceptedDataTypes(const QgsProcessingParameterDefinition *parameter) const
Returns a list of compatible Processing data types for inputs for this parameter type for the specifi...
virtual QStringList acceptedParameterTypes() const =0
Returns a list of compatible Processing parameter types for inputs for this parameter type.
Contains settings which reflect the context in which a Processing parameter widget is shown.
QgsMapCanvas * mapCanvas() const
Returns the map canvas associated with the widget.
QgsProject * project() const
Returns the project associated with the widget.
QgsBrowserGuiModel * browserModel() const
Returns the browser model associated with the widget.
void setActiveLayer(QgsMapLayer *layer)
Sets the current active layer.
void setModelChildAlgorithmId(const QString &id)
Sets the child algorithm id within the model which the parameter widget is associated with.
void setProject(QgsProject *project)
Sets the project associated with the widget.
QgsMessageBar * messageBar() const
Returns the message bar associated with the widget.
void setMapCanvas(QgsMapCanvas *canvas)
Sets the map canvas associated with the widget.
void setBrowserModel(QgsBrowserGuiModel *model)
Sets the browser model associated with the widget.
QgsProcessingModelAlgorithm * model() const
Returns the model which the parameter widget is associated with.
void setMessageBar(QgsMessageBar *bar)
Sets the message bar associated with the widget.
QgsMapLayer * activeLayer() const
Returns the current active layer.
void setModel(QgsProcessingModelAlgorithm *model)
Sets the model which the parameter widget is associated with.
QString modelChildAlgorithmId() const
Returns the child algorithm ID within the model which the parameter widget is associated with.
An interface for objects which can create sets of parameter values for processing algorithms.
static QgsVectorLayer * parameterAsVectorLayer(const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context)
Evaluates the parameter with matching definition to a vector layer.
QgsProcessingParameterType * parameterType(const QString &id) const
Returns the parameter type registered for id.
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
A store for object properties.
Represents a vector layer which manages a vector based dataset.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into allowing algorithms to be written in pure substantial changes are required in order to port existing x Processing algorithms for QGIS x The most significant changes are outlined not GeoAlgorithm For algorithms which operate on features one by consider subclassing the QgsProcessingFeatureBasedAlgorithm class This class allows much of the boilerplate code for looping over features from a vector layer to be bypassed and instead requires implementation of a processFeature method Ensure that your algorithm(or algorithm 's parent class) implements the new pure virtual createInstance(self) call
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c