diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-04-26 13:10:36 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-04-26 13:10:36 +0000 |
| commit | 4e590eba236c587caff22d8cfc3a8fc0332cb206 (patch) | |
| tree | ab9c1fd825b694d9557d67b6a8504b71d58f4d21 /data | |
| parent | 1c4c2b92a0be1b1358f34898ef47f74e0b21ae6a (diff) | |
add a separate font config for onscreendisplays
change menutitle in the rc to menuheader
fix up the xsd for fonts
Diffstat (limited to 'data')
| -rw-r--r-- | data/rc.xml.in | 18 | ||||
| -rw-r--r-- | data/rc.xsd | 14 |
2 files changed, 25 insertions, 7 deletions
diff --git a/data/rc.xml.in b/data/rc.xml.in index 6233c2e2..d42c3135 100644 --- a/data/rc.xml.in +++ b/data/rc.xml.in @@ -44,26 +44,32 @@ <keepBorder>yes</keepBorder> <hideDisabled>no</hideDisabled> <font place="ActiveWindow"> - <name>arial,sans</name> + <name>sans</name> <size>7</size> <weight>bold</weight> <slant>normal</slant> </font> <font place="InactiveWindow"> - <name>arial,sans</name> + <name>sans</name> <size>7</size> <weight>bold</weight> <slant>normal</slant> </font> - <font place="MenuTitle"> - <name>arial,sans</name> + <font place="MenuHeader"> + <name>sans</name> <size>8</size> <weight>bold</weight> <slant>normal</slant> </font> <font place="MenuItem"> - <name>arial,sans</name> - <size>8</size> + <name>sans</name> + <size>9</size> + <weight>bold</weight> + <slant>normal</slant> + </font> + <font place="OnScreenDisplay"> + <name>sans</name> + <size>9</size> <weight>bold</weight> <slant>normal</slant> </font> diff --git a/data/rc.xsd b/data/rc.xsd index fdb98e7d..4da392a8 100644 --- a/data/rc.xsd +++ b/data/rc.xsd @@ -47,10 +47,12 @@ Removing font shadows - they are going back into the themerc Tue Apr 24 18:42:24 UTC 2007 - mikachu(a)openbox.org Removed fourCorners option. - Wed Apr 25 14:02:40 UTC 2007 + Wed Apr 25 14:02:40 UTC 2007 - mikachu(a)openbox.org Fixed values for layer to be above/below, not top/bottom. Add chroot attribute and keybind element to keybind element. Remove xsd:sequence from everywhere, we don't care about order. + Thu Apr 26 09:11:03 EDT 2007 - danakj(a)orodu.net + Add the place attribute for fonts --> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://openbox.org/" @@ -117,6 +119,7 @@ <xsd:element minOccurs="0" name="size" type="xsd:integer"/> <xsd:element minOccurs="0" name="weight" type="ob:fontweight"/> <xsd:element minOccurs="0" name="slant" type="ob:fontslant"/> + <xsd:attribute name="place" type="ob:fontplace" use="required"/> </xsd:complexType> <xsd:complexType name="desktops"> <xsd:annotation> @@ -333,6 +336,15 @@ <xsd:enumeration value="off"/> </xsd:restriction> </xsd:simpleType> + <xsd:simpleType name="fontplace"> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="ActiveWindow"/> + <xsd:enumeration value="InactiveWindow"/> + <xsd:enumeration value="MenuHeader"/> + <xsd:enumeration value="MenuItem"/> + <xsd:enumeration value="OnScreenDisplay"/> + </xsd:restriction> + </xsd:simpleType> <xsd:simpleType name="fontweight"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="normal"/> |
