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