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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: bdfint.h,v 1.4 2001/02/09 02:04:01 xorgcvs Exp $ */
  2. /*
  3. Copyright 1990, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included
  10. in all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  12. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  13. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  14. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
  15. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  16. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  17. OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall
  19. not be used in advertising or otherwise to promote the sale, use or
  20. other dealings in this Software without prior written authorization
  21. from The Open Group.
  22. */
  23. /* $XFree86: xc/lib/font/bitmap/bdfint.h,v 1.4 2001/01/17 19:43:26 dawes Exp $ */
  24. #ifndef BDFINT_H
  25. #define BDFINT_H
  26. #define bdfIsPrefix(buf,str) (!strncmp((char *)buf,str,strlen(str)))
  27. #define bdfStrEqual(s1,s2) (!strcmp(s1,s2))
  28. #define BDF_GENPROPS 6
  29. #define NullProperty ((FontPropPtr)0)
  30. /*
  31.  * This structure holds some properties we need to generate if they aren't
  32.  * specified in the BDF file and some other values read from the file
  33.  * that we'll need to calculate them.  We need to keep track of whether
  34.  * or not we've read them.
  35.  */
  36. typedef struct BDFSTAT {
  37.     int         linenum;
  38.     char       *fileName;
  39.     char        fontName[MAXFONTNAMELEN];
  40.     float       pointSize;
  41.     int         resolution_x;
  42.     int         resolution_y;
  43.     int         digitCount;
  44.     int         digitWidths;
  45.     int         exHeight;
  46.     FontPropPtr fontProp;
  47.     FontPropPtr pointSizeProp;
  48.     FontPropPtr resolutionXProp;
  49.     FontPropPtr resolutionYProp;
  50.     FontPropPtr resolutionProp;
  51.     FontPropPtr xHeightProp;
  52.     FontPropPtr weightProp;
  53.     FontPropPtr quadWidthProp;
  54.     BOOL        haveFontAscent;
  55.     BOOL        haveFontDescent;
  56.     BOOL        haveDefaultCh;
  57. }           bdfFileState;
  58. extern void bdfError ( char * message, ... );
  59. extern void bdfWarning ( char *message, ... );
  60. extern unsigned char * bdfGetLine ( FontFilePtr file, unsigned char *buf, 
  61.     int len );
  62. extern Atom bdfForceMakeAtom ( char *str, int *size );
  63. extern Atom bdfGetPropertyValue ( char *s );
  64. extern int bdfIsInteger ( char *str );
  65. extern unsigned char bdfHexByte ( unsigned char *s );
  66. extern Bool bdfSpecialProperty ( FontPtr pFont, FontPropPtr prop, 
  67.  char isString, bdfFileState *bdfState );
  68. extern int bdfReadFont( FontPtr pFont, FontFilePtr file, 
  69. int bit, int byte, int glyph, int scan );
  70. extern int bdfReadFontInfo( FontInfoPtr pFontInfo, FontFilePtr file );
  71. extern void FontCharInkMetrics ( FontPtr pFont, CharInfoPtr pCI, 
  72.  xCharInfo *pInk );
  73. extern void FontCharReshape ( FontPtr pFont, CharInfoPtr pSrc, 
  74.       CharInfoPtr pDst );
  75. #endif /* BDFINT_H */