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