| 
    QGIS API Documentation
    3.26.3-Buenos Aires (65e4edfdad)
    
   | 
 
 
 
 
Go to the documentation of this file.
   28 #include <QHBoxLayout> 
   56   mBrowserModel = 
model;
 
   76   return mModelChildAlgorithmId;
 
  112   , mParameterDefinition( parameter )
 
  140     QHBoxLayout *hLayout = 
new QHBoxLayout();
 
  141     hLayout->setContentsMargins( 0, 0, 0, 0 );
 
  142     hLayout->addWidget( mWidget, 1 );
 
  144     hLayout->addWidget( mPropertyButton );
 
  146     mPropertyButton->registerEnabledWidget( mWidget, 
false );
 
  147     mPropertyButton->registerExpressionContextGenerator( 
this );
 
  183   return mParameterDefinition;
 
  188   if ( mPropertyButton && value.canConvert< 
QgsProperty >() )
 
  190     mPropertyButton->setToProperty( value.value< 
QgsProperty >() );
 
  194     if ( mPropertyButton )
 
  203   if ( mPropertyButton && mPropertyButton->isActive() )
 
  204     return mPropertyButton->toProperty();
 
  211   return QVariantMap();
 
  234       QString description = mParameterDefinition->
description();
 
  236         description = QObject::tr( 
"%1 [optional]" ).arg( description );
 
  237       std::unique_ptr< QLabel > label = std::make_unique< QLabel >( description );
 
  238       label->setToolTip( mParameterDefinition->
toolTip() );
 
  239       return label.release();
 
  247   if ( mPropertyButton )
 
  248     return mPropertyButton->vectorLayer();
 
  263           if ( wrapper->parameterDefinition()->name() == 
parameterDefinition()->dynamicLayerParameterName() )
 
  265             setDynamicParentLayerParameter( wrapper );
 
  289     std::unique_ptr< QgsExpressionContextScope > paramScope = std::make_unique< QgsExpressionContextScope >();
 
  291     for ( 
const QString &var : additional )
 
  293       paramScope->setVariable( var, QVariant() );
 
  299     highlighted.append( additional );
 
  314     setDynamicParentLayerParameter( wrapper );
 
  320   if ( mPropertyButton )
 
  324     std::unique_ptr< QgsProcessingContext > tmpContext;
 
  330       tmpContext = std::make_unique< QgsProcessingContext >();
 
  331       context = tmpContext.get();
 
  345       mPropertyButton->setVectorLayer( 
nullptr );
 
  351     std::unique_ptr< QgsMapLayer > ownedLayer( context->
takeResultLayer( layer->
id() ) );
 
  354       mDynamicLayer.reset( qobject_cast< QgsVectorLayer * >( ownedLayer.release() ) );
 
  355       layer = mDynamicLayer.get();
 
  362     mPropertyButton->setVectorLayer( layer );
 
  368   std::unique_ptr< QgsProcessingModelerParameterWidget > widget = std::make_unique< QgsProcessingModelerParameterWidget >( model, childId, parameter, context );
 
  373     widget->setSourceType( QgsProcessingModelChildParameterSource::ModelOutput );
 
  377   return widget.release();
 
  389   return QList< int >();
 
  399   return QgsProcessingModelChildParameterSource::StaticValue;
 
  411   std::unique_ptr< QgsProcessingContext > tmpContext;
 
  412   if ( processingContextGenerator )
 
  417     tmpContext = std::make_unique< QgsProcessingContext >();
 
  418     context = tmpContext.get();
 
  423   if ( 
auto *lModel = widgetContext.
model() )
 
  436     QStringList highlightedVariables = childScope->
variableNames();
 
  437     QStringList highlightedFunctions = childScope->functionNames();
 
  438     highlightedVariables += algorithmScope->variableNames();
 
  439     highlightedVariables += lModel->variables().keys();
 
  440     highlightedFunctions += algorithmScope->functionNames();
 
  441     c.setHighlightedVariables( highlightedVariables );
 
  442     c.setHighlightedFunctions( highlightedFunctions );
 
  465   if ( mValue == value )
 
  
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
 
QgsMapLayer * activeLayer() const
Returns the current active layer.
 
Contains settings which reflect the context in which a Processing parameter widget is shown,...
 
A store for object properties.
 
void setModelChildAlgorithmId(const QString &id)
Sets the child algorithm id within the model which the parameter widget is associated with.
 
@ VectorLayer
Vector layer.
 
QString description() const
Returns the description for the parameter.
 
QgsMapCanvas * mapCanvas() const
Returns the map canvas associated with the widget.
 
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
 
QgsMapLayer * takeResultLayer(const QString &id)
Takes the result map layer with matching id from the context and transfers ownership of it back to th...
 
void setModel(QgsProcessingModelAlgorithm *model)
Sets the model which the parameter widget is associated with.
 
static QgsExpressionContextScope * layerScope(const QgsMapLayer *layer)
Creates a new scope which contains variables and functions relating to a QgsMapLayer.
 
Map canvas is a class for displaying all GIS data types on a canvas.
 
void setMessageBar(QgsMessageBar *bar)
Sets the message bar associated with the widget.
 
QStringList additionalExpressionContextVariables() const
Returns a list of additional expression context variables which are available for use when evaluating...
 
Base class for the definition of processing parameters.
 
bool isDynamic() const
Returns true if the parameter supports is dynamic, and can support data-defined values (i....
 
QgsProperty source
Source definition.
 
void setActiveLayer(QgsMapLayer *layer)
Sets the current active layer.
 
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
 
@ Standard
Standard algorithm dialog.
 
QStringList variableNames() const
Returns a list of variable names contained within the scope.
 
void setMapCanvas(QgsMapCanvas *canvas)
Sets the map canvas associated with the widget.
 
Base class for all parameter definitions which represent file or layer destinations,...
 
Encapsulates settings relating to a feature source input to a processing algorithm.
 
QString modelChildAlgorithmId() const
Returns the child algorithm ID within the model which the parameter widget is associated with.
 
QgsProject * project() const
Returns the project associated with the widget.
 
static QgsVectorLayer * parameterAsVectorLayer(const QgsProcessingParameterDefinition *definition, const QVariantMap ¶meters, QgsProcessingContext &context)
Evaluates the parameter with matching definition to a vector layer.
 
Contains information about the context in which a processing algorithm is executed.
 
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.
 
@ Batch
Batch processing dialog.
 
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,...
 
A bar for displaying non-blocking messages to the user.
 
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,...
 
QString id() const
Returns the layer's unique ID, which is used to access this layer from QgsProject.
 
An interface for objects which can create sets of parameter values for processing algorithms.
 
QStringList highlightedVariables() const
Returns the current list of variables highlighted within the context.
 
Single scope for storing variables and functions for use within a QgsExpressionContext....
 
void appendScope(QgsExpressionContextScope *scope)
Appends a scope to the end of the context.
 
WidgetType
Types of dialogs which Processing widgets can be created for.
 
QgsPropertyDefinition dynamicPropertyDefinition() const
Returns the property definition for dynamic properties.
 
Abstract base class for processing algorithms.
 
QVariant defaultValueForGui() const
Returns the default value to use for the parameter in a GUI.
 
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
 
void setProject(QgsProject *project)
Sets the project associated with the widget.
 
Represents a vector layer which manages a vector based data sets.
 
Base class for all map layer types. This is the base class for all map layer types (vector,...
 
QgsExpressionContext & expressionContext()
Returns the expression context.
 
void setBrowserModel(QgsBrowserGuiModel *model)
Sets the browser model associated with the widget.
 
void setHighlightedVariables(const QStringList &variableNames)
Sets the list of variable names within the context intended to be highlighted to the user.
 
virtual bool isDestination() const
Returns true if this parameter represents a file or layer destination, e.g.
 
QgsProcessingModelAlgorithm * model() const
Returns the model which the parameter widget is associated with.
 
virtual QgsProcessingContext * processingContext()=0
This method needs to be reimplemented in all classes which implement this interface and return a Proc...
 
@ FlagOptional
Parameter is optional.
 
QgsBrowserGuiModel * browserModel() const
Returns the browser model associated with the widget.
 
A model for showing available data sources and other items in a structured tree.
 
An interface for objects which can create Processing contexts.
 
QgsMessageBar * messageBar() const
Returns the message bar associated with the widget.