1 /***************************************************************************/
5 /* Build macros of the FreeType 2 library. */
7 /* Copyright 1996-2008, 2010, 2012, 2013 by */
8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
10 /* This file is part of the FreeType project, and may only be used, */
11 /* modified, and distributed under the terms of the FreeType project */
12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
13 /* this file you indicate that you have read the license and */
14 /* understand and accept it fully. */
16 /***************************************************************************/
18 #ifndef __FT_HEADER_H__
19 #define __FT_HEADER_H__
22 /*@***********************************************************************/
28 /* This macro is used in association with @FT_END_HEADER in header */
29 /* files to ensure that the declarations within are properly */
30 /* encapsulated in an `extern "C" { .. }' block when included from a */
34 #define FT_BEGIN_HEADER extern "C" {
36 #define FT_BEGIN_HEADER /* nothing */
40 /*@***********************************************************************/
46 /* This macro is used in association with @FT_BEGIN_HEADER in header */
47 /* files to ensure that the declarations within are properly */
48 /* encapsulated in an `extern "C" { .. }' block when included from a */
52 #define FT_END_HEADER }
54 #define FT_END_HEADER /* nothing */
58 /*************************************************************************/
60 /* Aliases for the FreeType 2 public and configuration files. */
62 /*************************************************************************/
64 /*************************************************************************/
67 /* header_file_macros */
70 /* Header File Macros */
73 /* Macro definitions used to #include specific header files. */
76 /* The following macros are defined to the name of specific */
77 /* FreeType~2 header files. They can be used directly in #include */
78 /* statements as in: */
81 /* #include FT_FREETYPE_H */
82 /* #include FT_MULTIPLE_MASTERS_H */
83 /* #include FT_GLYPH_H */
86 /* There are several reasons why we are now using macros to name */
87 /* public header files. The first one is that such macros are not */
88 /* limited to the infamous 8.3~naming rule required by DOS (and */
89 /* `FT_MULTIPLE_MASTERS_H' is a lot more meaningful than `ftmm.h'). */
91 /* The second reason is that it allows for more flexibility in the */
92 /* way FreeType~2 is installed on a given system. */
94 /*************************************************************************/
97 /* configuration files */
99 /*************************************************************************
105 * A macro used in #include statements to name the file containing
106 * FreeType~2 configuration data.
109 #ifndef FT_CONFIG_CONFIG_H
110 #define FT_CONFIG_CONFIG_H <freetype/config/ftconfig.h>
114 /*************************************************************************
117 * FT_CONFIG_STANDARD_LIBRARY_H
120 * A macro used in #include statements to name the file containing
121 * FreeType~2 interface to the standard C library functions.
124 #ifndef FT_CONFIG_STANDARD_LIBRARY_H
125 #define FT_CONFIG_STANDARD_LIBRARY_H <freetype/config/ftstdlib.h>
129 /*************************************************************************
132 * FT_CONFIG_OPTIONS_H
135 * A macro used in #include statements to name the file containing
136 * FreeType~2 project-specific configuration options.
139 #ifndef FT_CONFIG_OPTIONS_H
140 #define FT_CONFIG_OPTIONS_H <freetype/config/ftoption.h>
144 /*************************************************************************
147 * FT_CONFIG_MODULES_H
150 * A macro used in #include statements to name the file containing the
151 * list of FreeType~2 modules that are statically linked to new library
152 * instances in @FT_Init_FreeType.
155 #ifndef FT_CONFIG_MODULES_H
156 #define FT_CONFIG_MODULES_H <freetype/config/ftmodule.h>
163 /*************************************************************************
169 * A macro used in #include statements to name the file containing the
170 * base FreeType~2 API.
173 #define FT_FREETYPE_H <freetype/freetype.h>
176 /*************************************************************************
182 * A macro used in #include statements to name the file containing the
183 * list of FreeType~2 error codes (and messages).
185 * It is included by @FT_FREETYPE_H.
188 #define FT_ERRORS_H <freetype/fterrors.h>
191 /*************************************************************************
197 * A macro used in #include statements to name the file containing the
198 * list of FreeType~2 module error offsets (and messages).
201 #define FT_MODULE_ERRORS_H <freetype/ftmoderr.h>
204 /*************************************************************************
210 * A macro used in #include statements to name the file containing the
211 * FreeType~2 interface to low-level operations (i.e., memory management
214 * It is included by @FT_FREETYPE_H.
217 #define FT_SYSTEM_H <freetype/ftsystem.h>
220 /*************************************************************************
226 * A macro used in #include statements to name the file containing type
227 * definitions related to glyph images (i.e., bitmaps, outlines,
228 * scan-converter parameters).
230 * It is included by @FT_FREETYPE_H.
233 #define FT_IMAGE_H <freetype/ftimage.h>
236 /*************************************************************************
242 * A macro used in #include statements to name the file containing the
243 * basic data types defined by FreeType~2.
245 * It is included by @FT_FREETYPE_H.
248 #define FT_TYPES_H <freetype/fttypes.h>
251 /*************************************************************************
257 * A macro used in #include statements to name the file containing the
258 * list management API of FreeType~2.
260 * (Most applications will never need to include this file.)
263 #define FT_LIST_H <freetype/ftlist.h>
266 /*************************************************************************
272 * A macro used in #include statements to name the file containing the
273 * scalable outline management API of FreeType~2.
276 #define FT_OUTLINE_H <freetype/ftoutln.h>
279 /*************************************************************************
285 * A macro used in #include statements to name the file containing the
286 * API which manages multiple @FT_Size objects per face.
289 #define FT_SIZES_H <freetype/ftsizes.h>
292 /*************************************************************************
298 * A macro used in #include statements to name the file containing the
299 * module management API of FreeType~2.
302 #define FT_MODULE_H <freetype/ftmodapi.h>
305 /*************************************************************************
311 * A macro used in #include statements to name the file containing the
312 * renderer module management API of FreeType~2.
315 #define FT_RENDER_H <freetype/ftrender.h>
318 /*************************************************************************
324 * A macro used in #include statements to name the file containing
325 * structures and macros related to the auto-hinting module.
328 #define FT_AUTOHINTER_H <freetype/ftautoh.h>
331 /*************************************************************************
337 * A macro used in #include statements to name the file containing
338 * structures and macros related to the CFF driver module.
341 #define FT_CFF_DRIVER_H <freetype/ftcffdrv.h>
344 /*************************************************************************
350 * A macro used in #include statements to name the file containing the
351 * types and API specific to the Type~1 format.
354 #define FT_TYPE1_TABLES_H <freetype/t1tables.h>
357 /*************************************************************************
363 * A macro used in #include statements to name the file containing the
364 * enumeration values which identify name strings, languages, encodings,
365 * etc. This file really contains a _large_ set of constant macro
366 * definitions, taken from the TrueType and OpenType specifications.
369 #define FT_TRUETYPE_IDS_H <freetype/ttnameid.h>
372 /*************************************************************************
375 * FT_TRUETYPE_TABLES_H
378 * A macro used in #include statements to name the file containing the
379 * types and API specific to the TrueType (as well as OpenType) format.
382 #define FT_TRUETYPE_TABLES_H <freetype/tttables.h>
385 /*************************************************************************
391 * A macro used in #include statements to name the file containing the
392 * definitions of TrueType four-byte `tags' which identify blocks in
393 * SFNT-based font formats (i.e., TrueType and OpenType).
396 #define FT_TRUETYPE_TAGS_H <freetype/tttags.h>
399 /*************************************************************************
405 * A macro used in #include statements to name the file containing the
406 * definitions of an API which accesses BDF-specific strings from a
410 #define FT_BDF_H <freetype/ftbdf.h>
413 /*************************************************************************
419 * A macro used in #include statements to name the file containing the
420 * definitions of an API which access CID font information from a
424 #define FT_CID_H <freetype/ftcid.h>
427 /*************************************************************************
433 * A macro used in #include statements to name the file containing the
434 * definitions of an API which supports gzip-compressed files.
437 #define FT_GZIP_H <freetype/ftgzip.h>
440 /*************************************************************************
446 * A macro used in #include statements to name the file containing the
447 * definitions of an API which supports LZW-compressed files.
450 #define FT_LZW_H <freetype/ftlzw.h>
453 /*************************************************************************
459 * A macro used in #include statements to name the file containing the
460 * definitions of an API which supports bzip2-compressed files.
463 #define FT_BZIP2_H <freetype/ftbzip2.h>
466 /*************************************************************************
472 * A macro used in #include statements to name the file containing the
473 * definitions of an API which supports Windows FNT files.
476 #define FT_WINFONTS_H <freetype/ftwinfnt.h>
479 /*************************************************************************
485 * A macro used in #include statements to name the file containing the
486 * API of the optional glyph management component.
489 #define FT_GLYPH_H <freetype/ftglyph.h>
492 /*************************************************************************
498 * A macro used in #include statements to name the file containing the
499 * API of the optional bitmap conversion component.
502 #define FT_BITMAP_H <freetype/ftbitmap.h>
505 /*************************************************************************
511 * A macro used in #include statements to name the file containing the
512 * API of the optional exact bounding box computation routines.
515 #define FT_BBOX_H <freetype/ftbbox.h>
518 /*************************************************************************
524 * A macro used in #include statements to name the file containing the
525 * API of the optional FreeType~2 cache sub-system.
528 #define FT_CACHE_H <freetype/ftcache.h>
531 /*************************************************************************
537 * A macro used in #include statements to name the file containing the
538 * `glyph image' API of the FreeType~2 cache sub-system.
540 * It is used to define a cache for @FT_Glyph elements. You can also
541 * use the API defined in @FT_CACHE_SMALL_BITMAPS_H if you only need to
542 * store small glyph bitmaps, as it will use less memory.
544 * This macro is deprecated. Simply include @FT_CACHE_H to have all
545 * glyph image-related cache declarations.
548 #define FT_CACHE_IMAGE_H FT_CACHE_H
551 /*************************************************************************
554 * FT_CACHE_SMALL_BITMAPS_H
557 * A macro used in #include statements to name the file containing the
558 * `small bitmaps' API of the FreeType~2 cache sub-system.
560 * It is used to define a cache for small glyph bitmaps in a relatively
561 * memory-efficient way. You can also use the API defined in
562 * @FT_CACHE_IMAGE_H if you want to cache arbitrary glyph images,
563 * including scalable outlines.
565 * This macro is deprecated. Simply include @FT_CACHE_H to have all
566 * small bitmaps-related cache declarations.
569 #define FT_CACHE_SMALL_BITMAPS_H FT_CACHE_H
572 /*************************************************************************
578 * A macro used in #include statements to name the file containing the
579 * `charmap' API of the FreeType~2 cache sub-system.
581 * This macro is deprecated. Simply include @FT_CACHE_H to have all
582 * charmap-based cache declarations.
585 #define FT_CACHE_CHARMAP_H FT_CACHE_H
588 /*************************************************************************
594 * A macro used in #include statements to name the file containing the
595 * Macintosh-specific FreeType~2 API. The latter is used to access
596 * fonts embedded in resource forks.
598 * This header file must be explicitly included by client applications
599 * compiled on the Mac (note that the base API still works though).
602 #define FT_MAC_H <freetype/ftmac.h>
605 /*************************************************************************
608 * FT_MULTIPLE_MASTERS_H
611 * A macro used in #include statements to name the file containing the
612 * optional multiple-masters management API of FreeType~2.
615 #define FT_MULTIPLE_MASTERS_H <freetype/ftmm.h>
618 /*************************************************************************
624 * A macro used in #include statements to name the file containing the
625 * optional FreeType~2 API which accesses embedded `name' strings in
626 * SFNT-based font formats (i.e., TrueType and OpenType).
629 #define FT_SFNT_NAMES_H <freetype/ftsnames.h>
632 /*************************************************************************
635 * FT_OPENTYPE_VALIDATE_H
638 * A macro used in #include statements to name the file containing the
639 * optional FreeType~2 API which validates OpenType tables (BASE, GDEF,
643 #define FT_OPENTYPE_VALIDATE_H <freetype/ftotval.h>
646 /*************************************************************************
652 * A macro used in #include statements to name the file containing the
653 * optional FreeType~2 API which validates TrueTypeGX/AAT tables (feat,
654 * mort, morx, bsln, just, kern, opbd, trak, prop).
657 #define FT_GX_VALIDATE_H <freetype/ftgxval.h>
660 /*************************************************************************
666 * A macro used in #include statements to name the file containing the
667 * FreeType~2 API which accesses PFR-specific data.
670 #define FT_PFR_H <freetype/ftpfr.h>
673 /*************************************************************************
679 * A macro used in #include statements to name the file containing the
680 * FreeType~2 API which provides functions to stroke outline paths.
682 #define FT_STROKER_H <freetype/ftstroke.h>
685 /*************************************************************************
691 * A macro used in #include statements to name the file containing the
692 * FreeType~2 API which performs artificial obliquing and emboldening.
694 #define FT_SYNTHESIS_H <freetype/ftsynth.h>
697 /*************************************************************************
703 * A macro used in #include statements to name the file containing the
704 * FreeType~2 API which provides functions specific to the XFree86 and
707 #define FT_XFREE86_H <freetype/ftxf86.h>
710 /*************************************************************************
716 * A macro used in #include statements to name the file containing the
717 * FreeType~2 API which performs trigonometric computations (e.g.,
718 * cosines and arc tangents).
720 #define FT_TRIGONOMETRY_H <freetype/fttrigon.h>
723 /*************************************************************************
729 * A macro used in #include statements to name the file containing the
730 * FreeType~2 API which performs color filtering for subpixel rendering.
732 #define FT_LCD_FILTER_H <freetype/ftlcdfil.h>
735 /*************************************************************************
738 * FT_UNPATENTED_HINTING_H
741 * A macro used in #include statements to name the file containing the
742 * FreeType~2 API which performs color filtering for subpixel rendering.
744 #define FT_UNPATENTED_HINTING_H <freetype/ttunpat.h>
747 /*************************************************************************
753 * A macro used in #include statements to name the file containing the
754 * FreeType~2 API which performs color filtering for subpixel rendering.
756 #define FT_INCREMENTAL_H <freetype/ftincrem.h>
759 /*************************************************************************
765 * A macro used in #include statements to name the file containing the
766 * FreeType~2 API which returns entries from the TrueType GASP table.
768 #define FT_GASP_H <freetype/ftgasp.h>
771 /*************************************************************************
777 * A macro used in #include statements to name the file containing the
778 * FreeType~2 API which returns individual and ranged glyph advances.
780 #define FT_ADVANCES_H <freetype/ftadvanc.h>
785 #define FT_ERROR_DEFINITIONS_H <freetype/fterrdef.h>
788 /* The internals of the cache sub-system are no longer exposed. We */
789 /* default to FT_CACHE_H at the moment just in case, but we know of */
790 /* no rogue client that uses them. */
792 #define FT_CACHE_MANAGER_H <freetype/ftcache.h>
793 #define FT_CACHE_INTERNAL_MRU_H <freetype/ftcache.h>
794 #define FT_CACHE_INTERNAL_MANAGER_H <freetype/ftcache.h>
795 #define FT_CACHE_INTERNAL_CACHE_H <freetype/ftcache.h>
796 #define FT_CACHE_INTERNAL_GLYPH_H <freetype/ftcache.h>
797 #define FT_CACHE_INTERNAL_IMAGE_H <freetype/ftcache.h>
798 #define FT_CACHE_INTERNAL_SBITS_H <freetype/ftcache.h>
801 #define FT_INCREMENTAL_H <freetype/ftincrem.h>
803 #define FT_TRUETYPE_UNPATENTED_H <freetype/ttunpat.h>
807 * Include internal headers definitions from <freetype/internal/...>
808 * only when building the library.
810 #ifdef FT2_BUILD_LIBRARY
811 #define FT_INTERNAL_INTERNAL_H <freetype/internal/internal.h>
812 #include FT_INTERNAL_INTERNAL_H
813 #endif /* FT2_BUILD_LIBRARY */
816 #endif /* __FT2_BUILD_H__ */