/***************************************************************************
- * 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 *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
- * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
***************************************************************************/
#ifndef DETAILSVIEWSETTINGSPAGE_H
#define DETAILSVIEWSETTINGSPAGE_H
-#include <q3vbox.h>
+#include <viewsettingspagebase.h>
+
+class DolphinFontRequester;
class QCheckBox;
-class KFontCombo;
-class QSpinBox;
-class QComboBox;
class QRadioButton;
/**
* @brief Represents the page from the Dolphin Settings which allows
- * to modify the settings for the details view.
- *
- * @author Peter Penz <peter.penz@gmx.at>
+ * to modify the settings for the details view.
*/
-class DetailsViewSettingsPage : public Q3VBox
+class DetailsViewSettingsPage : public ViewSettingsPageBase
{
Q_OBJECT
* The settings are persisted automatically when
* closing Dolphin.
*/
- void applySettings();
+ virtual void applySettings();
+
+ /** Restores the settings to default values. */
+ virtual void restoreDefaults();
+
+private:
+ void loadSettings();
private:
- QCheckBox* m_dateBox;
- QCheckBox* m_permissionsBox;
- QCheckBox* m_ownerBox;
- QCheckBox* m_groupBox;
QRadioButton* m_smallIconSize;
QRadioButton* m_mediumIconSize;
QRadioButton* m_largeIconSize;
-
- KFontCombo* m_fontFamilyBox;
- QSpinBox* m_fontSizeBox;
+ DolphinFontRequester* m_fontRequester;
+ QCheckBox* m_expandableFolders;
};
#endif