┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/settings/dolphin_directoryviewpropertysettings.kcfg
blob: 00415206372482d82ad49bced05492bdfba2fa83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0" encoding="UTF-8"?>
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
      http://www.kde.org/standards/kcfg/1.0/kcfg.xsd">
    <include>kfileitemdelegate.h</include>

<kcfgfile arg="true" />
    <group name="Settings">
        <entry name="ShowHiddenFiles" key="ShowDotFiles" type="Bool" >
            <label context="@label">Show hidden files</label>
            <whatsthis context="@info: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="Dolphin">
        <entry name="Version" type="Int" >
            <label context="@label">Version</label>
            <whatsthis context="@info:whatsthis">This option defines the used version of the view properties.</whatsthis>
            <default>1</default>
            <min>1</min>
        </entry>

        <entry name="ViewMode" type="Int" >
            <label context="@label">View Mode</label>
            <whatsthis context="@info:whatsthis">This option controls the style of the view. Currently supported values include icons (0), details (1) and column (2) views.</whatsthis>
            <default>DolphinView::IconsView</default>
            <min>0</min>
            <max code="true">DolphinView::MaxModeEnum</max>
        </entry>

        <entry name="ShowPreview" type="Bool" >
            <label context="@label">Show preview</label>
            <whatsthis context="@info:whatsthis">When this option is enabled, a preview of the file content is shown as an icon.</whatsthis>
            <default>false</default>
        </entry>

        <entry name="CategorizedSorting" type="Bool" >
            <label context="@label">Categorized Sorting</label>
            <whatsthis context="@info:whatsthis">When this option is enabled, the sorted items are summarized by their category.</whatsthis>
            <default>false</default>
        </entry>

        <entry name="Sorting" type="Int" >
            <label context="@label">Sort files by</label>
            <whatsthis context="@info: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::MaxSortingEnum</max>
        </entry>

        <entry name="SortOrder" type="Int" >
            <label context="@label">Order in which to sort files</label>
            <default code="true">Qt::AscendingOrder</default>
            <min code="true">Qt::AscendingOrder</min>
            <max code="true">Qt::DescendingOrder</max>
        </entry>

        <entry name="SortFoldersFirst" type="Bool" >
            <label context="@label">Show folders first when sorting files and folders</label>
            <default>true</default>
        </entry>

        <entry name="AdditionalInfo" type="Int">
            <label context="@label">Additional information (deprecated, use AdditionInfoV2 instead)</label>
            <default>0</default>
        </entry>

        <entry name="AdditionalInfoV2" type="StringList">
            <label context="@label">Additional information</label>
            <default></default>
        </entry>

        <entry name="Timestamp" type="DateTime" >
            <label context="@label">Properties last changed</label>
            <whatsthis context="@info:whatsthis">The last time these properties were changed by the user.</whatsthis>
        </entry>
    </group>
</kcfg>