QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
qgsprocessingalgorithmconfigurationwidget.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsprocessingalgorithmconfig.h
3  --------------------------
4  begin : April 2018
5  copyright : (C) 2018 by Matthias Kuhn
6  email : [email protected]
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 
19 #ifndef QGSPROCESSINGALGORITHMCONFIGURATIONWIDGET_H
20 #define QGSPROCESSINGALGORITHMCONFIGURATIONWIDGET_H
21 
22 #include <QWidget>
23 #include <QVariantMap>
24 
25 #include "qgis_gui.h"
26 #include "qgis_sip.h"
28 
31 
32 
41 {
42  Q_OBJECT
43 
44  public:
45 
49  QgsProcessingAlgorithmConfigurationWidget( QWidget *parent = nullptr );
50  ~QgsProcessingAlgorithmConfigurationWidget() override = default;
51 
55  virtual QVariantMap configuration() const = 0;
56 
60  virtual void setConfiguration( const QVariantMap &configuration ) = 0;
61 
72  virtual void setWidgetContext( const QgsProcessingParameterWidgetContext &context );
73 
82  const QgsProcessingParameterWidgetContext &widgetContext() const;
83 
90  void setAlgorithm( const QgsProcessingAlgorithm *algorithm );
91 
98  const QgsProcessingAlgorithm *algorithm() const { return mAlgorithm; }
99 
106  void registerProcessingContextGenerator( QgsProcessingContextGenerator *generator );
107 
109 
110  private:
111 
112  QgsProcessingContextGenerator *mContextGenerator = nullptr;
113  const QgsProcessingAlgorithm *mAlgorithm = nullptr;
115 };
116 
117 
125 {
126  public:
128 
133 
137  virtual bool canCreateFor( const QgsProcessingAlgorithm *algorithm ) const = 0;
138 };
139 
140 
141 #endif // QGSPROCESSINGALGORITHMCONFIGURATIONWIDGET_H
Abstract base class for processing algorithms.
virtual QgsExpressionContext createExpressionContext() const =0
This method needs to be reimplemented in all classes which implement this interface and return an exp...
An interface for objects which can create Processing contexts.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
const QgsProcessingAlgorithm * algorithm() const
Returns the algorithm instance associated with this widget.
#define SIP_FACTORY
Definition: qgis_sip.h:76
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
Abstract interface for generating an expression context.
Interface base class for factories for algorithm configuration widgets.
Contains settings which reflect the context in which a Processing parameter widget is shown...
A configuration widget for processing algorithms allows providing additional configuration options di...