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
12class RunConfigPanePrivate;
13class RunConfigPane : public QWidget
14{
15 Q_OBJECT
16public:
17 explicit RunConfigPane(QWidget *parent = nullptr);
18 ~RunConfigPane();
19
20 void bindValues(config::RunParam *runParam);
21
22signals:
23
24public slots:
25
26private:
27 void setupUi();
28
29 RunConfigPanePrivate *const d;
30};
31
32#endif // RUNCONFIGPANE_H
33