┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinview.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2006-12-13 07:41:11 +0000
committerPeter Penz <[email protected]>2006-12-13 07:41:11 +0000
commit163fa7ce30c0bd1b18d0c750bf9358560c2db7af (patch)
treecf99237a8dd236324fa1fd7967712f861be0477b /src/dolphinview.h
parentcb2b58535bedacbec50b3dad9680b1fa4fe30a9e (diff)
Instead of having a the 3 view modes "icons", "details" and "previews" only 2 view modes are used now: "icons" and "details". Whether a preview is shown or not is part of the directory view properties. This also means that it will be possible to show previews in the "details" view in future releases.
svn path=/trunk/playground/utils/dolphin/; revision=613029
Diffstat (limited to 'src/dolphinview.h')
-rw-r--r--src/dolphinview.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/dolphinview.h b/src/dolphinview.h
index 39fb7cc26..2f1d7c605 100644
--- a/src/dolphinview.h
+++ b/src/dolphinview.h
@@ -97,13 +97,7 @@ public:
* for date, group and permissions.
*/
DetailsView = 1,
-
- /**
- * The directory items are shown as preview if possible. As
- * fallback the items are shown as icons.
- */
- PreviewsView = 2,
- MaxModeEnum = PreviewsView
+ MaxModeEnum = DetailsView
};
/** Defines the sort order for the items of a directory. */
@@ -138,8 +132,8 @@ public:
void setMode(Mode mode);
Mode mode() const;
- void setShowHiddenFilesEnabled(bool show);
- bool isShowHiddenFilesEnabled() const;
+ void setShowHiddenFiles(bool show);
+ bool showHiddenFiles() const;
void setViewProperties(const ViewProperties& props);