fcconfig.fncs revision 2c393a42
1/*
2 * $Id: fcconfig.fncs,v 1.1.1.1 2008/07/30 01:24:15 mrg Exp $
3 *
4 * Copyright © 2003 Keith Packard
5 *
6 * Permission to use, copy, modify, distribute, and sell this software and its
7 * documentation for any purpose is hereby granted without fee, provided that
8 * the above copyright notice appear in all copies and that both that
9 * copyright notice and this permission notice appear in supporting
10 * documentation, and that the name of Keith Packard not be used in
11 * advertising or publicity pertaining to distribution of the software without
12 * specific, written prior permission.  Keith Packard makes no
13 * representations about the suitability of this software for any purpose.  It
14 * is provided "as is" without express or implied warranty.
15 *
16 * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18 * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22 * PERFORMANCE OF THIS SOFTWARE.
23 */
24@RET@           FcConfig *
25@FUNC@          FcConfigCreate
26@TYPE1@		void
27@PURPOSE@	Create a configuration
28@DESC@
29Creates an empty configuration.
30@@
31
32@RET@           void
33@FUNC@          FcConfigDestroy
34@TYPE1@         FcConfig *                      @ARG1@          config
35@PURPOSE@	Destroy a configuration
36@DESC@
37Destroys a configuration and any data associated with it.  Note that calling
38this function with the return from FcConfigGetCurrent will place the library
39in an indeterminate state.
40@@
41
42@RET@           FcBool
43@FUNC@          FcConfigSetCurrent
44@TYPE1@         FcConfig *                      @ARG1@          config
45@PURPOSE@	Set configuration as default
46@DESC@
47Sets the current default configuration to <parameter>config</parameter>.  Implicitly calls
48FcConfigBuildFonts if necessary, returning FcFalse if that call fails.
49@@
50
51@RET@           FcConfig *
52@FUNC@          FcConfigGetCurrent
53@TYPE1@		void
54@PURPOSE@	Return current configuration
55@DESC@
56Returns the current default configuration.
57@@
58
59@RET@           FcBool
60@FUNC@          FcConfigUptoDate
61@TYPE1@         FcConfig *                      @ARG1@          config
62@PURPOSE@	Check timestamps on config files
63@DESC@
64Checks all of the files related to <parameter>config</parameter> and returns
65whether any of them has been modified since the configuration was created.
66@@
67
68@RET@		FcBool
69@FUNC@		FcConfigHome
70@TYPE1@		void
71@PURPOSE@	return the current home directory.
72@DESC@
73Return the current user's home directory, if it is available, and if using it
74is enabled. See also <function>FcConfigEnableHome</function>).
75@@
76
77@RET@		FcBol
78@FUNC@		FcConfigEnableHome
79@TYPE1@		FcBool%				@ARG1@		enable
80@PURPOSE@	controls use of the home directory.
81@DESC@
82If <parameter>enable</parameter> is FcTrue, then Fontconfig will use various
83files which are specified relative to the user's home directory (using the ~
84notation in the configuration). When <parameter>enable</parameter> is
85FcFalse, then all use of the home directory in these contexts will be
86disabled. The previous setting of the value is returned.
87@@
88
89@RET@           FcBool
90@FUNC@          FcConfigBuildFonts
91@TYPE1@         FcConfig *                      @ARG1@          config
92@PURPOSE@	Build font database
93@DESC@
94Builds the set of available fonts for the given configuration.  Note that
95any changes to the configuration after this call have indeterminate effects.
96Returns FcFalse if this operation runs out of memory.
97@@
98
99@RET@           FcStrList *
100@FUNC@          FcConfigGetConfigDirs
101@TYPE1@         FcConfig *                      @ARG1@          config
102@PURPOSE@	Get config directories
103@DESC@
104Returns the list of font directories specified in the configuration files
105for <parameter>config</parameter>.  Does not include any subdirectories.
106@@
107
108@RET@           FcStrList *
109@FUNC@          FcConfigGetFontDirs
110@TYPE1@         FcConfig *                      @ARG1@          config
111@PURPOSE@	Get font directories
112@DESC@
113Returns the list of font directories in <parameter>config</parameter>. This includes the
114configured font directories along with any directories below those in the
115filesystem.
116@@
117
118@RET@           FcStrList *
119@FUNC@          FcConfigGetConfigFiles
120@TYPE1@         FcConfig *                      @ARG1@          config
121@PURPOSE@	Get config files
122@DESC@
123Returns the list of known configuration files used to generate <parameter>config</parameter>.
124@@
125
126@RET@           FcChar8 *
127@FUNC@          FcConfigGetCache
128@TYPE1@         FcConfig *                      @ARG1@          config
129@PURPOSE@	DEPRECATED used to return per-user cache filename
130@DESC@
131With fontconfig no longer using per-user cache files, this function now
132simply returns NULL to indicate that no per-user file exists.
133@@
134
135@RET@		FcStrList *
136@FUNC@		FcConfigGetCacheDirs
137@TYPE1@		FcConfig *			@ARG1@		config
138@PURPOSE@	return the list of directories searched for cache files
139@DESC@
140<function>FcConfigGetCacheDirs</function> returns a string list containing
141all of the directories that fontconfig will search when attempting to load a
142cache file for a font directory.
143@@
144
145@RET@           FcFontSet *
146@FUNC@          FcConfigGetFonts
147@TYPE1@         FcConfig *			@ARG1@		config
148@TYPE2@		FcSetName%                      @ARG2@          set
149@PURPOSE@	Get config font set
150@DESC@
151Returns one of the two sets of fonts from the configuration as specified
152by <parameter>set</parameter>. This font set is owned by the library and must
153not be freed.
154@@
155
156@RET@           FcBlanks *
157@FUNC@          FcConfigGetBlanks
158@TYPE1@         FcConfig *                      @ARG1@          config
159@PURPOSE@	Get config blanks
160@DESC@
161Returns the FcBlanks object associated with the given configuration, if no
162blanks were present in the configuration, this function will return 0.
163@@
164
165@RET@           int
166@FUNC@          FcConfigGetRescanInterval
167@TYPE1@         FcConfig *                      @ARG1@          config
168@PURPOSE@	Get config rescan interval
169@DESC@
170Returns the interval between automatic checks of the configuration (in
171seconds) specified in <parameter>config</parameter>.  The configuration is checked during
172a call to FcFontList when this interval has passed since the last check.
173@@
174
175@RET@           FcBool
176@FUNC@          FcConfigSetRescanInterval
177@TYPE1@         FcConfig *			@ARG1@		config
178@TYPE2@		int%                       	@ARG2@          rescanInterval
179@PURPOSE@	Set config rescan interval
180@DESC@
181Sets the rescan interval. Returns FcFalse if the interval cannot be set (due
182to allocation failure). Otherwise returns FcTrue.
183@@
184
185@RET@           FcBool
186@FUNC@          FcConfigAppFontAddFile
187@TYPE1@         FcConfig *			@ARG1@		config
188@TYPE2@		const FcChar8 *			@ARG2@          file
189@PURPOSE@	Add font file to font database
190@DESC@
191Adds an application-specific font to the configuration. Returns FcFalse
192if the fonts cannot be added (due to allocation failure). Otherwise returns FcTrue.
193@@
194
195@RET@           FcBool
196@FUNC@          FcConfigAppFontAddDir
197@TYPE1@         FcConfig *			@ARG1@		config
198@TYPE2@		const FcChar8 *			@ARG2@          dir
199@PURPOSE@	Add fonts from directory to font database
200@DESC@
201Scans the specified directory for fonts, adding each one found to the
202application-specific set of fonts. Returns FcFalse
203if the fonts cannot be added (due to allocation failure). Otherwise returns FcTrue.
204@@
205
206@RET@           void
207@FUNC@          FcConfigAppFontClear
208@TYPE1@         FcConfig *                      @ARG1@          config
209@PURPOSE@	Remove all app fonts from font database
210@DESC@
211Clears the set of application-specific fonts.
212@@
213
214@RET@           FcBool
215@FUNC@          FcConfigSubstituteWithPat
216@TYPE1@         FcConfig *			@ARG1@		config
217@TYPE2@		FcPattern *			@ARG2@		p
218@TYPE3@		FcPattern *			@ARG3@		p_pat
219@TYPE4@		FcMatchKind%                     @ARG4@          kind
220@PURPOSE@	Execute substitutions
221@DESC@
222Performs the sequence of pattern modification operations, if <parameter>kind</parameter> is
223FcMatchPattern, then those tagged as pattern operations are applied, else
224if <parameter>kind</parameter> is FcMatchFont, those tagged as font operations are applied and
225p_pat is used for &lt;test&gt; elements with target=pattern. Returns FcFalse
226if the substitution cannot be performed (due to allocation failure). Otherwise returns FcTrue.
227@@
228
229@RET@           FcBool
230@FUNC@          FcConfigSubstitute
231@TYPE1@         FcConfig *			@ARG1@		config
232@TYPE2@		FcPattern *			@ARG2@		p
233@TYPE3@		FcMatchKind%                    @ARG3@          kind
234@PURPOSE@	Execute substitutions
235@DESC@
236Calls FcConfigSubstituteWithPat setting p_pat to NULL. Returns FcFalse
237if the substitution cannot be performed (due to allocation failure). Otherwise returns FcTrue.
238@@
239
240@RET@           FcPattern *
241@FUNC@          FcFontMatch
242@TYPE1@         FcConfig *			@ARG1@		config
243@TYPE2@		FcPattern *			@ARG2@		p
244@TYPE3@		FcResult *                      @ARG3@          result
245@PURPOSE@	Return best font
246@DESC@
247Finds the font in <parameter>sets</parameter> most closely matching
248<parameter>pattern</parameter> and returns the result of
249<function>FcFontRenderPrepare</function> for that font and the provided
250pattern. This function should be called only after
251<function>FcConfigSubstitute</function> and
252<function>FcDefaultSubstitute</function> have been called for
253<parameter>p</parameter>; otherwise the results will not be correct.
254@@
255
256@RET@           FcFontSet *
257@FUNC@          FcFontSort
258@TYPE1@         FcConfig *			@ARG1@		config
259@TYPE2@		FcPattern *			@ARG2@		p
260@TYPE3@		FcBool%				@ARG3@		trim
261@TYPE4@		FcCharSet **			@ARG4@		csp
262@TYPE5@		FcResult *                      @ARG5@          result
263@PURPOSE@	Return list of matching fonts
264@DESC@
265Returns the list of fonts sorted by closeness to <parameter>p</parameter>.  If <parameter>trim</parameter> is FcTrue,
266elements in the list which don't include Unicode coverage not provided by
267earlier elements in the list are elided.  The union of Unicode coverage of
268all of the fonts is returned in <parameter>csp</parameter>, if <parameter>csp</parameter> is not NULL.  This function
269should be called only after FcConfigSubstitute and FcDefaultSubstitute have
270been called for <parameter>p</parameter>; otherwise the results will not be correct.
271    </para><para>
272The returned FcFontSet references FcPattern structures which may be shared
273by the return value from multiple FcFontSort calls, applications must not
274modify these patterns.  Instead, they should be passed, along with <parameter>p</parameter> to
275<function>FcFontRenderPrepare</function> which combines them into a complete pattern.
276    </para><para>
277The FcFontSet returned by FcFontSort is destroyed by caling FcFontSetDestroy.
278@@
279
280@RET@           FcPattern *
281@FUNC@          FcFontRenderPrepare
282@TYPE1@         FcConfig *			@ARG1@		config
283@TYPE2@		FcPattern *			@ARG2@		pat
284@TYPE3@		FcPattern *                     @ARG3@          font
285@PURPOSE@	Prepare pattern for loading font file
286@DESC@
287Creates a new pattern consisting of elements of <parameter>font</parameter> not appearing
288in <parameter>pat</parameter>, elements of <parameter>pat</parameter> not appearing in <parameter>font</parameter> and the best matching
289value from <parameter>pat</parameter> for elements appearing in both.  The result is passed to
290FcConfigSubstitute with <parameter>kind</parameter> FcMatchFont and then returned.
291@@
292
293@RET@           FcFontSet *
294@FUNC@          FcFontList
295@TYPE1@         FcConfig *			@ARG1@		config
296@TYPE2@		FcPattern *			@ARG2@		p
297@TYPE3@		FcObjectSet *                   @ARG3@          os
298@PURPOSE@	List fonts
299@DESC@
300Selects fonts matching <parameter>p</parameter>, creates patterns from those fonts containing
301only the objects in <parameter>os</parameter> and returns the set of unique such patterns.
302@@
303
304@RET@           FcChar8 *
305@FUNC@          FcConfigFilename
306@TYPE1@         const FcChar8 *			@ARG1@          name
307@PURPOSE@	Find a config file
308@DESC@
309Given the specified external entity name, return the associated filename.
310This provides applications a way to convert various configuration file
311references into filename form.
312    </para><para>
313A null or empty <parameter>name</parameter> indicates that the default configuration file should
314be used; which file this references can be overridden with the
315FC_CONFIG_FILE environment variable.  Next, if the name starts with <parameter>~</parameter>, it
316refers to a file in the current users home directory.  Otherwise if the name
317doesn't start with '/', it refers to a file in the default configuration
318directory; the built-in default directory can be overridden with the
319FC_CONFIG_DIR environment variable.
320@@
321
322@RET@		FcBool
323@FUNC@		FcConfigParseAndLoad
324@TYPE1@		FcConfig *			@ARG1@		config
325@TYPE2@		const FcChar8 *			@ARG2@		file
326@TYPE3@		FcBool%				@ARG3@		complain
327@PURPOSE@	load a configuration file
328@DESC@
329Walks the configuration in 'file' and constructs the internal representation
330in 'config'.  Any include files referenced from within 'file' will be loaded
331and parsed.  If 'complain' is FcFalse, no warning will be displayed if
332'file' does not exist. Error and warning messages will be output to stderr.
333Returns FcFalse if some error occurred while loading the file, either a
334parse error, semantic error or allocation failure. Otherwise returns FcTrue.
335@@
336