#include <kvbox.h>
class DolphinMainWindow;
+class QCheckBox;
class QRadioButton;
class QSlider;
+class QSpinBox;
/**
* @brief Represents the page from the Dolphin Settings which allows
*/
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;
+ QCheckBox* m_useFileThumbnails;
};
#endif