]> icculus.org git repositories - dana/openbox.git/blob - data/rc.xsd
remove teh CVS changelog
[dana/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 -->
30 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
31     targetNamespace="http://openbox.org/"
32     xmlns:ob="http://openbox.org/"
33     elementFormDefault="qualified">
34     <!--
35          root node
36       -->
37     <xs:element name="openbox_config">
38         <xs:annotation>
39             <xs:documentation>all these elements are expected in a openbox config file</xs:documentation>
40         </xs:annotation>
41         <xs:complexType>
42             <xs:sequence>
43                 <xs:element name="resistance" type="ob:resistance"/>
44                 <xs:element name="focus" type="ob:focus"/>
45                 <xs:element name="theme" type="ob:theme"/>
46                 <xs:element name="desktops" type="ob:desktops"/>
47                 <xs:element name="resize" type="ob:resize"/>
48                 <xs:element name="dock" type="ob:dock"/>
49                 <xs:element name="keyboard" type="ob:keyboard"/>
50                 <xs:element name="mouse" type="ob:mouse"/>
51                 <xs:element name="menu" type="ob:menu"/>
52             </xs:sequence>
53         </xs:complexType>
54     </xs:element>
55     <!--
56          complex types
57       -->
58     <xs:complexType name="resistance">
59         <xs:annotation>
60             <xs:documentation>defines behaviour of windows when close to eachother or the screen edge</xs:documentation>
61         </xs:annotation>
62         <xs:sequence>
63             <xs:element name="strength" type="xs:integer"/>
64             <xs:element name="screen_edge_strength" type="xs:integer"/>
65         </xs:sequence>
66     </xs:complexType>
67     <xs:complexType name="focus">
68         <xs:annotation>
69             <xs:documentation>defines aspects of window focus</xs:documentation>
70         </xs:annotation>
71         <xs:sequence>
72             <xs:element name="focusNew" type="ob:yesorno"/>
73             <xs:element name="focusLast" type="ob:yesorno"/>
74             <xs:element name="followMouse" type="ob:yesorno"/>
75             <xs:element name="focusDelay" type="xs:integer"/>
76             <xs:element name="raiseOnFocus" type="ob:yesorno"/>
77         </xs:sequence>
78     </xs:complexType>
79     <xs:complexType name="theme">
80         <xs:sequence>
81             <xs:element name="name" type="xs:string"/>
82             <xs:element name="titlelayout" type="xs:string"/>
83         </xs:sequence>
84     </xs:complexType>
85     <xs:complexType name="desktops">
86         <xs:sequence>
87             <xs:element name="number" type="xs:integer"/>
88             <xs:element name="names">
89                 <xs:complexType>
90                     <xs:sequence>
91                         <xs:element maxOccurs="unbounded" name="name" type="xs:string"/>
92                     </xs:sequence>
93                 </xs:complexType>
94             </xs:element>
95         </xs:sequence>
96     </xs:complexType>
97     <xs:complexType name="resize">
98         <xs:sequence>
99             <xs:element name="drawContents" type="ob:yesorno"/>
100         </xs:sequence>
101     </xs:complexType>
102     <xs:complexType name="dock">
103         <xs:sequence>
104             <xs:element name="position" type="ob:position"/>
105             <xs:element name="stacking" type="ob:stacking"/>
106             <xs:element name="direction" type="ob:direction"/>
107             <xs:element name="floatingX" type="xs:integer"/>
108             <xs:element name="floatingY" type="xs:integer"/>
109             <xs:element name="autoHide" type="ob:yesorno"/>
110             <xs:element name="hideDelay" type="xs:integer"/>
111         </xs:sequence>
112     </xs:complexType>
113     <xs:complexType name="action">
114         <xs:sequence>
115             <xs:element minOccurs="0" name="menu" type="xs:string"/>
116             <xs:element minOccurs="0" name="desktop" type="xs:integer"/>
117             <xs:element minOccurs="0" name="follow" type="ob:yesorno"/>
118             <xs:element minOccurs="0" name="execute" type="xs:string"/>
119         </xs:sequence>
120         <xs:attribute name="name" type="ob:actionname" use="required"/>
121     </xs:complexType>
122     <xs:complexType name="keybind">
123         <xs:sequence>
124             <xs:element maxOccurs="unbounded" name="action" type="ob:action"/>
125         </xs:sequence>
126         <xs:attribute name="key" type="ob:keyname" use="required"/>
127     </xs:complexType>
128     <xs:complexType name="keyboard">
129         <xs:sequence>
130             <xs:element name="chainQuitKey" type="ob:keyname"/>
131             <xs:element maxOccurs="unbounded" name="keybind" type="ob:keybind"/>
132         </xs:sequence>
133     </xs:complexType>
134     <xs:complexType name="mousebind">
135         <xs:sequence>
136             <xs:element maxOccurs="unbounded" name="action" type="ob:action"/>
137         </xs:sequence>
138         <xs:attribute name="action" type="ob:mouseaction" use="required"/>
139         <xs:attribute name="button" type="ob:button" use="required"/>
140     </xs:complexType>
141     <xs:complexType name="context">
142         <xs:sequence>
143             <xs:element maxOccurs="unbounded" name="mousebind" type="ob:mousebind"/>
144         </xs:sequence>
145         <xs:attribute name="name" type="ob:contextname" use="required"/>
146     </xs:complexType>
147     <xs:complexType name="mouse">
148         <xs:sequence>
149             <xs:element name="dragThreshold" type="xs:integer"/>
150             <xs:element name="doubleClickTime" type="xs:integer"/>
151             <xs:element maxOccurs="unbounded" name="context" type="ob:context"/>
152         </xs:sequence>
153     </xs:complexType>
154     <xs:complexType name="menu">
155         <xs:sequence>
156             <xs:element maxOccurs="unbounded" name="file" type="xs:string"/>
157         </xs:sequence>
158     </xs:complexType>
159     <!--
160          simple types / restrictions
161       -->
162     <xs:simpleType name="yesorno">
163         <xs:restriction base="xs:string">
164             <xs:enumeration value="yes"/>
165             <xs:enumeration value="no"/>
166         </xs:restriction>
167     </xs:simpleType>
168     <xs:simpleType name="position">
169         <xs:restriction base="xs:string">
170             <xs:enumeration value="TopLeft"/>
171             <xs:enumeration value="Top"/>
172             <xs:enumeration value="TopRight"/>
173             <xs:enumeration value="Right"/>
174             <xs:enumeration value="BottomRight"/>
175             <xs:enumeration value="Bottom"/>
176             <xs:enumeration value="BottomLeft"/>
177             <xs:enumeration value="Left"/>
178             <xs:enumeration value="Floating"/>
179         </xs:restriction>
180     </xs:simpleType>
181     <xs:simpleType name="stacking">
182         <xs:restriction base="xs:string">
183             <xs:enumeration value="Top"/>
184             <xs:enumeration value="Normal"/>
185             <xs:enumeration value="Bottom"/>
186         </xs:restriction>
187     </xs:simpleType>
188     <xs:simpleType name="direction">
189         <xs:restriction base="xs:string">
190             <xs:enumeration value="Horizontal"/>
191             <xs:enumeration value="Vertical"/>
192         </xs:restriction>
193     </xs:simpleType>
194     <xs:simpleType name="keyname">
195         <xs:restriction base="xs:string">
196             <xs:pattern value="(A-)?(S-)?(A-)?(C-)?(A-)?(S-)?(A-)?[a-zA-Z0-9]*"/>
197         </xs:restriction>
198     </xs:simpleType>
199     <xs:simpleType name="contextname">
200         <xs:restriction base="xs:string">
201             <xs:enumeration value="Desktop"/>
202             <xs:enumeration value="Client"/>
203             <xs:enumeration value="Titlebar"/>
204             <xs:enumeration value="Handle"/>
205             <xs:enumeration value="Frame"/>
206             <xs:enumeration value="TLCorner"/>
207             <xs:enumeration value="TRCorner"/>
208             <xs:enumeration value="BLCorner"/>
209             <xs:enumeration value="BRCorner"/>
210             <xs:enumeration value="Maximize"/>
211             <xs:enumeration value="AllDesktops"/>
212             <xs:enumeration value="Shade"/>
213             <xs:enumeration value="Iconify"/>
214             <xs:enumeration value="Icon"/>
215             <xs:enumeration value="Close"/>
216             <xs:enumeration value="MoveResize"/>
217         </xs:restriction>
218     </xs:simpleType>
219     <xs:simpleType name="button">
220         <xs:restriction base="xs:string">
221             <xs:enumeration value="Left"/>
222             <xs:enumeration value="Middle"/>
223             <xs:enumeration value="Right"/>
224             <xs:enumeration value="Up"/>
225             <xs:enumeration value="Down"/>
226             <xs:enumeration value="A-Left"/>
227             <xs:enumeration value="A-Middle"/>
228             <xs:enumeration value="A-Right"/>
229             <xs:enumeration value="A-Up"/>
230             <xs:enumeration value="A-Down"/>
231             <xs:enumeration value="C-A-Left"/>
232             <xs:enumeration value="C-A-Middle"/>
233             <xs:enumeration value="C-A-Right"/>
234             <xs:enumeration value="C-A-Up"/>
235             <xs:enumeration value="C-A-Down"/>
236         </xs:restriction>
237     </xs:simpleType>
238     <xs:simpleType name="mouseaction">
239         <xs:restriction base="xs:string">
240             <xs:enumeration value="Click"/>
241             <xs:enumeration value="DoubleClick"/>
242             <xs:enumeration value="Drag"/>
243             <xs:enumeration value="Press"/>
244             <xs:enumeration value="Release"/>
245         </xs:restriction>
246     </xs:simpleType>
247     <xs:simpleType name="actionname">
248         <xs:restriction base="xs:string">
249             <xs:enumeration value="Activate"/>
250             <xs:enumeration value="Close"/>
251             <xs:enumeration value="Desktop"/>
252             <xs:enumeration value="DesktopDown"/>
253             <xs:enumeration value="DesktopLast"/>
254             <xs:enumeration value="DesktopLeft"/>
255             <xs:enumeration value="DesktopNext"/>
256             <xs:enumeration value="DesktopPrevious"/>
257             <xs:enumeration value="DesktopRight"/>
258             <xs:enumeration value="DesktopUp"/>
259             <xs:enumeration value="DirectionalFocusEast"/>
260             <xs:enumeration value="DirectionalFocusNorth"/>
261             <xs:enumeration value="DirectionalFocusNortheast"/>
262             <xs:enumeration value="DirectionalFocusNorthwest"/>
263             <xs:enumeration value="DirectionalFocusSouth"/>
264             <xs:enumeration value="DirectionalFocusSoutheast"/>
265             <xs:enumeration value="DirectionalFocusSouthwest"/>
266             <xs:enumeration value="DirectionalFocusWest"/>
267             <xs:enumeration value="Execute"/>
268             <xs:enumeration value="Exit"/>
269             <xs:enumeration value="Focus"/>
270             <xs:enumeration value="GrowToEdgeEast"/>
271             <xs:enumeration value="GrowToEdgeNorth"/>
272             <xs:enumeration value="GrowToEdgeSouth"/>
273             <xs:enumeration value="GrowToEdgeWest"/>
274             <xs:enumeration value="Iconify"/>
275             <xs:enumeration value="Kill"/>
276             <xs:enumeration value="Lower"/>
277             <xs:enumeration value="MaximizeFull"/>
278             <xs:enumeration value="MaximizeHorz"/>
279             <xs:enumeration value="MaximizeVert"/>
280             <xs:enumeration value="Move"/>
281             <xs:enumeration value="MoveRelativeHorz"/>
282             <xs:enumeration value="MoveRelativeVert"/>
283             <xs:enumeration value="MoveToEdgeEast"/>
284             <xs:enumeration value="MoveToEdgeNorth"/>
285             <xs:enumeration value="MoveToEdgeSouth"/>
286             <xs:enumeration value="MoveToEdgeWest"/>
287             <xs:enumeration value="NextWindow"/>
288             <xs:enumeration value="NextWindowLinear"/>
289             <xs:enumeration value="PreviousWindow"/>
290             <xs:enumeration value="PreviousWindowLinear"/>
291             <xs:enumeration value="Raise"/>
292             <xs:enumeration value="RaiseLower"/>
293             <xs:enumeration value="Resize"/>
294             <xs:enumeration value="ResizeRelativeHorz"/>
295             <xs:enumeration value="ResizeRelativeVert"/>
296             <xs:enumeration value="Restart"/>
297             <xs:enumeration value="SendToBottomLayer"/>
298             <xs:enumeration value="SendToDesktop"/>
299             <xs:enumeration value="SendToDesktopDown"/>
300             <xs:enumeration value="SendToDesktopLeft"/>
301             <xs:enumeration value="SendToDesktopNext"/>
302             <xs:enumeration value="SendToDesktopPrevious"/>
303             <xs:enumeration value="SendToDesktopRight"/>
304             <xs:enumeration value="SendToDesktopUp"/>
305             <xs:enumeration value="SendToNormalLayer"/>
306             <xs:enumeration value="SendToTopLayer"/>
307             <xs:enumeration value="Shade"/>
308             <xs:enumeration value="ShadeLower"/>
309             <xs:enumeration value="ShowDesktop"/>
310             <xs:enumeration value="ShowMenu"/>
311             <xs:enumeration value="ToggleAlwaysOnBottom"/>
312             <xs:enumeration value="ToggleAlwaysOnTop"/>
313             <xs:enumeration value="ToggleDecorations"/>
314             <xs:enumeration value="ToggleMaximizeFull"/>
315             <xs:enumeration value="ToggleMaximizeHorz"/>
316             <xs:enumeration value="ToggleMaximizeVert"/>
317             <xs:enumeration value="ToggleOmnipresent"/>
318             <xs:enumeration value="ToggleShade"/>
319             <xs:enumeration value="ToggleShowDesktop"/>
320             <xs:enumeration value="Unfocus"/>
321             <xs:enumeration value="UnmaximizeFull"/>
322             <xs:enumeration value="UnmaximizeHorz"/>
323             <xs:enumeration value="UnmaximizeVert"/>
324             <xs:enumeration value="Unshade"/>
325             <xs:enumeration value="UnshadeRaise"/>
326             <xs:enumeration value="UnShowDesktop"/>
327         </xs:restriction>
328     </xs:simpleType>
329 </xs:schema>