QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
qgsmodeloutputreorderwidget.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsmodeloutputreorderwidget.h
3 ----------------------------------
4 Date : April 2023
5 Copyright : (C) 2023 Nyall Dawson
6 Email : nyall dot dawson at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#ifndef QGSMODELOUTPUTREORDERWIDGET_H
17#define QGSMODELOUTPUTREORDERWIDGET_H
18
19#define SIP_NO_FILE
20
21#include "qgis.h"
22#include "qgis_gui.h"
23#include "ui_qgsmodeloutputreorderwidgetbase.h"
25#include <QDialog>
26
27class QStandardItemModel;
28class QgsProcessingModelAlgorithm;
29
31
38class GUI_EXPORT QgsModelOutputReorderWidget : public QWidget, private Ui::QgsModelOutputReorderWidgetBase
39{
40 Q_OBJECT
41
42 public:
46 QgsModelOutputReorderWidget( QWidget *parent = nullptr );
47
51 void setModel( QgsProcessingModelAlgorithm *model );
52
56 QStringList outputOrder() const;
57
61 QString outputGroup() const;
62
63 private:
64 QgsProcessingModelAlgorithm *mModel;
65 QList<QgsProcessingModelOutput> mOutputs;
66 QStandardItemModel *mItemModel = nullptr;
67};
68
69
76class GUI_EXPORT QgsModelOutputReorderDialog : public QDialog
77{
78 Q_OBJECT
79
80 public:
84 QgsModelOutputReorderDialog( QWidget *parent = nullptr );
85
89 void setModel( QgsProcessingModelAlgorithm *model );
90
94 QStringList outputOrder() const;
95
99 QString outputGroup() const;
100
101 private:
102 QgsModelOutputReorderWidget *mWidget = nullptr;
103};
104
106
107#endif // QGSMODELOUTPUTREORDERWIDGET_H