]> git.wh0rd.org - fontconfig.git/blame - fontconfig/fontconfig.h
Export FcConfig{G,S}etRescanInverval from .so, mark as deprecated.
[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
e66c65fd 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 */
4984242e 554FcPublic FcLangSet*
d8d73958
KP
555FcLangSetCreate (void);
556
4984242e 557FcPublic void
d8d73958
KP
558FcLangSetDestroy (FcLangSet *ls);
559
4984242e 560FcPublic FcLangSet*
d8d73958
KP
561FcLangSetCopy (const FcLangSet *ls);
562
4984242e 563FcPublic FcBool
d8d73958
KP
564FcLangSetAdd (FcLangSet *ls, const FcChar8 *lang);
565
4984242e 566FcPublic FcLangResult
d8d73958
KP
567FcLangSetHasLang (const FcLangSet *ls, const FcChar8 *lang);
568
4984242e 569FcPublic FcLangResult
d8d73958
KP
570FcLangSetCompare (const FcLangSet *lsa, const FcLangSet *lsb);
571
4984242e 572FcPublic FcBool
4c2967f6
KP
573FcLangSetContains (const FcLangSet *lsa, const FcLangSet *lsb);
574
4984242e 575FcPublic FcBool
d8d73958
KP
576FcLangSetEqual (const FcLangSet *lsa, const FcLangSet *lsb);
577
4984242e 578FcPublic FcChar32
d8d73958
KP
579FcLangSetHash (const FcLangSet *ls);
580
24330d27 581/* fclist.c */
4984242e 582FcPublic FcObjectSet *
24330d27
KP
583FcObjectSetCreate (void);
584
4984242e 585FcPublic FcBool
24330d27
KP
586FcObjectSetAdd (FcObjectSet *os, const char *object);
587
4984242e 588FcPublic void
24330d27
KP
589FcObjectSetDestroy (FcObjectSet *os);
590
4984242e 591FcPublic FcObjectSet *
24330d27
KP
592FcObjectSetVaBuild (const char *first, va_list va);
593
4984242e 594FcPublic FcObjectSet *
250c1cd4 595FcObjectSetBuild (const char *first, ...) FC_ATTRIBUTE_SENTINEL(0);
24330d27 596
4984242e 597FcPublic FcFontSet *
80c053b7
KP
598FcFontSetList (FcConfig *config,
599 FcFontSet **sets,
600 int nsets,
601 FcPattern *p,
602 FcObjectSet *os);
603
4984242e 604FcPublic FcFontSet *
24330d27
KP
605FcFontList (FcConfig *config,
606 FcPattern *p,
607 FcObjectSet *os);
608
134f6011
KP
609/* fcatomic.c */
610
4984242e 611FcPublic FcAtomic *
134f6011
KP
612FcAtomicCreate (const FcChar8 *file);
613
4984242e 614FcPublic FcBool
134f6011
KP
615FcAtomicLock (FcAtomic *atomic);
616
4984242e 617FcPublic FcChar8 *
134f6011
KP
618FcAtomicNewFile (FcAtomic *atomic);
619
4984242e 620FcPublic FcChar8 *
134f6011
KP
621FcAtomicOrigFile (FcAtomic *atomic);
622
4984242e 623FcPublic FcBool
134f6011
KP
624FcAtomicReplaceOrig (FcAtomic *atomic);
625
4984242e 626FcPublic void
134f6011
KP
627FcAtomicDeleteNew (FcAtomic *atomic);
628
4984242e 629FcPublic void
134f6011
KP
630FcAtomicUnlock (FcAtomic *atomic);
631
4984242e 632FcPublic void
134f6011
KP
633FcAtomicDestroy (FcAtomic *atomic);
634
24330d27 635/* fcmatch.c */
4984242e 636FcPublic FcPattern *
80c053b7
KP
637FcFontSetMatch (FcConfig *config,
638 FcFontSet **sets,
639 int nsets,
640 FcPattern *p,
641 FcResult *result);
642
4984242e 643FcPublic FcPattern *
24330d27
KP
644FcFontMatch (FcConfig *config,
645 FcPattern *p,
646 FcResult *result);
647
4984242e 648FcPublic FcPattern *
216fac98
KP
649FcFontRenderPrepare (FcConfig *config,
650 FcPattern *pat,
651 FcPattern *font);
652
4984242e 653FcPublic FcFontSet *
216fac98
KP
654FcFontSetSort (FcConfig *config,
655 FcFontSet **sets,
656 int nsets,
657 FcPattern *p,
658 FcBool trim,
659 FcCharSet **csp,
660 FcResult *result);
661
4984242e 662FcPublic FcFontSet *
20ac65ab
KP
663FcFontSort (FcConfig *config,
664 FcPattern *p,
665 FcBool trim,
666 FcCharSet **csp,
667 FcResult *result);
668
4984242e 669FcPublic void
1412a699
KP
670FcFontSetSortDestroy (FcFontSet *fs);
671
24330d27 672/* fcmatrix.c */
4984242e 673FcPublic FcMatrix *
24330d27
KP
674FcMatrixCopy (const FcMatrix *mat);
675
4984242e 676FcPublic FcBool
24330d27
KP
677FcMatrixEqual (const FcMatrix *mat1, const FcMatrix *mat2);
678
4984242e 679FcPublic void
24330d27
KP
680FcMatrixMultiply (FcMatrix *result, const FcMatrix *a, const FcMatrix *b);
681
4984242e 682FcPublic void
24330d27
KP
683FcMatrixRotate (FcMatrix *m, double c, double s);
684
4984242e 685FcPublic void
24330d27
KP
686FcMatrixScale (FcMatrix *m, double sx, double sy);
687
4984242e 688FcPublic void
24330d27
KP
689FcMatrixShear (FcMatrix *m, double sh, double sv);
690
691/* fcname.c */
692
4984242e 693FcPublic FcBool
24330d27
KP
694FcNameRegisterObjectTypes (const FcObjectType *types, int ntype);
695
4984242e 696FcPublic FcBool
24330d27
KP
697FcNameUnregisterObjectTypes (const FcObjectType *types, int ntype);
698
4984242e 699FcPublic const FcObjectType *
24330d27
KP
700FcNameGetObjectType (const char *object);
701
4984242e 702FcPublic FcBool
24330d27
KP
703FcNameRegisterConstants (const FcConstant *consts, int nconsts);
704
4984242e 705FcPublic FcBool
24330d27
KP
706FcNameUnregisterConstants (const FcConstant *consts, int nconsts);
707
4984242e 708FcPublic const FcConstant *
ccb3e93b 709FcNameGetConstant (FcChar8 *string);
24330d27 710
4984242e 711FcPublic FcBool
ccb3e93b 712FcNameConstant (FcChar8 *string, int *result);
24330d27 713
4984242e 714FcPublic FcPattern *
ccb3e93b 715FcNameParse (const FcChar8 *name);
24330d27 716
4984242e 717FcPublic FcChar8 *
24330d27
KP
718FcNameUnparse (FcPattern *pat);
719
720/* fcpat.c */
4984242e 721FcPublic FcPattern *
24330d27
KP
722FcPatternCreate (void);
723
4984242e 724FcPublic FcPattern *
bff80114 725FcPatternDuplicate (const FcPattern *p);
24330d27 726
4984242e 727FcPublic void
6f6563ed
KP
728FcPatternReference (FcPattern *p);
729
4984242e 730FcPublic void
24330d27
KP
731FcValueDestroy (FcValue v);
732
4984242e 733FcPublic FcBool
0ab36ca8
KP
734FcValueEqual (FcValue va, FcValue vb);
735
4984242e 736FcPublic FcValue
24330d27
KP
737FcValueSave (FcValue v);
738
4984242e 739FcPublic void
24330d27
KP
740FcPatternDestroy (FcPattern *p);
741
4984242e 742FcPublic FcBool
e9be9cd1
KP
743FcPatternEqual (const FcPattern *pa, const FcPattern *pb);
744
4984242e 745FcPublic FcBool
e9be9cd1 746FcPatternEqualSubset (const FcPattern *pa, const FcPattern *pb, const FcObjectSet *os);
0ab36ca8 747
4984242e 748FcPublic FcChar32
d0f07b8d
KP
749FcPatternHash (const FcPattern *p);
750
4984242e 751FcPublic FcBool
24330d27
KP
752FcPatternAdd (FcPattern *p, const char *object, FcValue value, FcBool append);
753
4984242e 754FcPublic FcBool
82f4243f
KP
755FcPatternAddWeak (FcPattern *p, const char *object, FcValue value, FcBool append);
756
4984242e 757FcPublic FcResult
bff80114 758FcPatternGet (const FcPattern *p, const char *object, int id, FcValue *v);
24330d27 759
4984242e 760FcPublic FcBool
24330d27
KP
761FcPatternDel (FcPattern *p, const char *object);
762
4984242e 763FcPublic FcBool
4f27c1c0
KP
764FcPatternRemove (FcPattern *p, const char *object, int id);
765
4984242e 766FcPublic FcBool
24330d27
KP
767FcPatternAddInteger (FcPattern *p, const char *object, int i);
768
4984242e 769FcPublic FcBool
24330d27
KP
770FcPatternAddDouble (FcPattern *p, const char *object, double d);
771
4984242e 772FcPublic FcBool
ccb3e93b 773FcPatternAddString (FcPattern *p, const char *object, const FcChar8 *s);
24330d27 774
4984242e 775FcPublic FcBool
24330d27
KP
776FcPatternAddMatrix (FcPattern *p, const char *object, const FcMatrix *s);
777
4984242e 778FcPublic FcBool
24330d27
KP
779FcPatternAddCharSet (FcPattern *p, const char *object, const FcCharSet *c);
780
4984242e 781FcPublic FcBool
24330d27
KP
782FcPatternAddBool (FcPattern *p, const char *object, FcBool b);
783
4984242e 784FcPublic FcBool
d8d73958
KP
785FcPatternAddLangSet (FcPattern *p, const char *object, const FcLangSet *ls);
786
4984242e 787FcPublic FcResult
bff80114 788FcPatternGetInteger (const FcPattern *p, const char *object, int n, int *i);
24330d27 789
4984242e 790FcPublic FcResult
bff80114 791FcPatternGetDouble (const FcPattern *p, const char *object, int n, double *d);
24330d27 792
4984242e 793FcPublic FcResult
bff80114 794FcPatternGetString (const FcPattern *p, const char *object, int n, FcChar8 ** s);
24330d27 795
4984242e 796FcPublic FcResult
bff80114 797FcPatternGetMatrix (const FcPattern *p, const char *object, int n, FcMatrix **s);
24330d27 798
4984242e 799FcPublic FcResult
bff80114 800FcPatternGetCharSet (const FcPattern *p, const char *object, int n, FcCharSet **c);
24330d27 801
4984242e 802FcPublic FcResult
bff80114 803FcPatternGetBool (const FcPattern *p, const char *object, int n, FcBool *b);
24330d27 804
4984242e 805FcPublic FcResult
bff80114 806FcPatternGetLangSet (const FcPattern *p, const char *object, int n, FcLangSet **ls);
d8d73958 807
4984242e 808FcPublic FcPattern *
24330d27
KP
809FcPatternVaBuild (FcPattern *orig, va_list va);
810
4984242e 811FcPublic FcPattern *
250c1cd4 812FcPatternBuild (FcPattern *orig, ...) FC_ATTRIBUTE_SENTINEL(0);
24330d27
KP
813
814/* fcstr.c */
815
4984242e 816FcPublic FcChar8 *
ccb3e93b 817FcStrCopy (const FcChar8 *s);
24330d27 818
4984242e 819FcPublic FcChar8 *
179c3995
KP
820FcStrCopyFilename (const FcChar8 *s);
821
4984242e
KP
822FcPublic FcChar8 *
823FcStrPlus (const FcChar8 *s1, const FcChar8 *s2);
824
825FcPublic void
826FcStrFree (FcChar8 *s);
827
479f551f
KP
828/* These are ASCII only, suitable only for pattern element names */
829#define FcIsUpper(c) ((0101 <= (c) && (c) <= 0132))
830#define FcIsLower(c) ((0141 <= (c) && (c) <= 0172))
831#define FcToLower(c) (FcIsUpper(c) ? (c) - 0101 + 0141 : (c))
832
4984242e 833FcPublic FcChar8 *
479f551f 834FcStrDowncase (const FcChar8 *s);
24330d27 835
4984242e 836FcPublic int
ccb3e93b 837FcStrCmpIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
24330d27 838
4984242e 839FcPublic int
179c3995
KP
840FcStrCmp (const FcChar8 *s1, const FcChar8 *s2);
841
4984242e 842FcPublic const FcChar8 *
d4d1e8bc
JS
843FcStrStrIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
844
4984242e 845FcPublic const FcChar8 *
d4d1e8bc
JS
846FcStrStr (const FcChar8 *s1, const FcChar8 *s2);
847
4984242e 848FcPublic int
0f9a306e
KP
849FcUtf8ToUcs4 (const FcChar8 *src_orig,
850 FcChar32 *dst,
851 int len);
24330d27 852
4984242e 853FcPublic FcBool
0f9a306e
KP
854FcUtf8Len (const FcChar8 *string,
855 int len,
856 int *nchar,
857 int *wchar);
24330d27 858
69937bd9
KP
859#define FC_UTF8_MAX_LEN 6
860
4984242e 861FcPublic int
69937bd9
KP
862FcUcs4ToUtf8 (FcChar32 ucs4,
863 FcChar8 dest[FC_UTF8_MAX_LEN]);
864
4984242e 865FcPublic int
0f9a306e
KP
866FcUtf16ToUcs4 (const FcChar8 *src_orig,
867 FcEndian endian,
868 FcChar32 *dst,
869 int len); /* in bytes */
69937bd9 870
4984242e 871FcPublic FcBool
0f9a306e
KP
872FcUtf16Len (const FcChar8 *string,
873 FcEndian endian,
874 int len, /* in bytes */
875 int *nchar,
876 int *wchar);
69937bd9 877
4984242e 878FcPublic FcChar8 *
179c3995
KP
879FcStrDirname (const FcChar8 *file);
880
4984242e 881FcPublic FcChar8 *
179c3995
KP
882FcStrBasename (const FcChar8 *file);
883
4984242e 884FcPublic FcStrSet *
179c3995
KP
885FcStrSetCreate (void);
886
4984242e 887FcPublic FcBool
088b582a 888FcStrSetMember (FcStrSet *set, const FcChar8 *s);
179c3995 889
4984242e 890FcPublic FcBool
088b582a 891FcStrSetEqual (FcStrSet *sa, FcStrSet *sb);
d8d73958 892
4984242e 893FcPublic FcBool
088b582a 894FcStrSetAdd (FcStrSet *set, const FcChar8 *s);
179c3995 895
4984242e 896FcPublic FcBool
088b582a 897FcStrSetAddFilename (FcStrSet *set, const FcChar8 *s);
179c3995 898
4984242e 899FcPublic FcBool
088b582a 900FcStrSetDel (FcStrSet *set, const FcChar8 *s);
179c3995 901
4984242e 902FcPublic void
088b582a 903FcStrSetDestroy (FcStrSet *set);
179c3995 904
4984242e 905FcPublic FcStrList *
088b582a 906FcStrListCreate (FcStrSet *set);
179c3995 907
4984242e 908FcPublic FcChar8 *
23816bf9 909FcStrListNext (FcStrList *list);
179c3995 910
4984242e 911FcPublic void
23816bf9 912FcStrListDone (FcStrList *list);
179c3995 913
24330d27 914/* fcxml.c */
4984242e 915FcPublic FcBool
ccb3e93b 916FcConfigParseAndLoad (FcConfig *config, const FcChar8 *file, FcBool complain);
24330d27
KP
917
918_FCFUNCPROTOEND
919
250c1cd4
PL
920#undef FC_ATTRIBUTE_SENTINEL
921
de1faa42
KP
922
923#ifndef _FCINT_H_
924
925/*
926 * Deprecated functions are placed here to help users fix their code without
927 * digging through documentation
928 */
929
930#define FcConfigGetRescanInverval FcConfigGetRescanInverval_REPLACE_BY_FcConfigGetRescanInterval
931#define FcConfigSetRescanInverval FcConfigSetRescanInverval_REPLACE_BY_FcConfigSetRescanInterval
932
933#endif
934
24330d27 935#endif /* _FONTCONFIG_H_ */