2021-12-26 23:18:28 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020-2022 Roy Qu (royqh1979@gmail.com)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2021-04-17 23:17:22 +08:00
|
|
|
#ifndef SETTINGSDIALOG_H
|
|
|
|
#define SETTINGSDIALOG_H
|
|
|
|
|
|
|
|
#include <QAbstractItemModel>
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QStandardItemModel>
|
2022-01-04 16:50:54 +08:00
|
|
|
#include <memory>
|
2021-04-17 23:17:22 +08:00
|
|
|
|
|
|
|
class SettingsWidget;
|
|
|
|
namespace Ui {
|
|
|
|
class SettingsDialog;
|
|
|
|
}
|
|
|
|
|
2021-09-14 12:10:43 +08:00
|
|
|
class SettingsDialog;
|
|
|
|
using PSettingsDialog = std::shared_ptr<SettingsDialog>;
|
2021-04-17 23:17:22 +08:00
|
|
|
class SettingsDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
GetWidgetIndexRole = Qt::UserRole + 1
|
|
|
|
};
|
|
|
|
explicit SettingsDialog(QWidget *parent = nullptr);
|
|
|
|
~SettingsDialog();
|
|
|
|
|
|
|
|
void addWidget(SettingsWidget* pWidget);
|
2021-09-14 12:10:43 +08:00
|
|
|
|
|
|
|
void selectFirstWidget();
|
|
|
|
|
|
|
|
static PSettingsDialog optionDialog();
|
2021-09-14 17:33:47 +08:00
|
|
|
static PSettingsDialog projectOptionDialog();
|
2021-09-14 12:10:43 +08:00
|
|
|
|
2021-10-24 17:31:20 +08:00
|
|
|
bool setCurrentWidget(const QString &widgetName, const QString &groupName);
|
|
|
|
|
2021-10-08 20:01:29 +08:00
|
|
|
bool appShouldQuit() const;
|
|
|
|
|
2021-04-17 23:17:22 +08:00
|
|
|
private slots:
|
2021-10-08 20:01:29 +08:00
|
|
|
void closeAndQuit();
|
2021-04-17 23:17:22 +08:00
|
|
|
void widget_settings_changed(bool value);
|
|
|
|
void on_widgetsView_clicked(const QModelIndex &index);
|
|
|
|
|
2021-12-08 22:47:28 +08:00
|
|
|
void on_btnCancel_pressed();
|
2021-04-18 00:08:01 +08:00
|
|
|
|
|
|
|
void on_btnApply_pressed();
|
|
|
|
|
|
|
|
void on_btnOk_pressed();
|
|
|
|
private:
|
|
|
|
void saveCurrentPageSettings(bool confirm);
|
2021-04-17 23:17:22 +08:00
|
|
|
private:
|
|
|
|
Ui::SettingsDialog *ui;
|
|
|
|
QList<SettingsWidget*> mSettingWidgets;
|
|
|
|
QStandardItemModel model;
|
2021-10-08 20:01:29 +08:00
|
|
|
bool mAppShouldQuit;
|
2021-04-17 23:17:22 +08:00
|
|
|
|
2021-09-14 12:10:43 +08:00
|
|
|
// CompilerSetOptionWidget *pCompilerSetOptionWidget;
|
|
|
|
// CompilerAutolinkWidget *pCompilerAutolinkWidget;
|
|
|
|
// EditorGeneralWidget *pEditorGeneralWidget;
|
|
|
|
// EditorFontWidget *pEditorFontWidget;
|
|
|
|
// EditorClipboardWidget *pEditorClipboardWidget;
|
|
|
|
// EditorColorSchemeWidget *pEditorColorSchemeWidget;
|
2023-07-25 09:41:20 +08:00
|
|
|
// EnvironmentAppearanceWidget *pEnvironmentAppearanceWidget;
|
2021-09-14 12:10:43 +08:00
|
|
|
// EditorSymbolCompletionWidget *pEditorSymbolCompletionWidget;
|
|
|
|
// EditorCodeCompletionWidget *pEditorCodeCompletionWidget;
|
|
|
|
// EditorSyntaxCheckWidget *pEditorSyntaxCheckWidget;
|
|
|
|
// EditorAutoSaveWidget *pEditorAutoSaveWidget;
|
|
|
|
// EditorMiscWidget *pEditorMiscWidget;
|
|
|
|
// ExecutorGeneralWidget *pExecutorGeneralWidget;
|
|
|
|
// DebugGeneralWidget *pDebugGeneralWidget;
|
|
|
|
// FormatterGeneralWidget *pFormatterGeneralWidget;
|
2021-12-23 09:11:58 +08:00
|
|
|
|
|
|
|
|
|
|
|
// QWidget interface
|
|
|
|
protected:
|
|
|
|
void closeEvent(QCloseEvent *event) override;
|
2021-04-17 23:17:22 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SETTINGSDIALOG_H
|