]> git.wh0rd.org - fontconfig.git/blame_incremental - fontconfig/fontconfig.h
fc-cache: add a --root option
[fontconfig.git] / fontconfig / fontconfig.h
... / ...
CommitLineData
1/*
2 * fontconfig/fontconfig/fontconfig.h
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 the author(s) not be used in
11 * advertising or publicity pertaining to distribution of the software without
12 * specific, written prior permission. The authors make 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 * THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18 * EVENT SHALL THE AUTHOR(S) 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 <stdarg.h>
31
32#if defined(__GNUC__) && (__GNUC__ >= 4)
33#define FC_ATTRIBUTE_SENTINEL(x) __attribute__((__sentinel__(0)))
34#else
35#define FC_ATTRIBUTE_SENTINEL(x)
36#endif
37
38#ifndef FcPublic
39#define FcPublic
40#endif
41
42typedef unsigned char FcChar8;
43typedef unsigned short FcChar16;
44typedef unsigned int FcChar32;
45typedef int FcBool;
46
47/*
48 * Current Fontconfig version number. This same number
49 * must appear in the fontconfig configure.in file. Yes,
50 * it'a a pain to synchronize version numbers like this.
51 */
52
53#define FC_MAJOR 2
54#define FC_MINOR 8
55#define FC_REVISION 0
56
57#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))
58
59/*
60 * Current font cache file format version
61 * This is appended to the cache files so that multiple
62 * versions of the library will peacefully coexist
63 *
64 * Change this value whenever the disk format for the cache file
65 * changes in any non-compatible way. Try to avoid such changes as
66 * it means multiple copies of the font information.
67 */
68
69#define FC_CACHE_VERSION "3"
70
71#define FcTrue 1
72#define FcFalse 0
73
74#define FC_FAMILY "family" /* String */
75#define FC_STYLE "style" /* String */
76#define FC_SLANT "slant" /* Int */
77#define FC_WEIGHT "weight" /* Int */
78#define FC_SIZE "size" /* Double */
79#define FC_ASPECT "aspect" /* Double */
80#define FC_PIXEL_SIZE "pixelsize" /* Double */
81#define FC_SPACING "spacing" /* Int */
82#define FC_FOUNDRY "foundry" /* String */
83#define FC_ANTIALIAS "antialias" /* Bool (depends) */
84#define FC_HINTING "hinting" /* Bool (true) */
85#define FC_HINT_STYLE "hintstyle" /* Int */
86#define FC_VERTICAL_LAYOUT "verticallayout" /* Bool (false) */
87#define FC_AUTOHINT "autohint" /* Bool (false) */
88#define FC_GLOBAL_ADVANCE "globaladvance" /* Bool (true) */
89#define FC_WIDTH "width" /* Int */
90#define FC_FILE "file" /* String */
91#define FC_INDEX "index" /* Int */
92#define FC_FT_FACE "ftface" /* FT_Face */
93#define FC_RASTERIZER "rasterizer" /* String */
94#define FC_OUTLINE "outline" /* Bool */
95#define FC_SCALABLE "scalable" /* Bool */
96#define FC_SCALE "scale" /* double */
97#define FC_DPI "dpi" /* double */
98#define FC_RGBA "rgba" /* Int */
99#define FC_MINSPACE "minspace" /* Bool use minimum line spacing */
100#define FC_SOURCE "source" /* String (deprecated) */
101#define FC_CHARSET "charset" /* CharSet */
102#define FC_LANG "lang" /* String RFC 3066 langs */
103#define FC_FONTVERSION "fontversion" /* Int from 'head' table */
104#define FC_FULLNAME "fullname" /* String */
105#define FC_FAMILYLANG "familylang" /* String RFC 3066 langs */
106#define FC_STYLELANG "stylelang" /* String RFC 3066 langs */
107#define FC_FULLNAMELANG "fullnamelang" /* String RFC 3066 langs */
108#define FC_CAPABILITY "capability" /* String */
109#define FC_FONTFORMAT "fontformat" /* String */
110#define FC_EMBOLDEN "embolden" /* Bool - true if emboldening needed*/
111#define FC_EMBEDDED_BITMAP "embeddedbitmap" /* Bool - true to enable embedded bitmaps */
112#define FC_DECORATIVE "decorative" /* Bool - true if style is a decorative variant */
113#define FC_LCD_FILTER "lcdfilter" /* Int */
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#define FC_WEIGHT_EXTRABLACK 215
140#define FC_WEIGHT_ULTRABLACK FC_WEIGHT_EXTRABLACK
141
142#define FC_SLANT_ROMAN 0
143#define FC_SLANT_ITALIC 100
144#define FC_SLANT_OBLIQUE 110
145
146#define FC_WIDTH_ULTRACONDENSED 50
147#define FC_WIDTH_EXTRACONDENSED 63
148#define FC_WIDTH_CONDENSED 75
149#define FC_WIDTH_SEMICONDENSED 87
150#define FC_WIDTH_NORMAL 100
151#define FC_WIDTH_SEMIEXPANDED 113
152#define FC_WIDTH_EXPANDED 125
153#define FC_WIDTH_EXTRAEXPANDED 150
154#define FC_WIDTH_ULTRAEXPANDED 200
155
156#define FC_PROPORTIONAL 0
157#define FC_DUAL 90
158#define FC_MONO 100
159#define FC_CHARCELL 110
160
161/* sub-pixel order */
162#define FC_RGBA_UNKNOWN 0
163#define FC_RGBA_RGB 1
164#define FC_RGBA_BGR 2
165#define FC_RGBA_VRGB 3
166#define FC_RGBA_VBGR 4
167#define FC_RGBA_NONE 5
168
169/* hinting style */
170#define FC_HINT_NONE 0
171#define FC_HINT_SLIGHT 1
172#define FC_HINT_MEDIUM 2
173#define FC_HINT_FULL 3
174
175/* LCD filter */
176#define FC_LCD_NONE 0
177#define FC_LCD_DEFAULT 1
178#define FC_LCD_LIGHT 2
179#define FC_LCD_LEGACY 3
180
181typedef enum _FcType {
182 FcTypeVoid,
183 FcTypeInteger,
184 FcTypeDouble,
185 FcTypeString,
186 FcTypeBool,
187 FcTypeMatrix,
188 FcTypeCharSet,
189 FcTypeFTFace,
190 FcTypeLangSet
191} FcType;
192
193typedef struct _FcMatrix {
194 double xx, xy, yx, yy;
195} FcMatrix;
196
197#define FcMatrixInit(m) ((m)->xx = (m)->yy = 1, \
198 (m)->xy = (m)->yx = 0)
199
200/*
201 * A data structure to represent the available glyphs in a font.
202 * This is represented as a sparse boolean btree.
203 */
204
205typedef struct _FcCharSet FcCharSet;
206
207typedef struct _FcObjectType {
208 const char *object;
209 FcType type;
210} FcObjectType;
211
212typedef struct _FcConstant {
213 const FcChar8 *name;
214 const char *object;
215 int value;
216} FcConstant;
217
218typedef enum _FcResult {
219 FcResultMatch, FcResultNoMatch, FcResultTypeMismatch, FcResultNoId,
220 FcResultOutOfMemory
221} FcResult;
222
223typedef struct _FcPattern FcPattern;
224
225typedef struct _FcLangSet FcLangSet;
226
227typedef struct _FcValue {
228 FcType type;
229 union {
230 const FcChar8 *s;
231 int i;
232 FcBool b;
233 double d;
234 const FcMatrix *m;
235 const FcCharSet *c;
236 void *f;
237 const FcLangSet *l;
238 } u;
239} FcValue;
240
241typedef struct _FcFontSet {
242 int nfont;
243 int sfont;
244 FcPattern **fonts;
245} FcFontSet;
246
247typedef struct _FcObjectSet {
248 int nobject;
249 int sobject;
250 const char **objects;
251} FcObjectSet;
252
253typedef enum _FcMatchKind {
254 FcMatchPattern, FcMatchFont, FcMatchScan
255} FcMatchKind;
256
257typedef enum _FcLangResult {
258 FcLangEqual = 0,
259 FcLangDifferentCountry = 1,
260 FcLangDifferentTerritory = 1,
261 FcLangDifferentLang = 2
262} FcLangResult;
263
264typedef enum _FcSetName {
265 FcSetSystem = 0,
266 FcSetApplication = 1
267} FcSetName;
268
269typedef struct _FcAtomic FcAtomic;
270
271#if defined(__cplusplus) || defined(c_plusplus) /* for C++ V2.0 */
272#define _FCFUNCPROTOBEGIN extern "C" { /* do not leave open across includes */
273#define _FCFUNCPROTOEND }
274#else
275#define _FCFUNCPROTOBEGIN
276#define _FCFUNCPROTOEND
277#endif
278
279typedef enum { FcEndianBig, FcEndianLittle } FcEndian;
280
281typedef struct _FcConfig FcConfig;
282
283typedef struct _FcGlobalCache FcFileCache;
284
285typedef struct _FcBlanks FcBlanks;
286
287typedef struct _FcStrList FcStrList;
288
289typedef struct _FcStrSet FcStrSet;
290
291typedef struct _FcCache FcCache;
292
293_FCFUNCPROTOBEGIN
294
295/* fcblanks.c */
296FcPublic FcBlanks *
297FcBlanksCreate (void);
298
299FcPublic void
300FcBlanksDestroy (FcBlanks *b);
301
302FcPublic FcBool
303FcBlanksAdd (FcBlanks *b, FcChar32 ucs4);
304
305FcPublic FcBool
306FcBlanksIsMember (FcBlanks *b, FcChar32 ucs4);
307
308/* fccache.c */
309
310FcPublic int
311FcStat (FcConfig *config, const FcChar8 *file, struct stat *statb);
312
313FcPublic const FcChar8 *
314FcCacheDir(const FcCache *c);
315
316FcPublic FcFontSet *
317FcCacheCopySet(const FcCache *c);
318
319FcPublic const FcChar8 *
320FcCacheSubdir (const FcCache *c, int i);
321
322FcPublic int
323FcCacheNumSubdir (const FcCache *c);
324
325FcPublic int
326FcCacheNumFont (const FcCache *c);
327
328FcPublic FcBool
329FcDirCacheUnlink (const FcChar8 *dir, FcConfig *config);
330
331FcPublic FcBool
332FcDirCacheValid (const FcChar8 *cache_file);
333
334/* fccfg.c */
335FcPublic FcChar8 *
336FcConfigHome (void);
337
338FcPublic FcBool
339FcConfigEnableHome (FcBool enable);
340
341FcPublic FcChar8 *
342FcConfigFilename (const FcChar8 *url);
343
344FcPublic FcChar8 *
345FcConfigFilename2 (FcConfig *config, const FcChar8 *url);
346
347FcPublic FcConfig *
348FcConfigCreate (void);
349
350FcPublic FcConfig *
351FcConfigReference (FcConfig *config);
352
353FcPublic void
354FcConfigDestroy (FcConfig *config);
355
356FcPublic FcBool
357FcConfigSetCurrent (FcConfig *config);
358
359FcPublic FcConfig *
360FcConfigGetCurrent (void);
361
362FcPublic FcBool
363FcConfigUptoDate (FcConfig *config);
364
365FcPublic FcBool
366FcConfigBuildFonts (FcConfig *config);
367
368FcPublic FcStrList *
369FcConfigGetFontDirs (FcConfig *config);
370
371FcPublic FcStrList *
372FcConfigGetConfigDirs (FcConfig *config);
373
374FcPublic FcStrList *
375FcConfigGetConfigFiles (FcConfig *config);
376
377FcPublic FcChar8 *
378FcConfigGetCache (FcConfig *config);
379
380FcPublic FcBlanks *
381FcConfigGetBlanks (FcConfig *config);
382
383FcPublic FcStrList *
384FcConfigGetCacheDirs (FcConfig *config);
385
386FcPublic int
387FcConfigGetRescanInterval (FcConfig *config);
388
389FcPublic FcBool
390FcConfigSetRescanInterval (FcConfig *config, int rescanInterval);
391
392FcPublic FcFontSet *
393FcConfigGetFonts (FcConfig *config,
394 FcSetName set);
395
396FcPublic FcBool
397FcConfigAppFontAddFile (FcConfig *config,
398 const FcChar8 *file);
399
400FcPublic FcBool
401FcConfigAppFontAddDir (FcConfig *config,
402 const FcChar8 *dir);
403
404FcPublic void
405FcConfigAppFontClear (FcConfig *config);
406
407FcPublic FcBool
408FcConfigSubstituteWithPat (FcConfig *config,
409 FcPattern *p,
410 FcPattern *p_pat,
411 FcMatchKind kind);
412
413FcPublic FcBool
414FcConfigSubstitute (FcConfig *config,
415 FcPattern *p,
416 FcMatchKind kind);
417
418FcPublic void
419FcConfigSetRoot (FcConfig *config,
420 const FcChar8 *path);
421
422FcPublic const FcChar8 *
423FcConfigGetRoot (FcConfig *config);
424
425FcPublic FcChar8 *
426FcConfigGetRootPlus (FcConfig *config,
427 const FcChar8 *path);
428
429/* fccharset.c */
430FcPublic FcCharSet*
431FcCharSetCreate (void);
432
433/* deprecated alias for FcCharSetCreate */
434FcPublic FcCharSet *
435FcCharSetNew (void);
436
437FcPublic void
438FcCharSetDestroy (FcCharSet *fcs);
439
440FcPublic FcBool
441FcCharSetAddChar (FcCharSet *fcs, FcChar32 ucs4);
442
443FcPublic FcBool
444FcCharSetDelChar (FcCharSet *fcs, FcChar32 ucs4);
445
446FcPublic FcCharSet*
447FcCharSetCopy (FcCharSet *src);
448
449FcPublic FcBool
450FcCharSetEqual (const FcCharSet *a, const FcCharSet *b);
451
452FcPublic FcCharSet*
453FcCharSetIntersect (const FcCharSet *a, const FcCharSet *b);
454
455FcPublic FcCharSet*
456FcCharSetUnion (const FcCharSet *a, const FcCharSet *b);
457
458FcPublic FcCharSet*
459FcCharSetSubtract (const FcCharSet *a, const FcCharSet *b);
460
461FcPublic FcBool
462FcCharSetMerge (FcCharSet *a, const FcCharSet *b, FcBool *changed);
463
464FcPublic FcBool
465FcCharSetHasChar (const FcCharSet *fcs, FcChar32 ucs4);
466
467FcPublic FcChar32
468FcCharSetCount (const FcCharSet *a);
469
470FcPublic FcChar32
471FcCharSetIntersectCount (const FcCharSet *a, const FcCharSet *b);
472
473FcPublic FcChar32
474FcCharSetSubtractCount (const FcCharSet *a, const FcCharSet *b);
475
476FcPublic FcBool
477FcCharSetIsSubset (const FcCharSet *a, const FcCharSet *b);
478
479#define FC_CHARSET_MAP_SIZE (256/32)
480#define FC_CHARSET_DONE ((FcChar32) -1)
481
482FcPublic FcChar32
483FcCharSetFirstPage (const FcCharSet *a,
484 FcChar32 map[FC_CHARSET_MAP_SIZE],
485 FcChar32 *next);
486
487FcPublic FcChar32
488FcCharSetNextPage (const FcCharSet *a,
489 FcChar32 map[FC_CHARSET_MAP_SIZE],
490 FcChar32 *next);
491
492/*
493 * old coverage API, rather hard to use correctly
494 */
495
496FcPublic FcChar32
497FcCharSetCoverage (const FcCharSet *a, FcChar32 page, FcChar32 *result);
498
499/* fcdbg.c */
500FcPublic void
501FcValuePrint (const FcValue v);
502
503FcPublic void
504FcPatternPrint (const FcPattern *p);
505
506FcPublic void
507FcFontSetPrint (const FcFontSet *s);
508
509/* fcdefault.c */
510FcPublic void
511FcDefaultSubstitute (FcPattern *pattern);
512
513/* fcdir.c */
514FcPublic FcBool
515FcFileIsDir (const FcChar8 *file);
516
517FcPublic FcBool
518FcFileIsDir2 (FcConfig *config, const FcChar8 *file);
519
520FcPublic FcBool
521FcFileScan (FcFontSet *set,
522 FcStrSet *dirs,
523 FcFileCache *cache,
524 FcBlanks *blanks,
525 const FcChar8 *file,
526 FcBool force);
527
528FcPublic FcBool
529FcDirScan (FcFontSet *set,
530 FcStrSet *dirs,
531 FcFileCache *cache,
532 FcBlanks *blanks,
533 const FcChar8 *dir,
534 FcBool force);
535
536FcPublic FcBool
537FcDirSave (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir);
538
539FcPublic FcCache *
540FcDirCacheLoad (const FcChar8 *dir, FcConfig *config, FcChar8 **cache_file);
541
542FcPublic FcCache *
543FcDirCacheRead (const FcChar8 *dir, FcBool force, FcConfig *config);
544
545FcPublic FcCache *
546FcDirCacheLoadFile (const FcChar8 *cache_file, struct stat *file_stat);
547
548FcPublic FcCache *
549FcDirCacheLoadFile2 (const FcChar8 *cache_file, FcConfig *config, struct stat *file_stat);
550
551FcPublic void
552FcDirCacheUnload (FcCache *cache);
553
554/* fcfreetype.c */
555FcPublic FcPattern *
556FcFreeTypeQuery (const FcChar8 *file, int id, FcBlanks *blanks, int *count);
557
558FcPublic FcPattern *
559FcFreeTypeQuery2 (FcConfig *config, const FcChar8 *file, int id, FcBlanks *blanks, int *count);
560
561/* fcfs.c */
562
563FcPublic FcFontSet *
564FcFontSetCreate (void);
565
566FcPublic void
567FcFontSetDestroy (FcFontSet *s);
568
569FcPublic FcBool
570FcFontSetAdd (FcFontSet *s, FcPattern *font);
571
572/* fcinit.c */
573FcPublic FcConfig *
574FcInitLoadConfig (void);
575
576FcPublic FcConfig *
577FcInitLoadConfigAndFonts (void);
578
579FcPublic FcBool
580FcInit (void);
581
582FcPublic void
583FcFini (void);
584
585FcPublic int
586FcGetVersion (void);
587
588FcPublic FcBool
589FcInitReinitialize (void);
590
591FcPublic FcBool
592FcInitBringUptoDate (void);
593
594/* fclang.c */
595FcPublic FcStrSet *
596FcGetLangs (void);
597
598FcPublic const FcCharSet *
599FcLangGetCharSet (const FcChar8 *lang);
600
601FcPublic FcLangSet*
602FcLangSetCreate (void);
603
604FcPublic void
605FcLangSetDestroy (FcLangSet *ls);
606
607FcPublic FcLangSet*
608FcLangSetCopy (const FcLangSet *ls);
609
610FcPublic FcBool
611FcLangSetAdd (FcLangSet *ls, const FcChar8 *lang);
612
613FcPublic FcBool
614FcLangSetDel (FcLangSet *ls, const FcChar8 *lang);
615
616FcPublic FcLangResult
617FcLangSetHasLang (const FcLangSet *ls, const FcChar8 *lang);
618
619FcPublic FcLangResult
620FcLangSetCompare (const FcLangSet *lsa, const FcLangSet *lsb);
621
622FcPublic FcBool
623FcLangSetContains (const FcLangSet *lsa, const FcLangSet *lsb);
624
625FcPublic FcBool
626FcLangSetEqual (const FcLangSet *lsa, const FcLangSet *lsb);
627
628FcPublic FcChar32
629FcLangSetHash (const FcLangSet *ls);
630
631FcPublic FcStrSet *
632FcLangSetGetLangs (const FcLangSet *ls);
633
634FcPublic FcLangSet *
635FcLangSetUnion (const FcLangSet *a, const FcLangSet *b);
636
637FcPublic FcLangSet *
638FcLangSetSubtract (const FcLangSet *a, const FcLangSet *b);
639
640/* fclist.c */
641FcPublic FcObjectSet *
642FcObjectSetCreate (void);
643
644FcPublic FcBool
645FcObjectSetAdd (FcObjectSet *os, const char *object);
646
647FcPublic void
648FcObjectSetDestroy (FcObjectSet *os);
649
650FcPublic FcObjectSet *
651FcObjectSetVaBuild (const char *first, va_list va);
652
653FcPublic FcObjectSet *
654FcObjectSetBuild (const char *first, ...) FC_ATTRIBUTE_SENTINEL(0);
655
656FcPublic FcFontSet *
657FcFontSetList (FcConfig *config,
658 FcFontSet **sets,
659 int nsets,
660 FcPattern *p,
661 FcObjectSet *os);
662
663FcPublic FcFontSet *
664FcFontList (FcConfig *config,
665 FcPattern *p,
666 FcObjectSet *os);
667
668/* fcatomic.c */
669
670FcPublic FcAtomic *
671FcAtomicCreate (const FcChar8 *file);
672
673FcPublic FcBool
674FcAtomicLock (FcAtomic *atomic);
675
676FcPublic FcBool
677FcAtomicLock2 (FcConfig *config, FcAtomic *atomic);
678
679FcPublic FcChar8 *
680FcAtomicNewFile (FcAtomic *atomic);
681
682FcPublic FcChar8 *
683FcAtomicOrigFile (FcAtomic *atomic);
684
685FcPublic FcBool
686FcAtomicReplaceOrig (FcAtomic *atomic);
687
688FcPublic void
689FcAtomicDeleteNew (FcAtomic *atomic);
690
691FcPublic void
692FcAtomicUnlock (FcAtomic *atomic);
693
694FcPublic void
695FcAtomicDestroy (FcAtomic *atomic);
696
697/* fcmatch.c */
698FcPublic FcPattern *
699FcFontSetMatch (FcConfig *config,
700 FcFontSet **sets,
701 int nsets,
702 FcPattern *p,
703 FcResult *result);
704
705FcPublic FcPattern *
706FcFontMatch (FcConfig *config,
707 FcPattern *p,
708 FcResult *result);
709
710FcPublic FcPattern *
711FcFontRenderPrepare (FcConfig *config,
712 FcPattern *pat,
713 FcPattern *font);
714
715FcPublic FcFontSet *
716FcFontSetSort (FcConfig *config,
717 FcFontSet **sets,
718 int nsets,
719 FcPattern *p,
720 FcBool trim,
721 FcCharSet **csp,
722 FcResult *result);
723
724FcPublic FcFontSet *
725FcFontSort (FcConfig *config,
726 FcPattern *p,
727 FcBool trim,
728 FcCharSet **csp,
729 FcResult *result);
730
731FcPublic void
732FcFontSetSortDestroy (FcFontSet *fs);
733
734/* fcmatrix.c */
735FcPublic FcMatrix *
736FcMatrixCopy (const FcMatrix *mat);
737
738FcPublic FcBool
739FcMatrixEqual (const FcMatrix *mat1, const FcMatrix *mat2);
740
741FcPublic void
742FcMatrixMultiply (FcMatrix *result, const FcMatrix *a, const FcMatrix *b);
743
744FcPublic void
745FcMatrixRotate (FcMatrix *m, double c, double s);
746
747FcPublic void
748FcMatrixScale (FcMatrix *m, double sx, double sy);
749
750FcPublic void
751FcMatrixShear (FcMatrix *m, double sh, double sv);
752
753/* fcname.c */
754
755FcPublic FcBool
756FcNameRegisterObjectTypes (const FcObjectType *types, int ntype);
757
758FcPublic FcBool
759FcNameUnregisterObjectTypes (const FcObjectType *types, int ntype);
760
761FcPublic const FcObjectType *
762FcNameGetObjectType (const char *object);
763
764FcPublic FcBool
765FcNameRegisterConstants (const FcConstant *consts, int nconsts);
766
767FcPublic FcBool
768FcNameUnregisterConstants (const FcConstant *consts, int nconsts);
769
770FcPublic const FcConstant *
771FcNameGetConstant (const FcChar8 *string);
772
773FcPublic FcBool
774FcNameConstant (const FcChar8 *string, int *result);
775
776FcPublic FcPattern *
777FcNameParse (const FcChar8 *name);
778
779FcPublic FcChar8 *
780FcNameUnparse (FcPattern *pat);
781
782/* fcpat.c */
783FcPublic FcPattern *
784FcPatternCreate (void);
785
786FcPublic FcPattern *
787FcPatternDuplicate (const FcPattern *p);
788
789FcPublic void
790FcPatternReference (FcPattern *p);
791
792FcPublic FcPattern *
793FcPatternFilter (FcPattern *p, const FcObjectSet *os);
794
795FcPublic void
796FcValueDestroy (FcValue v);
797
798FcPublic FcBool
799FcValueEqual (FcValue va, FcValue vb);
800
801FcPublic FcValue
802FcValueSave (FcValue v);
803
804FcPublic void
805FcPatternDestroy (FcPattern *p);
806
807FcPublic FcBool
808FcPatternEqual (const FcPattern *pa, const FcPattern *pb);
809
810FcPublic FcBool
811FcPatternEqualSubset (const FcPattern *pa, const FcPattern *pb, const FcObjectSet *os);
812
813FcPublic FcChar32
814FcPatternHash (const FcPattern *p);
815
816FcPublic FcBool
817FcPatternAdd (FcPattern *p, const char *object, FcValue value, FcBool append);
818
819FcPublic FcBool
820FcPatternAddWeak (FcPattern *p, const char *object, FcValue value, FcBool append);
821
822FcPublic FcResult
823FcPatternGet (const FcPattern *p, const char *object, int id, FcValue *v);
824
825FcPublic FcBool
826FcPatternDel (FcPattern *p, const char *object);
827
828FcPublic FcBool
829FcPatternRemove (FcPattern *p, const char *object, int id);
830
831FcPublic FcBool
832FcPatternAddInteger (FcPattern *p, const char *object, int i);
833
834FcPublic FcBool
835FcPatternAddDouble (FcPattern *p, const char *object, double d);
836
837FcPublic FcBool
838FcPatternAddString (FcPattern *p, const char *object, const FcChar8 *s);
839
840FcPublic FcBool
841FcPatternAddMatrix (FcPattern *p, const char *object, const FcMatrix *s);
842
843FcPublic FcBool
844FcPatternAddCharSet (FcPattern *p, const char *object, const FcCharSet *c);
845
846FcPublic FcBool
847FcPatternAddBool (FcPattern *p, const char *object, FcBool b);
848
849FcPublic FcBool
850FcPatternAddLangSet (FcPattern *p, const char *object, const FcLangSet *ls);
851
852FcPublic FcResult
853FcPatternGetInteger (const FcPattern *p, const char *object, int n, int *i);
854
855FcPublic FcResult
856FcPatternGetDouble (const FcPattern *p, const char *object, int n, double *d);
857
858FcPublic FcResult
859FcPatternGetString (const FcPattern *p, const char *object, int n, FcChar8 ** s);
860
861FcPublic FcResult
862FcPatternGetMatrix (const FcPattern *p, const char *object, int n, FcMatrix **s);
863
864FcPublic FcResult
865FcPatternGetCharSet (const FcPattern *p, const char *object, int n, FcCharSet **c);
866
867FcPublic FcResult
868FcPatternGetBool (const FcPattern *p, const char *object, int n, FcBool *b);
869
870FcPublic FcResult
871FcPatternGetLangSet (const FcPattern *p, const char *object, int n, FcLangSet **ls);
872
873FcPublic FcPattern *
874FcPatternVaBuild (FcPattern *p, va_list va);
875
876FcPublic FcPattern *
877FcPatternBuild (FcPattern *p, ...) FC_ATTRIBUTE_SENTINEL(0);
878
879FcPublic FcChar8 *
880FcPatternFormat (FcPattern *pat, const FcChar8 *format);
881
882/* fcstr.c */
883
884FcPublic FcChar8 *
885FcStrCopy (const FcChar8 *s);
886
887FcPublic FcChar8 *
888FcStrCopyFilename (const FcChar8 *s);
889
890FcPublic FcChar8 *
891FcStrPlus (const FcChar8 *s1, const FcChar8 *s2);
892
893FcPublic FcChar8 *
894FcStrPathPlus (const FcChar8 *s1, ...);
895
896FcPublic void
897FcStrFree (FcChar8 *s);
898
899/* These are ASCII only, suitable only for pattern element names */
900#define FcIsUpper(c) ((0101 <= (c) && (c) <= 0132))
901#define FcIsLower(c) ((0141 <= (c) && (c) <= 0172))
902#define FcToLower(c) (FcIsUpper(c) ? (c) - 0101 + 0141 : (c))
903
904FcPublic FcChar8 *
905FcStrDowncase (const FcChar8 *s);
906
907FcPublic int
908FcStrCmpIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
909
910FcPublic int
911FcStrCmp (const FcChar8 *s1, const FcChar8 *s2);
912
913FcPublic const FcChar8 *
914FcStrStrIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
915
916FcPublic const FcChar8 *
917FcStrStr (const FcChar8 *s1, const FcChar8 *s2);
918
919FcPublic int
920FcUtf8ToUcs4 (const FcChar8 *src_orig,
921 FcChar32 *dst,
922 int len);
923
924FcPublic FcBool
925FcUtf8Len (const FcChar8 *string,
926 int len,
927 int *nchar,
928 int *wchar);
929
930#define FC_UTF8_MAX_LEN 6
931
932FcPublic int
933FcUcs4ToUtf8 (FcChar32 ucs4,
934 FcChar8 dest[FC_UTF8_MAX_LEN]);
935
936FcPublic int
937FcUtf16ToUcs4 (const FcChar8 *src_orig,
938 FcEndian endian,
939 FcChar32 *dst,
940 int len); /* in bytes */
941
942FcPublic FcBool
943FcUtf16Len (const FcChar8 *string,
944 FcEndian endian,
945 int len, /* in bytes */
946 int *nchar,
947 int *wchar);
948
949FcPublic FcChar8 *
950FcStrDirname (const FcChar8 *file);
951
952FcPublic FcChar8 *
953FcStrBasename (const FcChar8 *file);
954
955FcPublic FcStrSet *
956FcStrSetCreate (void);
957
958FcPublic FcBool
959FcStrSetMember (FcStrSet *set, const FcChar8 *s);
960
961FcPublic FcBool
962FcStrSetEqual (FcStrSet *sa, FcStrSet *sb);
963
964FcPublic FcBool
965FcStrSetAdd (FcStrSet *set, const FcChar8 *s);
966
967FcPublic FcBool
968FcStrSetAddFilename (FcStrSet *set, const FcChar8 *s);
969
970FcPublic FcBool
971FcStrSetDel (FcStrSet *set, const FcChar8 *s);
972
973FcPublic void
974FcStrSetDestroy (FcStrSet *set);
975
976FcPublic FcStrList *
977FcStrListCreate (FcStrSet *set);
978
979FcPublic FcChar8 *
980FcStrListNext (FcStrList *list);
981
982FcPublic void
983FcStrListDone (FcStrList *list);
984
985/* fcxml.c */
986FcPublic FcBool
987FcConfigParseAndLoad (FcConfig *config, const FcChar8 *file, FcBool complain);
988
989_FCFUNCPROTOEND
990
991#undef FC_ATTRIBUTE_SENTINEL
992
993
994#ifndef _FCINT_H_
995
996/*
997 * Deprecated functions are placed here to help users fix their code without
998 * digging through documentation
999 */
1000
1001#define FcConfigGetRescanInverval FcConfigGetRescanInverval_REPLACE_BY_FcConfigGetRescanInterval
1002#define FcConfigSetRescanInverval FcConfigSetRescanInverval_REPLACE_BY_FcConfigSetRescanInterval
1003
1004#endif
1005
1006#endif /* _FONTCONFIG_H_ */