⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ftheader.h

📁 一个Xpdf应用的例子
💻 H
📖 第 1 页 / 共 2 页
字号:
  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_SIZES_H                                                         */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    the API used to manage multiple @FT_Size objects per face.         */  /*                                                                       */#define FT_SIZES_H  <freetype/ftsizes.h>  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_MODULE_H                                                        */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    the module management API of FreeType 2.                           */  /*                                                                       */#define FT_MODULE_H  <freetype/ftmodule.h>  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_RENDER_H                                                        */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    the renderer module management API of FreeType 2.                  */  /*                                                                       */#define FT_RENDER_H  <freetype/ftrender.h>  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_TYPE1_TABLES_H                                                  */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    the types and API specific to the Type 1 format.                   */  /*                                                                       */#define FT_TYPE1_TABLES_H  <freetype/t1tables.h>  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_TRUETYPE_IDS_H                                                  */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    the enumeration values used to identify name strings, languages,   */  /*    encodings, etc.  This file really contains a _large_ set of        */  /*    constant macro definitions, taken from the TrueType and OpenType   */  /*    specifications.                                                    */  /*                                                                       */#define FT_TRUETYPE_IDS_H  <freetype/ttnameid.h>  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_TRUETYPE_TABLES_H                                               */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    the types and API specific to the TrueType (as well as OpenType)   */  /*    format.                                                            */  /*                                                                       */#define FT_TRUETYPE_TABLES_H  <freetype/tttables.h>  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_TRUETYPE_TAGS_H                                                 */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    the definitions of TrueType 4-byte `tags' used to identify blocks  */  /*    in SFNT-based font formats (i.e. TrueType and OpenType).           */  /*                                                                       */#define FT_TRUETYPE_TAGS_H  <freetype/tttags.h>  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_GLYPH_H                                                         */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    the API of the optional glyph management component.                */  /*                                                                       */#define FT_GLYPH_H  <freetype/ftglyph.h>  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_BBOX_H                                                          */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    the API of the optional exact bounding box computation routines.   */  /*                                                                       */#define FT_BBOX_H  <freetype/ftbbox.h>  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_BEZIER_H                                                        */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    a small useful API to handle bezier arcs.  Note that you _must_    */  /*    include FT_FREETYPE_H or FT_IMAGE_H before this header.            */  /*                                                                       */#define FT_BEZIER_H  <freetype/ftbezier.h>  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_CACHE_H                                                         */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    the API of the optional FreeType 2 cache sub-system.               */  /*                                                                       */#define FT_CACHE_H  <freetype/ftcache.h>  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_CACHE_IMAGE_H                                                   */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    the `glyph image' API of the FreeType 2 cache sub-system.          */  /*                                                                       */  /*    It is used to define a cache for @FT_Glyph elements.  You can also */  /*    see the API defined in @FT_CACHE_SMALL_BITMAPS_H if you only need  */  /*    to store small glyph bitmaps, as it will use less memory.          */  /*                                                                       */#define FT_CACHE_IMAGE_H  <freetype/cache/ftcimage.h>  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_CACHE_SMALL_BITMAPS_H                                           */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    the `small bitmaps' API of the FreeType 2 cache sub-system.        */  /*                                                                       */  /*    It is used to define a cache for small glyph bitmaps in a          */  /*    relatively memory-efficient way.  You can also use the API defined */  /*    in @FT_CACHE_IMAGE_H if you want to cache arbitrary glyph images,  */  /*    including scalable outlines.                                       */  /*                                                                       */#define FT_CACHE_SMALL_BITMAPS_H  <freetype/cache/ftcsbits.h>  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_CACHE_CHARMAP_H                                                 */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    the `charmap' API of the FreeType 2 cache sub-system.              */  /*                                                                       */#define FT_CACHE_CHARMAP_H  <freetype/cache/ftccmap.h>  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_MAC_H                                                           */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    the Macintosh-specific FreeType 2 API. The latter is used to       */  /*    access fonts embedded in resource forks.                           */  /*                                                                       */  /*    This header file must be explicitly included by client             */  /*    applications compiled on the Mac (note that the base API still     */  /*    works though).                                                     */  /*                                                                       */#define FT_MAC_H  <freetype/ftmac.h>  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_MULTIPLE_MASTERS_H                                              */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    the optional multiple-masters management API of FreeType 2.        */  /*                                                                       */#define FT_MULTIPLE_MASTERS_H  <freetype/ftmm.h>  /*************************************************************************/  /*                                                                       */  /* @macro:                                                               */  /*    FT_SFNT_NAMES_H                                                    */  /*                                                                       */  /* @description:                                                         */  /*    A macro used in #include statements to name the file containing    */  /*    the optional FreeType 2 API used to access embedded `name' strings */  /*    in SFNT-based font formats (i.e. TrueType and OpenType).           */  /*                                                                       */#define FT_SFNT_NAMES_H  <freetype/ftsnames.h>  /* */#define FT_TRIGONOMETRY_H          <freetype/fttrigon.h>#define FT_SYNTHESIS_H             <freetype/ftsynth.h>#define FT_CACHE_MANAGER_H         <freetype/cache/ftcmanag.h>#define FT_CACHE_INTERNAL_LRU_H    <freetype/cache/ftlru.h>#define FT_CACHE_INTERNAL_GLYPH_H  <freetype/cache/ftcglyph.h>#define FT_CACHE_INTERNAL_CACHE_H  <freetype/cache/ftccache.h>  /* now include internal headers definitions from <freetype/internal/...> */#define  FT_INTERNAL_INTERNAL_H    <freetype/internal/internal.h>#include FT_INTERNAL_INTERNAL_H#endif /* __FT2_BUILD_H__ *//* END */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -