1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
---|---|
2 | // |
3 | // SPDX-License-Identifier: GPL-3.0-or-later |
4 | |
5 | #ifndef RUNCONFIGPANE_H |
6 | #define RUNCONFIGPANE_H |
7 | |
8 | #include "configutil.h" |
9 | |
10 | #include <QWidget> |
11 | |
12 | class RunConfigPanePrivate; |
13 | class RunConfigPane : public QWidget |
14 | { |
15 | Q_OBJECT |
16 | public: |
17 | explicit RunConfigPane(QWidget *parent = nullptr); |
18 | ~RunConfigPane(); |
19 | |
20 | void bindValues(config::RunParam *runParam); |
21 | |
22 | signals: |
23 | |
24 | public slots: |
25 | |
26 | private: |
27 | void setupUi(); |
28 | |
29 | RunConfigPanePrivate *const d; |
30 | }; |
31 | |
32 | #endif // RUNCONFIGPANE_H |
33 |