┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/directoryviewpropertysettings.kcfg
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2006-12-04 06:37:20 +0000
committerPeter Penz <[email protected]>2006-12-04 06:37:20 +0000
commitdde6f0a0772eee324e2838ba4a076a83193f163c (patch)
treee138ffbf79a9e10ef555f854a1eb4d4e440b9298 /src/directoryviewpropertysettings.kcfg
parent45d82b30417ce8a747eab2baab7a5618a069bbfa (diff)
First step of cleaning up the view properties: inheriting of viewproperties does not work with the current approach of directoryviewpropertysettings.kcfg (2 nodes would be required for each directory, only one is used at the moment). Therefor the valid_for_subdirs property has been removed and the implementation model will be adjusted to match 1:1 to the users model. TODO: improve the viewpropertiesdialog be able to apply viewproperties recursively to sub directories.
svn path=/trunk/playground/utils/dolphin/; revision=610383
Diffstat (limited to 'src/directoryviewpropertysettings.kcfg')
-rw-r--r--src/directoryviewpropertysettings.kcfg78
1 files changed, 33 insertions, 45 deletions
diff --git a/src/directoryviewpropertysettings.kcfg b/src/directoryviewpropertysettings.kcfg
index 7af729d28..247b8181b 100644
--- a/src/directoryviewpropertysettings.kcfg
+++ b/src/directoryviewpropertysettings.kcfg
@@ -5,55 +5,43 @@
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" >
<kcfgfile arg="true" />
+ <group name="Settings">
+ <entry name="ShowHiddenFiles" key="ShowDotFiles" type="Bool" >
+ <label>Show hidden files</label>
+ <whatsthis>When this option is enabled hidden files, such as those starting with a '.', will be shown in the file view.</whatsthis>
+ <default>false</default>
+ </entry>
+ </group>
-<group name="Settings">
+ <group name="Dolphin">
+ <entry name="ViewMode" type="Int" >
+ <label>View Mode</label>
+ <whatsthis>This option controls the style of the view. Currently supported values include icons (0), details (1) and previews (2) views.</whatsthis>
+ <default>DolphinView::PreviewsView</default>
+ <min>0</min>
+ <max code="true">DolphinView::MaxModeEnum</max>
+ </entry>
-<entry name="ShowHiddenFiles" key="ShowDotFiles" type="Bool" >
- <label>Show hidden files</label>
- <whatsthis>When this option is enabled hidden files, such as those starting with a '.', will be shown in the file view.</whatsthis>
- <default>false</default>
- </entry>
+ <entry name="Sorting" type="Int" >
+ <label>Sort files by</label>
+ <whatsthis>This option defines which attribute (name, size, date, etc) sorting is performed on.</whatsthis>
+ <default code="true">DolphinView::SortByName</default>
+ <min>0</min>
+ <max code="true">DolphinView::MaxSortEnum</max>
+ </entry>
-</group>
-
-<group name="Dolphin">
-
-<entry name="ViewMode" type="Int" >
- <label>View Mode</label>
- <whatsthis>This option controls the style of the view. Currently supported values include icons (0), details (1) and previews (2) views.</whatsthis>
- <default>DolphinView::PreviewsView</default>
- <min>0</min>
- <max code="true">DolphinView::MaxModeEnum</max>
- </entry>
-
-<entry name="Sorting" type="Int" >
- <label>Sort files by</label>
- <whatsthis>This option defines which attribute (name, size, date, etc) sorting is performed on.</whatsthis>
- <default code="true">DolphinView::SortByName</default>
- <min>0</min>
- <max code="true">DolphinView::MaxSortEnum</max>
- </entry>
-
-<entry name="SortOrder" type="Int" >
- <label>Order to sort files in</label>
- <default code="true">Qt::Ascending</default>
- <min code="true">Qt::Ascending</min>
- <max code="true">Qt::Descending</max>
- </entry>
-
-<entry name="ValidForSubDirs" type="Bool" >
- <label>Apply view setting to sub-directories</label>
- <default>false</default>
- </entry>
-
-
-<entry name="Timestamp" type="DateTime" >
- <label>Properties last changed</label>
- <whatsthis>The last time these properties were changed by the user.</whatsthis>
- </entry>
-
-</group>
+ <entry name="SortOrder" type="Int" >
+ <label>Order to sort files in</label>
+ <default code="true">Qt::Ascending</default>
+ <min code="true">Qt::Ascending</min>
+ <max code="true">Qt::Descending</max>
+ </entry>
+ <entry name="Timestamp" type="DateTime" >
+ <label>Properties last changed</label>
+ <whatsthis>The last time these properties were changed by the user.</whatsthis>
+ </entry>
+ </group>
</kcfg>