| 1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. | 
|---|---|
| 2 | // | 
| 3 | // SPDX-License-Identifier: GPL-3.0-or-later | 
| 4 | |
| 5 | #ifndef CMAKEOPTIONWIDGET_H | 
| 6 | #define CMAKEOPTIONWIDGET_H | 
| 7 | |
| 8 | #include "common/common.h" | 
| 9 | |
| 10 | class CMakeOptionWidgetPrivate; | 
| 11 | class CMakeOptionWidget : public PageWidget | 
| 12 | { | 
| 13 | Q_OBJECT | 
| 14 | public: | 
| 15 | explicit CMakeOptionWidget(QWidget *parent = nullptr); | 
| 16 | ~CMakeOptionWidget() override; | 
| 17 | |
| 18 | void saveConfig() override; | 
| 19 | void readConfig() override; | 
| 20 | |
| 21 | signals: | 
| 22 | |
| 23 | public slots: | 
| 24 | private: | 
| 25 | CMakeOptionWidgetPrivate *const d; | 
| 26 | }; | 
| 27 | |
| 28 | #endif // CMAKEOPTIONWIDGET_H | 
| 29 | 
