]> git.wh0rd.org - fontconfig.git/blame - fontconfig/fontconfig.h
Bump version to 2.5.91
[fontconfig.git] / fontconfig / fontconfig.h
CommitLineData
24330d27 1/*
4c2967f6 2 * $RCSId: xc/lib/fontconfig/fontconfig/fontconfig.h,v 1.30 2002/09/26 00:17:27 keithp Exp $
24330d27 3 *
46b51147 4 * Copyright © 2001 Keith Packard
24330d27
KP
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
25#ifndef _FONTCONFIG_H_
26#define _FONTCONFIG_H_
27
4984242e
KP
28#include <sys/types.h>
29#include <sys/stat.h>
30#include <unistd.h>
24330d27
KP
31#include <stdarg.h>
32
250c1cd4
PL
33#if defined(__GNUC__) && (__GNUC__ >= 4)
34#define FC_ATTRIBUTE_SENTINEL(x) __attribute__((__sentinel__(0)))
35#else
36#define FC_ATTRIBUTE_SENTINEL(x)
37#endif
38
4984242e
KP
39#ifndef FcPublic
40#define FcPublic
41#endif
42
24330d27
KP
43typedef unsigned char FcChar8;
44typedef unsigned short FcChar16;
45typedef unsigned int FcChar32;
46typedef int FcBool;
47
48/*
ff3f1f98
KP
49 * Current Fontconfig version number. This same number
50 * must appear in the fontconfig configure.in file. Yes,
51 * it'a a pain to synchronize version numbers like this.
24330d27 52 */
20fa60c9 53
ff3f1f98 54#define FC_MAJOR 2
8a0bd93e 55#define FC_MINOR 5
0dffe625 56#define FC_REVISION 91
24330d27
KP
57
58#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))
59
f21f40f3
KP
60/*
61 * Current font cache file format version
62 * This is appended to the cache files so that multiple
63 * versions of the library will peacefully coexist
64 *
65 * Change this value whenever the disk format for the cache file
66 * changes in any non-compatible way. Try to avoid such changes as
67 * it means multiple copies of the font information.
68 */
69
4262e0b3 70#define FC_CACHE_VERSION "2"
f21f40f3 71
24330d27
KP
72#define FcTrue 1
73#define FcFalse 0
74
75#define FC_FAMILY "family" /* String */
76#define FC_STYLE "style" /* String */
77#define FC_SLANT "slant" /* Int */
78#define FC_WEIGHT "weight" /* Int */
79#define FC_SIZE "size" /* Double */
2a41214a 80#define FC_ASPECT "aspect" /* Double */
24330d27
KP
81#define FC_PIXEL_SIZE "pixelsize" /* Double */
82#define FC_SPACING "spacing" /* Int */
83#define FC_FOUNDRY "foundry" /* String */
84#define FC_ANTIALIAS "antialias" /* Bool (depends) */
85#define FC_HINTING "hinting" /* Bool (true) */
f077d662 86#define FC_HINT_STYLE "hintstyle" /* Int */
24330d27
KP
87#define FC_VERTICAL_LAYOUT "verticallayout" /* Bool (false) */
88#define FC_AUTOHINT "autohint" /* Bool (false) */
89#define FC_GLOBAL_ADVANCE "globaladvance" /* Bool (true) */
81fa16c3 90#define FC_WIDTH "width" /* Int */
24330d27
KP
91#define FC_FILE "file" /* String */
92#define FC_INDEX "index" /* Int */
be094850 93#define FC_FT_FACE "ftface" /* FT_Face */
24330d27
KP
94#define FC_RASTERIZER "rasterizer" /* String */
95#define FC_OUTLINE "outline" /* Bool */
96#define FC_SCALABLE "scalable" /* Bool */
97#define FC_SCALE "scale" /* double */
98#define FC_DPI "dpi" /* double */
99#define FC_RGBA "rgba" /* Int */
100#define FC_MINSPACE "minspace" /* Bool use minimum line spacing */
0c009d2b 101#define FC_SOURCE "source" /* String (deprecated) */
24330d27 102#define FC_CHARSET "charset" /* CharSet */
a342e87d
KP
103#define FC_LANG "lang" /* String RFC 3066 langs */
104#define FC_FONTVERSION "fontversion" /* Int from 'head' table */
4f27c1c0
KP
105#define FC_FULLNAME "fullname" /* String */
106#define FC_FAMILYLANG "familylang" /* String RFC 3066 langs */
107#define FC_STYLELANG "stylelang" /* String RFC 3066 langs */
108#define FC_FULLNAMELANG "fullnamelang" /* String RFC 3066 langs */
dbf68dd5 109#define FC_CAPABILITY "capability" /* String */
537e3d23 110#define FC_FONTFORMAT "fontformat" /* String */
46a10637 111#define FC_EMBOLDEN "embolden" /* Bool - true if emboldening needed*/
720298e7 112#define FC_EMBEDDED_BITMAP "embeddedbitmap" /* Bool - true to enable embedded bitmaps */
c2c6976d 113#define FC_DECORATIVE "decorative" /* Bool - true if style is a decorative variant */
24330d27 114
ea44e218 115#define FC_CACHE_SUFFIX ".cache-"FC_CACHE_VERSION
f21f40f3
KP
116#define FC_DIR_CACHE_FILE "fonts.cache-"FC_CACHE_VERSION
117#define FC_USER_CACHE_FILE ".fonts.cache-"FC_CACHE_VERSION
24330d27
KP
118
119/* Adjust outline rasterizer */
120#define FC_CHAR_WIDTH "charwidth" /* Int */
121#define FC_CHAR_HEIGHT "charheight"/* Int */
122#define FC_MATRIX "matrix" /* FcMatrix */
123
81fa16c3
KP
124#define FC_WEIGHT_THIN 0
125#define FC_WEIGHT_EXTRALIGHT 40
126#define FC_WEIGHT_ULTRALIGHT FC_WEIGHT_EXTRALIGHT
127#define FC_WEIGHT_LIGHT 50
ad293de0 128#define FC_WEIGHT_BOOK 75
81fa16c3
KP
129#define FC_WEIGHT_REGULAR 80
130#define FC_WEIGHT_NORMAL FC_WEIGHT_REGULAR
131#define FC_WEIGHT_MEDIUM 100
132#define FC_WEIGHT_DEMIBOLD 180
133#define FC_WEIGHT_SEMIBOLD FC_WEIGHT_DEMIBOLD
134#define FC_WEIGHT_BOLD 200
135#define FC_WEIGHT_EXTRABOLD 205
3f7653c2 136#define FC_WEIGHT_ULTRABOLD FC_WEIGHT_EXTRABOLD
81fa16c3 137#define FC_WEIGHT_BLACK 210
3f7653c2 138#define FC_WEIGHT_HEAVY FC_WEIGHT_BLACK
79641a3b
KP
139#define FC_WEIGHT_EXTRABLACK 215
140#define FC_WEIGHT_ULTRABLACK FC_WEIGHT_EXTRABLACK
81fa16c3
KP
141
142#define FC_SLANT_ROMAN 0
143#define FC_SLANT_ITALIC 100
144#define FC_SLANT_OBLIQUE 110
145
146#define FC_WIDTH_ULTRACONDENSED 50
147#define FC_WIDTH_EXTRACONDENSED 63
148#define FC_WIDTH_CONDENSED 75
149#define FC_WIDTH_SEMICONDENSED 87
150#define FC_WIDTH_NORMAL 100
151#define FC_WIDTH_SEMIEXPANDED 113
152#define FC_WIDTH_EXPANDED 125
153#define FC_WIDTH_EXTRAEXPANDED 150
154#define FC_WIDTH_ULTRAEXPANDED 200
155
156#define FC_PROPORTIONAL 0
a05d257f 157#define FC_DUAL 90
81fa16c3
KP
158#define FC_MONO 100
159#define FC_CHARCELL 110
24330d27
KP
160
161/* sub-pixel order */
1852d490 162#define FC_RGBA_UNKNOWN 0
24330d27
KP
163#define FC_RGBA_RGB 1
164#define FC_RGBA_BGR 2
165#define FC_RGBA_VRGB 3
166#define FC_RGBA_VBGR 4
1852d490 167#define FC_RGBA_NONE 5
24330d27 168
f077d662
OT
169/* hinting style */
170#define FC_HINT_NONE 0
171#define FC_HINT_SLIGHT 1
172#define FC_HINT_MEDIUM 2
173#define FC_HINT_FULL 3
174
24330d27
KP
175typedef enum _FcType {
176 FcTypeVoid,
177 FcTypeInteger,
178 FcTypeDouble,
179 FcTypeString,
180 FcTypeBool,
181 FcTypeMatrix,
be094850 182 FcTypeCharSet,
d8d73958
KP
183 FcTypeFTFace,
184 FcTypeLangSet
24330d27
KP
185} FcType;
186
187typedef struct _FcMatrix {
188 double xx, xy, yx, yy;
189} FcMatrix;
190
191#define FcMatrixInit(m) ((m)->xx = (m)->yy = 1, \
192 (m)->xy = (m)->yx = 0)
193
194/*
195 * A data structure to represent the available glyphs in a font.
196 * This is represented as a sparse boolean btree.
197 */
198
199typedef struct _FcCharSet FcCharSet;
200
201typedef struct _FcObjectType {
202 const char *object;
203 FcType type;
204} FcObjectType;
205
206typedef struct _FcConstant {
ccb3e93b 207 const FcChar8 *name;
24330d27
KP
208 const char *object;
209 int value;
210} FcConstant;
211
212typedef enum _FcResult {
ec0c740e 213 FcResultMatch, FcResultNoMatch, FcResultTypeMismatch, FcResultNoId,
3d1ea0e5 214 FcResultOutOfMemory
24330d27
KP
215} FcResult;
216
938bc633
KP
217typedef struct _FcPattern FcPattern;
218
d8d73958
KP
219typedef struct _FcLangSet FcLangSet;
220
24330d27
KP
221typedef struct _FcValue {
222 FcType type;
223 union {
f57783d2 224 const FcChar8 *s;
24330d27
KP
225 int i;
226 FcBool b;
227 double d;
f57783d2
KP
228 const FcMatrix *m;
229 const FcCharSet *c;
be094850 230 void *f;
f57783d2 231 const FcLangSet *l;
24330d27
KP
232 } u;
233} FcValue;
234
24330d27
KP
235typedef struct _FcFontSet {
236 int nfont;
237 int sfont;
238 FcPattern **fonts;
239} FcFontSet;
240
241typedef struct _FcObjectSet {
242 int nobject;
243 int sobject;
4262e0b3 244 const char **objects;
24330d27
KP
245} FcObjectSet;
246
247typedef enum _FcMatchKind {
c2c6976d 248 FcMatchPattern, FcMatchFont, FcMatchScan
24330d27
KP
249} FcMatchKind;
250
d8d73958 251typedef enum _FcLangResult {
088b582a
KP
252 FcLangEqual = 0,
253 FcLangDifferentCountry = 1,
254 FcLangDifferentTerritory = 1,
255 FcLangDifferentLang = 2
d8d73958
KP
256} FcLangResult;
257
24330d27
KP
258typedef enum _FcSetName {
259 FcSetSystem = 0,
260 FcSetApplication = 1
261} FcSetName;
262
134f6011
KP
263typedef struct _FcAtomic FcAtomic;
264
24330d27
KP
265#if defined(__cplusplus) || defined(c_plusplus) /* for C++ V2.0 */
266#define _FCFUNCPROTOBEGIN extern "C" { /* do not leave open across includes */
267#define _FCFUNCPROTOEND }
268#else
269#define _FCFUNCPROTOBEGIN
270#define _FCFUNCPROTOEND
271#endif
272
69937bd9
KP
273typedef enum { FcEndianBig, FcEndianLittle } FcEndian;
274
24330d27
KP
275typedef struct _FcConfig FcConfig;
276
327a7fd4 277typedef struct _FcGlobalCache FcFileCache;
24330d27
KP
278
279typedef struct _FcBlanks FcBlanks;
280
179c3995
KP
281typedef struct _FcStrList FcStrList;
282
283typedef struct _FcStrSet FcStrSet;
284
4984242e 285typedef struct _FcCache FcCache;
24330d27 286
4984242e 287_FCFUNCPROTOBEGIN
55c8fa4f 288
24330d27 289/* fcblanks.c */
4984242e 290FcPublic FcBlanks *
24330d27
KP
291FcBlanksCreate (void);
292
4984242e 293FcPublic void
24330d27
KP
294FcBlanksDestroy (FcBlanks *b);
295
4984242e 296FcPublic FcBool
24330d27
KP
297FcBlanksAdd (FcBlanks *b, FcChar32 ucs4);
298
4984242e 299FcPublic FcBool
24330d27
KP
300FcBlanksIsMember (FcBlanks *b, FcChar32 ucs4);
301
4984242e
KP
302/* fccache.c */
303
304FcPublic const FcChar8 *
305FcCacheDir(const FcCache *c);
306
307FcPublic FcFontSet *
308FcCacheCopySet(const FcCache *c);
309
310FcPublic const FcChar8 *
311FcCacheSubdir (const FcCache *c, int i);
312
313FcPublic int
314FcCacheNumSubdir (const FcCache *c);
315
316FcPublic int
317FcCacheNumFont (const FcCache *c);
318
6cff1dca 319FcPublic FcBool
4984242e
KP
320FcDirCacheUnlink (const FcChar8 *dir, FcConfig *config);
321
322FcPublic FcBool
323FcDirCacheValid (const FcChar8 *cache_file);
324
24330d27 325/* fccfg.c */
4984242e 326FcPublic FcChar8 *
ff3f1f98
KP
327FcConfigHome (void);
328
4984242e 329FcPublic FcBool
ff3f1f98
KP
330FcConfigEnableHome (FcBool enable);
331
4984242e 332FcPublic FcChar8 *
ccb3e93b 333FcConfigFilename (const FcChar8 *url);
24330d27 334
4984242e 335FcPublic FcConfig *
24330d27
KP
336FcConfigCreate (void);
337
4984242e 338FcPublic void
24330d27
KP
339FcConfigDestroy (FcConfig *config);
340
4984242e 341FcPublic FcBool
24330d27
KP
342FcConfigSetCurrent (FcConfig *config);
343
4984242e 344FcPublic FcConfig *
24330d27
KP
345FcConfigGetCurrent (void);
346
4984242e 347FcPublic FcBool
179c3995
KP
348FcConfigUptoDate (FcConfig *config);
349
4984242e 350FcPublic FcBool
24330d27
KP
351FcConfigBuildFonts (FcConfig *config);
352
4984242e 353FcPublic FcStrList *
179c3995
KP
354FcConfigGetFontDirs (FcConfig *config);
355
4984242e 356FcPublic FcStrList *
179c3995 357FcConfigGetConfigDirs (FcConfig *config);
24330d27 358
4984242e 359FcPublic FcStrList *
24330d27
KP
360FcConfigGetConfigFiles (FcConfig *config);
361
23816bf9 362FcPublic FcChar8 *
24330d27
KP
363FcConfigGetCache (FcConfig *config);
364
23816bf9 365FcPublic FcBlanks *
24330d27
KP
366FcConfigGetBlanks (FcConfig *config);
367
4984242e
KP
368FcPublic FcStrList *
369FcConfigGetCacheDirs (FcConfig *config);
370
371FcPublic int
088b582a 372FcConfigGetRescanInterval (FcConfig *config);
179c3995 373
4984242e 374FcPublic FcBool
088b582a 375FcConfigSetRescanInterval (FcConfig *config, int rescanInterval);
179c3995 376
4984242e 377FcPublic FcFontSet *
24330d27
KP
378FcConfigGetFonts (FcConfig *config,
379 FcSetName set);
380
4984242e 381FcPublic FcBool
24330d27 382FcConfigAppFontAddFile (FcConfig *config,
ccb3e93b 383 const FcChar8 *file);
24330d27 384
4984242e 385FcPublic FcBool
24330d27 386FcConfigAppFontAddDir (FcConfig *config,
ccb3e93b 387 const FcChar8 *dir);
24330d27 388
4984242e 389FcPublic void
24330d27
KP
390FcConfigAppFontClear (FcConfig *config);
391
4984242e 392FcPublic FcBool
fa244f3d
KP
393FcConfigSubstituteWithPat (FcConfig *config,
394 FcPattern *p,
395 FcPattern *p_pat,
396 FcMatchKind kind);
397
4984242e 398FcPublic FcBool
24330d27
KP
399FcConfigSubstitute (FcConfig *config,
400 FcPattern *p,
401 FcMatchKind kind);
402
403/* fccharset.c */
4984242e 404FcPublic FcCharSet*
24330d27
KP
405FcCharSetCreate (void);
406
4984242e
KP
407/* deprecated alias for FcCharSetCreate */
408FcPublic FcCharSet *
409FcCharSetNew (void);
410
411FcPublic void
24330d27
KP
412FcCharSetDestroy (FcCharSet *fcs);
413
4984242e 414FcPublic FcBool
24330d27
KP
415FcCharSetAddChar (FcCharSet *fcs, FcChar32 ucs4);
416
4984242e 417FcPublic FcCharSet*
24330d27
KP
418FcCharSetCopy (FcCharSet *src);
419
4984242e 420FcPublic FcBool
24330d27
KP
421FcCharSetEqual (const FcCharSet *a, const FcCharSet *b);
422
4984242e 423FcPublic FcCharSet*
24330d27
KP
424FcCharSetIntersect (const FcCharSet *a, const FcCharSet *b);
425
4984242e 426FcPublic FcCharSet*
24330d27
KP
427FcCharSetUnion (const FcCharSet *a, const FcCharSet *b);
428
4984242e 429FcPublic FcCharSet*
24330d27
KP
430FcCharSetSubtract (const FcCharSet *a, const FcCharSet *b);
431
4984242e 432FcPublic FcBool
24330d27
KP
433FcCharSetHasChar (const FcCharSet *fcs, FcChar32 ucs4);
434
4984242e 435FcPublic FcChar32
24330d27
KP
436FcCharSetCount (const FcCharSet *a);
437
4984242e 438FcPublic FcChar32
24330d27
KP
439FcCharSetIntersectCount (const FcCharSet *a, const FcCharSet *b);
440
4984242e 441FcPublic FcChar32
24330d27
KP
442FcCharSetSubtractCount (const FcCharSet *a, const FcCharSet *b);
443
4984242e 444FcPublic FcBool
1412a699
KP
445FcCharSetIsSubset (const FcCharSet *a, const FcCharSet *b);
446
36732012
KP
447#define FC_CHARSET_MAP_SIZE (256/32)
448#define FC_CHARSET_DONE ((FcChar32) -1)
449
4984242e 450FcPublic FcChar32
36732012
KP
451FcCharSetFirstPage (const FcCharSet *a,
452 FcChar32 map[FC_CHARSET_MAP_SIZE],
453 FcChar32 *next);
454
4984242e 455FcPublic FcChar32
36732012
KP
456FcCharSetNextPage (const FcCharSet *a,
457 FcChar32 map[FC_CHARSET_MAP_SIZE],
458 FcChar32 *next);
459
4984242e
KP
460/*
461 * old coverage API, rather hard to use correctly
462 */
463
464FcPublic FcChar32
465FcCharSetCoverage (const FcCharSet *a, FcChar32 page, FcChar32 *result);
aae6f7d4 466
24330d27 467/* fcdbg.c */
4984242e 468FcPublic void
938bc633 469FcValuePrint (const FcValue v);
9c8e07f1 470
4984242e 471FcPublic void
938bc633 472FcPatternPrint (const FcPattern *p);
24330d27 473
4984242e 474FcPublic void
938bc633 475FcFontSetPrint (const FcFontSet *s);
9c8e07f1 476
24330d27 477/* fcdefault.c */
4984242e 478FcPublic void
24330d27
KP
479FcDefaultSubstitute (FcPattern *pattern);
480
481/* fcdir.c */
4984242e
KP
482FcPublic FcBool
483FcFileIsDir (const FcChar8 *file);
484
485FcPublic FcBool
ccb3e93b 486FcFileScan (FcFontSet *set,
179c3995 487 FcStrSet *dirs,
ccb3e93b
KP
488 FcFileCache *cache,
489 FcBlanks *blanks,
490 const FcChar8 *file,
491 FcBool force);
24330d27 492
4984242e 493FcPublic FcBool
ccb3e93b 494FcDirScan (FcFontSet *set,
179c3995 495 FcStrSet *dirs,
ccb3e93b
KP
496 FcFileCache *cache,
497 FcBlanks *blanks,
498 const FcChar8 *dir,
499 FcBool force);
500
4984242e 501FcPublic FcBool
2304e38f 502FcDirSave (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir);
179c3995 503
4984242e
KP
504FcPublic FcCache *
505FcDirCacheLoad (const FcChar8 *dir, FcConfig *config, FcChar8 **cache_file);
506
507FcPublic FcCache *
508FcDirCacheRead (const FcChar8 *dir, FcBool force, FcConfig *config);
509
510FcPublic FcCache *
511FcDirCacheLoadFile (const FcChar8 *cache_file, struct stat *file_stat);
512
513FcPublic void
514FcDirCacheUnload (FcCache *cache);
515
24330d27 516/* fcfreetype.c */
4984242e 517FcPublic FcPattern *
ccb3e93b 518FcFreeTypeQuery (const FcChar8 *file, int id, FcBlanks *blanks, int *count);
24330d27
KP
519
520/* fcfs.c */
521
4984242e 522FcPublic FcFontSet *
24330d27
KP
523FcFontSetCreate (void);
524
4984242e 525FcPublic void
24330d27
KP
526FcFontSetDestroy (FcFontSet *s);
527
4984242e 528FcPublic FcBool
24330d27
KP
529FcFontSetAdd (FcFontSet *s, FcPattern *font);
530
531/* fcinit.c */
4984242e 532FcPublic FcConfig *
179c3995
KP
533FcInitLoadConfig (void);
534
4984242e 535FcPublic FcConfig *
179c3995
KP
536FcInitLoadConfigAndFonts (void);
537
4984242e 538FcPublic FcBool
179c3995 539FcInit (void);
24330d27 540
4984242e 541FcPublic void
34cd0514
CW
542FcFini (void);
543
4984242e 544FcPublic int
48db40f6
KP
545FcGetVersion (void);
546
4984242e 547FcPublic FcBool
179c3995 548FcInitReinitialize (void);
24330d27 549
4984242e 550FcPublic FcBool
179c3995 551FcInitBringUptoDate (void);
24330d27 552
d8d73958 553/* fclang.c */
1315db01 554FcPublic FcStrSet *
cf223cc7
BE
555FcGetLangs (void);
556
557FcPublic const FcCharSet *
558FcLangGetCharSet (const FcChar8 *lang);
559
4984242e 560FcPublic FcLangSet*
d8d73958
KP
561FcLangSetCreate (void);
562
4984242e 563FcPublic void
d8d73958
KP
564FcLangSetDestroy (FcLangSet *ls);
565
4984242e 566FcPublic FcLangSet*
d8d73958
KP
567FcLangSetCopy (const FcLangSet *ls);
568
4984242e 569FcPublic FcBool
d8d73958
KP
570FcLangSetAdd (FcLangSet *ls, const FcChar8 *lang);
571
4984242e 572FcPublic FcLangResult
d8d73958
KP
573FcLangSetHasLang (const FcLangSet *ls, const FcChar8 *lang);
574
4984242e 575FcPublic FcLangResult
d8d73958
KP
576FcLangSetCompare (const FcLangSet *lsa, const FcLangSet *lsb);
577
4984242e 578FcPublic FcBool
4c2967f6
KP
579FcLangSetContains (const FcLangSet *lsa, const FcLangSet *lsb);
580
4984242e 581FcPublic FcBool
d8d73958
KP
582FcLangSetEqual (const FcLangSet *lsa, const FcLangSet *lsb);
583
4984242e 584FcPublic FcChar32
d8d73958
KP
585FcLangSetHash (const FcLangSet *ls);
586
24330d27 587/* fclist.c */
4984242e 588FcPublic FcObjectSet *
24330d27
KP
589FcObjectSetCreate (void);
590
4984242e 591FcPublic FcBool
24330d27
KP
592FcObjectSetAdd (FcObjectSet *os, const char *object);
593
4984242e 594FcPublic void
24330d27
KP
595FcObjectSetDestroy (FcObjectSet *os);
596
4984242e 597FcPublic FcObjectSet *
24330d27
KP
598FcObjectSetVaBuild (const char *first, va_list va);
599
4984242e 600FcPublic FcObjectSet *
250c1cd4 601FcObjectSetBuild (const char *first, ...) FC_ATTRIBUTE_SENTINEL(0);
24330d27 602
4984242e 603FcPublic FcFontSet *
80c053b7
KP
604FcFontSetList (FcConfig *config,
605 FcFontSet **sets,
606 int nsets,
607 FcPattern *p,
608 FcObjectSet *os);
609
4984242e 610FcPublic FcFontSet *
24330d27
KP
611FcFontList (FcConfig *config,
612 FcPattern *p,
613 FcObjectSet *os);
614
134f6011
KP
615/* fcatomic.c */
616
4984242e 617FcPublic FcAtomic *
134f6011
KP
618FcAtomicCreate (const FcChar8 *file);
619
4984242e 620FcPublic FcBool
134f6011
KP
621FcAtomicLock (FcAtomic *atomic);
622
4984242e 623FcPublic FcChar8 *
134f6011
KP
624FcAtomicNewFile (FcAtomic *atomic);
625
4984242e 626FcPublic FcChar8 *
134f6011
KP
627FcAtomicOrigFile (FcAtomic *atomic);
628
4984242e 629FcPublic FcBool
134f6011
KP
630FcAtomicReplaceOrig (FcAtomic *atomic);
631
4984242e 632FcPublic void
134f6011
KP
633FcAtomicDeleteNew (FcAtomic *atomic);
634
4984242e 635FcPublic void
134f6011
KP
636FcAtomicUnlock (FcAtomic *atomic);
637
4984242e 638FcPublic void
134f6011
KP
639FcAtomicDestroy (FcAtomic *atomic);
640
24330d27 641/* fcmatch.c */
4984242e 642FcPublic FcPattern *
80c053b7
KP
643FcFontSetMatch (FcConfig *config,
644 FcFontSet **sets,
645 int nsets,
646 FcPattern *p,
647 FcResult *result);
648
4984242e 649FcPublic FcPattern *
24330d27
KP
650FcFontMatch (FcConfig *config,
651 FcPattern *p,
652 FcResult *result);
653
4984242e 654FcPublic FcPattern *
216fac98
KP
655FcFontRenderPrepare (FcConfig *config,
656 FcPattern *pat,
657 FcPattern *font);
658
4984242e 659FcPublic FcFontSet *
216fac98
KP
660FcFontSetSort (FcConfig *config,
661 FcFontSet **sets,
662 int nsets,
663 FcPattern *p,
664 FcBool trim,
665 FcCharSet **csp,
666 FcResult *result);
667
4984242e 668FcPublic FcFontSet *
20ac65ab
KP
669FcFontSort (FcConfig *config,
670 FcPattern *p,
671 FcBool trim,
672 FcCharSet **csp,
673 FcResult *result);
674
4984242e 675FcPublic void
1412a699
KP
676FcFontSetSortDestroy (FcFontSet *fs);
677
24330d27 678/* fcmatrix.c */
4984242e 679FcPublic FcMatrix *
24330d27
KP
680FcMatrixCopy (const FcMatrix *mat);
681
4984242e 682FcPublic FcBool
24330d27
KP
683FcMatrixEqual (const FcMatrix *mat1, const FcMatrix *mat2);
684
4984242e 685FcPublic void
24330d27
KP
686FcMatrixMultiply (FcMatrix *result, const FcMatrix *a, const FcMatrix *b);
687
4984242e 688FcPublic void
24330d27
KP
689FcMatrixRotate (FcMatrix *m, double c, double s);
690
4984242e 691FcPublic void
24330d27
KP
692FcMatrixScale (FcMatrix *m, double sx, double sy);
693
4984242e 694FcPublic void
24330d27
KP
695FcMatrixShear (FcMatrix *m, double sh, double sv);
696
697/* fcname.c */
698
4984242e 699FcPublic FcBool
24330d27
KP
700FcNameRegisterObjectTypes (const FcObjectType *types, int ntype);
701
4984242e 702FcPublic FcBool
24330d27
KP
703FcNameUnregisterObjectTypes (const FcObjectType *types, int ntype);
704
4984242e 705FcPublic const FcObjectType *
24330d27
KP
706FcNameGetObjectType (const char *object);
707
4984242e 708FcPublic FcBool
24330d27
KP
709FcNameRegisterConstants (const FcConstant *consts, int nconsts);
710
4984242e 711FcPublic FcBool
24330d27
KP
712FcNameUnregisterConstants (const FcConstant *consts, int nconsts);
713
4984242e 714FcPublic const FcConstant *
ccb3e93b 715FcNameGetConstant (FcChar8 *string);
24330d27 716
4984242e 717FcPublic FcBool
ccb3e93b 718FcNameConstant (FcChar8 *string, int *result);
24330d27 719
4984242e 720FcPublic FcPattern *
ccb3e93b 721FcNameParse (const FcChar8 *name);
24330d27 722
4984242e 723FcPublic FcChar8 *
24330d27
KP
724FcNameUnparse (FcPattern *pat);
725
726/* fcpat.c */
4984242e 727FcPublic FcPattern *
24330d27
KP
728FcPatternCreate (void);
729
4984242e 730FcPublic FcPattern *
bff80114 731FcPatternDuplicate (const FcPattern *p);
24330d27 732
4984242e 733FcPublic void
6f6563ed
KP
734FcPatternReference (FcPattern *p);
735
4984242e 736FcPublic void
24330d27
KP
737FcValueDestroy (FcValue v);
738
4984242e 739FcPublic FcBool
0ab36ca8
KP
740FcValueEqual (FcValue va, FcValue vb);
741
4984242e 742FcPublic FcValue
24330d27
KP
743FcValueSave (FcValue v);
744
4984242e 745FcPublic void
24330d27
KP
746FcPatternDestroy (FcPattern *p);
747
4984242e 748FcPublic FcBool
e9be9cd1
KP
749FcPatternEqual (const FcPattern *pa, const FcPattern *pb);
750
4984242e 751FcPublic FcBool
e9be9cd1 752FcPatternEqualSubset (const FcPattern *pa, const FcPattern *pb, const FcObjectSet *os);
0ab36ca8 753
4984242e 754FcPublic FcChar32
d0f07b8d
KP
755FcPatternHash (const FcPattern *p);
756
4984242e 757FcPublic FcBool
24330d27
KP
758FcPatternAdd (FcPattern *p, const char *object, FcValue value, FcBool append);
759
4984242e 760FcPublic FcBool
82f4243f
KP
761FcPatternAddWeak (FcPattern *p, const char *object, FcValue value, FcBool append);
762
4984242e 763FcPublic FcResult
bff80114 764FcPatternGet (const FcPattern *p, const char *object, int id, FcValue *v);
24330d27 765
4984242e 766FcPublic FcBool
24330d27
KP
767FcPatternDel (FcPattern *p, const char *object);
768
4984242e 769FcPublic FcBool
4f27c1c0
KP
770FcPatternRemove (FcPattern *p, const char *object, int id);
771
4984242e 772FcPublic FcBool
24330d27
KP
773FcPatternAddInteger (FcPattern *p, const char *object, int i);
774
4984242e 775FcPublic FcBool
24330d27
KP
776FcPatternAddDouble (FcPattern *p, const char *object, double d);
777
4984242e 778FcPublic FcBool
ccb3e93b 779FcPatternAddString (FcPattern *p, const char *object, const FcChar8 *s);
24330d27 780
4984242e 781FcPublic FcBool
24330d27
KP
782FcPatternAddMatrix (FcPattern *p, const char *object, const FcMatrix *s);
783
4984242e 784FcPublic FcBool
24330d27
KP
785FcPatternAddCharSet (FcPattern *p, const char *object, const FcCharSet *c);
786
4984242e 787FcPublic FcBool
24330d27
KP
788FcPatternAddBool (FcPattern *p, const char *object, FcBool b);
789
4984242e 790FcPublic FcBool
d8d73958
KP
791FcPatternAddLangSet (FcPattern *p, const char *object, const FcLangSet *ls);
792
4984242e 793FcPublic FcResult
bff80114 794FcPatternGetInteger (const FcPattern *p, const char *object, int n, int *i);
24330d27 795
4984242e 796FcPublic FcResult
bff80114 797FcPatternGetDouble (const FcPattern *p, const char *object, int n, double *d);
24330d27 798
4984242e 799FcPublic FcResult
bff80114 800FcPatternGetString (const FcPattern *p, const char *object, int n, FcChar8 ** s);
24330d27 801
4984242e 802FcPublic FcResult
bff80114 803FcPatternGetMatrix (const FcPattern *p, const char *object, int n, FcMatrix **s);
24330d27 804
4984242e 805FcPublic FcResult
bff80114 806FcPatternGetCharSet (const FcPattern *p, const char *object, int n, FcCharSet **c);
24330d27 807
4984242e 808FcPublic FcResult
bff80114 809FcPatternGetBool (const FcPattern *p, const char *object, int n, FcBool *b);
24330d27 810
4984242e 811FcPublic FcResult
bff80114 812FcPatternGetLangSet (const FcPattern *p, const char *object, int n, FcLangSet **ls);
d8d73958 813
4984242e 814FcPublic FcPattern *
24330d27
KP
815FcPatternVaBuild (FcPattern *orig, va_list va);
816
4984242e 817FcPublic FcPattern *
250c1cd4 818FcPatternBuild (FcPattern *orig, ...) FC_ATTRIBUTE_SENTINEL(0);
24330d27
KP
819
820/* fcstr.c */
821
4984242e 822FcPublic FcChar8 *
ccb3e93b 823FcStrCopy (const FcChar8 *s);
24330d27 824
4984242e 825FcPublic FcChar8 *
179c3995
KP
826FcStrCopyFilename (const FcChar8 *s);
827
4984242e
KP
828FcPublic FcChar8 *
829FcStrPlus (const FcChar8 *s1, const FcChar8 *s2);
830
831FcPublic void
832FcStrFree (FcChar8 *s);
833
479f551f
KP
834/* These are ASCII only, suitable only for pattern element names */
835#define FcIsUpper(c) ((0101 <= (c) && (c) <= 0132))
836#define FcIsLower(c) ((0141 <= (c) && (c) <= 0172))
837#define FcToLower(c) (FcIsUpper(c) ? (c) - 0101 + 0141 : (c))
838
4984242e 839FcPublic FcChar8 *
479f551f 840FcStrDowncase (const FcChar8 *s);
24330d27 841
4984242e 842FcPublic int
ccb3e93b 843FcStrCmpIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
24330d27 844
4984242e 845FcPublic int
179c3995
KP
846FcStrCmp (const FcChar8 *s1, const FcChar8 *s2);
847
4984242e 848FcPublic const FcChar8 *
d4d1e8bc
JS
849FcStrStrIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
850
4984242e 851FcPublic const FcChar8 *
d4d1e8bc
JS
852FcStrStr (const FcChar8 *s1, const FcChar8 *s2);
853
4984242e 854FcPublic int
0f9a306e
KP
855FcUtf8ToUcs4 (const FcChar8 *src_orig,
856 FcChar32 *dst,
857 int len);
24330d27 858
4984242e 859FcPublic FcBool
0f9a306e
KP
860FcUtf8Len (const FcChar8 *string,
861 int len,
862 int *nchar,
863 int *wchar);
24330d27 864
69937bd9
KP
865#define FC_UTF8_MAX_LEN 6
866
4984242e 867FcPublic int
69937bd9
KP
868FcUcs4ToUtf8 (FcChar32 ucs4,
869 FcChar8 dest[FC_UTF8_MAX_LEN]);
870
4984242e 871FcPublic int
0f9a306e
KP
872FcUtf16ToUcs4 (const FcChar8 *src_orig,
873 FcEndian endian,
874 FcChar32 *dst,
875 int len); /* in bytes */
69937bd9 876
4984242e 877FcPublic FcBool
0f9a306e
KP
878FcUtf16Len (const FcChar8 *string,
879 FcEndian endian,
880 int len, /* in bytes */
881 int *nchar,
882 int *wchar);
69937bd9 883
4984242e 884FcPublic FcChar8 *
179c3995
KP
885FcStrDirname (const FcChar8 *file);
886
4984242e 887FcPublic FcChar8 *
179c3995
KP
888FcStrBasename (const FcChar8 *file);
889
4984242e 890FcPublic FcStrSet *
179c3995
KP
891FcStrSetCreate (void);
892
4984242e 893FcPublic FcBool
088b582a 894FcStrSetMember (FcStrSet *set, const FcChar8 *s);
179c3995 895
4984242e 896FcPublic FcBool
088b582a 897FcStrSetEqual (FcStrSet *sa, FcStrSet *sb);
d8d73958 898
4984242e 899FcPublic FcBool
088b582a 900FcStrSetAdd (FcStrSet *set, const FcChar8 *s);
179c3995 901
4984242e 902FcPublic FcBool
088b582a 903FcStrSetAddFilename (FcStrSet *set, const FcChar8 *s);
179c3995 904
4984242e 905FcPublic FcBool
088b582a 906FcStrSetDel (FcStrSet *set, const FcChar8 *s);
179c3995 907
4984242e 908FcPublic void
088b582a 909FcStrSetDestroy (FcStrSet *set);
179c3995 910
4984242e 911FcPublic FcStrList *
088b582a 912FcStrListCreate (FcStrSet *set);
179c3995 913
4984242e 914FcPublic FcChar8 *
23816bf9 915FcStrListNext (FcStrList *list);
179c3995 916
4984242e 917FcPublic void
23816bf9 918FcStrListDone (FcStrList *list);
179c3995 919
24330d27 920/* fcxml.c */
4984242e 921FcPublic FcBool
ccb3e93b 922FcConfigParseAndLoad (FcConfig *config, const FcChar8 *file, FcBool complain);
24330d27
KP
923
924_FCFUNCPROTOEND
925
250c1cd4
PL
926#undef FC_ATTRIBUTE_SENTINEL
927
de1faa42
KP
928
929#ifndef _FCINT_H_
930
931/*
932 * Deprecated functions are placed here to help users fix their code without
933 * digging through documentation
934 */
935
936#define FcConfigGetRescanInverval FcConfigGetRescanInverval_REPLACE_BY_FcConfigGetRescanInterval
937#define FcConfigSetRescanInverval FcConfigSetRescanInverval_REPLACE_BY_FcConfigSetRescanInterval
938
939#endif
940
24330d27 941#endif /* _FONTCONFIG_H_ */