summaryrefslogtreecommitdiff
path: root/data/rc.xsd
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@comhem.se>2006-06-08 10:18:31 +0000
committerMikael Magnusson <mikachu@comhem.se>2006-06-08 10:18:31 +0000
commited61a94ca51b2fc663ffef1b2bd37785c676cd34 (patch)
tree2f6f1e5b5d4e602290d85f832f688a08fd47beff /data/rc.xsd
parent9490107c4b2c6018b6831dd318d0a1cca99a56ad (diff)
per app settings
Diffstat (limited to 'data/rc.xsd')
-rw-r--r--data/rc.xsd23
1 files changed, 23 insertions, 0 deletions
diff --git a/data/rc.xsd b/data/rc.xsd
index 4241adda..85f72eb8 100644
--- a/data/rc.xsd
+++ b/data/rc.xsd
@@ -61,6 +61,7 @@
<xs:element name="keyboard" type="ob:keyboard"/>
<xs:element name="mouse" type="ob:mouse"/>
<xs:element name="menu" type="ob:menu"/>
+ <xs:element name="applications" type="ob:applications"/>
</xs:sequence>
</xs:complexType>
</xs:element>
@@ -192,6 +193,28 @@
<xs:element name="desktopMenuIcons" type="ob:yesorno"/>
</xs:sequence>
</xs:complexType>
+ <xs:complexType name="position">
+ <xs:sequence>
+ <xs:element name="x" type="xs:string"/>
+ <xs:element name="y" type="xs:string"/>
+ </xs:sequence>
+ </xs:complexType>
+ <xs:complexType name="application">
+ <xs:sequence>
+ <xs:element name="decor" type="xs:string"/>
+ <xs:element name="focus" type="xs:string"/>
+ <xs:element name="position" type="ob:position"/>
+ <xs:element name="head" type="xs:string"/>
+ <xs:element name="layer" type="xs:string"/>
+ <xs:element name="desktop" type="xs:integer"/>
+ </xs:sequence>
+ <xs:attribute name="name" type="xs:string" use="required"/>
+ </xs:complexType>
+ <xs:complexType name="applications">
+ <xs:sequence>
+ <xs:element maxOccurs="unboundd" name="application" type="ob:application"/>
+ </xs:sequence>
+ </xs:complexType>
<!--
simple types / restrictions
-->