RedPanda-CPP/RedPandaIDE/settingsdialog/settingsdialog.h

98 lines
2.9 KiB
C
Raw Permalink Normal View History

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;
}
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);
void selectFirstWidget();
static PSettingsDialog optionDialog();
2021-09-14 17:33:47 +08:00
static PSettingsDialog projectOptionDialog();
2021-10-24 17:31:20 +08:00
bool setCurrentWidget(const QString &widgetName, const QString &groupName);
bool appShouldQuit() const;
2021-04-17 23:17:22 +08:00
private slots:
void closeAndQuit();
void showWidget(const QModelIndex &index);
2021-04-17 23:17:22 +08:00
void widget_settings_changed(bool value);
void onWidgetsViewCurrentChanged(const QModelIndex &index, const QModelIndex &previous);
2021-04-17 23:17:22 +08:00
2021-12-08 22:47:28 +08:00
void on_btnCancel_pressed();
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;
bool mAppShouldQuit;
2021-04-17 23:17:22 +08:00
// CompilerSetOptionWidget *pCompilerSetOptionWidget;
// CompilerAutolinkWidget *pCompilerAutolinkWidget;
// EditorGeneralWidget *pEditorGeneralWidget;
// EditorFontWidget *pEditorFontWidget;
// EditorClipboardWidget *pEditorClipboardWidget;
// EditorColorSchemeWidget *pEditorColorSchemeWidget;
2023-07-25 09:41:20 +08:00
// EnvironmentAppearanceWidget *pEnvironmentAppearanceWidget;
// EditorSymbolCompletionWidget *pEditorSymbolCompletionWidget;
// EditorCodeCompletionWidget *pEditorCodeCompletionWidget;
// EditorSyntaxCheckWidget *pEditorSyntaxCheckWidget;
// EditorAutoSaveWidget *pEditorAutoSaveWidget;
// EditorMiscWidget *pEditorMiscWidget;
// ExecutorGeneralWidget *pExecutorGeneralWidget;
// DebugGeneralWidget *pDebugGeneralWidget;
// FormatterGeneralWidget *pFormatterGeneralWidget;
// QWidget interface
protected:
void closeEvent(QCloseEvent *event) override;
2021-04-17 23:17:22 +08:00
};
#endif // SETTINGSDIALOG_H