]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/detailsviewsettingspage.h
Forwardport 773570:
[dolphin.git] / src / detailsviewsettingspage.h
index 95f611b85a898675a3f55fa7a79cb35515d935ac..79986f1ba91a17841d5a6d60840377b0cee7f13f 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 KFontRequester;
 class QCheckBox;
-class QFontComboBox;
-class QSpinBox;
-class QComboBox;
 class QRadioButton;
 
 /**
  * @brief Represents the page from the Dolphin Settings which allows
- * to modify the settings for the details view.
+ *        to modify the settings for the details view.
  */
 class DetailsViewSettingsPage : public KVBox
 {
@@ -49,18 +46,18 @@ public:
      */
     void applySettings();
 
+    /** Restores the settings to default values. */
+    void restoreDefaults();
+
+private:
+    void loadSettings();
+
 private:
     DolphinMainWindow* m_mainWindow;
-    QCheckBox* m_dateBox;
-    QCheckBox* m_permissionsBox;
-    QCheckBox* m_ownerBox;
-    QCheckBox* m_groupBox;
     QRadioButton* m_smallIconSize;
     QRadioButton* m_mediumIconSize;
     QRadioButton* m_largeIconSize;
-
-    QFontComboBox* m_fontFamilyBox;
-    QSpinBox* m_fontSizeBox;
+    KFontRequester* m_fontRequester;
 };
 
 #endif