]> icculus.org git repositories - mikachu/openbox.git/blob - data/rc.xsd
Add a FocusToBottom action which moves the client to the bottom of the focus order...
[mikachu/openbox.git] / 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:sequence>
104     </xs:complexType>
105     <xs:complexType name="desktops">
106         <xs:sequence>
107             <xs:element name="number" type="xs:integer"/>
108             <xs:element name="names">
109                 <xs:complexType>
110                     <xs:sequence>
111                         <xs:element maxOccurs="unbounded" name="name" type="xs:string"/>
112                     </xs:sequence>
113                 </xs:complexType>
114             </xs:element>
115             <xs:element name="firstdesk" type="xs:integer"/>
116         </xs:sequence>
117     </xs:complexType>
118     <xs:complexType name="resize">
119         <xs:sequence>
120             <xs:element name="drawContents" type="ob:yesorno"/>
121             <xs:element name="fourCorners" type="ob:yesorno"/>
122             <xs:element name="popupShow" type="ob:popupshow"/>
123             <xs:element name="popupPosition" type="ob:popupposition"/>
124         </xs:sequence>
125     </xs:complexType>
126     <xs:complexType name="dock">
127         <xs:sequence>
128             <xs:element name="position" type="ob:position"/>
129             <xs:element name="stacking" type="ob:stacking"/>
130             <xs:element name="direction" type="ob:direction"/>
131             <xs:element name="floatingX" type="xs:integer"/>
132             <xs:element name="floatingY" type="xs:integer"/>
133             <xs:element name="autoHide" type="ob:yesorno"/>
134             <xs:element name="hideDelay" type="xs:integer"/>
135             <xs:element name="disktopMenuIcons" type="ob:yesorno"/>
136             <xs:element name="moveButton" type="ob:button"/>
137         </xs:sequence>
138     </xs:complexType>
139     <xs:complexType name="action">
140         <xs:sequence>
141             <xs:element minOccurs="0" name="menu" type="xs:string"/>
142             <xs:element minOccurs="0" name="desktop" type="xs:integer"/>
143             <xs:element minOccurs="0" name="follow" type="ob:yesorno"/>
144             <xs:element minOccurs="0" name="execute" type="xs:string"/>
145             <xs:element minOccurs="0" name="group" type="ob:yesorno"/>
146             <xs:element minOccurs="0" name="dialog" type="ob:yesorno"/>
147         </xs:sequence>
148         <xs:attribute name="name" type="ob:actionname" use="required"/>
149     </xs:complexType>
150     <xs:complexType name="keybind">
151         <xs:sequence>
152             <xs:element maxOccurs="unbounded" name="action" type="ob:action"/>
153         </xs:sequence>
154         <xs:attribute name="key" type="ob:keyname" use="required"/>
155     </xs:complexType>
156     <xs:complexType name="keyboard">
157         <xs:sequence>
158             <xs:element name="chainQuitKey" type="ob:keyname"/>
159             <xs:element maxOccurs="unbounded" name="keybind" type="ob:keybind"/>
160         </xs:sequence>
161     </xs:complexType>
162     <xs:complexType name="mousebind">
163         <xs:sequence>
164             <xs:element maxOccurs="unbounded" name="action" type="ob:action"/>
165         </xs:sequence>
166         <xs:attribute name="action" type="ob:mouseaction" use="required"/>
167         <xs:attribute name="button" type="ob:button" use="required"/>
168     </xs:complexType>
169     <xs:complexType name="context">
170         <xs:sequence>
171             <xs:element maxOccurs="unbounded" name="mousebind" type="ob:mousebind"/>
172         </xs:sequence>
173         <xs:attribute name="name" type="ob:contextname" use="required"/>
174     </xs:complexType>
175     <xs:complexType name="mouse">
176         <xs:sequence>
177             <xs:element name="dragThreshold" type="xs:integer"/>
178             <xs:element name="doubleClickTime" type="xs:integer"/>
179             <xs:element maxOccurs="unbounded" name="context" type="ob:context"/>
180         </xs:sequence>
181     </xs:complexType>
182     <xs:complexType name="menu">
183         <xs:sequence>
184             <xs:element maxOccurs="unbounded" name="file" type="xs:string"/>
185             <xs:element name="warpPointer" type="ob:yesorno"/>
186             <xs:element name="xorStyle" type="ob:yesorno"/>
187         </xs:sequence>
188     </xs:complexType>
189     <!--
190          simple types / restrictions
191       -->
192     <xs:simpleType name="yesorno">
193         <xs:restriction base="xs:string">
194             <xs:enumeration value="yes"/>
195             <xs:enumeration value="no"/>
196         </xs:restriction>
197     </xs:simpleType>
198     <xs:simpleType name="placementpolicy">
199         <xs:restriction base="xs:string">
200             <xs:enumeration value="Smart"/>
201             <xs:enumeration value="UnderMouse"/>
202         </xs:restriction>
203     </xs:simpleType>
204     <xs:simpleType name="popupshow">
205         <xs:restriction base="xs:string">
206             <xs:enumeration value="Always"/>
207             <xs:enumeration value="Never"/>
208             <xs:enumeration value="Nonpixel"/>
209         </xs:restriction>
210     </xs:simpleType>
211     <xs:simpleType name="popupposition">
212         <xs:restriction base="xs:string">
213             <xs:enumeration value="Top"/>
214             <xs:enumeration value="Center"/>
215         </xs:restriction>
216     </xs:simpleType>
217     <xs:simpleType name="position">
218         <xs:restriction base="xs:string">
219             <xs:enumeration value="TopLeft"/>
220             <xs:enumeration value="Top"/>
221             <xs:enumeration value="TopRight"/>
222             <xs:enumeration value="Right"/>
223             <xs:enumeration value="BottomRight"/>
224             <xs:enumeration value="Bottom"/>
225             <xs:enumeration value="BottomLeft"/>
226             <xs:enumeration value="Left"/>
227             <xs:enumeration value="Floating"/>
228         </xs:restriction>
229     </xs:simpleType>
230     <xs:simpleType name="stacking">
231         <xs:restriction base="xs:string">
232             <xs:enumeration value="Top"/>
233             <xs:enumeration value="Normal"/>
234             <xs:enumeration value="Bottom"/>
235         </xs:restriction>
236     </xs:simpleType>
237     <xs:simpleType name="direction">
238         <xs:restriction base="xs:string">
239             <xs:enumeration value="Horizontal"/>
240             <xs:enumeration value="Vertical"/>
241         </xs:restriction>
242     </xs:simpleType>
243     <xs:simpleType name="keyname">
244         <xs:restriction base="xs:string">
245             <xs:pattern value="(A-)?(S-)?(A-)?(C-)?(A-)?(S-)?(A-)?[a-zA-Z0-9]*"/>
246         </xs:restriction>
247     </xs:simpleType>
248     <xs:simpleType name="contextname">
249         <xs:restriction base="xs:string">
250             <xs:enumeration value="Desktop"/>
251             <xs:enumeration value="Client"/>
252             <xs:enumeration value="Titlebar"/>
253             <xs:enumeration value="Handle"/>
254             <xs:enumeration value="Frame"/>
255             <xs:enumeration value="TLCorner"/>
256             <xs:enumeration value="TRCorner"/>
257             <xs:enumeration value="BLCorner"/>
258             <xs:enumeration value="BRCorner"/>
259             <xs:enumeration value="Maximize"/>
260             <xs:enumeration value="AllDesktops"/>
261             <xs:enumeration value="Shade"/>
262             <xs:enumeration value="Iconify"/>
263             <xs:enumeration value="Icon"/>
264             <xs:enumeration value="Close"/>
265             <xs:enumeration value="MoveResize"/>
266         </xs:restriction>
267     </xs:simpleType>
268     <xs:simpleType name="button">
269         <xs:restriction base="xs:string">
270             <xs:enumeration value="Left"/>
271             <xs:enumeration value="Middle"/>
272             <xs:enumeration value="Right"/>
273             <xs:enumeration value="Up"/>
274             <xs:enumeration value="Down"/>
275             <xs:enumeration value="A-Left"/>
276             <xs:enumeration value="A-Middle"/>
277             <xs:enumeration value="A-Right"/>
278             <xs:enumeration value="A-Up"/>
279             <xs:enumeration value="A-Down"/>
280             <xs:enumeration value="C-A-Left"/>
281             <xs:enumeration value="C-A-Middle"/>
282             <xs:enumeration value="C-A-Right"/>
283             <xs:enumeration value="C-A-Up"/>
284             <xs:enumeration value="C-A-Down"/>
285         </xs:restriction>
286     </xs:simpleType>
287     <xs:simpleType name="mouseaction">
288         <xs:restriction base="xs:string">
289             <xs:enumeration value="Click"/>
290             <xs:enumeration value="DoubleClick"/>
291             <xs:enumeration value="Drag"/>
292             <xs:enumeration value="Press"/>
293             <xs:enumeration value="Release"/>
294         </xs:restriction>
295     </xs:simpleType>
296     <xs:simpleType name="actionname">
297         <xs:restriction base="xs:string">
298             <xs:enumeration value="Activate"/>
299             <xs:enumeration value="Close"/>
300             <xs:enumeration value="Desktop"/>
301             <xs:enumeration value="DesktopDown"/>
302             <xs:enumeration value="DesktopLast"/>
303             <xs:enumeration value="DesktopLeft"/>
304             <xs:enumeration value="DesktopNext"/>
305             <xs:enumeration value="DesktopPrevious"/>
306             <xs:enumeration value="DesktopRight"/>
307             <xs:enumeration value="DesktopUp"/>
308             <xs:enumeration value="DirectionalFocusEast"/>
309             <xs:enumeration value="DirectionalFocusNorth"/>
310             <xs:enumeration value="DirectionalFocusNortheast"/>
311             <xs:enumeration value="DirectionalFocusNorthwest"/>
312             <xs:enumeration value="DirectionalFocusSouth"/>
313             <xs:enumeration value="DirectionalFocusSoutheast"/>
314             <xs:enumeration value="DirectionalFocusSouthwest"/>
315             <xs:enumeration value="DirectionalFocusWest"/>
316             <xs:enumeration value="Execute"/>
317             <xs:enumeration value="Exit"/>
318             <xs:enumeration value="Focus"/>
319             <xs:enumeration value="FocusToBottom"/>
320             <xs:enumeration value="GrowToEdgeEast"/>
321             <xs:enumeration value="GrowToEdgeNorth"/>
322             <xs:enumeration value="GrowToEdgeSouth"/>
323             <xs:enumeration value="GrowToEdgeWest"/>
324             <xs:enumeration value="Iconify"/>
325             <xs:enumeration value="Kill"/>
326             <xs:enumeration value="Lower"/>
327             <xs:enumeration value="MaximizeFull"/>
328             <xs:enumeration value="MaximizeHorz"/>
329             <xs:enumeration value="MaximizeVert"/>
330             <xs:enumeration value="Move"/>
331             <xs:enumeration value="MoveRelativeHorz"/>
332             <xs:enumeration value="MoveRelativeVert"/>
333             <xs:enumeration value="MoveToEdgeEast"/>
334             <xs:enumeration value="MoveToEdgeNorth"/>
335             <xs:enumeration value="MoveToEdgeSouth"/>
336             <xs:enumeration value="MoveToEdgeWest"/>
337             <xs:enumeration value="NextWindow"/>
338             <xs:enumeration value="NextWindowLinear"/>
339             <xs:enumeration value="PreviousWindow"/>
340             <xs:enumeration value="PreviousWindowLinear"/>
341             <xs:enumeration value="Raise"/>
342             <xs:enumeration value="RaiseLower"/>
343             <xs:enumeration value="Resize"/>
344             <xs:enumeration value="ResizeRelativeHorz"/>
345             <xs:enumeration value="ResizeRelativeVert"/>
346             <xs:enumeration value="Restart"/>
347             <xs:enumeration value="SendToBottomLayer"/>
348             <xs:enumeration value="SendToDesktop"/>
349             <xs:enumeration value="SendToDesktopDown"/>
350             <xs:enumeration value="SendToDesktopLeft"/>
351             <xs:enumeration value="SendToDesktopNext"/>
352             <xs:enumeration value="SendToDesktopPrevious"/>
353             <xs:enumeration value="SendToDesktopRight"/>
354             <xs:enumeration value="SendToDesktopUp"/>
355             <xs:enumeration value="SendToNormalLayer"/>
356             <xs:enumeration value="SendToTopLayer"/>
357             <xs:enumeration value="Shade"/>
358             <xs:enumeration value="ShadeLower"/>
359             <xs:enumeration value="ShowDesktop"/>
360             <xs:enumeration value="ShowMenu"/>
361             <xs:enumeration value="ToggleAlwaysOnBottom"/>
362             <xs:enumeration value="ToggleAlwaysOnTop"/>
363             <xs:enumeration value="ToggleDecorations"/>
364             <xs:enumeration value="ToggleFullscreen"/>
365             <xs:enumeration value="ToggleMaximizeFull"/>
366             <xs:enumeration value="ToggleMaximizeHorz"/>
367             <xs:enumeration value="ToggleMaximizeVert"/>
368             <xs:enumeration value="ToggleOmnipresent"/>
369             <xs:enumeration value="ToggleShade"/>
370             <xs:enumeration value="ToggleShowDesktop"/>
371             <xs:enumeration value="Unfocus"/>
372             <xs:enumeration value="UnmaximizeFull"/>
373             <xs:enumeration value="UnmaximizeHorz"/>
374             <xs:enumeration value="UnmaximizeVert"/>
375             <xs:enumeration value="Unshade"/>
376             <xs:enumeration value="UnshadeRaise"/>
377             <xs:enumeration value="UnShowDesktop"/>
378         </xs:restriction>
379     </xs:simpleType>
380 </xs:schema>