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