16#ifndef QGSPROCESSINGAGGREGATEWIDGETWRAPPER_H
17#define QGSPROCESSINGAGGREGATEWIDGETWRAPPER_H
20#include "ui_qgsprocessingaggregatemappingpanelbase.h"
32class GUI_EXPORT QgsProcessingAggregatePanelWidget :
public QgsPanelWidget,
private Ui::QgsProcessingAggregateMapPanelBase
37 QgsProcessingAggregatePanelWidget( QWidget *parent =
nullptr );
41 QVariant value()
const;
42 void setValue(
const QVariant &value );
55 void loadFieldsFromLayer();
57 void loadLayerFields();
63 bool mBlockChangedSignal =
false;
65 bool mSkipConfirmDialog =
false;
66 friend class TestProcessingGui;
74 QgsProcessingAggregateParameterDefinitionWidget(
75 QgsProcessingContext &context,
76 const QgsProcessingParameterWidgetContext &widgetContext,
77 const QgsProcessingParameterDefinition *definition =
nullptr,
78 const QgsProcessingAlgorithm *
algorithm =
nullptr,
81 QgsProcessingParameterDefinition *createParameter(
const QString &name,
const QString &description,
Qgis::ProcessingParameterFlags flags )
const override;
84 QComboBox *mParentLayerComboBox =
nullptr;
96 QString parameterType()
const override;
97 QgsAbstractProcessingParameterWidgetWrapper *createWidgetWrapper(
const QgsProcessingParameterDefinition *parameter,
Qgis::ProcessingMode type )
override SIP_FACTORY;
101 QgsProcessingAbstractParameterDefinitionWidget *createParameterDefinitionWidget(
102 QgsProcessingContext &context, const QgsProcessingParameterWidgetContext &widgetContext, const QgsProcessingParameterDefinition *definition =
nullptr, const QgsProcessingAlgorithm *
algorithm =
nullptr
105 void postInitialize( const QList<QgsAbstractProcessingParameterWidgetWrapper *> &wrappers ) override;
106 int stretch() const override;
109 void setParentLayerWrapperValue( const QgsAbstractProcessingParameterWidgetWrapper *parentWrapper );
112 void setWidgetValue( const QVariant &value, QgsProcessingContext &context ) override;
113 QVariant widgetValue() const override;
115 QString modelerExpressionFormatString() const override;
116 const QgsVectorLayer *linkedVectorLayer() const override;
119 QgsProcessingAggregatePanelWidget *mPanel =
nullptr;
120 std::unique_ptr<QgsVectorLayer> mParentLayer;
122 friend class TestProcessingGui;
ProcessingMode
Types of modes which Processing widgets can be created for.
@ Standard
Standard (single-run) algorithm mode.
QFlags< ProcessingParameterFlag > ProcessingParameterFlags
Flags which dictate the behavior of Processing parameters.
Holds mapping information for defining sets of aggregates of fields from a QgsFields object.
Abstract interface for generating an expression context.
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