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