fontstruct.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:9k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: fontstruct.h,v 1.3 2000/08/18 04:05:44 coskrey Exp $ */
  2. /***********************************************************
  3. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
  4.                         All Rights Reserved
  5. Permission to use, copy, modify, and distribute this software and its
  6. documentation for any purpose and without fee is hereby granted,
  7. provided that the above copyright notice appear in all copies and that
  8. both that copyright notice and this permission notice appear in
  9. supporting documentation, and that the name of Digital not be
  10. used in advertising or publicity pertaining to distribution of the
  11. software without specific, written prior permission.
  12. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  13. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  14. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  15. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  16. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  17. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  18. SOFTWARE.
  19. ******************************************************************/
  20. /* $XFree86: xc/include/fonts/fontstruct.h,v 3.3 1999/08/21 13:47:34 dawes Exp $ */
  21. #ifndef FONTSTR_H
  22. #define FONTSTR_H
  23. #include <X11/Xproto.h>
  24. #include "font.h"
  25. #include <X11/Xfuncproto.h>
  26. #include <X11/Xdefs.h>
  27. /*
  28.  * This version of the server font data strucutre is only for describing
  29.  * the in memory data structure. The file structure is not necessarily a
  30.  * copy of this. That is up to the compiler and the OS layer font loading
  31.  * machinery.
  32.  */
  33. #define GLYPHPADOPTIONS 4 /* 1, 2, 4, or 8 */
  34. typedef struct _FontProp {
  35.     long        name;
  36.     long        value; /* assumes ATOM is not larger than INT32 */
  37. }           FontPropRec;
  38. typedef struct _FontResolution {
  39.     unsigned short x_resolution;
  40.     unsigned short y_resolution;
  41.     unsigned short point_size;
  42. }           FontResolutionRec;
  43. typedef struct _ExtentInfo {
  44.     DrawDirection drawDirection;
  45.     int         fontAscent;
  46.     int         fontDescent;
  47.     int         overallAscent;
  48.     int         overallDescent;
  49.     int         overallWidth;
  50.     int         overallLeft;
  51.     int         overallRight;
  52. }           ExtentInfoRec;
  53. typedef struct _CharInfo {
  54.     xCharInfo   metrics; /* info preformatted for Queries */
  55.     char       *bits; /* pointer to glyph image */
  56. }           CharInfoRec;
  57. /*
  58.  * Font is created at font load time. It is specific to a single encoding.
  59.  * e.g. not all of the glyphs in a font may be part of a single encoding.
  60.  */
  61. typedef struct _FontInfo {
  62.     unsigned short firstCol;
  63.     unsigned short lastCol;
  64.     unsigned short firstRow;
  65.     unsigned short lastRow;
  66.     unsigned short defaultCh;
  67.     unsigned int noOverlap:1;
  68.     unsigned int terminalFont:1;
  69.     unsigned int constantMetrics:1;
  70.     unsigned int constantWidth:1;
  71.     unsigned int inkInside:1;
  72.     unsigned int inkMetrics:1;
  73.     unsigned int allExist:1;
  74.     unsigned int drawDirection:2;
  75.     unsigned int cachable:1;
  76.     unsigned int anamorphic:1;
  77.     short       maxOverlap;
  78.     short       pad;
  79.     xCharInfo   maxbounds;
  80.     xCharInfo   minbounds;
  81.     xCharInfo   ink_maxbounds;
  82.     xCharInfo   ink_minbounds;
  83.     short       fontAscent;
  84.     short       fontDescent;
  85.     int         nprops;
  86.     FontPropPtr props;
  87.     char       *isStringProp;
  88. }           FontInfoRec;
  89. typedef struct _Font {
  90.     int         refcnt;
  91.     FontInfoRec info;
  92.     char        bit;
  93.     char        byte;
  94.     char        glyph;
  95.     char        scan;
  96.     fsBitmapFormat format;
  97.     int         (*get_glyphs) (FontPtr         /* font */,
  98.        unsigned long   /* count */,
  99.        unsigned char * /* chars */,
  100.        FontEncoding    /* encoding */,
  101.        unsigned long * /* count */,
  102.        CharInfoPtr *   /* glyphs */);
  103.     int         (*get_metrics) (FontPtr         /* font */,
  104. unsigned long   /* count */,
  105. unsigned char * /* chars */,
  106. FontEncoding    /* encoding */,
  107. unsigned long * /* count */,
  108. xCharInfo **    /* glyphs */);
  109.     void        (*unload_font) (FontPtr         /* font */);
  110.     void        (*unload_glyphs) (FontPtr         /* font */);
  111.     FontPathElementPtr fpe;
  112.     pointer     svrPrivate;
  113.     pointer     fontPrivate;
  114.     pointer     fpePrivate;
  115.     int maxPrivate;
  116.     pointer *devPrivates;
  117. }           FontRec;
  118. #define FontGetPrivate(pFont,n) ((n) > (pFont)->maxPrivate ? (pointer) 0 : 
  119.      (pFont)->devPrivates[n])
  120. #define FontSetPrivate(pFont,n,ptr) ((n) > (pFont)->maxPrivate ? 
  121. _FontSetNewPrivate (pFont, n, ptr) : 
  122. ((((pFont)->devPrivates[n] = (ptr)) != 0) || TRUE))
  123. typedef struct _FontNames {
  124.     int         nnames;
  125.     int         size;
  126.     int        *length;
  127.     char      **names;
  128. }           FontNamesRec;
  129. /* External view of font paths */
  130. typedef struct _FontPathElement {
  131.     int         name_length;
  132.     char       *name;
  133.     int         type;
  134.     int         refcount;
  135.     pointer     private;
  136. }           FontPathElementRec;
  137. typedef Bool (*NameCheckFunc) (char *name);
  138. typedef int (*InitFpeFunc) (FontPathElementPtr fpe);
  139. typedef int (*FreeFpeFunc) (FontPathElementPtr fpe);
  140. typedef int (*ResetFpeFunc) (FontPathElementPtr fpe);
  141. typedef int (*OpenFontFunc) ( pointer client,
  142.       FontPathElementPtr fpe,
  143.       Mask flags,
  144.       char* name,
  145.       int namelen,
  146.       fsBitmapFormat format,
  147.       fsBitmapFormatMask fmask,
  148.       XID id,
  149.       FontPtr* pFont,
  150.       char** aliasName,
  151.       FontPtr non_cachable_font);
  152. typedef void (*CloseFontFunc) (FontPathElementPtr fpe, FontPtr pFont);
  153. typedef int (*ListFontsFunc) (pointer client,
  154.       FontPathElementPtr fpe,
  155.       char* pat,
  156.       int len,
  157.       int max,
  158.       FontNamesPtr names);
  159. typedef int (*StartLfwiFunc) (pointer client,
  160.       FontPathElementPtr fpe,
  161.       char* pat,
  162.       int len,
  163.       int max,
  164.       pointer* privatep);
  165. typedef int (*NextLfwiFunc) (pointer client,
  166.      FontPathElementPtr fpe,
  167.      char** name,
  168.      int* namelen,
  169.      FontInfoPtr* info,
  170.      int* numFonts,
  171.      pointer private);
  172. typedef int (*WakeupFpeFunc) (FontPathElementPtr fpe,
  173.       unsigned long* LastSelectMask);
  174. typedef void (*ClientDiedFunc) (pointer client,
  175.        FontPathElementPtr fpe);
  176. typedef int (*LoadGlyphsFunc) (pointer client,
  177.        FontPtr pfont,
  178.        Bool range_flag,
  179.        unsigned int nchars,
  180.        int item_size,
  181.        unsigned char* data);
  182. typedef int (*StartLaFunc) (pointer client,
  183.     FontPathElementPtr fpe,
  184.     char* pat,
  185.     int len,
  186.     int max,
  187.     pointer* privatep);
  188. typedef int (*NextLaFunc) (pointer client,
  189.    FontPathElementPtr fpe,
  190.    char** namep,
  191.    int* namelenp,
  192.    char** resolvedp,
  193.    int* resolvedlenp,
  194.    pointer private);
  195. typedef void (*SetPathFunc)(void);
  196. typedef struct _FPEFunctions {
  197.     NameCheckFunc       name_check;
  198.     InitFpeFunc  init_fpe;
  199.     ResetFpeFunc reset_fpe;
  200.     FreeFpeFunc         free_fpe;
  201.     OpenFontFunc        open_font;
  202.     CloseFontFunc       close_font;
  203.     ListFontsFunc       list_fonts;
  204.     StartLaFunc         start_list_fonts_and_aliases;
  205.     NextLaFunc          list_next_font_or_alias;
  206.     StartLfwiFunc       start_list_fonts_with_info;
  207.     NextLfwiFunc        list_next_font_with_info;
  208.     WakeupFpeFunc       wakeup_fpe;
  209.     ClientDiedFunc  client_died;
  210. /* for load_glyphs, range_flag = 0 ->
  211. nchars = # of characters in data
  212. item_size = bytes/char
  213. data = list of characters
  214.    range_flag = 1 ->
  215. nchars = # of fsChar2b's in data
  216. item_size is ignored
  217. data = list of fsChar2b's */
  218.     LoadGlyphsFunc load_glyphs;
  219.     SetPathFunc set_path_hook;
  220. } FPEFunctionsRec, FPEFunctions;
  221. /*
  222.  * Various macros for computing values based on contents of
  223.  * the above structures
  224.  */
  225. #define GLYPHWIDTHPIXELS(pci) 
  226. ((pci)->metrics.rightSideBearing - (pci)->metrics.leftSideBearing)
  227. #define GLYPHHEIGHTPIXELS(pci) 
  228.   ((pci)->metrics.ascent + (pci)->metrics.descent)
  229. #define GLYPHWIDTHBYTES(pci) (((GLYPHWIDTHPIXELS(pci))+7) >> 3)
  230. #define GLYPHWIDTHPADDED(bc) (((bc)+7) & ~0x7)
  231. #define BYTES_PER_ROW(bits, nbytes) 
  232. ((nbytes) == 1 ? (((bits)+7)>>3) /* pad to 1 byte */ 
  233. :(nbytes) == 2 ? ((((bits)+15)>>3)&~1) /* pad to 2 bytes */ 
  234. :(nbytes) == 4 ? ((((bits)+31)>>3)&~3) /* pad to 4 bytes */ 
  235. :(nbytes) == 8 ? ((((bits)+63)>>3)&~7) /* pad to 8 bytes */ 
  236. : 0)
  237. #define BYTES_FOR_GLYPH(ci,pad) (GLYPHHEIGHTPIXELS(ci) * 
  238.  BYTES_PER_ROW(GLYPHWIDTHPIXELS(ci),pad))
  239. /*
  240.  * Macros for computing different bounding boxes for fonts; from
  241.  * the font protocol
  242.  */
  243. #define FONT_MAX_ASCENT(pi) ((pi)->fontAscent > (pi)->ink_maxbounds.ascent ? 
  244.     (pi)->fontAscent : (pi)->ink_maxbounds.ascent)
  245. #define FONT_MAX_DESCENT(pi) ((pi)->fontDescent > (pi)->ink_maxbounds.descent ? 
  246.     (pi)->fontDescent : (pi)->ink_maxbounds.descent)
  247. #define FONT_MAX_HEIGHT(pi) (FONT_MAX_ASCENT(pi) + FONT_MAX_DESCENT(pi))
  248. #define FONT_MIN_LEFT(pi) ((pi)->ink_minbounds.leftSideBearing < 0 ? 
  249.     (pi)->ink_minbounds.leftSideBearing : 0)
  250. #define FONT_MAX_RIGHT(pi) ((pi)->ink_maxbounds.rightSideBearing > 
  251. (pi)->ink_maxbounds.characterWidth ? 
  252.     (pi)->ink_maxbounds.rightSideBearing : 
  253. (pi)->ink_maxbounds.characterWidth)
  254. #define FONT_MAX_WIDTH(pi) (FONT_MAX_RIGHT(pi) - FONT_MIN_LEFT(pi))
  255. #include "fontproto.h"
  256. #endif /* FONTSTR_H */