diff options
Diffstat (limited to 'src/generalviewsettingspage.h')
| -rw-r--r-- | src/generalviewsettingspage.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/generalviewsettingspage.h b/src/generalviewsettingspage.h index ad9a68761..9c5edecf3 100644 --- a/src/generalviewsettingspage.h +++ b/src/generalviewsettingspage.h @@ -25,6 +25,7 @@ class DolphinMainWindow; class QRadioButton; class QSlider; +class QSpinBox; /** * @brief Represents the page from the Dolphin Settings which allows @@ -45,11 +46,18 @@ public: */ void applySettings(); + /** Restores the settings to default values. */ + void restoreDefaults(); + +private: + void loadSettings(); + private: DolphinMainWindow* m_mainWindow; QRadioButton* m_localProps; QRadioButton* m_globalProps; QSlider* m_maxPreviewSize; + QSpinBox* m_spinBox; }; #endif |
