]> icculus.org git repositories - mikachu/openbox.git/blob - data/rc.xsd
a) set the focus client before calculating its layer
[mikachu/openbox.git] / data / rc.xsd
1 <?xml version="1.0" encoding="UTF-8"?> <!-- -*- nxml -*- -->
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      Sun Sep 25 14:44:21 UTC 2005 - mikachu(a)openbox.org
39          Add showDelay for the dock
40      Tue Jul 18 23:43:15 CEST 2006 - jonaskoelker(a)gnu.org
41          hack code for great justice
42      Tue Oct 31 03:30:26 UTC 2006 - mikachu(a)openbox.org
43          Add movefromedge* actions
44      Sun Mar  4 12:12:19 EST 2007 - danakj(a)orodu.net
45          Add font section to theme section
46      Sun Mar  4 13:49:37 EST 2007 - danakj(a)orodu.net
47          Removing font shadows - they are going back into the themerc
48 -->
49 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
50     targetNamespace="http://openbox.org/"
51     xmlns:ob="http://openbox.org/"
52     elementFormDefault="qualified">
53     <!--
54          root node
55       -->
56     <xs:element name="openbox_config">
57         <xs:annotation>
58             <xs:documentation>all these elements are expected in a openbox config file</xs:documentation>
59         </xs:annotation>
60         <xs:complexType>
61             <xs:sequence>
62                 <xs:element name="resistance" type="ob:resistance"/>
63                 <xs:element name="focus" type="ob:focus"/>
64                 <xs:element name="placement" type="ob:placement"/>
65                 <xs:element name="theme" type="ob:theme"/>
66                 <xs:element name="desktops" type="ob:desktops"/>
67                 <xs:element name="resize" type="ob:resize"/>
68                 <xs:element name="dock" type="ob:dock"/>
69                 <xs:element name="keyboard" type="ob:keyboard"/>
70                 <xs:element name="mouse" type="ob:mouse"/>
71                 <xs:element name="menu" type="ob:menu"/>
72                 <xs:element name="applications" type="ob:applications"/>
73             </xs:sequence>
74         </xs:complexType>
75     </xs:element>
76     <!--
77          complex types
78       -->
79     <xs:complexType name="resistance">
80         <xs:annotation>
81             <xs:documentation>defines behaviour of windows when close to each other or the screen edge</xs:documentation>
82         </xs:annotation>
83         <xs:sequence>
84             <xs:element minOccurs="0" name="strength" type="xs:integer"/>
85             <xs:element minOccurs="0" name="screen_edge_strength" type="xs:integer"/>
86             <xs:element minOccurs="0" name="edges_hit_layers_below" type="ob:bool"/>
87         </xs:sequence>
88     </xs:complexType>
89     <xs:complexType name="focus">
90         <xs:annotation>
91             <xs:documentation>defines aspects of window focus</xs:documentation>
92         </xs:annotation>
93         <xs:sequence>
94             <xs:element minOccurs="0" name="focusNew" type="ob:bool"/>
95             <xs:element minOccurs="0" name="focusLast" type="ob:bool"/>
96             <xs:element minOccurs="0" name="followMouse" type="ob:bool"/>
97             <xs:element minOccurs="0" name="focusDelay" type="xs:integer"/>
98             <xs:element minOccurs="0" name="raiseOnFocus" type="ob:bool"/>
99         </xs:sequence>
100     </xs:complexType>
101     <xs:complexType name="placement">
102         <xs:annotation>
103             <xs:documentation>defines how new windows are placed</xs:documentation>
104         </xs:annotation>
105         <xs:sequence>
106             <xs:element name="policy" type="ob:placementpolicy"/>
107         </xs:sequence>
108     </xs:complexType>
109     <xs:complexType name="theme">
110         <xs:sequence>
111             <xs:element minOccurs="0" name="name" type="xs:string"/>
112             <xs:element minOccurs="0" name="titleLayout" type="xs:string"/>
113             <xs:element minOccurs="0" name="titleNumber" type="ob:bool"/>
114             <xs:element minOccurs="0" name="keepBorder" type="ob:bool"/>
115             <xs:element minOccurs="0" name="hideDisabled" type="ob:bool"/>
116             <xs:element minOccurs="0" name="font" type="ob:font"/>
117         </xs:sequence>
118     </xs:complexType>
119     <xs:complexType name="font">
120         <xs:sequence>
121             <xs:element minOccurs="0" name="name" type="xs:string"/>
122             <xs:element minOccurs="0" name="size" type="xs:integer"/>
123             <xs:element minOccurs="0" name="weight" type="ob:fontweight"/>
124             <xs:element minOccurs="0" name="slant" type="ob:fontslant"/>
125         </xs:sequence>
126     </xs:complexType>
127     <xs:complexType name="desktops">
128         <xs:annotation>
129             <xs:documentation>defines the number and names of desktops</xs:documentation>
130         </xs:annotation>
131         <xs:sequence>
132             <xs:element minOccurs="0" name="number" type="xs:integer"/>
133             <xs:element minOccurs="0" name="firstdesk" type="xs:integer"/>
134             <xs:element minOccurs="0" name="names">
135                 <xs:complexType>
136                     <xs:sequence>
137                         <xs:element maxOccurs="unbounded" name="name" type="xs:string"/>
138                     </xs:sequence>
139                 </xs:complexType>
140             </xs:element>
141         </xs:sequence>
142     </xs:complexType>
143     <xs:complexType name="resize">
144         <xs:sequence>
145             <xs:element minOccurs="0" name="drawContents" type="ob:bool"/>
146             <xs:element minOccurs="0" name="fourCorners" type="ob:bool"/>
147             <xs:element minOccurs="0" name="popupShow" type="ob:popupshow"/>
148             <xs:element minOccurs="0" name="popupPosition" type="ob:popupposition"/>
149         </xs:sequence>
150     </xs:complexType>
151     <xs:complexType name="dock">
152         <xs:sequence>
153             <xs:element minOccurs="0" name="position" type="ob:dock_position"/>
154             <xs:element minOccurs="0" name="floatingX" type="xs:integer"/>
155             <xs:element minOccurs="0" name="floatingY" type="xs:integer"/>
156             <xs:element minOccurs="0" name="noStrut" type="ob:bool"/>
157             <xs:element minOccurs="0" name="stacking" type="ob:layer"/>
158             <xs:element minOccurs="0" name="direction" type="ob:direction"/>
159             <xs:element minOccurs="0" name="autoHide" type="ob:bool"/>
160             <xs:element minOccurs="0" name="hideDelay" type="xs:integer"/>
161             <xs:element minOccurs="0" name="showDelay" type="xs:integer"/>
162             <xs:element minOccurs="0" name="moveButton" type="ob:button"/>
163         </xs:sequence>
164     </xs:complexType>
165     <xs:complexType name="action">
166         <xs:sequence>
167             <xs:element minOccurs="0" name="execute" type="xs:string"/>
168             <xs:element minOccurs="0" name="menu" type="xs:string"/>
169             <xs:element minOccurs="0" name="delta" type="xs:integer"/>
170             <xs:element minOccurs="0" name="x" type="xs:integer"/>
171             <xs:element minOccurs="0" name="y" type="xs:integer"/>
172             <xs:element minOccurs="0" name="left" type="xs:integer"/>
173             <xs:element minOccurs="0" name="right" type="xs:integer"/>
174             <xs:element minOccurs="0" name="up" type="xs:integer"/>
175             <xs:element minOccurs="0" name="down" type="xs:integer"/>
176             <xs:element minOccurs="0" name="desktop" type="xs:integer"/>
177             <xs:element minOccurs="0" name="wrap" type="ob:bool"/>
178             <xs:element minOccurs="0" name="follow" type="ob:bool"/>
179             <xs:element minOccurs="0" name="dialog" type="ob:bool"/>
180             <xs:element minOccurs="0" name="here" type="ob:bool"/>
181             <xs:element minOccurs="0" name="linear" type="ob:bool"/>
182             <xs:element minOccurs="0" name="group" type="ob:bool"/>
183         </xs:sequence>
184         <xs:attribute name="name" type="ob:actionname" use="required"/>
185     </xs:complexType>
186     <xs:complexType name="keybind">
187         <xs:sequence>
188             <xs:element maxOccurs="unbounded" name="action" type="ob:action"/>
189         </xs:sequence>
190         <xs:attribute name="key" type="ob:keyname" use="required"/>
191     </xs:complexType>
192     <xs:complexType name="keyboard">
193         <xs:sequence>
194             <xs:element minOccurs="0" name="chainQuitKey" type="ob:keyname"/>
195             <xs:element maxOccurs="unbounded" name="keybind" type="ob:keybind"/>
196         </xs:sequence>
197     </xs:complexType>
198     <xs:complexType name="mousebind">
199         <xs:sequence>
200             <xs:element maxOccurs="unbounded" name="action" type="ob:action"/>
201         </xs:sequence>
202         <xs:attribute name="action" type="ob:mouseaction" use="required"/>
203         <xs:attribute name="button" type="ob:button" use="required"/>
204     </xs:complexType>
205     <xs:complexType name="context">
206         <xs:sequence>
207             <xs:element maxOccurs="unbounded" name="mousebind" type="ob:mousebind"/>
208         </xs:sequence>
209         <xs:attribute name="name" type="ob:contextname" use="required"/>
210     </xs:complexType>
211     <xs:complexType name="mouse">
212         <xs:sequence>
213             <xs:element minOccurs="0" name="dragThreshold" type="xs:integer"/>
214             <xs:element minOccurs="0" name="doubleClickTime" type="xs:integer"/>
215             <xs:element maxOccurs="unbounded" name="context" type="ob:context"/>
216         </xs:sequence>
217     </xs:complexType>
218     <xs:complexType name="menu">
219         <xs:sequence>
220             <xs:element maxOccurs="unbounded" name="file" type="xs:string"/>
221             <xs:element minOccurs="0" name="warpPointer" type="ob:bool"/>
222             <xs:element minOccurs="0" name="xorStyle" type="ob:bool"/>
223             <xs:element minOccurs="0" name="hideDelay" type="xs:integer"/>
224             <xs:element minOccurs="0" name="middle" type="ob:bool"/>
225             <xs:element minOccurs="0" name="submenuShowDelay" type="xs:integer"/>
226             <xs:element minOccurs="0" name="desktopMenuIcons" type="ob:bool"/>
227         </xs:sequence>
228     </xs:complexType>
229     <xs:complexType name="window_position">
230         <xs:sequence>
231             <xs:element name="x" type="ob:center_or_int"/>
232             <xs:element name="y" type="ob:center_or_int"/>
233         </xs:sequence>
234     </xs:complexType>
235     <xs:complexType name="application">
236         <xs:sequence>
237             <xs:element minOccurs="0" name="decor" type="xs:string"/>
238             <xs:element minOccurs="0" name="shade" type="ob:bool"/>
239             <xs:element minOccurs="0" name="position" type="ob:window_position"/>
240             <xs:element minOccurs="0" name="focus" type="xs:string"/>
241             <xs:element minOccurs="0" name="desktop" type="xs:integer"/>
242             <xs:element minOccurs="0" name="head" type="xs:string"/>
243             <xs:element minOccurs="0" name="layer" type="ob:layer"/>
244             <xs:element minOccurs="0" name="iconic" type="ob:bool"/>
245             <xs:element minOccurs="0" name="skip_pager" type="ob:bool"/>
246             <xs:element minOccurs="0" name="skip_taskbar" type="ob:bool"/>
247             <xs:element minOccurs="0" name="fullscreen" type="ob:bool"/>
248             <xs:element minOccurs="0" name="maximized" type="ob:maximization"/>
249         </xs:sequence>
250         <!-- at least one of these must be present -->
251         <xs:attribute name="name" type="xs:string"/>
252         <xs:attribute name="class" type="xs:string"/>
253         <xs:attribute name="role" type="xs:string"/>
254     </xs:complexType>
255     <xs:complexType name="applications">
256         <xs:sequence>
257             <xs:element minOccurs="0" maxOccurs="unbounded" name="application" type="ob:application"/>
258         </xs:sequence>
259     </xs:complexType>
260     <!--
261          simple types / restrictions
262       -->
263     <xs:simpleType name="actionname">
264         <xs:restriction base="xs:string">
265             <xs:enumeration value="Activate"/>
266             <xs:enumeration value="Close"/>
267             <xs:enumeration value="Desktop"/>
268             <xs:enumeration value="DesktopDown"/>
269             <xs:enumeration value="DesktopLast"/>
270             <xs:enumeration value="DesktopLeft"/>
271             <xs:enumeration value="DesktopNext"/>
272             <xs:enumeration value="DesktopPrevious"/>
273             <xs:enumeration value="DesktopRight"/>
274             <xs:enumeration value="DesktopUp"/>
275             <xs:enumeration value="DirectionalFocusEast"/>
276             <xs:enumeration value="DirectionalFocusNorth"/>
277             <xs:enumeration value="DirectionalFocusNortheast"/>
278             <xs:enumeration value="DirectionalFocusNorthwest"/>
279             <xs:enumeration value="DirectionalFocusSouth"/>
280             <xs:enumeration value="DirectionalFocusSoutheast"/>
281             <xs:enumeration value="DirectionalFocusSouthwest"/>
282             <xs:enumeration value="DirectionalFocusWest"/>
283             <xs:enumeration value="Execute"/>
284             <xs:enumeration value="Exit"/>
285             <xs:enumeration value="Focus"/>
286             <xs:enumeration value="FocusToBottom"/>
287             <xs:enumeration value="GrowToEdgeEast"/>
288             <xs:enumeration value="GrowToEdgeNorth"/>
289             <xs:enumeration value="GrowToEdgeSouth"/>
290             <xs:enumeration value="GrowToEdgeWest"/>
291             <xs:enumeration value="Iconify"/>
292             <xs:enumeration value="Kill"/>
293             <xs:enumeration value="Lower"/>
294             <xs:enumeration value="MaximizeFull"/>
295             <xs:enumeration value="MaximizeHorz"/>
296             <xs:enumeration value="MaximizeVert"/>
297             <xs:enumeration value="Move"/>
298             <xs:enumeration value="MoveRelative"/>
299             <xs:enumeration value="MoveRelativeHorz"/>
300             <xs:enumeration value="MoveRelativeVert"/>
301             <xs:enumeration value="MoveToCenter"/>
302             <xs:enumeration value="MoveFromEdgeEast"/>
303             <xs:enumeration value="MoveFromEdgeNorth"/>
304             <xs:enumeration value="MoveFromEdgeSouth"/>
305             <xs:enumeration value="MoveFromEdgeWest"/>
306             <xs:enumeration value="MoveToEdgeEast"/>
307             <xs:enumeration value="MoveToEdgeNorth"/>
308             <xs:enumeration value="MoveToEdgeSouth"/>
309             <xs:enumeration value="MoveToEdgeWest"/>
310             <xs:enumeration value="NextWindow"/>
311             <xs:enumeration value="PreviousWindow"/>
312             <xs:enumeration value="Raise"/>
313             <xs:enumeration value="RaiseLower"/>
314             <xs:enumeration value="Reconfigure"/>
315             <xs:enumeration value="Resize"/>
316             <xs:enumeration value="ResizeRelative"/>
317             <xs:enumeration value="ResizeRelativeHorz"/>
318             <xs:enumeration value="ResizeRelativeVert"/>
319             <xs:enumeration value="Restart"/>
320             <xs:enumeration value="SendToBottomLayer"/>
321             <xs:enumeration value="SendToDesktop"/>
322             <xs:enumeration value="SendToDesktopDown"/>
323             <xs:enumeration value="SendToDesktopLeft"/>
324             <xs:enumeration value="SendToDesktopNext"/>
325             <xs:enumeration value="SendToDesktopPrevious"/>
326             <xs:enumeration value="SendToDesktopRight"/>
327             <xs:enumeration value="SendToDesktopUp"/>
328             <xs:enumeration value="SendToNormalLayer"/>
329             <xs:enumeration value="SendToTopLayer"/>
330             <xs:enumeration value="Shade"/>
331             <xs:enumeration value="ShadeLower"/>
332             <xs:enumeration value="ShowDesktop"/>
333             <xs:enumeration value="ShowMenu"/>
334             <xs:enumeration value="ToggleAlwaysOnBottom"/>
335             <xs:enumeration value="ToggleAlwaysOnTop"/>
336             <xs:enumeration value="ToggleDecorations"/>
337             <xs:enumeration value="ToggleDockAutoHide"/>
338             <xs:enumeration value="ToggleFullscreen"/>
339             <xs:enumeration value="ToggleMaximizeFull"/>
340             <xs:enumeration value="ToggleMaximizeHorz"/>
341             <xs:enumeration value="ToggleMaximizeVert"/>
342             <xs:enumeration value="ToggleOmnipresent"/>
343             <xs:enumeration value="ToggleShade"/>
344             <xs:enumeration value="ToggleShowDesktop"/>
345             <xs:enumeration value="Unfocus"/>
346             <xs:enumeration value="UnmaximizeFull"/>
347             <xs:enumeration value="UnmaximizeHorz"/>
348             <xs:enumeration value="UnmaximizeVert"/>
349             <xs:enumeration value="Unshade"/>
350             <xs:enumeration value="UnshadeRaise"/>
351             <xs:enumeration value="UnShowDesktop"/>
352         </xs:restriction>
353     </xs:simpleType>
354     <xs:simpleType name="bool">
355         <!-- this is copied to maximization.  Keep that in sync. -->
356         <xs:restriction base="xs:string">
357             <xs:enumeration value="yes"/>
358             <xs:enumeration value="no"/>
359             <xs:enumeration value="true"/>
360             <xs:enumeration value="false"/>
361             <xs:enumeration value="on"/>
362             <xs:enumeration value="off"/>
363         </xs:restriction>
364     </xs:simpleType>
365     <xs:simpleType name="fontweight">
366         <xs:restriction base="xs:string">
367             <xs:enumeration value="normal"/>
368             <xs:enumeration value="bold"/>
369         </xs:restriction>
370     </xs:simpleType>
371     <xs:simpleType name="fontslant">
372         <xs:restriction base="xs:string">
373             <xs:enumeration value="normal"/>
374             <xs:enumeration value="italic"/>
375             <xs:enumeration value="opaque"/>
376         </xs:restriction>
377     </xs:simpleType>
378     <xs:simpleType name="button">
379         <xs:restriction base="xs:string">
380             <xs:enumeration value="Left"/>
381             <xs:enumeration value="Middle"/>
382             <xs:enumeration value="Right"/>
383             <xs:enumeration value="Up"/>
384             <xs:enumeration value="Down"/>
385             <xs:enumeration value="A-Left"/>
386             <xs:enumeration value="A-Middle"/>
387             <xs:enumeration value="A-Right"/>
388             <xs:enumeration value="A-Up"/>
389             <xs:enumeration value="A-Down"/>
390             <xs:enumeration value="C-A-Left"/>
391             <xs:enumeration value="C-A-Middle"/>
392             <xs:enumeration value="C-A-Right"/>
393             <xs:enumeration value="C-A-Up"/>
394             <xs:enumeration value="C-A-Down"/>
395         </xs:restriction>
396     </xs:simpleType>
397     <xs:simpleType name="center_or_int">
398         <xs:restriction base="xs:string">
399             <!-- ob: atoi($_) unless $_ eq 'center'; -->
400             <!-- I think the regexp DTRT WRT atoi. -->
401             <xs:pattern value="center|0|[1-9][0-9]*"/>
402         </xs:restriction>
403     </xs:simpleType>
404     <xs:simpleType name="contextname">
405         <xs:restriction base="xs:string">
406             <xs:enumeration value="Desktop"/>
407             <xs:enumeration value="Client"/>
408             <xs:enumeration value="Titlebar"/>
409             <xs:enumeration value="Handle"/>
410             <xs:enumeration value="Frame"/>
411             <xs:enumeration value="TLCorner"/>
412             <xs:enumeration value="TRCorner"/>
413             <xs:enumeration value="BLCorner"/>
414             <xs:enumeration value="BRCorner"/>
415             <xs:enumeration value="Maximize"/>
416             <xs:enumeration value="AllDesktops"/>
417             <xs:enumeration value="Shade"/>
418             <xs:enumeration value="Iconify"/>
419             <xs:enumeration value="Icon"/>
420             <xs:enumeration value="Close"/>
421             <xs:enumeration value="MoveResize"/>
422         </xs:restriction>
423     </xs:simpleType>
424     <xs:simpleType name="direction">
425         <xs:restriction base="xs:string">
426             <xs:enumeration value="Horizontal"/>
427             <xs:enumeration value="Vertical"/>
428         </xs:restriction>
429     </xs:simpleType>
430     <xs:simpleType name="dock_position">
431         <xs:restriction base="xs:string">
432             <xs:enumeration value="TopLeft"/>
433             <xs:enumeration value="Top"/>
434             <xs:enumeration value="TopRight"/>
435             <xs:enumeration value="Right"/>
436             <xs:enumeration value="BottomRight"/>
437             <xs:enumeration value="Bottom"/>
438             <xs:enumeration value="BottomLeft"/>
439             <xs:enumeration value="Left"/>
440             <xs:enumeration value="Floating"/>
441         </xs:restriction>
442     </xs:simpleType>
443     <xs:simpleType name="keyname">
444         <xs:restriction base="xs:string">
445             <!-- FIXME: M, Mod2, Mod5 in addition to S, A, C -->
446             <!-- how do we do all substrings and permutations? -->
447             <xs:pattern value="(A-)?(S-)?(A-)?(C-)?(A-)?(S-)?(A-)?[a-zA-Z0-9]*"/>
448         </xs:restriction>
449     </xs:simpleType>
450     <xs:simpleType name="layer">
451         <xs:restriction base="xs:string">
452             <xs:enumeration value="Top"/>
453             <xs:enumeration value="Normal"/>
454             <xs:enumeration value="Bottom"/>
455         </xs:restriction>
456     </xs:simpleType>
457     <xs:simpleType name="maximization">
458         <xs:restriction base="xs:string">
459             <xs:enumeration value="Horizontal"/>
460             <xs:enumeration value="Vertical"/>
461             <!-- this is a copy of ob:bool.  Keep it in sync. -->
462             <xs:enumeration value="yes"/>
463             <xs:enumeration value="no"/>
464             <xs:enumeration value="true"/>
465             <xs:enumeration value="false"/>
466             <xs:enumeration value="on"/>
467             <xs:enumeration value="off"/>
468         </xs:restriction>
469     </xs:simpleType>
470     <xs:simpleType name="mouseaction">
471         <xs:restriction base="xs:string">
472             <xs:enumeration value="Click"/>
473             <xs:enumeration value="DoubleClick"/>
474             <xs:enumeration value="Drag"/>
475             <xs:enumeration value="Press"/>
476             <xs:enumeration value="Release"/>
477         </xs:restriction>
478     </xs:simpleType>
479     <xs:simpleType name="placementpolicy">
480         <xs:restriction base="xs:string">
481             <xs:enumeration value="Smart"/>
482             <xs:enumeration value="UnderMouse"/>
483         </xs:restriction>
484     </xs:simpleType>
485     <xs:simpleType name="popupposition">
486         <xs:restriction base="xs:string">
487             <xs:enumeration value="Top"/>
488             <xs:enumeration value="Center"/>
489         </xs:restriction>
490     </xs:simpleType>
491     <xs:simpleType name="popupshow">
492         <xs:restriction base="xs:string">
493             <xs:enumeration value="Always"/>
494             <xs:enumeration value="Never"/>
495             <xs:enumeration value="Nonpixel"/>
496         </xs:restriction>
497     </xs:simpleType>
498 </xs:schema>