2 * $RCSId: xc/lib/fontconfig/src/fcint.h,v 1.27 2002/08/31 22:17:32 keithp Exp $
4 * Copyright © 2000 Keith Packard
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.
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.
34 #ifdef HAVE_INTTYPES_H
36 #elif defined(HAVE_STDINT_H)
39 #error missing C99 integer data types
45 #include <sys/types.h>
48 #include <fontconfig/fontconfig.h>
49 #include <fontconfig/fcprivate.h>
50 #include <fontconfig/fcfreetype.h>
52 #ifndef FC_CONFIG_PATH
53 #define FC_CONFIG_PATH "fonts.conf"
57 #define FC_SEARCH_PATH_SEPARATOR ';'
59 #define FC_SEARCH_PATH_SEPARATOR ':'
62 #define FC_DBG_MATCH 1
63 #define FC_DBG_MATCHV 2
65 #define FC_DBG_FONTSET 8
66 #define FC_DBG_CACHE 16
67 #define FC_DBG_CACHEV 32
68 #define FC_DBG_PARSE 64
69 #define FC_DBG_SCAN 128
70 #define FC_DBG_SCANV 256
71 #define FC_DBG_MEMORY 512
72 #define FC_DBG_CONFIG 1024
73 #define FC_DBG_LANGSET 2048
74 #define FC_DBG_OBJTYPES 4096
76 #define FC_MEM_CHARSET 0
77 #define FC_MEM_CHARLEAF 1
78 #define FC_MEM_FONTSET 2
79 #define FC_MEM_FONTPTR 3
80 #define FC_MEM_OBJECTSET 4
81 #define FC_MEM_OBJECTPTR 5
82 #define FC_MEM_MATRIX 6
83 #define FC_MEM_PATTERN 7
84 #define FC_MEM_PATELT 8
85 #define FC_MEM_VALLIST 9
86 #define FC_MEM_SUBSTATE 10
87 #define FC_MEM_STRING 11
88 #define FC_MEM_LISTBUCK 12
89 #define FC_MEM_STRSET 13
90 #define FC_MEM_STRLIST 14
91 #define FC_MEM_CONFIG 15
92 #define FC_MEM_LANGSET 16
93 #define FC_MEM_ATOMIC 17
94 #define FC_MEM_BLANKS 18
95 #define FC_MEM_CACHE 19
96 #define FC_MEM_STRBUF 20
97 #define FC_MEM_SUBST 21
98 #define FC_MEM_OBJECTTYPE 22
99 #define FC_MEM_CONSTANT 23
100 #define FC_MEM_TEST 24
101 #define FC_MEM_EXPR 25
102 #define FC_MEM_VSTACK 26
103 #define FC_MEM_ATTR 27
104 #define FC_MEM_PSTACK 28
105 #define FC_MEM_STATICSTR 29
107 #define FC_MEM_NUM 30
109 #define FC_BANK_DYNAMIC 0
110 #define FC_BANK_FIRST 1
111 #define FC_BANK_LANGS 0xfcfcfcfc
113 /* slim_internal.h */
114 #if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3)) && defined(__ELF__)
115 #define FcPrivate __attribute__((__visibility__("hidden")))
116 #define HAVE_GNUC_ATTRIBUTE 1
118 #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
119 #define FcPrivate __hidden
120 #else /* not gcc >= 3.3 and not Sun Studio >= 8 */
124 typedef enum _FcValueBinding {
125 FcValueBindingWeak, FcValueBindingStrong, FcValueBindingSame
129 * Serialized data structures use only offsets instead of pointers
130 * A low bit of 1 indicates an offset.
133 /* Is the provided pointer actually an offset? */
134 #define FcIsEncodedOffset(p) ((((intptr_t) (p)) & 1) != 0)
136 /* Encode offset in a pointer of type t */
137 #define FcOffsetEncode(o,t) ((t *) ((o) | 1))
139 /* Decode a pointer into an offset */
140 #define FcOffsetDecode(p) (((intptr_t) (p)) & ~1)
142 /* Compute pointer offset */
143 #define FcPtrToOffset(b,p) ((intptr_t) (p) - (intptr_t) (b))
145 /* Given base address, offset and type, return a pointer */
146 #define FcOffsetToPtr(b,o,t) ((t *) ((intptr_t) (b) + (o)))
148 /* Given base address, encoded offset and type, return a pointer */
149 #define FcEncodedOffsetToPtr(b,p,t) FcOffsetToPtr(b,FcOffsetDecode(p),t)
151 /* Given base address, pointer and type, return an encoded offset */
152 #define FcPtrToEncodedOffset(b,p,t) FcOffsetEncode(FcPtrToOffset(b,p),t)
154 /* Given a structure, offset member and type, return pointer */
155 #define FcOffsetMember(s,m,t) FcOffsetToPtr(s,(s)->m,t)
157 /* Given a structure, encoded offset member and type, return pointer to member */
158 #define FcEncodedOffsetMember(s,m,t) FcOffsetToPtr(s,FcOffsetDecode((s)->m), t)
160 /* Given a structure, member and type, convert the member to a pointer */
161 #define FcPointerMember(s,m,t) (FcIsEncodedOffset((s)->m) ? \
162 FcEncodedOffsetMember (s,m,t) : \
166 * Serialized values may hold strings, charsets and langsets as pointers,
167 * unfortunately FcValue is an exposed type so we can't just always use
170 #define FcValueString(v) FcPointerMember(v,u.s,FcChar8)
171 #define FcValueCharSet(v) FcPointerMember(v,u.c,const FcCharSet)
172 #define FcValueLangSet(v) FcPointerMember(v,u.l,const FcLangSet)
174 typedef struct _FcValueList *FcValueListPtr;
176 typedef struct _FcValueList {
177 struct _FcValueList *next;
179 FcValueBinding binding;
182 #define FcValueListNext(vl) FcPointerMember(vl,next,FcValueList)
184 typedef int FcObject;
186 typedef struct _FcPatternElt *FcPatternEltPtr;
189 * Pattern elts are stuck in a structure connected to the pattern,
190 * so they get moved around when the pattern is resized. Hence, the
191 * values field must be a pointer/offset instead of just an offset
193 typedef struct _FcPatternElt {
198 #define FcPatternEltValues(pe) FcPointerMember(pe,values,FcValueList)
203 intptr_t elts_offset;
207 #define FcPatternElts(p) FcOffsetMember(p,elts_offset,FcPatternElt)
209 #define FcFontSetFonts(fs) FcPointerMember(fs,fonts,FcPattern *)
211 #define FcFontSetFont(fs,i) (FcIsEncodedOffset((fs)->fonts) ? \
212 FcEncodedOffsetToPtr(fs, \
213 FcFontSetFonts(fs)[i], \
218 FcOpInteger, FcOpDouble, FcOpString, FcOpMatrix, FcOpBool, FcOpCharSet,
220 FcOpField, FcOpConst,
221 FcOpAssign, FcOpAssignReplace,
222 FcOpPrependFirst, FcOpPrepend, FcOpAppend, FcOpAppendLast,
224 FcOpOr, FcOpAnd, FcOpEqual, FcOpNotEqual,
225 FcOpContains, FcOpListing, FcOpNotContains,
226 FcOpLess, FcOpLessEqual, FcOpMore, FcOpMoreEqual,
227 FcOpPlus, FcOpMinus, FcOpTimes, FcOpDivide,
228 FcOpNot, FcOpComma, FcOpFloor, FcOpCeil, FcOpRound, FcOpTrunc,
232 typedef struct _FcExpr {
244 struct _FcExpr *left, *right;
249 typedef enum _FcQual {
250 FcQualAny, FcQualAll, FcQualFirst, FcQualNotFirst
253 #define FcMatchDefault ((FcMatchKind) -1)
255 typedef struct _FcTest {
256 struct _FcTest *next;
264 typedef struct _FcEdit {
265 struct _FcEdit *next;
269 FcValueBinding binding;
272 typedef struct _FcSubst {
273 struct _FcSubst *next;
278 typedef struct _FcCharLeaf {
279 FcChar32 map[256/32];
282 #define FC_REF_CONSTANT -1
285 int ref; /* reference count */
286 int num; /* size of leaves and numbers arrays */
287 intptr_t leaves_offset;
288 intptr_t numbers_offset;
291 #define FcCharSetLeaves(c) FcOffsetMember(c,leaves_offset,intptr_t)
292 #define FcCharSetLeaf(c,i) (FcOffsetToPtr(FcCharSetLeaves(c), \
293 FcCharSetLeaves(c)[i], \
295 #define FcCharSetNumbers(c) FcOffsetMember(c,numbers_offset,FcChar16)
298 int ref; /* reference count */
309 typedef struct _FcStrBuf {
318 int magic; /* FC_CACHE_MAGIC_MMAP or FC_CACHE_ALLOC */
319 int version; /* FC_CACHE_CONTENT_VERSION */
320 intptr_t size; /* size of file */
321 intptr_t dir; /* offset to dir name */
322 intptr_t dirs; /* offset to subdirs */
323 int dirs_count; /* number of subdir strings */
324 intptr_t set; /* offset to font set */
325 int mtime; /* low bits of directory mtime */
330 #define FcCacheDir(c) FcOffsetMember(c,dir,FcChar8)
331 #define FcCacheDirs(c) FcOffsetMember(c,dirs,intptr_t)
332 #define FcCacheSet(c) FcOffsetMember(c,set,FcFontSet)
333 #define FcCacheSubdir(c,i) FcOffsetToPtr (FcCacheDirs(c),\
338 * Used while constructing a directory cache object
341 #define FC_SERIALIZE_HASH_SIZE 8191
343 typedef struct _FcSerializeBucket {
344 struct _FcSerializeBucket *next;
349 typedef struct _FcCharSetFreezer FcCharSetFreezer;
351 typedef struct _FcSerialize {
353 FcCharSetFreezer *cs_freezer;
355 FcSerializeBucket *buckets[FC_SERIALIZE_HASH_SIZE];
359 * To map adobe glyph names to unicode values, a precomputed hash
363 typedef struct _FcGlyphName {
364 FcChar32 ucs; /* unicode value */
365 FcChar8 name[1]; /* name extends beyond struct */
369 * To perform case-insensitive string comparisons, a table
370 * is used which holds three different kinds of folding data.
372 * The first is a range of upper case values mapping to a range
373 * of their lower case equivalents. Within each range, the offset
374 * between upper and lower case is constant.
376 * The second is a range of upper case values which are interleaved
377 * with their lower case equivalents.
379 * The third is a set of raw unicode values mapping to a list
380 * of unicode values for comparison purposes. This allows conversion
381 * of ß to "ss" so that SS, ss and ß all match. A separate array
382 * holds the list of unicode values for each entry.
384 * These are packed into a single table. Using a binary search,
385 * the appropriate entry can be located.
388 #define FC_CASE_FOLD_RANGE 0
389 #define FC_CASE_FOLD_EVEN_ODD 1
390 #define FC_CASE_FOLD_FULL 2
392 typedef struct _FcCaseFold {
396 short offset; /* lower - upper for RANGE, table id for FULL */
399 #define FC_MAX_FILE_LEN 4096
401 /* XXX remove these when we're ready */
403 #define fc_value_string(v) FcValueString(v)
404 #define fc_value_charset(v) FcValueCharSet(v)
405 #define fc_value_langset(v) FcValueLangSet(v)
406 #define fc_storage_type(v) ((v)->type)
408 #define fc_alignof(type) offsetof (struct { char c; type member; }, member)
410 #define FC_CACHE_MAGIC_MMAP 0xFC02FC04
411 #define FC_CACHE_MAGIC_ALLOC 0xFC02FC05
412 #define FC_CACHE_CONTENT_VERSION 2
415 FcChar8 *file; /* original file name */
416 FcChar8 *new; /* temp file name -- write data here */
417 FcChar8 *lck; /* lockfile name (used for locking) */
418 FcChar8 *tmp; /* tmpfile name (used for locking) */
429 * File names loaded from the configuration -- saved here as the
430 * cache file must be consulted before the directories are scanned,
431 * and those directives may occur in any order
433 FcStrSet *configDirs; /* directories to scan for fonts */
435 * Set of allowed blank chars -- used to
436 * trim fonts of bogus glyphs
440 * List of directories containing fonts,
441 * built by recursively scanning the set
442 * of configured directories
446 * List of directories containing cache files.
450 * Names of all of the configuration files used
451 * to create this configuration
453 FcStrSet *configFiles; /* config files loaded */
455 * Substitution instructions for patterns and fonts;
456 * maxObjects is used to allocate appropriate intermediate storage
457 * while performing a whole set of substitutions
459 FcSubst *substPattern; /* substitutions for patterns */
460 FcSubst *substFont; /* substitutions for fonts */
461 FcSubst *substScan; /* substitutions for scanned fonts */
462 int maxObjects; /* maximum number of tests in all substs */
464 * List of patterns used to control font file selection
466 FcStrSet *acceptGlobs;
467 FcStrSet *rejectGlobs;
468 FcFontSet *acceptPatterns;
469 FcFontSet *rejectPatterns;
471 * The set of fonts loaded from the listed directories; the
472 * order within the set does not determine the font selection,
473 * except in the case of identical matches in which case earlier fonts
474 * match preferrentially
476 FcFontSet *fonts[FcSetApplication + 1];
478 * Fontconfig can periodically rescan the system configuration
479 * and font directories. This rescanning occurs when font
480 * listing requests are made, but no more often than rescanInterval
483 time_t rescanTime; /* last time information was scanned */
484 int rescanInterval; /* interval between scans */
487 extern FcPrivate FcConfig *_fcConfig;
489 typedef struct _FcFileTime {
494 typedef struct _FcCharMap FcCharMap;
496 /* watch out; assumes that v is void * -PL */
497 #define ALIGN(v,type) ((void *)(((uintptr_t)(v) + fc_alignof(type) - 1) & ~(fc_alignof(type) - 1)))
504 FcDirCacheScan (const FcChar8 *dir, FcConfig *config);
507 FcDirCacheBuild (FcFontSet *set, const FcChar8 *dir, struct stat *dir_stat, FcStrSet *dirs);
510 FcDirCacheWrite (FcCache *cache, FcConfig *config);
513 FcCacheObjectReference (void *object);
516 FcCacheObjectDereference (void *object);
522 FcDirCacheReference (FcCache *cache, int nref);
527 FcConfigAddConfigDir (FcConfig *config,
531 FcConfigAddFontDir (FcConfig *config,
535 FcConfigAddDir (FcConfig *config,
539 FcConfigAddCacheDir (FcConfig *config,
543 FcConfigAddConfigFile (FcConfig *config,
547 FcConfigAddBlank (FcConfig *config,
551 FcConfigAddEdit (FcConfig *config,
557 FcConfigSetFonts (FcConfig *config,
562 FcConfigCompareValue (const FcValue *m,
567 FcConfigGlobAdd (FcConfig *config,
572 FcConfigAcceptFilename (FcConfig *config,
573 const FcChar8 *filename);
576 FcConfigPatternsAdd (FcConfig *config,
581 FcConfigAcceptFont (FcConfig *config,
582 const FcPattern *font);
585 FcConfigModifiedTime (FcConfig *config);
588 FcConfigAddCache (FcConfig *config, FcCache *cache,
589 FcSetName set, FcStrSet *dirSet);
593 FcAlignSize (intptr_t size);
595 FcPrivate FcSerialize *
596 FcSerializeCreate (void);
599 FcSerializeDestroy (FcSerialize *serialize);
602 FcSerializeAlloc (FcSerialize *serialize, const void *object, int size);
605 FcSerializeReserve (FcSerialize *serialize, int size);
608 FcSerializeOffset (FcSerialize *serialize, const void *object);
611 FcSerializePtr (FcSerialize *serialize, const void *object);
614 FcLangSetSerializeAlloc (FcSerialize *serialize, const FcLangSet *l);
616 FcPrivate FcLangSet *
617 FcLangSetSerialize(FcSerialize *serialize, const FcLangSet *l);
621 FcLangCharSetPopulate (void);
623 FcPrivate FcCharSetFreezer *
624 FcCharSetFreezerCreate (void);
626 FcPrivate const FcCharSet *
627 FcCharSetFreeze (FcCharSetFreezer *freezer, const FcCharSet *fcs);
630 FcCharSetFreezerDestroy (FcCharSetFreezer *freezer);
633 FcNameUnparseCharSet (FcStrBuf *buf, const FcCharSet *c);
635 FcPrivate FcCharSet *
636 FcNameParseCharSet (FcChar8 *string);
638 FcPrivate FcCharLeaf *
639 FcCharSetFindLeafCreate (FcCharSet *fcs, FcChar32 ucs4);
642 FcCharSetSerializeAlloc(FcSerialize *serialize, const FcCharSet *cs);
644 FcPrivate FcCharSet *
645 FcCharSetSerialize(FcSerialize *serialize, const FcCharSet *cs);
648 FcCharSetGetNumbers(const FcCharSet *c);
652 FcValueListPrint (const FcValueListPtr l);
655 FcLangSetPrint (const FcLangSet *ls);
661 FcTestPrint (const FcTest *test);
664 FcExprPrint (const FcExpr *expr);
667 FcEditPrint (const FcEdit *edit);
670 FcSubstPrint (const FcSubst *subst);
673 FcCharSetPrint (const FcCharSet *c);
675 extern FcPrivate int FcDebugVal;
677 #define FcDebug() (FcDebugVal)
684 FcGetDefaultLang (void);
689 FcFileScanConfig (FcFontSet *set,
696 FcDirScanConfig (FcFontSet *set,
709 FcFreeTypeIsExclusiveLang (const FcChar8 *lang);
712 FcFreeTypeHasLang (FcPattern *pattern, const FcChar8 *lang);
715 FcFreeTypeUcs4ToPrivate (FcChar32 ucs4, const FcCharMap *map);
718 FcFreeTypePrivateToUcs4 (FcChar32 private, const FcCharMap *map);
720 FcPrivate const FcCharMap *
721 FcFreeTypeGetPrivateMap (FT_Encoding encoding);
726 FcFontSetSerializeAlloc (FcSerialize *serialize, const FcFontSet *s);
728 FcPrivate FcFontSet *
729 FcFontSetSerialize (FcSerialize *serialize, const FcFontSet * s);
733 FcConfigparse (void);
739 FcConfigerror (char *fmt, ...);
742 FcConfigSaveField (const char *field);
745 FcTestDestroy (FcTest *test);
748 FcExprCreateInteger (int i);
751 FcExprCreateDouble (double d);
754 FcExprCreateString (const FcChar8 *s);
757 FcExprCreateMatrix (const FcMatrix *m);
760 FcExprCreateBool (FcBool b);
763 FcExprCreateNil (void);
766 FcExprCreateField (const char *field);
769 FcExprCreateConst (const FcChar8 *constant);
772 FcExprCreateOp (FcExpr *left, FcOp op, FcExpr *right);
775 FcExprDestroy (FcExpr *e);
778 FcEditDestroy (FcEdit *e);
786 FcMemAlloc (int kind, int size);
789 FcMemFree (int kind, int size);
792 FcPrivate FcLangSet *
793 FcFreeTypeLangSet (const FcCharSet *charset,
794 const FcChar8 *exclusiveLang);
796 FcPrivate FcLangResult
797 FcLangCompare (const FcChar8 *s1, const FcChar8 *s2);
799 FcPrivate const FcCharSet *
800 FcCharSetForLang (const FcChar8 *lang);
802 FcPrivate FcLangSet *
803 FcLangSetPromote (const FcChar8 *lang);
805 FcPrivate FcLangSet *
806 FcNameParseLangSet (const FcChar8 *string);
809 FcNameUnparseLangSet (FcStrBuf *buf, const FcLangSet *ls);
812 FcNameUnparseEscaped (FcPattern *pat, FcBool escape);
817 FcListPatternMatchAny (const FcPattern *p,
818 const FcPattern *font);
825 * NOTE -- this ordering is part of the cache file format.
826 * It must also match the ordering in fcname.c
829 #define FC_FAMILY_OBJECT 1
830 #define FC_FAMILYLANG_OBJECT 2
831 #define FC_STYLE_OBJECT 3
832 #define FC_STYLELANG_OBJECT 4
833 #define FC_FULLNAME_OBJECT 5
834 #define FC_FULLNAMELANG_OBJECT 6
835 #define FC_SLANT_OBJECT 7
836 #define FC_WEIGHT_OBJECT 8
837 #define FC_WIDTH_OBJECT 9
838 #define FC_SIZE_OBJECT 10
839 #define FC_ASPECT_OBJECT 11
840 #define FC_PIXEL_SIZE_OBJECT 12
841 #define FC_SPACING_OBJECT 13
842 #define FC_FOUNDRY_OBJECT 14
843 #define FC_ANTIALIAS_OBJECT 15
844 #define FC_HINT_STYLE_OBJECT 16
845 #define FC_HINTING_OBJECT 17
846 #define FC_VERTICAL_LAYOUT_OBJECT 18
847 #define FC_AUTOHINT_OBJECT 19
848 #define FC_GLOBAL_ADVANCE_OBJECT 20
849 #define FC_FILE_OBJECT 21
850 #define FC_INDEX_OBJECT 22
851 #define FC_RASTERIZER_OBJECT 23
852 #define FC_OUTLINE_OBJECT 24
853 #define FC_SCALABLE_OBJECT 25
854 #define FC_DPI_OBJECT 26
855 #define FC_RGBA_OBJECT 27
856 #define FC_SCALE_OBJECT 28
857 #define FC_MINSPACE_OBJECT 29
858 #define FC_CHAR_WIDTH_OBJECT 30
859 #define FC_CHAR_HEIGHT_OBJECT 31
860 #define FC_MATRIX_OBJECT 32
861 #define FC_CHARSET_OBJECT 33
862 #define FC_LANG_OBJECT 34
863 #define FC_FONTVERSION_OBJECT 35
864 #define FC_CAPABILITY_OBJECT 36
865 #define FC_FONTFORMAT_OBJECT 37
866 #define FC_EMBOLDEN_OBJECT 38
867 #define FC_EMBEDDED_BITMAP_OBJECT 39
868 #define FC_DECORATIVE_OBJECT 40
869 #define FC_MAX_BASE_OBJECT FC_DECORATIVE_OBJECT
872 FcNameBool (const FcChar8 *v, FcBool *result);
875 FcObjectValidType (FcObject object, FcType type);
878 FcObjectFromName (const char * name);
880 FcPrivate const char *
881 FcObjectName (FcObject object);
889 #define FcObjectCompare(a, b) ((int) a - (int) b)
894 FcValueCanonicalize (const FcValue *v);
897 FcValueListDestroy (FcValueListPtr l);
899 FcPrivate FcPatternElt *
900 FcPatternObjectFindElt (const FcPattern *p, FcObject object);
902 FcPrivate FcPatternElt *
903 FcPatternObjectInsertElt (FcPattern *p, FcObject object);
906 FcPatternObjectAddWithBinding (FcPattern *p,
909 FcValueBinding binding,
913 FcPatternObjectAdd (FcPattern *p, FcObject object, FcValue value, FcBool append);
916 FcPatternObjectAddWeak (FcPattern *p, FcObject object, FcValue value, FcBool append);
919 FcPatternObjectGet (const FcPattern *p, FcObject object, int id, FcValue *v);
922 FcPatternObjectDel (FcPattern *p, FcObject object);
925 FcPatternObjectRemove (FcPattern *p, FcObject object, int id);
928 FcPatternObjectAddInteger (FcPattern *p, FcObject object, int i);
931 FcPatternObjectAddDouble (FcPattern *p, FcObject object, double d);
934 FcPatternObjectAddString (FcPattern *p, FcObject object, const FcChar8 *s);
937 FcPatternObjectAddMatrix (FcPattern *p, FcObject object, const FcMatrix *s);
940 FcPatternObjectAddCharSet (FcPattern *p, FcObject object, const FcCharSet *c);
943 FcPatternObjectAddBool (FcPattern *p, FcObject object, FcBool b);
946 FcPatternObjectAddLangSet (FcPattern *p, FcObject object, const FcLangSet *ls);
949 FcPatternObjectGetInteger (const FcPattern *p, FcObject object, int n, int *i);
952 FcPatternObjectGetDouble (const FcPattern *p, FcObject object, int n, double *d);
955 FcPatternObjectGetString (const FcPattern *p, FcObject object, int n, FcChar8 ** s);
958 FcPatternObjectGetMatrix (const FcPattern *p, FcObject object, int n, FcMatrix **s);
961 FcPatternObjectGetCharSet (const FcPattern *p, FcObject object, int n, FcCharSet **c);
964 FcPatternObjectGetBool (const FcPattern *p, FcObject object, int n, FcBool *b);
967 FcPatternObjectGetLangSet (const FcPattern *p, FcObject object, int n, FcLangSet **ls);
970 FcPatternFini (void);
973 FcPatternAppend (FcPattern *p, FcPattern *s);
975 FcPrivate const FcChar8 *
976 FcStrStaticName (const FcChar8 *name);
979 FcStringHash (const FcChar8 *s);
982 FcPatternSerializeAlloc (FcSerialize *serialize, const FcPattern *pat);
984 FcPrivate FcPattern *
985 FcPatternSerialize (FcSerialize *serialize, const FcPattern *pat);
988 FcValueListSerializeAlloc (FcSerialize *serialize, const FcValueList *pat);
990 FcPrivate FcValueList *
991 FcValueListSerialize (FcSerialize *serialize, const FcValueList *pat);
997 extern FcPrivate const FcMatrix FcIdentityMatrix;
1000 FcMatrixFree (FcMatrix *mat);
1004 FcStrSetSort (FcStrSet * set);
1007 FcStrBufInit (FcStrBuf *buf, FcChar8 *init, int size);
1010 FcStrBufDestroy (FcStrBuf *buf);
1013 FcStrBufDone (FcStrBuf *buf);
1016 FcStrBufChar (FcStrBuf *buf, FcChar8 c);
1019 FcStrBufString (FcStrBuf *buf, const FcChar8 *s);
1022 FcStrBufData (FcStrBuf *buf, const FcChar8 *s, int len);
1025 FcStrCmpIgnoreBlanksAndCase (const FcChar8 *s1, const FcChar8 *s2);
1027 FcPrivate const FcChar8 *
1028 FcStrContainsIgnoreBlanksAndCase (const FcChar8 *s1, const FcChar8 *s2);
1030 FcPrivate const FcChar8 *
1031 FcStrContainsIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
1033 FcPrivate const FcChar8 *
1034 FcStrContainsWord (const FcChar8 *s1, const FcChar8 *s2);
1037 FcStrUsesHome (const FcChar8 *s);
1040 FcStrLastSlash (const FcChar8 *path);
1043 FcStrHashIgnoreCase (const FcChar8 *s);
1046 FcStrCanonFilename (const FcChar8 *s);
1049 FcStrSerializeAlloc (FcSerialize *serialize, const FcChar8 *str);
1052 FcStrSerialize (FcSerialize *serialize, const FcChar8 *str);
1054 #endif /* _FC_INT_H_ */