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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: pcf.h,v 1.4 2001/02/09 02:04:02 xorgcvs Exp $ */
  2. /*
  3. Copyright 1991, 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/pcf.h,v 1.4 2001/12/14 19:56:47 dawes Exp $ */
  24. /*
  25.  * Author:  Keith Packard, MIT X Consortium
  26.  */
  27. #ifndef _PCF_H_
  28. #define _PCF_H_
  29. #include <X11/fonts/fntfilio.h>
  30. /*
  31.  * Information used to read/write PCF fonts
  32.  */
  33. typedef struct _PCFTable {
  34.     CARD32      type;
  35.     CARD32      format;
  36.     CARD32      size;
  37.     CARD32      offset;
  38. }           PCFTableRec, *PCFTablePtr;
  39. #define PCF_FILE_VERSION (('p'<<24)|('c'<<16)|('f'<<8)|1)
  40. #define PCF_FORMAT_MASK 0xffffff00
  41. #define PCF_DEFAULT_FORMAT 0x00000000
  42. #define PCF_INKBOUNDS 0x00000200
  43. #define PCF_ACCEL_W_INKBOUNDS 0x00000100
  44. #define PCF_COMPRESSED_METRICS 0x00000100
  45. #define PCF_FORMAT_MATCH(a,b) (((a)&PCF_FORMAT_MASK) == ((b)&PCF_FORMAT_MASK))
  46. #define PCF_GLYPH_PAD_MASK (3<<0)
  47. #define PCF_BYTE_MASK (1<<2)
  48. #define PCF_BIT_MASK (1<<3)
  49. #define PCF_SCAN_UNIT_MASK (3<<4)
  50. #define PCF_BYTE_ORDER(f) (((f) & PCF_BYTE_MASK)?MSBFirst:LSBFirst)
  51. #define PCF_BIT_ORDER(f) (((f) & PCF_BIT_MASK)?MSBFirst:LSBFirst)
  52. #define PCF_GLYPH_PAD_INDEX(f) ((f) & PCF_GLYPH_PAD_MASK)
  53. #define PCF_GLYPH_PAD(f) (1<<PCF_GLYPH_PAD_INDEX(f))
  54. #define PCF_SCAN_UNIT_INDEX(f) (((f) & PCF_SCAN_UNIT_MASK) >> 4)
  55. #define PCF_SCAN_UNIT(f) (1<<PCF_SCAN_UNIT_INDEX(f))
  56. #define PCF_FORMAT_BITS(f) ((f) & (PCF_GLYPH_PAD_MASK|PCF_BYTE_MASK|PCF_BIT_MASK|PCF_SCAN_UNIT_MASK))
  57. #define PCF_SIZE_TO_INDEX(s) ((s) == 4 ? 2 : (s) == 2 ? 1 : 0)
  58. #define PCF_INDEX_TO_SIZE(b) (1<<b)
  59. #define PCF_FORMAT(bit,byte,glyph,scan) (
  60.     (PCF_SIZE_TO_INDEX(scan) << 4) | 
  61.     (((bit) == MSBFirst ? 1 : 0) << 3) | 
  62.     (((byte) == MSBFirst ? 1 : 0) << 2) | 
  63.     (PCF_SIZE_TO_INDEX(glyph) << 0))
  64. #define PCF_PROPERTIES     (1<<0)
  65. #define PCF_ACCELERATORS     (1<<1)
  66. #define PCF_METRICS     (1<<2)
  67. #define PCF_BITMAPS     (1<<3)
  68. #define PCF_INK_METRICS     (1<<4)
  69. #define PCF_BDF_ENCODINGS     (1<<5)
  70. #define PCF_SWIDTHS     (1<<6)
  71. #define PCF_GLYPH_NAMES     (1<<7)
  72. #define PCF_BDF_ACCELERATORS     (1<<8)
  73. extern int pcfReadFont ( FontPtr pFont, FontFilePtr file, 
  74.  int bit, int byte, int glyph, int scan );
  75. extern int pcfReadFontInfo ( FontInfoPtr pFontInfo, FontFilePtr file );
  76. extern int pmfReadFont ( FontPtr pFont, FontFilePtr file, 
  77.  int bit, int byte, int glyph, int scan );
  78. extern int pcfWriteFont ( FontPtr pFont, FontFilePtr file );
  79. extern void pcfError ( const char *, ... );
  80. #endif /* _PCF_H_ */