]> git.wh0rd.org - fontconfig.git/blame_incremental - fontconfig/fontconfig.h
Handle UltraBlack weight.
[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 2
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#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
175typedef enum _FcType {
176 FcTypeVoid,
177 FcTypeInteger,
178 FcTypeDouble,
179 FcTypeString,
180 FcTypeBool,
181 FcTypeMatrix,
182 FcTypeCharSet,
183 FcTypeFTFace,
184 FcTypeLangSet
185} FcType;
186
187typedef struct _FcMatrix {
188 double xx, xy, yx, yy;
189} FcMatrix;
190
191#define FcMatrixInit(m) ((m)->xx = (m)->yy = 1, \
192 (m)->xy = (m)->yx = 0)
193
194/*
195 * A data structure to represent the available glyphs in a font.
196 * This is represented as a sparse boolean btree.
197 */
198
199typedef struct _FcCharSet FcCharSet;
200
201typedef struct _FcObjectType {
202 const char *object;
203 FcType type;
204} FcObjectType;
205
206typedef struct _FcConstant {
207 const FcChar8 *name;
208 const char *object;
209 int value;
210} FcConstant;
211
212typedef enum _FcResult {
213 FcResultMatch, FcResultNoMatch, FcResultTypeMismatch, FcResultNoId,
214 FcResultOutOfMemory
215} FcResult;
216
217typedef struct _FcPattern FcPattern;
218
219typedef struct _FcLangSet FcLangSet;
220
221typedef struct _FcValue {
222 FcType type;
223 union {
224 const FcChar8 *s;
225 int i;
226 FcBool b;
227 double d;
228 const FcMatrix *m;
229 const FcCharSet *c;
230 void *f;
231 const FcPattern *p;
232 const FcLangSet *l;
233 } u;
234} FcValue;
235
236typedef struct _FcFontSet {
237 int nfont;
238 int sfont;
239 FcPattern **fonts;
240} FcFontSet;
241
242typedef struct _FcObjectSet {
243 int nobject;
244 int sobject;
245 const char **objects;
246} FcObjectSet;
247
248typedef enum _FcMatchKind {
249 FcMatchPattern, FcMatchFont, FcMatchScan
250} FcMatchKind;
251
252typedef enum _FcLangResult {
253 FcLangEqual, FcLangDifferentCountry, FcLangDifferentLang
254} FcLangResult;
255
256typedef enum _FcSetName {
257 FcSetSystem = 0,
258 FcSetApplication = 1
259} FcSetName;
260
261typedef struct _FcAtomic FcAtomic;
262
263#if defined(__cplusplus) || defined(c_plusplus) /* for C++ V2.0 */
264#define _FCFUNCPROTOBEGIN extern "C" { /* do not leave open across includes */
265#define _FCFUNCPROTOEND }
266#else
267#define _FCFUNCPROTOBEGIN
268#define _FCFUNCPROTOEND
269#endif
270
271typedef enum { FcEndianBig, FcEndianLittle } FcEndian;
272
273typedef struct _FcConfig FcConfig;
274
275typedef struct _FcGlobalCache FcFileCache;
276
277typedef struct _FcBlanks FcBlanks;
278
279typedef struct _FcStrList FcStrList;
280
281typedef struct _FcStrSet FcStrSet;
282
283typedef struct _FcCache FcCache;
284
285_FCFUNCPROTOBEGIN
286
287/* fcblanks.c */
288FcPublic FcBlanks *
289FcBlanksCreate (void);
290
291FcPublic void
292FcBlanksDestroy (FcBlanks *b);
293
294FcPublic FcBool
295FcBlanksAdd (FcBlanks *b, FcChar32 ucs4);
296
297FcPublic FcBool
298FcBlanksIsMember (FcBlanks *b, FcChar32 ucs4);
299
300/* fccache.c */
301
302FcPublic const FcChar8 *
303FcCacheDir(const FcCache *c);
304
305FcPublic FcFontSet *
306FcCacheCopySet(const FcCache *c);
307
308FcPublic const FcChar8 *
309FcCacheSubdir (const FcCache *c, int i);
310
311FcPublic int
312FcCacheNumSubdir (const FcCache *c);
313
314FcPublic int
315FcCacheNumFont (const FcCache *c);
316
317FcPublic FcBool
318FcDirCacheUnlink (const FcChar8 *dir, FcConfig *config);
319
320FcPublic FcBool
321FcDirCacheValid (const FcChar8 *cache_file);
322
323/* fccfg.c */
324FcPublic FcChar8 *
325FcConfigHome (void);
326
327FcPublic FcBool
328FcConfigEnableHome (FcBool enable);
329
330FcPublic FcChar8 *
331FcConfigFilename (const FcChar8 *url);
332
333FcPublic FcConfig *
334FcConfigCreate (void);
335
336FcPublic void
337FcConfigDestroy (FcConfig *config);
338
339FcPublic FcBool
340FcConfigSetCurrent (FcConfig *config);
341
342FcPublic FcConfig *
343FcConfigGetCurrent (void);
344
345FcPublic FcBool
346FcConfigUptoDate (FcConfig *config);
347
348FcPublic FcBool
349FcConfigBuildFonts (FcConfig *config);
350
351FcPublic FcStrList *
352FcConfigGetFontDirs (FcConfig *config);
353
354FcPublic FcStrList *
355FcConfigGetConfigDirs (FcConfig *config);
356
357FcPublic FcStrList *
358FcConfigGetConfigFiles (FcConfig *config);
359
360FcPublic FcChar8 *
361FcConfigGetCache (FcConfig *config);
362
363FcPublic FcBlanks *
364FcConfigGetBlanks (FcConfig *config);
365
366FcPublic FcStrList *
367FcConfigGetCacheDirs (FcConfig *config);
368
369FcPublic int
370FcConfigGetRescanInverval (FcConfig *config);
371
372FcPublic FcBool
373FcConfigSetRescanInverval (FcConfig *config, int rescanInterval);
374
375FcPublic FcFontSet *
376FcConfigGetFonts (FcConfig *config,
377 FcSetName set);
378
379FcPublic FcBool
380FcConfigAppFontAddFile (FcConfig *config,
381 const FcChar8 *file);
382
383FcPublic FcBool
384FcConfigAppFontAddDir (FcConfig *config,
385 const FcChar8 *dir);
386
387FcPublic void
388FcConfigAppFontClear (FcConfig *config);
389
390FcPublic FcBool
391FcConfigSubstituteWithPat (FcConfig *config,
392 FcPattern *p,
393 FcPattern *p_pat,
394 FcMatchKind kind);
395
396FcPublic FcBool
397FcConfigSubstitute (FcConfig *config,
398 FcPattern *p,
399 FcMatchKind kind);
400
401/* fccharset.c */
402FcPublic FcCharSet*
403FcCharSetCreate (void);
404
405/* deprecated alias for FcCharSetCreate */
406FcPublic FcCharSet *
407FcCharSetNew (void);
408
409FcPublic void
410FcCharSetDestroy (FcCharSet *fcs);
411
412FcPublic FcBool
413FcCharSetAddChar (FcCharSet *fcs, FcChar32 ucs4);
414
415FcPublic FcCharSet*
416FcCharSetCopy (FcCharSet *src);
417
418FcPublic FcBool
419FcCharSetEqual (const FcCharSet *a, const FcCharSet *b);
420
421FcPublic FcCharSet*
422FcCharSetIntersect (const FcCharSet *a, const FcCharSet *b);
423
424FcPublic FcCharSet*
425FcCharSetUnion (const FcCharSet *a, const FcCharSet *b);
426
427FcPublic FcCharSet*
428FcCharSetSubtract (const FcCharSet *a, const FcCharSet *b);
429
430FcPublic FcBool
431FcCharSetHasChar (const FcCharSet *fcs, FcChar32 ucs4);
432
433FcPublic FcChar32
434FcCharSetCount (const FcCharSet *a);
435
436FcPublic FcChar32
437FcCharSetIntersectCount (const FcCharSet *a, const FcCharSet *b);
438
439FcPublic FcChar32
440FcCharSetSubtractCount (const FcCharSet *a, const FcCharSet *b);
441
442FcPublic FcBool
443FcCharSetIsSubset (const FcCharSet *a, const FcCharSet *b);
444
445#define FC_CHARSET_MAP_SIZE (256/32)
446#define FC_CHARSET_DONE ((FcChar32) -1)
447
448FcPublic FcChar32
449FcCharSetFirstPage (const FcCharSet *a,
450 FcChar32 map[FC_CHARSET_MAP_SIZE],
451 FcChar32 *next);
452
453FcPublic FcChar32
454FcCharSetNextPage (const FcCharSet *a,
455 FcChar32 map[FC_CHARSET_MAP_SIZE],
456 FcChar32 *next);
457
458/*
459 * old coverage API, rather hard to use correctly
460 */
461
462FcPublic FcChar32
463FcCharSetCoverage (const FcCharSet *a, FcChar32 page, FcChar32 *result);
464
465/* fcdbg.c */
466FcPublic void
467FcValuePrint (const FcValue v);
468
469FcPublic void
470FcPatternPrint (const FcPattern *p);
471
472FcPublic void
473FcFontSetPrint (const FcFontSet *s);
474
475/* fcdefault.c */
476FcPublic void
477FcDefaultSubstitute (FcPattern *pattern);
478
479/* fcdir.c */
480FcPublic FcBool
481FcFileIsDir (const FcChar8 *file);
482
483FcPublic FcBool
484FcFileScan (FcFontSet *set,
485 FcStrSet *dirs,
486 FcFileCache *cache,
487 FcBlanks *blanks,
488 const FcChar8 *file,
489 FcBool force);
490
491FcPublic FcBool
492FcDirScan (FcFontSet *set,
493 FcStrSet *dirs,
494 FcFileCache *cache,
495 FcBlanks *blanks,
496 const FcChar8 *dir,
497 FcBool force);
498
499FcPublic FcBool
500FcDirSave (FcFontSet *set, FcStrSet *dirs, const FcChar8 *dir);
501
502FcPublic FcCache *
503FcDirCacheLoad (const FcChar8 *dir, FcConfig *config, FcChar8 **cache_file);
504
505FcPublic FcCache *
506FcDirCacheRead (const FcChar8 *dir, FcBool force, FcConfig *config);
507
508FcPublic FcCache *
509FcDirCacheLoadFile (const FcChar8 *cache_file, struct stat *file_stat);
510
511FcPublic void
512FcDirCacheUnload (FcCache *cache);
513
514/* fcfreetype.c */
515FcPublic FcPattern *
516FcFreeTypeQuery (const FcChar8 *file, int id, FcBlanks *blanks, int *count);
517
518/* fcfs.c */
519
520FcPublic FcFontSet *
521FcFontSetCreate (void);
522
523FcPublic void
524FcFontSetDestroy (FcFontSet *s);
525
526FcPublic FcBool
527FcFontSetAdd (FcFontSet *s, FcPattern *font);
528
529/* fcinit.c */
530FcPublic FcConfig *
531FcInitLoadConfig (void);
532
533FcPublic FcConfig *
534FcInitLoadConfigAndFonts (void);
535
536FcPublic FcBool
537FcInit (void);
538
539FcPublic void
540FcFini (void);
541
542FcPublic int
543FcGetVersion (void);
544
545FcPublic FcBool
546FcInitReinitialize (void);
547
548FcPublic FcBool
549FcInitBringUptoDate (void);
550
551/* fclang.c */
552FcPublic FcLangSet*
553FcLangSetCreate (void);
554
555FcPublic void
556FcLangSetDestroy (FcLangSet *ls);
557
558FcPublic FcLangSet*
559FcLangSetCopy (const FcLangSet *ls);
560
561FcPublic FcBool
562FcLangSetAdd (FcLangSet *ls, const FcChar8 *lang);
563
564FcPublic FcLangResult
565FcLangSetHasLang (const FcLangSet *ls, const FcChar8 *lang);
566
567FcPublic FcLangResult
568FcLangSetCompare (const FcLangSet *lsa, const FcLangSet *lsb);
569
570FcPublic FcBool
571FcLangSetContains (const FcLangSet *lsa, const FcLangSet *lsb);
572
573FcPublic FcBool
574FcLangSetEqual (const FcLangSet *lsa, const FcLangSet *lsb);
575
576FcPublic FcChar32
577FcLangSetHash (const FcLangSet *ls);
578
579/* fclist.c */
580FcPublic FcObjectSet *
581FcObjectSetCreate (void);
582
583FcPublic FcBool
584FcObjectSetAdd (FcObjectSet *os, const char *object);
585
586FcPublic void
587FcObjectSetDestroy (FcObjectSet *os);
588
589FcPublic FcObjectSet *
590FcObjectSetVaBuild (const char *first, va_list va);
591
592FcPublic FcObjectSet *
593FcObjectSetBuild (const char *first, ...) FC_ATTRIBUTE_SENTINEL(0);
594
595FcPublic FcFontSet *
596FcFontSetList (FcConfig *config,
597 FcFontSet **sets,
598 int nsets,
599 FcPattern *p,
600 FcObjectSet *os);
601
602FcPublic FcFontSet *
603FcFontList (FcConfig *config,
604 FcPattern *p,
605 FcObjectSet *os);
606
607/* fcatomic.c */
608
609FcPublic FcAtomic *
610FcAtomicCreate (const FcChar8 *file);
611
612FcPublic FcBool
613FcAtomicLock (FcAtomic *atomic);
614
615FcPublic FcChar8 *
616FcAtomicNewFile (FcAtomic *atomic);
617
618FcPublic FcChar8 *
619FcAtomicOrigFile (FcAtomic *atomic);
620
621FcPublic FcBool
622FcAtomicReplaceOrig (FcAtomic *atomic);
623
624FcPublic void
625FcAtomicDeleteNew (FcAtomic *atomic);
626
627FcPublic void
628FcAtomicUnlock (FcAtomic *atomic);
629
630FcPublic void
631FcAtomicDestroy (FcAtomic *atomic);
632
633/* fcmatch.c */
634FcPublic FcPattern *
635FcFontSetMatch (FcConfig *config,
636 FcFontSet **sets,
637 int nsets,
638 FcPattern *p,
639 FcResult *result);
640
641FcPublic FcPattern *
642FcFontMatch (FcConfig *config,
643 FcPattern *p,
644 FcResult *result);
645
646FcPublic FcPattern *
647FcFontRenderPrepare (FcConfig *config,
648 FcPattern *pat,
649 FcPattern *font);
650
651FcPublic FcFontSet *
652FcFontSetSort (FcConfig *config,
653 FcFontSet **sets,
654 int nsets,
655 FcPattern *p,
656 FcBool trim,
657 FcCharSet **csp,
658 FcResult *result);
659
660FcPublic FcFontSet *
661FcFontSort (FcConfig *config,
662 FcPattern *p,
663 FcBool trim,
664 FcCharSet **csp,
665 FcResult *result);
666
667FcPublic void
668FcFontSetSortDestroy (FcFontSet *fs);
669
670/* fcmatrix.c */
671FcPublic FcMatrix *
672FcMatrixCopy (const FcMatrix *mat);
673
674FcPublic FcBool
675FcMatrixEqual (const FcMatrix *mat1, const FcMatrix *mat2);
676
677FcPublic void
678FcMatrixMultiply (FcMatrix *result, const FcMatrix *a, const FcMatrix *b);
679
680FcPublic void
681FcMatrixRotate (FcMatrix *m, double c, double s);
682
683FcPublic void
684FcMatrixScale (FcMatrix *m, double sx, double sy);
685
686FcPublic void
687FcMatrixShear (FcMatrix *m, double sh, double sv);
688
689/* fcname.c */
690
691FcPublic FcBool
692FcNameRegisterObjectTypes (const FcObjectType *types, int ntype);
693
694FcPublic FcBool
695FcNameUnregisterObjectTypes (const FcObjectType *types, int ntype);
696
697FcPublic const FcObjectType *
698FcNameGetObjectType (const char *object);
699
700FcPublic FcBool
701FcNameRegisterConstants (const FcConstant *consts, int nconsts);
702
703FcPublic FcBool
704FcNameUnregisterConstants (const FcConstant *consts, int nconsts);
705
706FcPublic const FcConstant *
707FcNameGetConstant (FcChar8 *string);
708
709FcPublic FcBool
710FcNameConstant (FcChar8 *string, int *result);
711
712FcPublic FcPattern *
713FcNameParse (const FcChar8 *name);
714
715FcPublic FcChar8 *
716FcNameUnparse (FcPattern *pat);
717
718/* fcpat.c */
719FcPublic FcPattern *
720FcPatternCreate (void);
721
722FcPublic FcPattern *
723FcPatternDuplicate (const FcPattern *p);
724
725FcPublic void
726FcPatternReference (FcPattern *p);
727
728FcPublic void
729FcValueDestroy (FcValue v);
730
731FcPublic FcBool
732FcValueEqual (FcValue va, FcValue vb);
733
734FcPublic FcValue
735FcValueSave (FcValue v);
736
737FcPublic void
738FcPatternDestroy (FcPattern *p);
739
740FcPublic FcBool
741FcPatternEqual (const FcPattern *pa, const FcPattern *pb);
742
743FcPublic FcBool
744FcPatternEqualSubset (const FcPattern *pa, const FcPattern *pb, const FcObjectSet *os);
745
746FcPublic FcChar32
747FcPatternHash (const FcPattern *p);
748
749FcPublic FcBool
750FcPatternAdd (FcPattern *p, const char *object, FcValue value, FcBool append);
751
752FcPublic FcBool
753FcPatternAddWeak (FcPattern *p, const char *object, FcValue value, FcBool append);
754
755FcPublic FcResult
756FcPatternGet (const FcPattern *p, const char *object, int id, FcValue *v);
757
758FcPublic FcBool
759FcPatternDel (FcPattern *p, const char *object);
760
761FcPublic FcBool
762FcPatternRemove (FcPattern *p, const char *object, int id);
763
764FcPublic FcBool
765FcPatternAddInteger (FcPattern *p, const char *object, int i);
766
767FcPublic FcBool
768FcPatternAddDouble (FcPattern *p, const char *object, double d);
769
770FcPublic FcBool
771FcPatternAddString (FcPattern *p, const char *object, const FcChar8 *s);
772
773FcPublic FcBool
774FcPatternAddMatrix (FcPattern *p, const char *object, const FcMatrix *s);
775
776FcPublic FcBool
777FcPatternAddCharSet (FcPattern *p, const char *object, const FcCharSet *c);
778
779FcPublic FcBool
780FcPatternAddBool (FcPattern *p, const char *object, FcBool b);
781
782FcPublic FcBool
783FcPatternAddLangSet (FcPattern *p, const char *object, const FcLangSet *ls);
784
785FcPublic FcResult
786FcPatternGetInteger (const FcPattern *p, const char *object, int n, int *i);
787
788FcPublic FcResult
789FcPatternGetDouble (const FcPattern *p, const char *object, int n, double *d);
790
791FcPublic FcResult
792FcPatternGetString (const FcPattern *p, const char *object, int n, FcChar8 ** s);
793
794FcPublic FcResult
795FcPatternGetMatrix (const FcPattern *p, const char *object, int n, FcMatrix **s);
796
797FcPublic FcResult
798FcPatternGetCharSet (const FcPattern *p, const char *object, int n, FcCharSet **c);
799
800FcPublic FcResult
801FcPatternGetBool (const FcPattern *p, const char *object, int n, FcBool *b);
802
803FcPublic FcResult
804FcPatternGetLangSet (const FcPattern *p, const char *object, int n, FcLangSet **ls);
805
806FcPublic FcPattern *
807FcPatternVaBuild (FcPattern *orig, va_list va);
808
809FcPublic FcPattern *
810FcPatternBuild (FcPattern *orig, ...) FC_ATTRIBUTE_SENTINEL(0);
811
812/* fcstr.c */
813
814FcPublic FcChar8 *
815FcStrCopy (const FcChar8 *s);
816
817FcPublic FcChar8 *
818FcStrCopyFilename (const FcChar8 *s);
819
820FcPublic FcChar8 *
821FcStrPlus (const FcChar8 *s1, const FcChar8 *s2);
822
823FcPublic void
824FcStrFree (FcChar8 *s);
825
826/* These are ASCII only, suitable only for pattern element names */
827#define FcIsUpper(c) ((0101 <= (c) && (c) <= 0132))
828#define FcIsLower(c) ((0141 <= (c) && (c) <= 0172))
829#define FcToLower(c) (FcIsUpper(c) ? (c) - 0101 + 0141 : (c))
830
831FcPublic FcChar8 *
832FcStrDowncase (const FcChar8 *s);
833
834FcPublic int
835FcStrCmpIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
836
837FcPublic int
838FcStrCmp (const FcChar8 *s1, const FcChar8 *s2);
839
840FcPublic const FcChar8 *
841FcStrStrIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
842
843FcPublic const FcChar8 *
844FcStrStr (const FcChar8 *s1, const FcChar8 *s2);
845
846FcPublic int
847FcUtf8ToUcs4 (const FcChar8 *src_orig,
848 FcChar32 *dst,
849 int len);
850
851FcPublic FcBool
852FcUtf8Len (const FcChar8 *string,
853 int len,
854 int *nchar,
855 int *wchar);
856
857#define FC_UTF8_MAX_LEN 6
858
859FcPublic int
860FcUcs4ToUtf8 (FcChar32 ucs4,
861 FcChar8 dest[FC_UTF8_MAX_LEN]);
862
863FcPublic int
864FcUtf16ToUcs4 (const FcChar8 *src_orig,
865 FcEndian endian,
866 FcChar32 *dst,
867 int len); /* in bytes */
868
869FcPublic FcBool
870FcUtf16Len (const FcChar8 *string,
871 FcEndian endian,
872 int len, /* in bytes */
873 int *nchar,
874 int *wchar);
875
876FcPublic FcChar8 *
877FcStrDirname (const FcChar8 *file);
878
879FcPublic FcChar8 *
880FcStrBasename (const FcChar8 *file);
881
882FcPublic FcStrSet *
883FcStrSetCreate (void);
884
885FcPublic FcBool
886FcStrSetMember (FcPublic FcStrSet *set, const FcChar8 *s);
887
888FcPublic FcBool
889FcStrSetEqual (FcPublic FcStrSet *sa, FcPublic FcStrSet *sb);
890
891FcPublic FcBool
892FcStrSetAdd (FcPublic FcStrSet *set, const FcChar8 *s);
893
894FcPublic FcBool
895FcStrSetAddFilename (FcPublic FcStrSet *set, const FcChar8 *s);
896
897FcPublic FcBool
898FcStrSetDel (FcPublic FcStrSet *set, const FcChar8 *s);
899
900FcPublic void
901FcStrSetDestroy (FcPublic FcStrSet *set);
902
903FcPublic FcStrList *
904FcStrListCreate (FcPublic FcStrSet *set);
905
906FcPublic FcChar8 *
907FcStrListNext (FcStrList *list);
908
909FcPublic void
910FcStrListDone (FcStrList *list);
911
912/* fcxml.c */
913FcPublic FcBool
914FcConfigParseAndLoad (FcConfig *config, const FcChar8 *file, FcBool complain);
915
916_FCFUNCPROTOEND
917
918#undef FC_ATTRIBUTE_SENTINEL
919
920#endif /* _FONTCONFIG_H_ */