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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: font.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/font.h,v 3.4 2000/11/27 00:10:02 dawes Exp $ */
  21. /* $NCDXorg: @(#)font.h,v 1.7 1991/06/24 17:00:23 lemke Exp $ */
  22. #ifndef FONT_H
  23. #define FONT_H
  24. #ifndef BitmapFormatByteOrderMask
  25. #include "fsmasks.h"
  26. #endif
  27. /* data structures */
  28. #ifndef _XTYPEDEF_FONTPTR
  29. typedef struct _Font *FontPtr;
  30. #define _XTYPEDEF_FONTPTR
  31. #endif
  32. typedef struct _FontInfo *FontInfoPtr;
  33. typedef struct _FontProp *FontPropPtr;
  34. typedef struct _ExtentInfo *ExtentInfoPtr;
  35. typedef struct _FontPathElement *FontPathElementPtr;
  36. #ifndef _XTYPEDEF_CHARINFOPTR
  37. typedef struct _CharInfo *CharInfoPtr;
  38. #define _XTYPEDEF_CHARINFOPTR
  39. #endif
  40. typedef struct _FontNames *FontNamesPtr;
  41. typedef struct _FontResolution *FontResolutionPtr;
  42. #define NullCharInfo ((CharInfoPtr) 0)
  43. #define NullFont ((FontPtr) 0)
  44. #define NullFontInfo ((FontInfoPtr) 0)
  45.  /* draw direction */
  46. #define LeftToRight 0
  47. #define RightToLeft 1
  48. #define BottomToTop 2
  49. #define TopToBottom 3
  50. typedef int DrawDirection;
  51. #define NO_SUCH_CHAR -1
  52. #define FontAliasType 0x1000
  53. #define AllocError 80
  54. #define StillWorking 81
  55. #define FontNameAlias 82
  56. #define BadFontName 83
  57. #define Suspended 84
  58. #define Successful 85
  59. #define BadFontPath 86
  60. #define BadCharRange 87
  61. #define BadFontFormat 88
  62. #define FPEResetFailed 89 /* for when an FPE reset won't work */
  63. /* OpenFont flags */
  64. #define FontLoadInfo 0x0001
  65. #define FontLoadProps 0x0002
  66. #define FontLoadMetrics 0x0004
  67. #define FontLoadBitmaps 0x0008
  68. #define FontLoadAll 0x000f
  69. #define FontOpenSync 0x0010
  70. #define FontReopen 0x0020
  71. /* Query flags */
  72. #define LoadAll 0x1
  73. #define FinishRamge 0x2
  74. #define       EightBitFont    0x4
  75. #define       SixteenBitFont  0x8
  76. /* Glyph Caching Modes */
  77. #define CACHING_OFF 0
  78. #define CACHE_16_BIT_GLYPHS 1
  79. #define CACHE_ALL_GLYPHS 2
  80. #define DEFAULT_GLYPH_CACHING_MODE CACHE_16_BIT_GLYPHS
  81. extern int glyphCachingMode;
  82. struct _Client;
  83. extern int StartListFontsWithInfo(
  84.     struct _Client * /*client*/,
  85.     int /*length*/,
  86.     unsigned char * /*pattern*/,
  87.     int /*max_names*/
  88. );
  89. extern FontNamesPtr MakeFontNamesRecord(
  90.     unsigned /* size */
  91. );
  92. extern void FreeFontNames(
  93.     FontNamesPtr /* pFN*/
  94. );
  95. extern int  AddFontNamesName(
  96.     FontNamesPtr /* names */,
  97.     char * /* name */,
  98.     int /* length */
  99. );
  100. #if 0 /* unused */
  101. extern int  FontToFSError();
  102. extern FontResolutionPtr GetClientResolution();
  103. #endif
  104. typedef struct _FontPatternCache    *FontPatternCachePtr;
  105. extern FontPatternCachePtr  MakeFontPatternCache (
  106.     void
  107. );
  108. extern void     FreeFontPatternCache (
  109.     FontPatternCachePtr /* cache */
  110. );
  111. extern void     EmptyFontPatternCache (
  112.     FontPatternCachePtr /* cache */
  113. );
  114. extern void     CacheFontPattern (
  115.     FontPatternCachePtr /* cache */,
  116.     char * /* pattern */,
  117.     int /* patlen */,
  118.     FontPtr /* pFont */
  119. );
  120. extern FontResolutionPtr GetClientResolutions(
  121.     int * /* num */
  122. );
  123. extern FontPtr     FindCachedFontPattern (
  124.     FontPatternCachePtr /* cache */,
  125.     char * /* pattern */,
  126.     int /* patlen */
  127. );
  128. extern void     RemoveCachedFontPattern (
  129.     FontPatternCachePtr /* cache */,
  130.     FontPtr /* pFont */
  131. );
  132. typedef enum {
  133.     Linear8Bit, TwoD8Bit, Linear16Bit, TwoD16Bit
  134. }           FontEncoding;
  135. #endif /* FONT_H */