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