]> git.wh0rd.org - fontconfig.git/blame_incremental - fontconfig/fontconfig.h
Update for version 2.4.1
[fontconfig.git] / fontconfig / fontconfig.h
... / ...
CommitLineData
1/*
2 * $RCSId: xc/lib/fontconfig/fontconfig/fontconfig.h,v 1.30 2002/09/26 00:17:27 keithp Exp $
3 *
4 * Copyright © 2001 Keith Packard
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 <sys/types.h>
29#include <sys/stat.h>
30#include <unistd.h>
31#include <stdarg.h>
32
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
39#ifndef FcPublic
40#define FcPublic
41#endif
42
43typedef unsigned char FcChar8;
44typedef unsigned short FcChar16;
45typedef unsigned int FcChar32;
46typedef int FcBool;
47
48/*
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.
52 */
53
54#define FC_MAJOR 2
55#define FC_MINOR 4
56#define FC_REVISION 1
57
58#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))
59
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
70#define FC_CACHE_VERSION "2"
71
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 */
80#define FC_ASPECT "aspect" /* Double */
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) */
86#define FC_HINT_STYLE "hintstyle" /* Int */
87#define FC_VERTICAL_LAYOUT "verticallayout" /* Bool (false) */
88#define FC_AUTOHINT "autohint" /* Bool (false) */
89#define FC_GLOBAL_ADVANCE "globaladvance" /* Bool (true) */
90#define FC_WIDTH "width" /* Int */
91#define FC_FILE "file" /* String */
92#define FC_INDEX "index" /* Int */
93#define FC_FT_FACE "ftface" /* FT_Face */
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 */
101#define FC_SOURCE "source" /* String (deprecated) */
102#define FC_CHARSET "charset" /* CharSet */
103#define FC_LANG "lang" /* String RFC 3066 langs */
104#define FC_FONTVERSION "fontversion" /* Int from 'head' table */
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 */
109#define FC_CAPABILITY "capability" /* String */
110#define FC_FONTFORMAT "fontformat" /* String */
111#define FC_EMBOLDEN "embolden" /* Bool - true if emboldening needed*/
112#define FC_EMBEDDED_BITMAP "embeddedbitmap" /* Bool - true to enable embedded bitmaps */
113#define FC_DECORATIVE "decorative" /* Bool - true if style is a decorative variant */
114
115#define FC_CACHE_SUFFIX ".cache-"FC_CACHE_VERSION
116#define FC_DIR_CACHE_FILE "fonts.cache-"FC_CACHE_VERSION
117#define FC_USER_CACHE_FILE ".fonts.cache-"FC_CACHE_VERSION
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
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
128#define FC_WEIGHT_BOOK 75
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
136#define FC_WEIGHT_ULTRABOLD FC_WEIGHT_EXTRABOLD
137#define FC_WEIGHT_BLACK 210
138#define FC_WEIGHT_HEAVY FC_WEIGHT_BLACK
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
155#define FC_DUAL 90
156#define FC_MONO 100
157#define FC_CHARCELL 110
158
159/* sub-pixel order */
160#define FC_RGBA_UNKNOWN 0
161#define FC_RGBA_RGB 1
162#define FC_RGBA_BGR 2
163#define FC_RGBA_VRGB 3
164#define FC_RGBA_VBGR 4
165#define FC_RGBA_NONE 5
166
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
173typedef enum _FcType {
174 FcTypeVoid,
175 FcTypeInteger,
176 FcTypeDouble,
177 FcTypeString,
178 FcTypeBool,
179 FcTypeMatrix,
180 FcTypeCharSet,
181 FcTypeFTFace,
182 FcTypeLangSet
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 {
205 const FcChar8 *name;
206 const char *object;
207 int value;
208} FcConstant;
209
210typedef enum _FcResult {
211 FcResultMatch, FcResultNoMatch, FcResultTypeMismatch, FcResultNoId,
212 FcResultOutOfMemory
213} FcResult;
214
215typedef struct _FcPattern FcPattern;
216
217typedef struct _FcLangSet FcLangSet;
218
219typedef struct _FcValue {
220 FcType type;
221 union {
222 const FcChar8 *s;
223 int i;
224 FcBool b;
225 double d;
226 const FcMatrix *m;
227 const FcCharSet *c;
228 void *f;
229 const FcPattern *p;
230 const FcLangSet *l;
231 } u;
232} FcValue;
233
234typedef struct _FcFontSet {
235 int nfont;
236 int sfont;
237 FcPattern **fonts;
238} FcFontSet;
239
240typedef struct _FcObjectSet {
241 int nobject;
242 int sobject;
243 const char **objects;
244} FcObjectSet;
245
246typedef enum _FcMatchKind {
247 FcMatchPattern, FcMatchFont, FcMatchScan
248} FcMatchKind;
249
250typedef enum _FcLangResult {
251 FcLangEqual, FcLangDifferentCountry, FcLangDifferentLang
252} FcLangResult;
253
254typedef enum _FcSetName {
255 FcSetSystem = 0,
256 FcSetApplication = 1
257} FcSetName;
258
259typedef struct _FcAtomic FcAtomic;
260
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
269typedef enum { FcEndianBig, FcEndianLittle } FcEndian;
270
271typedef struct _FcConfig FcConfig;
272
273typedef struct _FcGlobalCache FcFileCache;
274
275typedef struct _FcBlanks FcBlanks;
276
277typedef struct _FcStrList FcStrList;
278
279typedef struct _FcStrSet FcStrSet;
280
281typedef struct _FcCache FcCache;
282
283_FCFUNCPROTOBEGIN
284
285/* fcblanks.c */
286FcPublic FcBlanks *
287FcBlanksCreate (void);
288
289FcPublic void
290FcBlanksDestroy (FcBlanks *b);
291
292FcPublic FcBool
293FcBlanksAdd (FcBlanks *b, FcChar32 ucs4);
294
295FcPublic FcBool
296FcBlanksIsMember (FcBlanks *b, FcChar32 ucs4);
297
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
315FcPublic FcBool
316FcDirCacheUnlink (const FcChar8 *dir, FcConfig *config);
317
318FcPublic FcBool
319FcDirCacheValid (const FcChar8 *cache_file);
320
321/* fccfg.c */
322FcPublic FcChar8 *
323FcConfigHome (void);
324
325FcPublic FcBool
326FcConfigEnableHome (FcBool enable);
327
328FcPublic FcChar8 *
329FcConfigFilename (const FcChar8 *url);
330
331FcPublic FcConfig *
332FcConfigCreate (void);
333
334FcPublic void
335FcConfigDestroy (FcConfig *config);
336
337FcPublic FcBool
338FcConfigSetCurrent (FcConfig *config);
339
340FcPublic FcConfig *
341FcConfigGetCurrent (void);
342
343FcPublic FcBool
344FcConfigUptoDate (FcConfig *config);
345
346FcPublic FcBool
347FcConfigBuildFonts (FcConfig *config);
348
349FcPublic FcStrList *
350FcConfigGetFontDirs (FcConfig *config);
351
352FcPublic FcStrList *
353FcConfigGetConfigDirs (FcConfig *config);
354
355FcPublic FcStrList *
356FcConfigGetConfigFiles (FcConfig *config);
357
358FcPublic FcChar8 *
359FcConfigGetCache (FcConfig *config);
360
361FcPublic FcBlanks *
362FcConfigGetBlanks (FcConfig *config);
363
364FcPublic FcStrList *
365FcConfigGetCacheDirs (FcConfig *config);
366
367FcPublic int
368FcConfigGetRescanInverval (FcConfig *config);
369
370FcPublic FcBool
371FcConfigSetRescanInverval (FcConfig *config, int rescanInterval);
372
373FcPublic FcFontSet *
374FcConfigGetFonts (FcConfig *config,
375 FcSetName set);
376
377FcPublic FcBool
378FcConfigAppFontAddFile (FcConfig *config,
379 const FcChar8 *file);
380
381FcPublic FcBool
382FcConfigAppFontAddDir (FcConfig *config,
383 const FcChar8 *dir);
384
385FcPublic void
386FcConfigAppFontClear (FcConfig *config);
387
388FcPublic FcBool
389FcConfigSubstituteWithPat (FcConfig *config,
390 FcPattern *p,
391 FcPattern *p_pat,
392 FcMatchKind kind);
393
394FcPublic FcBool
395FcConfigSubstitute (FcConfig *config,
396 FcPattern *p,
397 FcMatchKind kind);
398
399/* fccharset.c */
400FcPublic FcCharSet*
401FcCharSetCreate (void);
402
403/* deprecated alias for FcCharSetCreate */
404FcPublic FcCharSet *
405FcCharSetNew (void);
406
407FcPublic void
408FcCharSetDestroy (FcCharSet *fcs);
409
410FcPublic FcBool
411FcCharSetAddChar (FcCharSet *fcs, FcChar32 ucs4);
412
413FcPublic FcCharSet*
414FcCharSetCopy (FcCharSet *src);
415
416FcPublic FcBool
417FcCharSetEqual (const FcCharSet *a, const FcCharSet *b);
418
419FcPublic FcCharSet*
420FcCharSetIntersect (const FcCharSet *a, const FcCharSet *b);
421
422FcPublic FcCharSet*
423FcCharSetUnion (const FcCharSet *a, const FcCharSet *b);
424
425FcPublic FcCharSet*
426FcCharSetSubtract (const FcCharSet *a, const FcCharSet *b);
427
428FcPublic FcBool
429FcCharSetHasChar (const FcCharSet *fcs, FcChar32 ucs4);
430
431FcPublic FcChar32
432FcCharSetCount (const FcCharSet *a);
433
434FcPublic FcChar32
435FcCharSetIntersectCount (const FcCharSet *a, const FcCharSet *b);
436
437FcPublic FcChar32
438FcCharSetSubtractCount (const FcCharSet *a, const FcCharSet *b);
439
440FcPublic FcBool
441FcCharSetIsSubset (const FcCharSet *a, const FcCharSet *b);
442
443#define FC_CHARSET_MAP_SIZE (256/32)
444#define FC_CHARSET_DONE ((FcChar32) -1)
445
446FcPublic FcChar32
447FcCharSetFirstPage (const FcCharSet *a,
448 FcChar32 map[FC_CHARSET_MAP_SIZE],
449 FcChar32 *next);
450
451FcPublic FcChar32
452FcCharSetNextPage (const FcCharSet *a,
453 FcChar32 map[FC_CHARSET_MAP_SIZE],
454 FcChar32 *next);
455
456/*
457 * old coverage API, rather hard to use correctly
458 */
459
460FcPublic FcChar32
461FcCharSetCoverage (const FcCharSet *a, FcChar32 page, FcChar32 *result);
462
463/* fcdbg.c */
464FcPublic void
465FcValuePrint (const FcValue v);
466
467FcPublic void
468FcPatternPrint (const FcPattern *p);
469
470FcPublic void
471FcFontSetPrint (const FcFontSet *s);
472
473/* fcdefault.c */
474FcPublic void
475FcDefaultSubstitute (FcPattern *pattern);
476
477/* fcdir.c */
478FcPublic FcBool
479FcFileIsDir (const FcChar8 *file);
480
481FcPublic FcBool
482FcFileScan (FcFontSet *set,
483 FcStrSet *dirs,
484 FcFileCache *cache,
485 FcBlanks *blanks,
486 const FcChar8 *file,
487 FcBool force);
488
489FcPublic FcBool
490FcDirScan (FcFontSet *set,
491 FcStrSet *dirs,
492 FcFileCache *cache,
493 FcBlanks *blanks,
494 const FcChar8 *dir,
495 FcBool force);
496
497FcPublic FcBool
498FcDirSave (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir);
499
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
512/* fcfreetype.c */
513FcPublic FcPattern *
514FcFreeTypeQuery (const FcChar8 *file, int id, FcBlanks *blanks, int *count);
515
516/* fcfs.c */
517
518FcPublic FcFontSet *
519FcFontSetCreate (void);
520
521FcPublic void
522FcFontSetDestroy (FcFontSet *s);
523
524FcPublic FcBool
525FcFontSetAdd (FcFontSet *s, FcPattern *font);
526
527/* fcinit.c */
528FcPublic FcConfig *
529FcInitLoadConfig (void);
530
531FcPublic FcConfig *
532FcInitLoadConfigAndFonts (void);
533
534FcPublic FcBool
535FcInit (void);
536
537FcPublic void
538FcFini (void);
539
540FcPublic int
541FcGetVersion (void);
542
543FcPublic FcBool
544FcInitReinitialize (void);
545
546FcPublic FcBool
547FcInitBringUptoDate (void);
548
549/* fclang.c */
550FcPublic FcLangSet*
551FcLangSetCreate (void);
552
553FcPublic void
554FcLangSetDestroy (FcLangSet *ls);
555
556FcPublic FcLangSet*
557FcLangSetCopy (const FcLangSet *ls);
558
559FcPublic FcBool
560FcLangSetAdd (FcLangSet *ls, const FcChar8 *lang);
561
562FcPublic FcLangResult
563FcLangSetHasLang (const FcLangSet *ls, const FcChar8 *lang);
564
565FcPublic FcLangResult
566FcLangSetCompare (const FcLangSet *lsa, const FcLangSet *lsb);
567
568FcPublic FcBool
569FcLangSetContains (const FcLangSet *lsa, const FcLangSet *lsb);
570
571FcPublic FcBool
572FcLangSetEqual (const FcLangSet *lsa, const FcLangSet *lsb);
573
574FcPublic FcChar32
575FcLangSetHash (const FcLangSet *ls);
576
577/* fclist.c */
578FcPublic FcObjectSet *
579FcObjectSetCreate (void);
580
581FcPublic FcBool
582FcObjectSetAdd (FcObjectSet *os, const char *object);
583
584FcPublic void
585FcObjectSetDestroy (FcObjectSet *os);
586
587FcPublic FcObjectSet *
588FcObjectSetVaBuild (const char *first, va_list va);
589
590FcPublic FcObjectSet *
591FcObjectSetBuild (const char *first, ...) FC_ATTRIBUTE_SENTINEL(0);
592
593FcPublic FcFontSet *
594FcFontSetList (FcConfig *config,
595 FcFontSet **sets,
596 int nsets,
597 FcPattern *p,
598 FcObjectSet *os);
599
600FcPublic FcFontSet *
601FcFontList (FcConfig *config,
602 FcPattern *p,
603 FcObjectSet *os);
604
605/* fcatomic.c */
606
607FcPublic FcAtomic *
608FcAtomicCreate (const FcChar8 *file);
609
610FcPublic FcBool
611FcAtomicLock (FcAtomic *atomic);
612
613FcPublic FcChar8 *
614FcAtomicNewFile (FcAtomic *atomic);
615
616FcPublic FcChar8 *
617FcAtomicOrigFile (FcAtomic *atomic);
618
619FcPublic FcBool
620FcAtomicReplaceOrig (FcAtomic *atomic);
621
622FcPublic void
623FcAtomicDeleteNew (FcAtomic *atomic);
624
625FcPublic void
626FcAtomicUnlock (FcAtomic *atomic);
627
628FcPublic void
629FcAtomicDestroy (FcAtomic *atomic);
630
631/* fcmatch.c */
632FcPublic FcPattern *
633FcFontSetMatch (FcConfig *config,
634 FcFontSet **sets,
635 int nsets,
636 FcPattern *p,
637 FcResult *result);
638
639FcPublic FcPattern *
640FcFontMatch (FcConfig *config,
641 FcPattern *p,
642 FcResult *result);
643
644FcPublic FcPattern *
645FcFontRenderPrepare (FcConfig *config,
646 FcPattern *pat,
647 FcPattern *font);
648
649FcPublic FcFontSet *
650FcFontSetSort (FcConfig *config,
651 FcFontSet **sets,
652 int nsets,
653 FcPattern *p,
654 FcBool trim,
655 FcCharSet **csp,
656 FcResult *result);
657
658FcPublic FcFontSet *
659FcFontSort (FcConfig *config,
660 FcPattern *p,
661 FcBool trim,
662 FcCharSet **csp,
663 FcResult *result);
664
665FcPublic void
666FcFontSetSortDestroy (FcFontSet *fs);
667
668/* fcmatrix.c */
669FcPublic FcMatrix *
670FcMatrixCopy (const FcMatrix *mat);
671
672FcPublic FcBool
673FcMatrixEqual (const FcMatrix *mat1, const FcMatrix *mat2);
674
675FcPublic void
676FcMatrixMultiply (FcMatrix *result, const FcMatrix *a, const FcMatrix *b);
677
678FcPublic void
679FcMatrixRotate (FcMatrix *m, double c, double s);
680
681FcPublic void
682FcMatrixScale (FcMatrix *m, double sx, double sy);
683
684FcPublic void
685FcMatrixShear (FcMatrix *m, double sh, double sv);
686
687/* fcname.c */
688
689FcPublic FcBool
690FcNameRegisterObjectTypes (const FcObjectType *types, int ntype);
691
692FcPublic FcBool
693FcNameUnregisterObjectTypes (const FcObjectType *types, int ntype);
694
695FcPublic const FcObjectType *
696FcNameGetObjectType (const char *object);
697
698FcPublic FcBool
699FcNameRegisterConstants (const FcConstant *consts, int nconsts);
700
701FcPublic FcBool
702FcNameUnregisterConstants (const FcConstant *consts, int nconsts);
703
704FcPublic const FcConstant *
705FcNameGetConstant (FcChar8 *string);
706
707FcPublic FcBool
708FcNameConstant (FcChar8 *string, int *result);
709
710FcPublic FcPattern *
711FcNameParse (const FcChar8 *name);
712
713FcPublic FcChar8 *
714FcNameUnparse (FcPattern *pat);
715
716/* fcpat.c */
717FcPublic FcPattern *
718FcPatternCreate (void);
719
720FcPublic FcPattern *
721FcPatternDuplicate (const FcPattern *p);
722
723FcPublic void
724FcPatternReference (FcPattern *p);
725
726FcPublic void
727FcValueDestroy (FcValue v);
728
729FcPublic FcBool
730FcValueEqual (FcValue va, FcValue vb);
731
732FcPublic FcValue
733FcValueSave (FcValue v);
734
735FcPublic void
736FcPatternDestroy (FcPattern *p);
737
738FcPublic FcBool
739FcPatternEqual (const FcPattern *pa, const FcPattern *pb);
740
741FcPublic FcBool
742FcPatternEqualSubset (const FcPattern *pa, const FcPattern *pb, const FcObjectSet *os);
743
744FcPublic FcChar32
745FcPatternHash (const FcPattern *p);
746
747FcPublic FcBool
748FcPatternAdd (FcPattern *p, const char *object, FcValue value, FcBool append);
749
750FcPublic FcBool
751FcPatternAddWeak (FcPattern *p, const char *object, FcValue value, FcBool append);
752
753FcPublic FcResult
754FcPatternGet (const FcPattern *p, const char *object, int id, FcValue *v);
755
756FcPublic FcBool
757FcPatternDel (FcPattern *p, const char *object);
758
759FcPublic FcBool
760FcPatternRemove (FcPattern *p, const char *object, int id);
761
762FcPublic FcBool
763FcPatternAddInteger (FcPattern *p, const char *object, int i);
764
765FcPublic FcBool
766FcPatternAddDouble (FcPattern *p, const char *object, double d);
767
768FcPublic FcBool
769FcPatternAddString (FcPattern *p, const char *object, const FcChar8 *s);
770
771FcPublic FcBool
772FcPatternAddMatrix (FcPattern *p, const char *object, const FcMatrix *s);
773
774FcPublic FcBool
775FcPatternAddCharSet (FcPattern *p, const char *object, const FcCharSet *c);
776
777FcPublic FcBool
778FcPatternAddBool (FcPattern *p, const char *object, FcBool b);
779
780FcPublic FcBool
781FcPatternAddLangSet (FcPattern *p, const char *object, const FcLangSet *ls);
782
783FcPublic FcResult
784FcPatternGetInteger (const FcPattern *p, const char *object, int n, int *i);
785
786FcPublic FcResult
787FcPatternGetDouble (const FcPattern *p, const char *object, int n, double *d);
788
789FcPublic FcResult
790FcPatternGetString (const FcPattern *p, const char *object, int n, FcChar8 ** s);
791
792FcPublic FcResult
793FcPatternGetMatrix (const FcPattern *p, const char *object, int n, FcMatrix **s);
794
795FcPublic FcResult
796FcPatternGetCharSet (const FcPattern *p, const char *object, int n, FcCharSet **c);
797
798FcPublic FcResult
799FcPatternGetBool (const FcPattern *p, const char *object, int n, FcBool *b);
800
801FcPublic FcResult
802FcPatternGetLangSet (const FcPattern *p, const char *object, int n, FcLangSet **ls);
803
804FcPublic FcPattern *
805FcPatternVaBuild (FcPattern *orig, va_list va);
806
807FcPublic FcPattern *
808FcPatternBuild (FcPattern *orig, ...) FC_ATTRIBUTE_SENTINEL(0);
809
810/* fcstr.c */
811
812FcPublic FcChar8 *
813FcStrCopy (const FcChar8 *s);
814
815FcPublic FcChar8 *
816FcStrCopyFilename (const FcChar8 *s);
817
818FcPublic FcChar8 *
819FcStrPlus (const FcChar8 *s1, const FcChar8 *s2);
820
821FcPublic void
822FcStrFree (FcChar8 *s);
823
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
829FcPublic FcChar8 *
830FcStrDowncase (const FcChar8 *s);
831
832FcPublic int
833FcStrCmpIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
834
835FcPublic int
836FcStrCmp (const FcChar8 *s1, const FcChar8 *s2);
837
838FcPublic const FcChar8 *
839FcStrStrIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
840
841FcPublic const FcChar8 *
842FcStrStr (const FcChar8 *s1, const FcChar8 *s2);
843
844FcPublic int
845FcUtf8ToUcs4 (const FcChar8 *src_orig,
846 FcChar32 *dst,
847 int len);
848
849FcPublic FcBool
850FcUtf8Len (const FcChar8 *string,
851 int len,
852 int *nchar,
853 int *wchar);
854
855#define FC_UTF8_MAX_LEN 6
856
857FcPublic int
858FcUcs4ToUtf8 (FcChar32 ucs4,
859 FcChar8 dest[FC_UTF8_MAX_LEN]);
860
861FcPublic int
862FcUtf16ToUcs4 (const FcChar8 *src_orig,
863 FcEndian endian,
864 FcChar32 *dst,
865 int len); /* in bytes */
866
867FcPublic FcBool
868FcUtf16Len (const FcChar8 *string,
869 FcEndian endian,
870 int len, /* in bytes */
871 int *nchar,
872 int *wchar);
873
874FcPublic FcChar8 *
875FcStrDirname (const FcChar8 *file);
876
877FcPublic FcChar8 *
878FcStrBasename (const FcChar8 *file);
879
880FcPublic FcStrSet *
881FcStrSetCreate (void);
882
883FcPublic FcBool
884FcStrSetMember (FcPublic FcStrSet *set, const FcChar8 *s);
885
886FcPublic FcBool
887FcStrSetEqual (FcPublic FcStrSet *sa, FcPublic FcStrSet *sb);
888
889FcPublic FcBool
890FcStrSetAdd (FcPublic FcStrSet *set, const FcChar8 *s);
891
892FcPublic FcBool
893FcStrSetAddFilename (FcPublic FcStrSet *set, const FcChar8 *s);
894
895FcPublic FcBool
896FcStrSetDel (FcPublic FcStrSet *set, const FcChar8 *s);
897
898FcPublic void
899FcStrSetDestroy (FcPublic FcStrSet *set);
900
901FcPublic FcStrList *
902FcStrListCreate (FcPublic FcStrSet *set);
903
904FcPublic FcChar8 *
905FcStrListNext (FcStrList *list);
906
907FcPublic void
908FcStrListDone (FcStrList *list);
909
910/* fcxml.c */
911FcPublic FcBool
912FcConfigParseAndLoad (FcConfig *config, const FcChar8 *file, FcBool complain);
913
914_FCFUNCPROTOEND
915
916#undef FC_ATTRIBUTE_SENTINEL
917
918#endif /* _FONTCONFIG_H_ */