]> git.wh0rd.org - fontconfig.git/blame - fontconfig/fontconfig.h
Update for version 2.4.1
[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
76c44322 55#define FC_MINOR 4
b9cc1c4e 56#define FC_REVISION 1
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
81fa16c3
KP
139
140#define FC_SLANT_ROMAN 0
141#define FC_SLANT_ITALIC 100
142#define FC_SLANT_OBLIQUE 110
143
144#define FC_WIDTH_ULTRACONDENSED 50
145#define FC_WIDTH_EXTRACONDENSED 63
146#define FC_WIDTH_CONDENSED 75
147#define FC_WIDTH_SEMICONDENSED 87
148#define FC_WIDTH_NORMAL 100
149#define FC_WIDTH_SEMIEXPANDED 113
150#define FC_WIDTH_EXPANDED 125
151#define FC_WIDTH_EXTRAEXPANDED 150
152#define FC_WIDTH_ULTRAEXPANDED 200
153
154#define FC_PROPORTIONAL 0
a05d257f 155#define FC_DUAL 90
81fa16c3
KP
156#define FC_MONO 100
157#define FC_CHARCELL 110
24330d27
KP
158
159/* sub-pixel order */
1852d490 160#define FC_RGBA_UNKNOWN 0
24330d27
KP
161#define FC_RGBA_RGB 1
162#define FC_RGBA_BGR 2
163#define FC_RGBA_VRGB 3
164#define FC_RGBA_VBGR 4
1852d490 165#define FC_RGBA_NONE 5
24330d27 166
f077d662
OT
167/* hinting style */
168#define FC_HINT_NONE 0
169#define FC_HINT_SLIGHT 1
170#define FC_HINT_MEDIUM 2
171#define FC_HINT_FULL 3
172
24330d27
KP
173typedef enum _FcType {
174 FcTypeVoid,
175 FcTypeInteger,
176 FcTypeDouble,
177 FcTypeString,
178 FcTypeBool,
179 FcTypeMatrix,
be094850 180 FcTypeCharSet,
d8d73958
KP
181 FcTypeFTFace,
182 FcTypeLangSet
24330d27
KP
183} FcType;
184
185typedef struct _FcMatrix {
186 double xx, xy, yx, yy;
187} FcMatrix;
188
189#define FcMatrixInit(m) ((m)->xx = (m)->yy = 1, \
190 (m)->xy = (m)->yx = 0)
191
192/*
193 * A data structure to represent the available glyphs in a font.
194 * This is represented as a sparse boolean btree.
195 */
196
197typedef struct _FcCharSet FcCharSet;
198
199typedef struct _FcObjectType {
200 const char *object;
201 FcType type;
202} FcObjectType;
203
204typedef struct _FcConstant {
ccb3e93b 205 const FcChar8 *name;
24330d27
KP
206 const char *object;
207 int value;
208} FcConstant;
209
210typedef enum _FcResult {
ec0c740e 211 FcResultMatch, FcResultNoMatch, FcResultTypeMismatch, FcResultNoId,
3d1ea0e5 212 FcResultOutOfMemory
24330d27
KP
213} FcResult;
214
938bc633
KP
215typedef struct _FcPattern FcPattern;
216
d8d73958
KP
217typedef struct _FcLangSet FcLangSet;
218
24330d27
KP
219typedef struct _FcValue {
220 FcType type;
221 union {
f57783d2 222 const FcChar8 *s;
24330d27
KP
223 int i;
224 FcBool b;
225 double d;
f57783d2
KP
226 const FcMatrix *m;
227 const FcCharSet *c;
be094850 228 void *f;
938bc633 229 const FcPattern *p;
f57783d2 230 const FcLangSet *l;
24330d27
KP
231 } u;
232} FcValue;
233
24330d27
KP
234typedef struct _FcFontSet {
235 int nfont;
236 int sfont;
237 FcPattern **fonts;
238} FcFontSet;
239
240typedef struct _FcObjectSet {
241 int nobject;
242 int sobject;
4262e0b3 243 const char **objects;
24330d27
KP
244} FcObjectSet;
245
246typedef enum _FcMatchKind {
c2c6976d 247 FcMatchPattern, FcMatchFont, FcMatchScan
24330d27
KP
248} FcMatchKind;
249
d8d73958
KP
250typedef enum _FcLangResult {
251 FcLangEqual, FcLangDifferentCountry, FcLangDifferentLang
252} FcLangResult;
253
24330d27
KP
254typedef enum _FcSetName {
255 FcSetSystem = 0,
256 FcSetApplication = 1
257} FcSetName;
258
134f6011
KP
259typedef struct _FcAtomic FcAtomic;
260
24330d27
KP
261#if defined(__cplusplus) || defined(c_plusplus) /* for C++ V2.0 */
262#define _FCFUNCPROTOBEGIN extern "C" { /* do not leave open across includes */
263#define _FCFUNCPROTOEND }
264#else
265#define _FCFUNCPROTOBEGIN
266#define _FCFUNCPROTOEND
267#endif
268
69937bd9
KP
269typedef enum { FcEndianBig, FcEndianLittle } FcEndian;
270
24330d27
KP
271typedef struct _FcConfig FcConfig;
272
327a7fd4 273typedef struct _FcGlobalCache FcFileCache;
24330d27
KP
274
275typedef struct _FcBlanks FcBlanks;
276
179c3995
KP
277typedef struct _FcStrList FcStrList;
278
279typedef struct _FcStrSet FcStrSet;
280
4984242e 281typedef struct _FcCache FcCache;
24330d27 282
4984242e 283_FCFUNCPROTOBEGIN
55c8fa4f 284
24330d27 285/* fcblanks.c */
4984242e 286FcPublic FcBlanks *
24330d27
KP
287FcBlanksCreate (void);
288
4984242e 289FcPublic void
24330d27
KP
290FcBlanksDestroy (FcBlanks *b);
291
4984242e 292FcPublic FcBool
24330d27
KP
293FcBlanksAdd (FcBlanks *b, FcChar32 ucs4);
294
4984242e 295FcPublic FcBool
24330d27
KP
296FcBlanksIsMember (FcBlanks *b, FcChar32 ucs4);
297
4984242e
KP
298/* fccache.c */
299
300FcPublic const FcChar8 *
301FcCacheDir(const FcCache *c);
302
303FcPublic FcFontSet *
304FcCacheCopySet(const FcCache *c);
305
306FcPublic const FcChar8 *
307FcCacheSubdir (const FcCache *c, int i);
308
309FcPublic int
310FcCacheNumSubdir (const FcCache *c);
311
312FcPublic int
313FcCacheNumFont (const FcCache *c);
314
6cff1dca 315FcPublic FcBool
4984242e
KP
316FcDirCacheUnlink (const FcChar8 *dir, FcConfig *config);
317
318FcPublic FcBool
319FcDirCacheValid (const FcChar8 *cache_file);
320
24330d27 321/* fccfg.c */
4984242e 322FcPublic FcChar8 *
ff3f1f98
KP
323FcConfigHome (void);
324
4984242e 325FcPublic FcBool
ff3f1f98
KP
326FcConfigEnableHome (FcBool enable);
327
4984242e 328FcPublic FcChar8 *
ccb3e93b 329FcConfigFilename (const FcChar8 *url);
24330d27 330
4984242e 331FcPublic FcConfig *
24330d27
KP
332FcConfigCreate (void);
333
4984242e 334FcPublic void
24330d27
KP
335FcConfigDestroy (FcConfig *config);
336
4984242e 337FcPublic FcBool
24330d27
KP
338FcConfigSetCurrent (FcConfig *config);
339
4984242e 340FcPublic FcConfig *
24330d27
KP
341FcConfigGetCurrent (void);
342
4984242e 343FcPublic FcBool
179c3995
KP
344FcConfigUptoDate (FcConfig *config);
345
4984242e 346FcPublic FcBool
24330d27
KP
347FcConfigBuildFonts (FcConfig *config);
348
4984242e 349FcPublic FcStrList *
179c3995
KP
350FcConfigGetFontDirs (FcConfig *config);
351
4984242e 352FcPublic FcStrList *
179c3995 353FcConfigGetConfigDirs (FcConfig *config);
24330d27 354
4984242e 355FcPublic FcStrList *
24330d27
KP
356FcConfigGetConfigFiles (FcConfig *config);
357
23816bf9 358FcPublic FcChar8 *
24330d27
KP
359FcConfigGetCache (FcConfig *config);
360
23816bf9 361FcPublic FcBlanks *
24330d27
KP
362FcConfigGetBlanks (FcConfig *config);
363
4984242e
KP
364FcPublic FcStrList *
365FcConfigGetCacheDirs (FcConfig *config);
366
367FcPublic int
179c3995
KP
368FcConfigGetRescanInverval (FcConfig *config);
369
4984242e 370FcPublic FcBool
179c3995
KP
371FcConfigSetRescanInverval (FcConfig *config, int rescanInterval);
372
4984242e 373FcPublic FcFontSet *
24330d27
KP
374FcConfigGetFonts (FcConfig *config,
375 FcSetName set);
376
4984242e 377FcPublic FcBool
24330d27 378FcConfigAppFontAddFile (FcConfig *config,
ccb3e93b 379 const FcChar8 *file);
24330d27 380
4984242e 381FcPublic FcBool
24330d27 382FcConfigAppFontAddDir (FcConfig *config,
ccb3e93b 383 const FcChar8 *dir);
24330d27 384
4984242e 385FcPublic void
24330d27
KP
386FcConfigAppFontClear (FcConfig *config);
387
4984242e 388FcPublic FcBool
fa244f3d
KP
389FcConfigSubstituteWithPat (FcConfig *config,
390 FcPattern *p,
391 FcPattern *p_pat,
392 FcMatchKind kind);
393
4984242e 394FcPublic FcBool
24330d27
KP
395FcConfigSubstitute (FcConfig *config,
396 FcPattern *p,
397 FcMatchKind kind);
398
399/* fccharset.c */
4984242e 400FcPublic FcCharSet*
24330d27
KP
401FcCharSetCreate (void);
402
4984242e
KP
403/* deprecated alias for FcCharSetCreate */
404FcPublic FcCharSet *
405FcCharSetNew (void);
406
407FcPublic void
24330d27
KP
408FcCharSetDestroy (FcCharSet *fcs);
409
4984242e 410FcPublic FcBool
24330d27
KP
411FcCharSetAddChar (FcCharSet *fcs, FcChar32 ucs4);
412
4984242e 413FcPublic FcCharSet*
24330d27
KP
414FcCharSetCopy (FcCharSet *src);
415
4984242e 416FcPublic FcBool
24330d27
KP
417FcCharSetEqual (const FcCharSet *a, const FcCharSet *b);
418
4984242e 419FcPublic FcCharSet*
24330d27
KP
420FcCharSetIntersect (const FcCharSet *a, const FcCharSet *b);
421
4984242e 422FcPublic FcCharSet*
24330d27
KP
423FcCharSetUnion (const FcCharSet *a, const FcCharSet *b);
424
4984242e 425FcPublic FcCharSet*
24330d27
KP
426FcCharSetSubtract (const FcCharSet *a, const FcCharSet *b);
427
4984242e 428FcPublic FcBool
24330d27
KP
429FcCharSetHasChar (const FcCharSet *fcs, FcChar32 ucs4);
430
4984242e 431FcPublic FcChar32
24330d27
KP
432FcCharSetCount (const FcCharSet *a);
433
4984242e 434FcPublic FcChar32
24330d27
KP
435FcCharSetIntersectCount (const FcCharSet *a, const FcCharSet *b);
436
4984242e 437FcPublic FcChar32
24330d27
KP
438FcCharSetSubtractCount (const FcCharSet *a, const FcCharSet *b);
439
4984242e 440FcPublic FcBool
1412a699
KP
441FcCharSetIsSubset (const FcCharSet *a, const FcCharSet *b);
442
36732012
KP
443#define FC_CHARSET_MAP_SIZE (256/32)
444#define FC_CHARSET_DONE ((FcChar32) -1)
445
4984242e 446FcPublic FcChar32
36732012
KP
447FcCharSetFirstPage (const FcCharSet *a,
448 FcChar32 map[FC_CHARSET_MAP_SIZE],
449 FcChar32 *next);
450
4984242e 451FcPublic FcChar32
36732012
KP
452FcCharSetNextPage (const FcCharSet *a,
453 FcChar32 map[FC_CHARSET_MAP_SIZE],
454 FcChar32 *next);
455
4984242e
KP
456/*
457 * old coverage API, rather hard to use correctly
458 */
459
460FcPublic FcChar32
461FcCharSetCoverage (const FcCharSet *a, FcChar32 page, FcChar32 *result);
aae6f7d4 462
24330d27 463/* fcdbg.c */
4984242e 464FcPublic void
938bc633 465FcValuePrint (const FcValue v);
9c8e07f1 466
4984242e 467FcPublic void
938bc633 468FcPatternPrint (const FcPattern *p);
24330d27 469
4984242e 470FcPublic void
938bc633 471FcFontSetPrint (const FcFontSet *s);
9c8e07f1 472
24330d27 473/* fcdefault.c */
4984242e 474FcPublic void
24330d27
KP
475FcDefaultSubstitute (FcPattern *pattern);
476
477/* fcdir.c */
4984242e
KP
478FcPublic FcBool
479FcFileIsDir (const FcChar8 *file);
480
481FcPublic FcBool
ccb3e93b 482FcFileScan (FcFontSet *set,
179c3995 483 FcStrSet *dirs,
ccb3e93b
KP
484 FcFileCache *cache,
485 FcBlanks *blanks,
486 const FcChar8 *file,
487 FcBool force);
24330d27 488
4984242e 489FcPublic FcBool
ccb3e93b 490FcDirScan (FcFontSet *set,
179c3995 491 FcStrSet *dirs,
ccb3e93b
KP
492 FcFileCache *cache,
493 FcBlanks *blanks,
494 const FcChar8 *dir,
495 FcBool force);
496
4984242e 497FcPublic FcBool
2304e38f 498FcDirSave (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir);
179c3995 499
4984242e
KP
500FcPublic FcCache *
501FcDirCacheLoad (const FcChar8 *dir, FcConfig *config, FcChar8 **cache_file);
502
503FcPublic FcCache *
504FcDirCacheRead (const FcChar8 *dir, FcBool force, FcConfig *config);
505
506FcPublic FcCache *
507FcDirCacheLoadFile (const FcChar8 *cache_file, struct stat *file_stat);
508
509FcPublic void
510FcDirCacheUnload (FcCache *cache);
511
24330d27 512/* fcfreetype.c */
4984242e 513FcPublic FcPattern *
ccb3e93b 514FcFreeTypeQuery (const FcChar8 *file, int id, FcBlanks *blanks, int *count);
24330d27
KP
515
516/* fcfs.c */
517
4984242e 518FcPublic FcFontSet *
24330d27
KP
519FcFontSetCreate (void);
520
4984242e 521FcPublic void
24330d27
KP
522FcFontSetDestroy (FcFontSet *s);
523
4984242e 524FcPublic FcBool
24330d27
KP
525FcFontSetAdd (FcFontSet *s, FcPattern *font);
526
527/* fcinit.c */
4984242e 528FcPublic FcConfig *
179c3995
KP
529FcInitLoadConfig (void);
530
4984242e 531FcPublic FcConfig *
179c3995
KP
532FcInitLoadConfigAndFonts (void);
533
4984242e 534FcPublic FcBool
179c3995 535FcInit (void);
24330d27 536
4984242e 537FcPublic void
34cd0514
CW
538FcFini (void);
539
4984242e 540FcPublic int
48db40f6
KP
541FcGetVersion (void);
542
4984242e 543FcPublic FcBool
179c3995 544FcInitReinitialize (void);
24330d27 545
4984242e 546FcPublic FcBool
179c3995 547FcInitBringUptoDate (void);
24330d27 548
d8d73958 549/* fclang.c */
4984242e 550FcPublic FcLangSet*
d8d73958
KP
551FcLangSetCreate (void);
552
4984242e 553FcPublic void
d8d73958
KP
554FcLangSetDestroy (FcLangSet *ls);
555
4984242e 556FcPublic FcLangSet*
d8d73958
KP
557FcLangSetCopy (const FcLangSet *ls);
558
4984242e 559FcPublic FcBool
d8d73958
KP
560FcLangSetAdd (FcLangSet *ls, const FcChar8 *lang);
561
4984242e 562FcPublic FcLangResult
d8d73958
KP
563FcLangSetHasLang (const FcLangSet *ls, const FcChar8 *lang);
564
4984242e 565FcPublic FcLangResult
d8d73958
KP
566FcLangSetCompare (const FcLangSet *lsa, const FcLangSet *lsb);
567
4984242e 568FcPublic FcBool
4c2967f6
KP
569FcLangSetContains (const FcLangSet *lsa, const FcLangSet *lsb);
570
4984242e 571FcPublic FcBool
d8d73958
KP
572FcLangSetEqual (const FcLangSet *lsa, const FcLangSet *lsb);
573
4984242e 574FcPublic FcChar32
d8d73958
KP
575FcLangSetHash (const FcLangSet *ls);
576
24330d27 577/* fclist.c */
4984242e 578FcPublic FcObjectSet *
24330d27
KP
579FcObjectSetCreate (void);
580
4984242e 581FcPublic FcBool
24330d27
KP
582FcObjectSetAdd (FcObjectSet *os, const char *object);
583
4984242e 584FcPublic void
24330d27
KP
585FcObjectSetDestroy (FcObjectSet *os);
586
4984242e 587FcPublic FcObjectSet *
24330d27
KP
588FcObjectSetVaBuild (const char *first, va_list va);
589
4984242e 590FcPublic FcObjectSet *
250c1cd4 591FcObjectSetBuild (const char *first, ...) FC_ATTRIBUTE_SENTINEL(0);
24330d27 592
4984242e 593FcPublic FcFontSet *
80c053b7
KP
594FcFontSetList (FcConfig *config,
595 FcFontSet **sets,
596 int nsets,
597 FcPattern *p,
598 FcObjectSet *os);
599
4984242e 600FcPublic FcFontSet *
24330d27
KP
601FcFontList (FcConfig *config,
602 FcPattern *p,
603 FcObjectSet *os);
604
134f6011
KP
605/* fcatomic.c */
606
4984242e 607FcPublic FcAtomic *
134f6011
KP
608FcAtomicCreate (const FcChar8 *file);
609
4984242e 610FcPublic FcBool
134f6011
KP
611FcAtomicLock (FcAtomic *atomic);
612
4984242e 613FcPublic FcChar8 *
134f6011
KP
614FcAtomicNewFile (FcAtomic *atomic);
615
4984242e 616FcPublic FcChar8 *
134f6011
KP
617FcAtomicOrigFile (FcAtomic *atomic);
618
4984242e 619FcPublic FcBool
134f6011
KP
620FcAtomicReplaceOrig (FcAtomic *atomic);
621
4984242e 622FcPublic void
134f6011
KP
623FcAtomicDeleteNew (FcAtomic *atomic);
624
4984242e 625FcPublic void
134f6011
KP
626FcAtomicUnlock (FcAtomic *atomic);
627
4984242e 628FcPublic void
134f6011
KP
629FcAtomicDestroy (FcAtomic *atomic);
630
24330d27 631/* fcmatch.c */
4984242e 632FcPublic FcPattern *
80c053b7
KP
633FcFontSetMatch (FcConfig *config,
634 FcFontSet **sets,
635 int nsets,
636 FcPattern *p,
637 FcResult *result);
638
4984242e 639FcPublic FcPattern *
24330d27
KP
640FcFontMatch (FcConfig *config,
641 FcPattern *p,
642 FcResult *result);
643
4984242e 644FcPublic FcPattern *
216fac98
KP
645FcFontRenderPrepare (FcConfig *config,
646 FcPattern *pat,
647 FcPattern *font);
648
4984242e 649FcPublic FcFontSet *
216fac98
KP
650FcFontSetSort (FcConfig *config,
651 FcFontSet **sets,
652 int nsets,
653 FcPattern *p,
654 FcBool trim,
655 FcCharSet **csp,
656 FcResult *result);
657
4984242e 658FcPublic FcFontSet *
20ac65ab
KP
659FcFontSort (FcConfig *config,
660 FcPattern *p,
661 FcBool trim,
662 FcCharSet **csp,
663 FcResult *result);
664
4984242e 665FcPublic void
1412a699
KP
666FcFontSetSortDestroy (FcFontSet *fs);
667
24330d27 668/* fcmatrix.c */
4984242e 669FcPublic FcMatrix *
24330d27
KP
670FcMatrixCopy (const FcMatrix *mat);
671
4984242e 672FcPublic FcBool
24330d27
KP
673FcMatrixEqual (const FcMatrix *mat1, const FcMatrix *mat2);
674
4984242e 675FcPublic void
24330d27
KP
676FcMatrixMultiply (FcMatrix *result, const FcMatrix *a, const FcMatrix *b);
677
4984242e 678FcPublic void
24330d27
KP
679FcMatrixRotate (FcMatrix *m, double c, double s);
680
4984242e 681FcPublic void
24330d27
KP
682FcMatrixScale (FcMatrix *m, double sx, double sy);
683
4984242e 684FcPublic void
24330d27
KP
685FcMatrixShear (FcMatrix *m, double sh, double sv);
686
687/* fcname.c */
688
4984242e 689FcPublic FcBool
24330d27
KP
690FcNameRegisterObjectTypes (const FcObjectType *types, int ntype);
691
4984242e 692FcPublic FcBool
24330d27
KP
693FcNameUnregisterObjectTypes (const FcObjectType *types, int ntype);
694
4984242e 695FcPublic const FcObjectType *
24330d27
KP
696FcNameGetObjectType (const char *object);
697
4984242e 698FcPublic FcBool
24330d27
KP
699FcNameRegisterConstants (const FcConstant *consts, int nconsts);
700
4984242e 701FcPublic FcBool
24330d27
KP
702FcNameUnregisterConstants (const FcConstant *consts, int nconsts);
703
4984242e 704FcPublic const FcConstant *
ccb3e93b 705FcNameGetConstant (FcChar8 *string);
24330d27 706
4984242e 707FcPublic FcBool
ccb3e93b 708FcNameConstant (FcChar8 *string, int *result);
24330d27 709
4984242e 710FcPublic FcPattern *
ccb3e93b 711FcNameParse (const FcChar8 *name);
24330d27 712
4984242e 713FcPublic FcChar8 *
24330d27
KP
714FcNameUnparse (FcPattern *pat);
715
716/* fcpat.c */
4984242e 717FcPublic FcPattern *
24330d27
KP
718FcPatternCreate (void);
719
4984242e 720FcPublic FcPattern *
bff80114 721FcPatternDuplicate (const FcPattern *p);
24330d27 722
4984242e 723FcPublic void
6f6563ed
KP
724FcPatternReference (FcPattern *p);
725
4984242e 726FcPublic void
24330d27
KP
727FcValueDestroy (FcValue v);
728
4984242e 729FcPublic FcBool
0ab36ca8
KP
730FcValueEqual (FcValue va, FcValue vb);
731
4984242e 732FcPublic FcValue
24330d27
KP
733FcValueSave (FcValue v);
734
4984242e 735FcPublic void
24330d27
KP
736FcPatternDestroy (FcPattern *p);
737
4984242e 738FcPublic FcBool
e9be9cd1
KP
739FcPatternEqual (const FcPattern *pa, const FcPattern *pb);
740
4984242e 741FcPublic FcBool
e9be9cd1 742FcPatternEqualSubset (const FcPattern *pa, const FcPattern *pb, const FcObjectSet *os);
0ab36ca8 743
4984242e 744FcPublic FcChar32
d0f07b8d
KP
745FcPatternHash (const FcPattern *p);
746
4984242e 747FcPublic FcBool
24330d27
KP
748FcPatternAdd (FcPattern *p, const char *object, FcValue value, FcBool append);
749
4984242e 750FcPublic FcBool
82f4243f
KP
751FcPatternAddWeak (FcPattern *p, const char *object, FcValue value, FcBool append);
752
4984242e 753FcPublic FcResult
bff80114 754FcPatternGet (const FcPattern *p, const char *object, int id, FcValue *v);
24330d27 755
4984242e 756FcPublic FcBool
24330d27
KP
757FcPatternDel (FcPattern *p, const char *object);
758
4984242e 759FcPublic FcBool
4f27c1c0
KP
760FcPatternRemove (FcPattern *p, const char *object, int id);
761
4984242e 762FcPublic FcBool
24330d27
KP
763FcPatternAddInteger (FcPattern *p, const char *object, int i);
764
4984242e 765FcPublic FcBool
24330d27
KP
766FcPatternAddDouble (FcPattern *p, const char *object, double d);
767
4984242e 768FcPublic FcBool
ccb3e93b 769FcPatternAddString (FcPattern *p, const char *object, const FcChar8 *s);
24330d27 770
4984242e 771FcPublic FcBool
24330d27
KP
772FcPatternAddMatrix (FcPattern *p, const char *object, const FcMatrix *s);
773
4984242e 774FcPublic FcBool
24330d27
KP
775FcPatternAddCharSet (FcPattern *p, const char *object, const FcCharSet *c);
776
4984242e 777FcPublic FcBool
24330d27
KP
778FcPatternAddBool (FcPattern *p, const char *object, FcBool b);
779
4984242e 780FcPublic FcBool
d8d73958
KP
781FcPatternAddLangSet (FcPattern *p, const char *object, const FcLangSet *ls);
782
4984242e 783FcPublic FcResult
bff80114 784FcPatternGetInteger (const FcPattern *p, const char *object, int n, int *i);
24330d27 785
4984242e 786FcPublic FcResult
bff80114 787FcPatternGetDouble (const FcPattern *p, const char *object, int n, double *d);
24330d27 788
4984242e 789FcPublic FcResult
bff80114 790FcPatternGetString (const FcPattern *p, const char *object, int n, FcChar8 ** s);
24330d27 791
4984242e 792FcPublic FcResult
bff80114 793FcPatternGetMatrix (const FcPattern *p, const char *object, int n, FcMatrix **s);
24330d27 794
4984242e 795FcPublic FcResult
bff80114 796FcPatternGetCharSet (const FcPattern *p, const char *object, int n, FcCharSet **c);
24330d27 797
4984242e 798FcPublic FcResult
bff80114 799FcPatternGetBool (const FcPattern *p, const char *object, int n, FcBool *b);
24330d27 800
4984242e 801FcPublic FcResult
bff80114 802FcPatternGetLangSet (const FcPattern *p, const char *object, int n, FcLangSet **ls);
d8d73958 803
4984242e 804FcPublic FcPattern *
24330d27
KP
805FcPatternVaBuild (FcPattern *orig, va_list va);
806
4984242e 807FcPublic FcPattern *
250c1cd4 808FcPatternBuild (FcPattern *orig, ...) FC_ATTRIBUTE_SENTINEL(0);
24330d27
KP
809
810/* fcstr.c */
811
4984242e 812FcPublic FcChar8 *
ccb3e93b 813FcStrCopy (const FcChar8 *s);
24330d27 814
4984242e 815FcPublic FcChar8 *
179c3995
KP
816FcStrCopyFilename (const FcChar8 *s);
817
4984242e
KP
818FcPublic FcChar8 *
819FcStrPlus (const FcChar8 *s1, const FcChar8 *s2);
820
821FcPublic void
822FcStrFree (FcChar8 *s);
823
479f551f
KP
824/* These are ASCII only, suitable only for pattern element names */
825#define FcIsUpper(c) ((0101 <= (c) && (c) <= 0132))
826#define FcIsLower(c) ((0141 <= (c) && (c) <= 0172))
827#define FcToLower(c) (FcIsUpper(c) ? (c) - 0101 + 0141 : (c))
828
4984242e 829FcPublic FcChar8 *
479f551f 830FcStrDowncase (const FcChar8 *s);
24330d27 831
4984242e 832FcPublic int
ccb3e93b 833FcStrCmpIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
24330d27 834
4984242e 835FcPublic int
179c3995
KP
836FcStrCmp (const FcChar8 *s1, const FcChar8 *s2);
837
4984242e 838FcPublic const FcChar8 *
d4d1e8bc
JS
839FcStrStrIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
840
4984242e 841FcPublic const FcChar8 *
d4d1e8bc
JS
842FcStrStr (const FcChar8 *s1, const FcChar8 *s2);
843
4984242e 844FcPublic int
0f9a306e
KP
845FcUtf8ToUcs4 (const FcChar8 *src_orig,
846 FcChar32 *dst,
847 int len);
24330d27 848
4984242e 849FcPublic FcBool
0f9a306e
KP
850FcUtf8Len (const FcChar8 *string,
851 int len,
852 int *nchar,
853 int *wchar);
24330d27 854
69937bd9
KP
855#define FC_UTF8_MAX_LEN 6
856
4984242e 857FcPublic int
69937bd9
KP
858FcUcs4ToUtf8 (FcChar32 ucs4,
859 FcChar8 dest[FC_UTF8_MAX_LEN]);
860
4984242e 861FcPublic int
0f9a306e
KP
862FcUtf16ToUcs4 (const FcChar8 *src_orig,
863 FcEndian endian,
864 FcChar32 *dst,
865 int len); /* in bytes */
69937bd9 866
4984242e 867FcPublic FcBool
0f9a306e
KP
868FcUtf16Len (const FcChar8 *string,
869 FcEndian endian,
870 int len, /* in bytes */
871 int *nchar,
872 int *wchar);
69937bd9 873
4984242e 874FcPublic FcChar8 *
179c3995
KP
875FcStrDirname (const FcChar8 *file);
876
4984242e 877FcPublic FcChar8 *
179c3995
KP
878FcStrBasename (const FcChar8 *file);
879
4984242e 880FcPublic FcStrSet *
179c3995
KP
881FcStrSetCreate (void);
882
4984242e
KP
883FcPublic FcBool
884FcStrSetMember (FcPublic FcStrSet *set, const FcChar8 *s);
179c3995 885
4984242e
KP
886FcPublic FcBool
887FcStrSetEqual (FcPublic FcStrSet *sa, FcPublic FcStrSet *sb);
d8d73958 888
4984242e
KP
889FcPublic FcBool
890FcStrSetAdd (FcPublic FcStrSet *set, const FcChar8 *s);
179c3995 891
4984242e
KP
892FcPublic FcBool
893FcStrSetAddFilename (FcPublic FcStrSet *set, const FcChar8 *s);
179c3995 894
4984242e
KP
895FcPublic FcBool
896FcStrSetDel (FcPublic FcStrSet *set, const FcChar8 *s);
179c3995 897
4984242e
KP
898FcPublic void
899FcStrSetDestroy (FcPublic FcStrSet *set);
179c3995 900
4984242e 901FcPublic FcStrList *
23816bf9 902FcStrListCreate (FcPublic FcStrSet *set);
179c3995 903
4984242e 904FcPublic FcChar8 *
23816bf9 905FcStrListNext (FcStrList *list);
179c3995 906
4984242e 907FcPublic void
23816bf9 908FcStrListDone (FcStrList *list);
179c3995 909
24330d27 910/* fcxml.c */
4984242e 911FcPublic FcBool
ccb3e93b 912FcConfigParseAndLoad (FcConfig *config, const FcChar8 *file, FcBool complain);
24330d27
KP
913
914_FCFUNCPROTOEND
915
250c1cd4
PL
916#undef FC_ATTRIBUTE_SENTINEL
917
24330d27 918#endif /* _FONTCONFIG_H_ */