]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/generalviewsettingspage.h
simplified code for assuring that Open Office files won't get browsed + added comment...
[dolphin.git] / src / generalviewsettingspage.h
index 0d065a5726102613f7b6ff63f23b9471d03496b6..5aad4be4fc1146b5ecd8a091f1d03a14bbd40a8b 100644 (file)
@@ -1,6 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2006 by Peter Penz                                      *
- *   peter.penz@gmx.at                                                     *
+ *   Copyright (C) 2006 by Peter Penz <peter.penz@gmx.at>                  *
  *                                                                         *
  *   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  *
 #include <kvbox.h>
 
 class DolphinMainWindow;
+class QCheckBox;
 class QRadioButton;
+class QSlider;
+class QSpinBox;
 
 /**
  * @brief Represents the page from the Dolphin Settings which allows
@@ -45,10 +47,19 @@ 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;
+    QCheckBox* m_useFileThumbnails;
 };
 
 #endif