blob: 5878abcbe1f33a5eaa7a073e7b0de422f5ba6825 (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE kcfg SYSTEM "http://www.kde.org/standards/kcfg/1.0/kcfg.dtd">
<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>QDir</include>
<include>QUrl</include>
<include>KCompletion</include>
<kcfgfile name="dolphinrc"/>
<signal name="sortingChoiceChanged" />
<group name="General">
<entry name="EditableUrl" type="Bool">
<label>Should the URL be editable for the user</label>
<default>false</default>
</entry>
<entry name="UrlCompletionMode" type="Enum">
<label>Text completion mode of the URL Navigator</label>
<default>KCompletion::CompletionPopup</default>
</entry>
<entry name="ShowFullPath" type="Bool">
<label>Should the full path be shown inside the location bar</label>
<default>false</default>
</entry>
<entry name="ShowFullPathInTitlebar" type="Bool">
<label>Should the full path be shown in the title bar</label>
<default>false</default>
</entry>
<entry name="Version" type="Int">
<label>Internal version of Dolphin, containing 3 digits for major, minor, bugfix</label>
<default>0</default>
</entry>
<entry name="ModifiedStartupSettings" type="Bool">
<label>Have the startup settings been modified (internal setting not shown in the UI)</label>
<default>false</default>
</entry>
<entry name="HomeUrl" type="String">
<label>Home URL</label>
<default code="true">QUrl::fromLocalFile(QDir::homePath()).toDisplayString(QUrl::PreferLocalFile)</default>
</entry>
<entry name="SplitView" type="Bool">
<label>Split the view into two panes</label>
<default>false</default>
</entry>
<entry name="FilterBar" type="Bool">
<label>Should the filter bar be shown</label>
<default>false</default>
</entry>
<entry name="GlobalViewProps" type="Bool">
<label>Should the view properties be used for all folders</label>
<default>false</default>
</entry>
<entry name="BrowseThroughArchives" type="Bool">
<label>Browse through archives</label>
<default>false</default>
</entry>
<entry name="ConfirmClosingMultipleTabs" type="Bool">
<label>Ask for confirmation when closing windows with multiple tabs.</label>
<default>true</default>
</entry>
<entry name="RenameInline" type="Bool">
<label>Rename inline</label>
<default>true</default>
</entry>
<entry name="ShowSelectionToggle" type="Bool">
<label>Show selection toggle</label>
<default>true</default>
</entry>
<entry name="UseTabForSwitchingSplitView" type="Bool">
<label>Use tab for switching between right and left split</label>
<default>false</default>
</entry>
<entry name="ShowToolTips" type="Bool">
<label>Show tooltips</label>
<default>false</default>
</entry>
<entry name="ShowCopyMoveMenu" type="Bool">
<label>Show 'Copy To' and 'Move To' commands in context menu</label>
<default>false</default>
</entry>
<entry name="ViewPropsTimestamp" type="DateTime" >
<label>Timestamp since when the view properties are valid</label>
</entry>
<entry name="AutoExpandFolders" type="Bool">
<label>Use auto-expanding folders for all view types</label>
<default>false</default>
</entry>
<entry name="ShowZoomSlider" type="Bool">
<label>Show zoom slider in the statusbar</label>
<default>true</default>
</entry>
<entry name="ShowSpaceInfo" type="Bool">
<label>Show the space information in the statusbar</label>
<default>true</default>
</entry>
<entry name="LockPanels" type="Bool">
<label>Lock the layout of the panels</label>
<default>true</default>
</entry>
<entry name="EnlargeSmallPreviews" type="Bool">
<label>Enlarge Small Previews</label>
<default>true</default>
</entry>
<entry name="SortingChoice" type="Enum">
<choices>
<choice name="NaturalSorting" />
<choice name="CaseInsensitiveSorting" />
<choice name="CaseSensitiveSorting" />
</choices>
<label>Choose Natural, Case Sensitive, or Case Insensitive order of sorting the items</label>
<default>0</default>
<emit signal="sortingChoiceChanged" />
</entry>
</group>
</kcfg>
|