┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/generalviewsettingspage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/generalviewsettingspage.h')
-rw-r--r--src/generalviewsettingspage.h8
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