Fix unary operator parsing. Add floor, ceil, trunc and round unary
[platform/upstream/fontconfig.git] / fonts.dtd
1 <!-- This is the Document Type Definition for font configuration files -->
2 <!ELEMENT fontconfig (dir | 
3                       cache | 
4                       include | 
5                       config |
6                       match | 
7                       alias)* >
8
9 <!-- 
10     Add a directory that provides fonts
11 -->
12 <!ELEMENT dir (#PCDATA)>
13 <!ATTLIST dir xml:space (default|preserve) 'preserve'>
14
15 <!--
16     Define the per-user file that holds cache font information.
17
18     If the filename begins with '~', it is replaced with the users
19     home directory path.
20 -->
21 <!ELEMENT cache (#PCDATA)>
22 <!ATTLIST cache xml:space (default|preserve) 'preserve'>
23
24 <!--
25     Reference another configuration file; note that this
26     is another complete font configuration file and not
27     just a file included by the XML parser.
28
29     Set 'ignore_missing' to 'yes' if errors are to be ignored.
30
31     If the filename begins with '~', it is replaced with the users
32     home directory path.
33 -->
34 <!ELEMENT include (#PCDATA)>
35 <!ATTLIST include
36           ignore_missing    (no|yes)            "no"
37           xml:space         (default|preserve)  "preserve">
38
39 <!--
40     Global library configuration data
41  -->
42 <!ELEMENT config (blank|rescan)*>
43
44 <!--
45     Specify the set of Unicode encoding values which
46     represent glyphs that are allowed to contain no
47     data.  With this list, fontconfig can examine
48     fonts for broken glyphs and eliminate them from
49     the set of valid Unicode chars.  This idea
50     was borrowed from Mozilla
51  -->
52 <!ELEMENT blank (int)*>
53
54 <!--
55     Aliases are just a special case for multiple match elements
56
57     They are syntactically equivalent to:
58
59     <match>
60         <test name="family">
61             <string value=[family]/>
62         </test>
63         <edit name="family" mode="prepend">
64             <string value=[prefer]/>
65             ...
66         </edit>
67         <edit name="family" mode="append">
68             <string value=[accept]/>
69             ...
70         </edit>
71         <edit name="family" mode="append_last">
72             <string value=[default]/>
73             ...
74         </edit>
75     </match>
76 -->
77 <!--
78     Periodically rescan the font configuration and
79     directories to synch internal state with filesystem
80  -->
81 <!ELEMENT rescan (int)>
82
83
84 <!ELEMENT alias (family*, prefer?, accept?, default?)>
85 <!ELEMENT prefer (family)*>
86 <!ELEMENT accept (family)*>
87 <!ELEMENT default (family)*>
88 <!ELEMENT family (#PCDATA)>
89 <!ATTLIST family xml:space (default|preserve) 'preserve'>
90
91 <!ENTITY % expr 'int|double|string|matrix|bool|charset
92                 |name|const
93                 |or|and|eq|not_eq|less|less_eq|more|more_eq|contains|not_contains
94                 |plus|minus|times|divide|not|if|floor|ceil|round|trunc'>
95
96 <!--
97     Match and edit patterns.
98
99     If 'target' is 'pattern', execute the match before selecting a font.
100     if 'target' is 'font', execute the match on the result of a font
101     selection.
102 -->
103 <!ELEMENT match (test*, edit*)>
104 <!ATTLIST match
105           target (pattern|font) "pattern">
106
107 <!--
108     Match a field in a pattern
109
110     if 'qual' is 'any', then the match succeeds if any value in the field matches.
111     if 'qual' is 'all', then the match succeeds only if all values match.
112     if 'qual' is 'first', then the match succeeds only if the first value matches.
113     if 'qual' is 'not_first', then the match succeeds only if any value other than
114         the first matches.
115     For match elements with target=font, if test 'target' is 'pattern',
116     then the test is applied to the pattern used in matching rather than
117     to the resulting font.
118 -->
119 <!ELEMENT test (%expr;)*>
120 <!ATTLIST test 
121           qual (any|all|first|not_first)    "any"
122           name CDATA        #REQUIRED
123           target (pattern|font|default)         "default"
124           compare (eq|not_eq|less|less_eq|more|more_eq|contains|not_contains)   "eq">
125
126 <!--
127     Edit a field in a pattern
128
129     The enclosed values are used together to edit the list of values
130     associated with 'name'.
131
132     If 'name' matches one of those used in a test element for this match element:
133         if 'mode' is 'assign', replace the matched value.
134         if 'mode' is 'assign_replace', replace all of the values
135         if 'mode' is 'prepend', insert before the matched value
136         if 'mode' is 'append', insert after the matched value
137         if 'mode' is 'prepend_first', insert before all of the values
138         if 'mode' is 'append_last', insert after all of the values
139     If 'name' doesn't match any of those used in a test element:
140         if 'mode' is 'assign' or 'assign_replace, replace all of the values
141         if 'mode' is 'prepend' or 'prepend_first', insert before all of the values
142         if 'mode' is 'append' or 'append_last', insert after all of the values
143 -->
144 <!ELEMENT edit (%expr;)*>
145 <!ATTLIST edit
146           name CDATA        #REQUIRED
147           mode (assign|assign_replace|prepend|append|prepend_first|append_last) "assign"
148           binding (weak|strong|same) "weak">
149
150 <!--
151     Elements of expressions follow
152 -->
153 <!ELEMENT int (#PCDATA)>
154 <!ATTLIST int xml:space (default|preserve) 'preserve'>
155 <!ELEMENT double (#PCDATA)>
156 <!ATTLIST double xml:space (default|preserve) 'preserve'>
157 <!ELEMENT string (#PCDATA)>
158 <!ATTLIST string xml:space (default|preserve) 'preserve'>
159 <!ELEMENT matrix (double,double,double,double)>
160 <!ELEMENT bool (true|false)>
161 <!ELEMENT charset (#PCDATA)>
162 <!ATTLIST charset xml:space (default|preserve) 'preserve'>
163 <!ELEMENT name (#PCDATA)>
164 <!ATTLIST name xml:space (default|preserve) 'preserve'>
165 <!ELEMENT const (#PCDATA)>
166 <!ATTLIST const xml:space (default|preserve) 'preserve'>
167 <!ELEMENT or (%expr;)*>
168 <!ELEMENT and (%expr;)*>
169 <!ELEMENT eq ((%expr;), (%expr;))>
170 <!ELEMENT not_eq ((%expr;), (%expr;))>
171 <!ELEMENT less ((%expr;), (%expr;))>
172 <!ELEMENT less_eq ((%expr;), (%expr;))>
173 <!ELEMENT more ((%expr;), (%expr;))>
174 <!ELEMENT more_eq ((%expr;), (%expr;))>
175 <!ELEMENT contains ((%expr;), (%expr;))>
176 <!ELEMENT not_contains ((%expr;), (%expr;))>
177 <!ELEMENT plus (%expr;)*>
178 <!ELEMENT minus (%expr;)*>
179 <!ELEMENT times (%expr;)*>
180 <!ELEMENT divide (%expr;)*>
181 <!ELEMENT not (%expr;)>
182 <!ELEMENT if ((%expr;), (%expr;), (%expr;))>
183 <!ELEMENT floor (%expr;)>
184 <!ELEMENT ceil (%expr;)>
185 <!ELEMENT round (%expr;)>
186 <!ELEMENT trunc (%expr;)>