diff options
| author | Peter Penz <[email protected]> | 2006-12-20 19:10:39 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2006-12-20 19:10:39 +0000 |
| commit | 642110309ace0ec0da270615464d7d04944d5dcf (patch) | |
| tree | 173d3fefbcf1adfe93667348c243e3cb7fbc3bf0 /src/viewsettingspage.h | |
| parent | 3396d0dbee4e609fa5f7608912b4ac5badd36f72 (diff) | |
Let the user chose whether view properties should be remembered for each directory or whether they should be valid globally. Per default the view properties are remembered for each directory. For testing purposes the MIME type information is shown per default in the icons mode (thanks to Fredrik for the cool implementation in KFileItemDelegate!).
svn path=/trunk/playground/utils/dolphin/; revision=615232
Diffstat (limited to 'src/viewsettingspage.h')
| -rw-r--r-- | src/viewsettingspage.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/viewsettingspage.h b/src/viewsettingspage.h index baec5296e..f41238733 100644 --- a/src/viewsettingspage.h +++ b/src/viewsettingspage.h @@ -23,14 +23,15 @@ #include <qwidget.h> #include <settingspagebase.h> +class GeneralViewSettingsPage; class IconsViewSettingsPage; class DetailsViewSettingsPage; /** * @brief Page for the 'View' settings of the Dolphin settings dialog. * - * The views settings allow to set the properties for the icons mode, - * the details mode and the previews mode. + * The views settings allow to set the properties for the icons mode and + * the details mode. * * @author Peter Penz <[email protected]> */ @@ -47,6 +48,7 @@ public: virtual void applySettings(); private: + GeneralViewSettingsPage* m_generalPage; IconsViewSettingsPage* m_iconsPage; DetailsViewSettingsPage* m_detailsPage; }; |
