3 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
4 targetNamespace="http://openbox.org/4.0/themerc"
5 xmlns:obt="http://openbox.org/4.0/themerc"
6 elementFormDefault="qualified"
10 <xs:documentation xml:lang="en">
11 Openbox theme definition
13 Copyright 2007 Dana Jansens
17 <xs:element name="openbox_theme" type="obt:theme">
19 <xs:documentation xml:lang="en">
25 <xs:complexType name="color">
26 <xs:attribute name="r" type="xs:integer"/>
27 <xs:attribute name="g" type="xs:integer"/>
28 <xs:attribute name="b" type="xs:integer"/>
29 <xs:attribute name="a" type="xs:integer"/>
32 <xs:complexType name="point">
33 <xs:attribute name="x" type="xs:integer"/>
34 <xs:attribute name="y" type="xs:integer"/>
37 <xs:simpleType name="justify">
38 <xs:restriction base="xs:string">
39 <xs:enumeration value="left"/>
40 <xs:enumeration value="right"/>
41 <xs:enumeration value="center"/>
45 <xs:complexType name="shadow">
47 <xs:element name="offset" type="obt:point" minOccurs="0"/>
48 <xs:element name="primary" type="obt:color" minOccurs="0"/>
52 <xs:complexType name="text">
54 <xs:element name="primary" type="obt:color" minOccurs="0"/>
55 <xs:element name="shadow" type="obt:shadow" minOccurs="0"/>
59 <xs:complexType name="textarea">
61 <xs:element name="style" type="xs:string" minOccurs="0"/>
62 <xs:element name="primary" type="obt:color" minOccurs="0"/>
63 <xs:element name="secondary" type="obt:color" minOccurs="0"/>
64 <xs:element name="interlace" type="obt:color" minOccurs="0"/>
65 <xs:element name="border" type="obt:color" minOccurs="0"/>
66 <xs:element name="text" type="obt:text" minOccurs="0"/>
70 <xs:complexType name="area">
72 <xs:element name="style" type="xs:string" minOccurs="0"/>
73 <xs:element name="primary" type="obt:color" minOccurs="0"/>
74 <xs:element name="secondary" type="obt:color" minOccurs="0"/>
75 <xs:element name="interlace" type="obt:color" minOccurs="0"/>
76 <xs:element name="border" type="obt:color" minOccurs="0"/>
80 <xs:complexType name="buttonarea">
82 <xs:element name="style" type="xs:string" minOccurs="0"/>
83 <xs:element name="primary" type="obt:color" minOccurs="0"/>
84 <xs:element name="secondary" type="obt:color" minOccurs="0"/>
85 <xs:element name="interlace" type="obt:color" minOccurs="0"/>
86 <xs:element name="border" type="obt:color" minOccurs="0"/>
87 <xs:element name="image" type="obt:color" minOccurs="0"/>
91 <xs:complexType name="allmenus">
93 <xs:element name="border" type="obt:color" minOccurs="0"/>
94 <xs:element name="overlap" type="xs:integer" minOccurs="0"/>
95 <xs:element name="justify" type="obt:justify" minOccurs="0"/>
96 <xs:element name="title" type="obt:textarea" minOccurs="0"/>
97 <xs:element name="entries" type="obt:area" minOccurs="0"/>
98 <xs:element name="inactive" type="obt:text" minOccurs="0"/>
99 <xs:element name="active" type="obt:textarea" minOccurs="0"/>
100 <xs:element name="disabled" type="obt:text" minOccurs="0"/>
101 <xs:element name="activedisabled" type="obt:textarea" minOccurs="0"/>
105 <xs:complexType name="allbuttons">
107 <xs:element name="unpressed" type="obt:buttonarea" minOccurs="0"/>
108 <xs:element name="pressed" type="obt:buttonarea" minOccurs="0"/>
109 <xs:element name="hover" type="obt:buttonarea" minOccurs="0"/>
110 <xs:element name="disabled" type="obt:buttonarea" minOccurs="0"/>
111 <xs:element name="toggled-unpressed" type="obt:buttonarea" minOccurs="0"/>
112 <xs:element name="toggled-pressed" type="obt:buttonarea" minOccurs="0"/>
113 <xs:element name="toggled-hover" type="obt:buttonarea" minOccurs="0"/>
117 <xs:complexType name="window">
119 <xs:element name="border" type="obt:color" minOccurs="0"/>
120 <xs:element name="clientpadding" type="obt:color" minOccurs="0"/>
121 <xs:element name="titlebar" type="obt:area" minOccurs="0"/>
122 <xs:element name="label" type="obt:textarea" minOccurs="0"/>
123 <xs:element name="handle" type="obt:area" minOccurs="0"/>
124 <xs:element name="grip" type="obt:area" minOccurs="0"/>
125 <xs:element name="buttons" type="obt:allbuttons" minOccurs="0"/>
129 <xs:complexType name="allwindows">
131 <xs:element name="justify" type="obt:justify" minOccurs="0"/>
132 <xs:element name="inactive" type="obt:window" minOccurs="0"/>
133 <xs:element name="active" type="obt:window" minOccurs="0"/>
137 <xs:complexType name="allosd">
139 <xs:element name="text" type="obt:text" minOccurs="0"/>
143 <xs:complexType name="windowDimensions">
145 <xs:element name="borderwidth" type="xs:integer" minOccurs="0"/>
146 <xs:element name="clientpadding" type="obt:point" minOccurs="0"/>
150 <xs:complexType name="menuDimensions">
152 <xs:element name="borderwidth" type="xs:integer" minOccurs="0"/>
156 <xs:complexType name="themeDimensions">
158 <xs:element name="padding" type="obt:point" minOccurs="0"/>
159 <xs:element name="handle" type="xs:integer" minOccurs="0"/>
160 <xs:element name="window" type="obt:windowDimensions" minOccurs="0"/>
161 <xs:element name="menu" type="obt:menuDimensions" minOccurs="0"/>
165 <xs:complexType name="about">
167 <xs:element name="author" type="xs:string" minOccurs="0"/>
168 <xs:element name="email" type="xs:string" minOccurs="0"/>
169 <xs:element name="webpage" type="xs:string" minOccurs="0"/>
170 <xs:element name="comment" type="xs:string" minOccurs="0"/>
174 <xs:complexType name="theme">
176 <xs:element name="about" type="obt:about" minOccurs="0"/>
177 <xs:element name="dimensions" type="obt:themeDimensions" minOccurs="0"/>
178 <xs:element name="osd" type="obt:allosd" minOccurs="0"/>
179 <xs:element name="menu" type="obt:allmenus" minOccurs="0"/>
180 <xs:element name="window" type="obt:allwindows" minOccurs="0"/>
182 <xs:attribute name="version" type="xs:integer" use="required" fixed="1"/>
183 <xs:attribute name="engine" type="xs:string" use="required" fixed="box"/>