]> Dogcows Code - chaz/openbox/blob - data/rc.xsd
add a config option hideDisabled in the theme section that hides disabled buttons...
[chaz/openbox] / data / rc.xsd
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 xml Schema for the openbox windowmanager configuration file
4
5 Changes:
6 Son Aug 10 15:49:10 CEST 2003 - pch(a)myzel.net
7 restrictions added, up to current format
8 Don Aug 14 21:10:27 CEST 2003 - pch(a)myzel.net
9 up to current (from action.c,config.c)
10 Don Aug 21 23:07:30 CEST 2003 - pch(a)myzel.net
11 new element - follow
12 Mon Sep 1 00:57:55 CEST 2003 - pch(a)myzel.net
13 up to alpha7
14 Mit Sep 3 12:40:10 CEST 2003 - pch(a)myzel.net
15 up to alpha8, a little documentation
16 Mon Sep 8 11:52:07 CEST 2003 - pch(a)myzel.net
17 up to cvs 1.12
18 Mon Sep 15 14:27:42 CEST 2003 - pch(a)myzel.net
19 up to cvs 1.14
20 Die Sep 16 20:56:37 CEST 2003 - pch(a)myzel.net
21 use a namespace
22 Fri Sep 19 14:36:33 EDT 2003 - xor(a)orodu.net
23 use openbox.org for namespace
24 Mon Sep 22 02:34:53 EDT 2003 - xor(a)orodu.net
25 add the focusLast and raiseOnFocus options
26 fix some capitalization
27 Mon Sep 22 14:08:16 EDT 2003 - xor(a)orodu.net
28 update hideTimeout to hideDelay
29 Thu Apr 22 12:33:11 UTC 2004 - mikachu(a)openbox.org
30 add diffs between 3.1 and 3.2
31 Sun Oct 31 10:08:34 UTC 2004 - mikachu(a)openbox.org
32 we haven't remembered to update this changelog in a while,
33 adding desktopMenuIcons.
34 Thu Nov 4 12:07:08 UTC 2004 - mikachu(a)openbox.org
35 Add fourCorners to resize context.
36 Sat Feb 12 01:57:16 UTC 2005 - mikachu(a)openbox.org
37 Add the group option to raise/lower stuff.
38 -->
39 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
40 targetNamespace="http://openbox.org/"
41 xmlns:ob="http://openbox.org/"
42 elementFormDefault="qualified">
43 <!--
44 root node
45 -->
46 <xs:element name="openbox_config">
47 <xs:annotation>
48 <xs:documentation>all these elements are expected in a openbox config file</xs:documentation>
49 </xs:annotation>
50 <xs:complexType>
51 <xs:sequence>
52 <xs:element name="resistance" type="ob:resistance"/>
53 <xs:element name="focus" type="ob:focus"/>
54 <xs:element name="placement" type="ob:placement"/>
55 <xs:element name="theme" type="ob:theme"/>
56 <xs:element name="desktops" type="ob:desktops"/>
57 <xs:element name="resize" type="ob:resize"/>
58 <xs:element name="dock" type="ob:dock"/>
59 <xs:element name="keyboard" type="ob:keyboard"/>
60 <xs:element name="mouse" type="ob:mouse"/>
61 <xs:element name="menu" type="ob:menu"/>
62 </xs:sequence>
63 </xs:complexType>
64 </xs:element>
65 <!--
66 complex types
67 -->
68 <xs:complexType name="resistance">
69 <xs:annotation>
70 <xs:documentation>defines behaviour of windows when close to eachother or the screen edge</xs:documentation>
71 </xs:annotation>
72 <xs:sequence>
73 <xs:element name="strength" type="xs:integer"/>
74 <xs:element name="screen_edge_strength" type="xs:integer"/>
75 <xs:element name="edges_hit_layers_below" type="xs:yesorno"/>
76 </xs:sequence>
77 </xs:complexType>
78 <xs:complexType name="focus">
79 <xs:annotation>
80 <xs:documentation>defines aspects of window focus</xs:documentation>
81 </xs:annotation>
82 <xs:sequence>
83 <xs:element name="focusNew" type="ob:yesorno"/>
84 <xs:element name="focusLast" type="ob:yesorno"/>
85 <xs:element name="followMouse" type="ob:yesorno"/>
86 <xs:element name="focusDelay" type="xs:integer"/>
87 <xs:element name="raiseOnFocus" type="ob:yesorno"/>
88 </xs:sequence>
89 </xs:complexType>
90 <xs:complexType name="placement">
91 <xs:annotation>
92 <xs:documentation>defines how new windows are placed</xs:documentation>
93 </xs:annotation>
94 <xs:sequence>
95 <xs:element name="policy" type="ob:placementpolicy"/>
96 </xs:sequence>
97 </xs:complexType>
98 <xs:complexType name="theme">
99 <xs:sequence>
100 <xs:element name="name" type="xs:string"/>
101 <xs:element name="titlelayout" type="xs:string"/>
102 <xs:element name="keepBorder" type="ob:yesorno"/>
103 <xs:element name="hideDisabled" type="ob:yesorno"/>
104 </xs:sequence>
105 </xs:complexType>
106 <xs:complexType name="desktops">
107 <xs:sequence>
108 <xs:element name="number" type="xs:integer"/>
109 <xs:element name="names">
110 <xs:complexType>
111 <xs:sequence>
112 <xs:element maxOccurs="unbounded" name="name" type="xs:string"/>
113 </xs:sequence>
114 </xs:complexType>
115 </xs:element>
116 <xs:element name="firstdesk" type="xs:integer"/>
117 </xs:sequence>
118 </xs:complexType>
119 <xs:complexType name="resize">
120 <xs:sequence>
121 <xs:element name="drawContents" type="ob:yesorno"/>
122 <xs:element name="fourCorners" type="ob:yesorno"/>
123 <xs:element name="popupShow" type="ob:popupshow"/>
124 <xs:element name="popupPosition" type="ob:popupposition"/>
125 </xs:sequence>
126 </xs:complexType>
127 <xs:complexType name="dock">
128 <xs:sequence>
129 <xs:element name="position" type="ob:position"/>
130 <xs:element name="stacking" type="ob:stacking"/>
131 <xs:element name="direction" type="ob:direction"/>
132 <xs:element name="floatingX" type="xs:integer"/>
133 <xs:element name="floatingY" type="xs:integer"/>
134 <xs:element name="autoHide" type="ob:yesorno"/>
135 <xs:element name="hideDelay" type="xs:integer"/>
136 <xs:element name="moveButton" type="ob:button"/>
137 <xs:element name="noStrut" type="ob:yesorno"/>
138 </xs:sequence>
139 </xs:complexType>
140 <xs:complexType name="action">
141 <xs:sequence>
142 <xs:element minOccurs="0" name="menu" type="xs:string"/>
143 <xs:element minOccurs="0" name="desktop" type="xs:integer"/>
144 <xs:element minOccurs="0" name="follow" type="ob:yesorno"/>
145 <xs:element minOccurs="0" name="execute" type="xs:string"/>
146 <xs:element minOccurs="0" name="group" type="ob:yesorno"/>
147 <xs:element minOccurs="0" name="dialog" type="ob:yesorno"/>
148 </xs:sequence>
149 <xs:attribute name="name" type="ob:actionname" use="required"/>
150 </xs:complexType>
151 <xs:complexType name="keybind">
152 <xs:sequence>
153 <xs:element maxOccurs="unbounded" name="action" type="ob:action"/>
154 </xs:sequence>
155 <xs:attribute name="key" type="ob:keyname" use="required"/>
156 </xs:complexType>
157 <xs:complexType name="keyboard">
158 <xs:sequence>
159 <xs:element name="chainQuitKey" type="ob:keyname"/>
160 <xs:element maxOccurs="unbounded" name="keybind" type="ob:keybind"/>
161 </xs:sequence>
162 </xs:complexType>
163 <xs:complexType name="mousebind">
164 <xs:sequence>
165 <xs:element maxOccurs="unbounded" name="action" type="ob:action"/>
166 </xs:sequence>
167 <xs:attribute name="action" type="ob:mouseaction" use="required"/>
168 <xs:attribute name="button" type="ob:button" use="required"/>
169 </xs:complexType>
170 <xs:complexType name="context">
171 <xs:sequence>
172 <xs:element maxOccurs="unbounded" name="mousebind" type="ob:mousebind"/>
173 </xs:sequence>
174 <xs:attribute name="name" type="ob:contextname" use="required"/>
175 </xs:complexType>
176 <xs:complexType name="mouse">
177 <xs:sequence>
178 <xs:element name="dragThreshold" type="xs:integer"/>
179 <xs:element name="doubleClickTime" type="xs:integer"/>
180 <xs:element maxOccurs="unbounded" name="context" type="ob:context"/>
181 </xs:sequence>
182 </xs:complexType>
183 <xs:complexType name="menu">
184 <xs:sequence>
185 <xs:element maxOccurs="unbounded" name="file" type="xs:string"/>
186 <xs:element name="warpPointer" type="ob:yesorno"/>
187 <xs:element name="xorStyle" type="ob:yesorno"/>
188 <xs:element name="hideDelay" type="xs:integer"/>
189 <xs:element name="desktopMenuIcons" type="ob:yesorno"/>
190 </xs:sequence>
191 </xs:complexType>
192 <!--
193 simple types / restrictions
194 -->
195 <xs:simpleType name="yesorno">
196 <xs:restriction base="xs:string">
197 <xs:enumeration value="yes"/>
198 <xs:enumeration value="no"/>
199 </xs:restriction>
200 </xs:simpleType>
201 <xs:simpleType name="placementpolicy">
202 <xs:restriction base="xs:string">
203 <xs:enumeration value="Smart"/>
204 <xs:enumeration value="UnderMouse"/>
205 </xs:restriction>
206 </xs:simpleType>
207 <xs:simpleType name="popupshow">
208 <xs:restriction base="xs:string">
209 <xs:enumeration value="Always"/>
210 <xs:enumeration value="Never"/>
211 <xs:enumeration value="Nonpixel"/>
212 </xs:restriction>
213 </xs:simpleType>
214 <xs:simpleType name="popupposition">
215 <xs:restriction base="xs:string">
216 <xs:enumeration value="Top"/>
217 <xs:enumeration value="Center"/>
218 </xs:restriction>
219 </xs:simpleType>
220 <xs:simpleType name="position">
221 <xs:restriction base="xs:string">
222 <xs:enumeration value="TopLeft"/>
223 <xs:enumeration value="Top"/>
224 <xs:enumeration value="TopRight"/>
225 <xs:enumeration value="Right"/>
226 <xs:enumeration value="BottomRight"/>
227 <xs:enumeration value="Bottom"/>
228 <xs:enumeration value="BottomLeft"/>
229 <xs:enumeration value="Left"/>
230 <xs:enumeration value="Floating"/>
231 </xs:restriction>
232 </xs:simpleType>
233 <xs:simpleType name="stacking">
234 <xs:restriction base="xs:string">
235 <xs:enumeration value="Top"/>
236 <xs:enumeration value="Normal"/>
237 <xs:enumeration value="Bottom"/>
238 </xs:restriction>
239 </xs:simpleType>
240 <xs:simpleType name="direction">
241 <xs:restriction base="xs:string">
242 <xs:enumeration value="Horizontal"/>
243 <xs:enumeration value="Vertical"/>
244 </xs:restriction>
245 </xs:simpleType>
246 <xs:simpleType name="keyname">
247 <xs:restriction base="xs:string">
248 <xs:pattern value="(A-)?(S-)?(A-)?(C-)?(A-)?(S-)?(A-)?[a-zA-Z0-9]*"/>
249 </xs:restriction>
250 </xs:simpleType>
251 <xs:simpleType name="contextname">
252 <xs:restriction base="xs:string">
253 <xs:enumeration value="Desktop"/>
254 <xs:enumeration value="Client"/>
255 <xs:enumeration value="Titlebar"/>
256 <xs:enumeration value="Handle"/>
257 <xs:enumeration value="Frame"/>
258 <xs:enumeration value="TLCorner"/>
259 <xs:enumeration value="TRCorner"/>
260 <xs:enumeration value="BLCorner"/>
261 <xs:enumeration value="BRCorner"/>
262 <xs:enumeration value="Maximize"/>
263 <xs:enumeration value="AllDesktops"/>
264 <xs:enumeration value="Shade"/>
265 <xs:enumeration value="Iconify"/>
266 <xs:enumeration value="Icon"/>
267 <xs:enumeration value="Close"/>
268 <xs:enumeration value="MoveResize"/>
269 </xs:restriction>
270 </xs:simpleType>
271 <xs:simpleType name="button">
272 <xs:restriction base="xs:string">
273 <xs:enumeration value="Left"/>
274 <xs:enumeration value="Middle"/>
275 <xs:enumeration value="Right"/>
276 <xs:enumeration value="Up"/>
277 <xs:enumeration value="Down"/>
278 <xs:enumeration value="A-Left"/>
279 <xs:enumeration value="A-Middle"/>
280 <xs:enumeration value="A-Right"/>
281 <xs:enumeration value="A-Up"/>
282 <xs:enumeration value="A-Down"/>
283 <xs:enumeration value="C-A-Left"/>
284 <xs:enumeration value="C-A-Middle"/>
285 <xs:enumeration value="C-A-Right"/>
286 <xs:enumeration value="C-A-Up"/>
287 <xs:enumeration value="C-A-Down"/>
288 </xs:restriction>
289 </xs:simpleType>
290 <xs:simpleType name="mouseaction">
291 <xs:restriction base="xs:string">
292 <xs:enumeration value="Click"/>
293 <xs:enumeration value="DoubleClick"/>
294 <xs:enumeration value="Drag"/>
295 <xs:enumeration value="Press"/>
296 <xs:enumeration value="Release"/>
297 </xs:restriction>
298 </xs:simpleType>
299 <xs:simpleType name="actionname">
300 <xs:restriction base="xs:string">
301 <xs:enumeration value="Activate"/>
302 <xs:enumeration value="Close"/>
303 <xs:enumeration value="Desktop"/>
304 <xs:enumeration value="DesktopDown"/>
305 <xs:enumeration value="DesktopLast"/>
306 <xs:enumeration value="DesktopLeft"/>
307 <xs:enumeration value="DesktopNext"/>
308 <xs:enumeration value="DesktopPrevious"/>
309 <xs:enumeration value="DesktopRight"/>
310 <xs:enumeration value="DesktopUp"/>
311 <xs:enumeration value="DirectionalFocusEast"/>
312 <xs:enumeration value="DirectionalFocusNorth"/>
313 <xs:enumeration value="DirectionalFocusNortheast"/>
314 <xs:enumeration value="DirectionalFocusNorthwest"/>
315 <xs:enumeration value="DirectionalFocusSouth"/>
316 <xs:enumeration value="DirectionalFocusSoutheast"/>
317 <xs:enumeration value="DirectionalFocusSouthwest"/>
318 <xs:enumeration value="DirectionalFocusWest"/>
319 <xs:enumeration value="Execute"/>
320 <xs:enumeration value="Exit"/>
321 <xs:enumeration value="Focus"/>
322 <xs:enumeration value="FocusToBottom"/>
323 <xs:enumeration value="GrowToEdgeEast"/>
324 <xs:enumeration value="GrowToEdgeNorth"/>
325 <xs:enumeration value="GrowToEdgeSouth"/>
326 <xs:enumeration value="GrowToEdgeWest"/>
327 <xs:enumeration value="Iconify"/>
328 <xs:enumeration value="Kill"/>
329 <xs:enumeration value="Lower"/>
330 <xs:enumeration value="MaximizeFull"/>
331 <xs:enumeration value="MaximizeHorz"/>
332 <xs:enumeration value="MaximizeVert"/>
333 <xs:enumeration value="Move"/>
334 <xs:enumeration value="MoveRelativeHorz"/>
335 <xs:enumeration value="MoveRelativeVert"/>
336 <xs:enumeration value="MoveToEdgeEast"/>
337 <xs:enumeration value="MoveToEdgeNorth"/>
338 <xs:enumeration value="MoveToEdgeSouth"/>
339 <xs:enumeration value="MoveToEdgeWest"/>
340 <xs:enumeration value="NextWindow"/>
341 <xs:enumeration value="NextWindowLinear"/>
342 <xs:enumeration value="PreviousWindow"/>
343 <xs:enumeration value="PreviousWindowLinear"/>
344 <xs:enumeration value="Raise"/>
345 <xs:enumeration value="RaiseLower"/>
346 <xs:enumeration value="Resize"/>
347 <xs:enumeration value="ResizeRelativeHorz"/>
348 <xs:enumeration value="ResizeRelativeVert"/>
349 <xs:enumeration value="Restart"/>
350 <xs:enumeration value="SendToBottomLayer"/>
351 <xs:enumeration value="SendToDesktop"/>
352 <xs:enumeration value="SendToDesktopDown"/>
353 <xs:enumeration value="SendToDesktopLeft"/>
354 <xs:enumeration value="SendToDesktopNext"/>
355 <xs:enumeration value="SendToDesktopPrevious"/>
356 <xs:enumeration value="SendToDesktopRight"/>
357 <xs:enumeration value="SendToDesktopUp"/>
358 <xs:enumeration value="SendToNormalLayer"/>
359 <xs:enumeration value="SendToTopLayer"/>
360 <xs:enumeration value="Shade"/>
361 <xs:enumeration value="ShadeLower"/>
362 <xs:enumeration value="ShowDesktop"/>
363 <xs:enumeration value="ShowMenu"/>
364 <xs:enumeration value="ToggleAlwaysOnBottom"/>
365 <xs:enumeration value="ToggleAlwaysOnTop"/>
366 <xs:enumeration value="ToggleDecorations"/>
367 <xs:enumeration value="ToggleFullscreen"/>
368 <xs:enumeration value="ToggleMaximizeFull"/>
369 <xs:enumeration value="ToggleMaximizeHorz"/>
370 <xs:enumeration value="ToggleMaximizeVert"/>
371 <xs:enumeration value="ToggleOmnipresent"/>
372 <xs:enumeration value="ToggleShade"/>
373 <xs:enumeration value="ToggleShowDesktop"/>
374 <xs:enumeration value="Unfocus"/>
375 <xs:enumeration value="UnmaximizeFull"/>
376 <xs:enumeration value="UnmaximizeHorz"/>
377 <xs:enumeration value="UnmaximizeVert"/>
378 <xs:enumeration value="Unshade"/>
379 <xs:enumeration value="UnshadeRaise"/>
380 <xs:enumeration value="UnShowDesktop"/>
381 </xs:restriction>
382 </xs:simpleType>
383 </xs:schema>
This page took 0.05478 seconds and 5 git commands to generate.