diff options
author | Andrew <forkk@forkk.net> | 2013-01-28 15:35:09 -0600 |
---|---|---|
committer | Andrew <forkk@forkk.net> | 2013-01-28 15:35:09 -0600 |
commit | a25bedd7706b14cdae91556e4a577e410745f29a (patch) | |
tree | ea803a4bcfe8dc25ee8295c406b55c4772909db1 /gui/settingsdialog.h | |
parent | 8926b2422628a288fb6a04417f90e0a9739b82d1 (diff) | |
download | PrismLauncher-a25bedd7706b14cdae91556e4a577e410745f29a.tar.gz PrismLauncher-a25bedd7706b14cdae91556e4a577e410745f29a.tar.bz2 PrismLauncher-a25bedd7706b14cdae91556e4a577e410745f29a.zip |
Implemented settings dialog.
Diffstat (limited to 'gui/settingsdialog.h')
-rw-r--r-- | gui/settingsdialog.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gui/settingsdialog.h b/gui/settingsdialog.h index 3e9d9e0f..e223237f 100644 --- a/gui/settingsdialog.h +++ b/gui/settingsdialog.h @@ -18,6 +18,8 @@ #include <QDialog> +class SettingsBase; + namespace Ui { class SettingsDialog; } @@ -32,6 +34,9 @@ public: void updateCheckboxStuff(); + void applySettings(SettingsBase* s); + void loadSettings(SettingsBase* s); + private slots: void on_instDirBrowseBtn_clicked(); @@ -43,6 +48,8 @@ private slots: void on_maximizedCheckBox_clicked(bool checked); + void on_buttonBox_accepted(); + private: Ui::SettingsDialog *ui; }; |