QGIS API Documentation  3.4.15-Madeira (e83d02e274)
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"
27 
30 
38 class GUI_EXPORT QgsProcessingAlgorithmConfigurationWidget : public QWidget
39 {
40  Q_OBJECT
41 
42  public:
43 
47  QgsProcessingAlgorithmConfigurationWidget( QWidget *parent = nullptr );
48  ~QgsProcessingAlgorithmConfigurationWidget() override = default;
49 
53  virtual QVariantMap configuration() const = 0;
54 
58  virtual void setConfiguration( const QVariantMap &configuration ) = 0;
59 };
60 
61 
69 {
70  public:
72 
77 
81  virtual bool canCreateFor( const QgsProcessingAlgorithm *algorithm ) const = 0;
82 };
83 
84 
85 #endif // QGSPROCESSINGALGORITHMCONFIGURATIONWIDGET_H
Abstract base class for processing algorithms.
#define SIP_FACTORY
Definition: qgis_sip.h:69
Interface base class for factories for algorithm configuration widgets.
A configuration widget for processing algorithms allows providing additional configuration options di...
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