-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathbreeze.kcfg
187 lines (151 loc) · 4.84 KB
/
breeze.kcfg
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<?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">
<kcfgfile name="breezerc"/>
<!-- common options -->
<group name="Common">
<!-- shadow -->
<entry name="ShadowStrength" type = "Int">
<default>255</default>
<min>25</min>
<max>255</max>
</entry>
<!-- shadow -->
<entry name="ShadowSize" type = "Enum">
<choices>
<choice name="ShadowNone"/>
<choice name="ShadowSmall"/>
<choice name="ShadowMedium"/>
<choice name="ShadowLarge"/>
<choice name="ShadowVeryLarge"/>
</choices>
<default>ShadowLarge</default>
</entry>
<entry name="ShadowColor" type = "Color">
<default>0, 0, 0</default>
</entry>
<!-- close button -->
<entry name="OutlineCloseButton" type = "Bool">
<default>false</default>
</entry>
</group>
<!-- widget style -->
<group name="Style">
<!-- animations -->
<entry name="AnimationsEnabled" type="Bool">
<default>true</default>
</entry>
<entry name="AnimationSteps" type = "Int">
<default>10</default>
</entry>
<entry name="AnimationsDuration" type="Int">
<default>100</default>
</entry>
<!-- transition flags -->
<entry name="StackedWidgetTransitionsEnabled" type="Bool">
<default>false</default>
</entry>
<!-- busy progress bars -->
<entry name="ProgressBarAnimated" type="Bool">
<default>true</default>
</entry>
<!-- progress bar animation durations -->
<entry name="ProgressBarBusyStepDuration" type="Int">
<default>800</default>
</entry>
<!-- scrollbar buttons -->
<entry name="ScrollBarAddLineButtons" type="Int">
<default>0</default>
</entry>
<entry name="ScrollBarSubLineButtons" type="Int">
<default>0</default>
</entry>
<!-- mnemonics -->
<entry name="MnemonicsMode" type="Enum">
<choices>
<choice name="MN_NEVER" />
<choice name="MN_AUTO" />
<choice name="MN_ALWAYS" />
</choices>
<default>MN_AUTO</default>
</entry>
<!-- toolbars -->
<entry name="ToolBarDrawItemSeparator" type="Bool">
<default>true</default>
</entry>
<!-- views -->
<entry name="ViewDrawFocusIndicator" type="Bool">
<default>true</default>
</entry>
<!-- sliders -->
<entry name="SliderDrawTickMarks" type="Bool">
<default>true</default>
</entry>
<!-- tree views -->
<entry name="ViewDrawTreeBranchLines" type="Bool">
<default>true</default>
</entry>
<!-- Direction of sort order arrow in table view headers -->
<!-- True means the arrow points down when biggest stuff is on top -->
<entry name="ViewInvertSortIndicator" type="Bool">
<default>true</default>
</entry>
<!-- tab bars -->
<entry name="TabBarDrawCenteredTabs" type="Bool">
<default>false</default>
</entry>
<entry name="DockWidgetDrawFrame" type="Bool">
<default>false</default>
</entry>
<entry name="SidePanelDrawFrame" type="Bool">
<default>false</default>
</entry>
<entry name="MenuItemDrawStrongFocus" type="Bool">
<default>true</default>
</entry>
<!-- window dragging -->
<entry name="WindowDragMode" type="Enum">
<choices>
<choice name="WD_NONE" />
<choice name="WD_MINIMAL" />
<choice name="WD_FULL" />
</choices>
<default>WD_MINIMAL</default>
</entry>
<!--
this is the comma separated list of special per-app widgets on which
window dragging can be installed (in addition to the build-in list of
standard widgets. They are reference by the widget class name.
-->
<entry name="WindowDragWhiteList" type="StringList">
<default></default>
</entry>
<!--
this is the comma separated list of special per-app widgets on which
window dragging must be disabled (in addition to the build-in list of
standard widgets). They are reference by the widget class name.
-->
<entry name="WindowDragBlackList" type="StringList">
<default></default>
</entry>
<!-- splitter proxy -->
<entry name="SplitterProxyEnabled" type="Bool">
<default>true</default>
</entry>
<entry name="SplitterProxyWidth" type="Int">
<default>12</default>
</entry>
<!-- debugging -->
<entry name="WidgetExplorerEnabled" type="Bool">
<default>false</default>
</entry>
<entry name="DrawWidgetRects" type="Bool">
<default>false</default>
</entry>
<!-- transparency -->
<entry name="MenuOpacity" type="Int">
<default>100</default>
</entry>
</group>
</kcfg>