16#ifndef QGSPROCESSINGFIELDMAPWIDGETWRAPPER_H
17#define QGSPROCESSINGFIELDMAPWIDGETWRAPPER_H
21#include "ui_qgsprocessingfieldsmappingpanelbase.h"
32class GUI_EXPORT QgsProcessingFieldMapPanelWidget :
public QgsPanelWidget,
private Ui::QgsProcessingFieldMapPanelBase
37 QgsProcessingFieldMapPanelWidget( QWidget *parent =
nullptr );
41 QVariant value()
const;
42 void setValue(
const QVariant &value );
55 void loadFieldsFromLayer();
57 void loadLayerFields();
63 bool mSkipConfirmDialog =
false;
65 bool mBlockChangedSignal =
false;
66 friend class TestProcessingGui;
74 QgsProcessingFieldMapParameterDefinitionWidget( QgsProcessingContext &context,
const QgsProcessingParameterWidgetContext &widgetContext,
const QgsProcessingParameterDefinition *definition =
nullptr,
const QgsProcessingAlgorithm *
algorithm =
nullptr, QWidget *parent
SIP_TRANSFERTHIS =
nullptr );
75 QgsProcessingParameterDefinition *createParameter(
const QString &name,
const QString &description,
Qgis::ProcessingParameterFlags flags )
const override;
78 QComboBox *mParentLayerComboBox =
nullptr;
90 QString parameterType()
const override;
91 QgsAbstractProcessingParameterWidgetWrapper *createWidgetWrapper(
const QgsProcessingParameterDefinition *parameter,
Qgis::ProcessingMode type )
override SIP_FACTORY;
95 QgsProcessingAbstractParameterDefinitionWidget *createParameterDefinitionWidget(
96 QgsProcessingContext &context,
97 const QgsProcessingParameterWidgetContext &widgetContext,
98 const QgsProcessingParameterDefinition *definition =
nullptr,
99 const QgsProcessingAlgorithm *
algorithm =
nullptr
102 void postInitialize( const QList<QgsAbstractProcessingParameterWidgetWrapper *> &wrappers ) override;
103 int stretch() const override;
106 void setParentLayerWrapperValue( const QgsAbstractProcessingParameterWidgetWrapper *parentWrapper );
109 void setWidgetValue( const QVariant &value, QgsProcessingContext &context ) override;
110 QVariant widgetValue() const override;
112 QString modelerExpressionFormatString() const override;
113 const QgsVectorLayer *linkedVectorLayer() const override;
116 QgsProcessingFieldMapPanelWidget *mPanel =
nullptr;
117 std::unique_ptr<QgsVectorLayer> mParentLayer;
119 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.
Abstract interface for generating an expression context.
Holds mapping information for mapping from one set of QgsFields to another.
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