┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/detailsviewsettingspage.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-03-13 19:46:49 +0000
committerPeter Penz <[email protected]>2007-03-13 19:46:49 +0000
commit27b9f6aa12bcc2f49cac72850ccbdc3990d0b844 (patch)
tree28d0fdc82c477cb9b6fd91563872079cf1bdab15 /src/detailsviewsettingspage.h
parent507984415a2953000ef1edb77c9dbc3364846b13 (diff)
Use KFontRequester for dialogs as suggested by Ellen at http://wiki.openusability.org/guidelines/index.php/Practical_Examples:Configuration_Dialogs. TODO: get rid of Qt3 classes in these dialogs and use a more sensible spacing/margin
svn path=/trunk/KDE/kdebase/apps/; revision=642269
Diffstat (limited to 'src/detailsviewsettingspage.h')
-rw-r--r--src/detailsviewsettingspage.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/detailsviewsettingspage.h b/src/detailsviewsettingspage.h
index 95f611b85..f0214daa0 100644
--- a/src/detailsviewsettingspage.h
+++ b/src/detailsviewsettingspage.h
@@ -24,15 +24,15 @@
#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
{
@@ -58,9 +58,7 @@ private:
QRadioButton* m_smallIconSize;
QRadioButton* m_mediumIconSize;
QRadioButton* m_largeIconSize;
-
- QFontComboBox* m_fontFamilyBox;
- QSpinBox* m_fontSizeBox;
+ KFontRequester* m_fontRequester;
};
#endif