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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: fontxlfd.h,v 1.4 2001/02/09 02:04:04 xorgcvs Exp $ */
  2. /*
  3. Copyright 1990, 1994, 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/include/fontxlfd.h,v 1.5 2001/01/17 19:43:32 dawes Exp $ */
  24. /*
  25.  * Author:  Keith Packard, MIT X Consortium
  26.  */
  27. #ifndef _FONTXLFD_H_
  28. #define _FONTXLFD_H_
  29. #include <X11/fonts/FSproto.h>
  30. /* Constants for values_supplied bitmap */
  31. #define SIZE_SPECIFY_MASK 0xf
  32. #define PIXELSIZE_MASK 0x3
  33. #define PIXELSIZE_UNDEFINED 0
  34. #define PIXELSIZE_SCALAR 0x1
  35. #define PIXELSIZE_ARRAY 0x2
  36. #define PIXELSIZE_SCALAR_NORMALIZED 0x3 /* Adjusted for resolution */
  37. #define POINTSIZE_MASK 0xc
  38. #define POINTSIZE_UNDEFINED 0
  39. #define POINTSIZE_SCALAR 0x4
  40. #define POINTSIZE_ARRAY 0x8
  41. #define PIXELSIZE_WILDCARD 0x10
  42. #define POINTSIZE_WILDCARD 0x20
  43. #define ENHANCEMENT_SPECIFY_MASK 0x40
  44. #define CHARSUBSET_SPECIFIED 0x40
  45. #define EPS 1.0e-20
  46. #define XLFD_NDIGITS 3 /* Round numbers in pixel and
  47.    point arrays to this many
  48.    digits for repeatability */
  49. typedef struct _FontScalable {
  50.     int values_supplied; /* Bitmap identifying what advanced
  51.    capabilities or enhancements
  52.    were specified in the font name */
  53.     double pixel_matrix[4];
  54.     double point_matrix[4];
  55.     /* Pixel and point fields are deprecated in favor of the
  56.        transformation matrices.  They are provided and filled in for the
  57.        benefit of rasterizers that do not handle the matrices.  */
  58.     int pixel,
  59. point;
  60.     int         x,
  61.                 y,
  62.                 width;
  63.     char *xlfdName;
  64.     int nranges;
  65.     fsRange *ranges;
  66. }           FontScalableRec, *FontScalablePtr;
  67. extern double xlfd_round_double ( double x );
  68. extern Bool FontParseXLFDName ( char *fname, FontScalablePtr vals, int subst );
  69. extern fsRange *FontParseRanges ( char *name, int *nranges );
  70. #define FONT_XLFD_REPLACE_NONE 0
  71. #define FONT_XLFD_REPLACE_STAR 1
  72. #define FONT_XLFD_REPLACE_ZERO 2
  73. #define FONT_XLFD_REPLACE_VALUE 3
  74. #endif /* _FONTXLFD_H_ */