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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. Copyright (c) 1998-2001 by Juliusz Chroboczek
  3. Permission is hereby granted, free of charge, to any person obtaining a copy
  4. of this software and associated documentation files (the "Software"), to deal
  5. in the Software without restriction, including without limitation the rights
  6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. copies of the Software, and to permit persons to whom the Software is
  8. furnished to do so, subject to the following conditions:
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  15. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  16. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  17. THE SOFTWARE.
  18. */
  19. /* $XFree86: xc/lib/font/include/fontenc.h,v 1.7 2000/11/14 16:54:45 dawes Exp $ */
  20. /* Header for backend-independent encoding code */
  21. /* An encoding is identified with a name.  An encoding contains some
  22.    global encoding data, such as its size, and a set of mappings.
  23.    Mappings are identified by their type and two integers, known as
  24.    pid and eid, the interpretation of which is type dependent. */
  25. #ifndef _FONTENC_H
  26. #define _FONTENC_H
  27. /* Encoding types.  For future extensions, clients should be prepared
  28.    to ignore unknown encoding types. */
  29. /* 0 is treated specially. */
  30. #define FONT_ENCODING_UNICODE 1
  31. #define FONT_ENCODING_TRUETYPE 2
  32. #define FONT_ENCODING_POSTSCRIPT 3
  33. /* This structure represents a mapping, either from numeric codes from
  34.    numeric codes, or from numeric codes to strings. */
  35. /* It is expected that only one of `recode' and `name' will actually
  36.    be present.  However, having both fields simplifies the interface
  37.    somewhat. */
  38. typedef struct _FontMap {
  39.     int type;                   /* the type of the mapping */
  40.     int pid, eid;               /* the identification of the mapping */
  41.     unsigned (*recode)(unsigned, void*); /* mapping function */
  42.     char *(*name)(unsigned, void*); /* function returning glyph names */
  43.     void *client_data;          /* second parameter of the two above */
  44.     struct _FontMap *next;      /* link to next element in list */
  45.     /* The following was added for version 0.3 of the font interface. */
  46.     /* It should be kept at the end to preserve binary compatibility. */
  47.     struct _FontEnc *encoding;
  48. } FontMapRec, *FontMapPtr;
  49. /* This is the structure that holds all the info for one encoding.  It
  50.    consists of a charset name, its size, and a linked list of mappings
  51.    like above. */
  52. typedef struct _FontEnc {
  53.     char *name;                 /* the name of the encoding */
  54.     char **aliases;             /* its aliases, null terminated */
  55.     int size;                   /* its size, either in bytes or rows */
  56.     int row_size;               /* the size of a row, or 0 if bytes */
  57.     FontMapPtr mappings;        /* linked list of mappings */
  58.     struct _FontEnc *next;      /* link to next element */
  59.     /* the following two were added in version 0.2 of the font interface */
  60.     /* they should be kept at the end to preserve binary compatibility */
  61.     int first;                  /* first byte or row */
  62.     int first_col;              /* first column in each row */
  63. } FontEncRec, *FontEncPtr;
  64. typedef struct _FontMapReverse {
  65.   unsigned int (*reverse)(unsigned, void*);
  66.   void *data;
  67. } FontMapReverseRec, *FontMapReversePtr;
  68. /* Function prototypes */
  69. /* extract an encoding name from an XLFD name.  Returns a pointer to a
  70.    *static* buffer, or NULL */
  71. char *FontEncFromXLFD(const char*, int);
  72. /* find the encoding data for a given encoding name; second parameter
  73.    is the filename of the font for which the encoding is needed.
  74.    Returns NULL on failure. */
  75. FontEncPtr FontEncFind(const char*, const char*);
  76. /* Find a given mapping for an encoding.  This is only a convenience
  77.    function, as clients are allowed to scavenge the data structures
  78.    themselves (as the TrueType backend does). */
  79. FontMapPtr FontMapFind(FontEncPtr, int, int, int);
  80. /* Do both in a single step */
  81. FontMapPtr FontEncMapFind(const char *, int, int, int, const char *);
  82. /* Recode a code.  Always succeeds. */
  83. unsigned FontEncRecode(unsigned, FontMapPtr);
  84. /* Return a name for a code.  Returns a string or NULL. */
  85. char *FontEncName(unsigned, FontMapPtr);
  86. /* Return a pointer to the name of the system encodings directory. */
  87. /* This string is static and should not be modified. */
  88. char* FontEncDirectory(void);
  89. /* Identify an encoding file.  If fileName doesn't exist, or is not an
  90.    encoding file, return NULL, otherwise returns a NULL-terminated
  91.    array of strings. */
  92. char **FontEncIdentify(const char *fileName);
  93. FontMapReversePtr FontMapReverse(FontMapPtr);
  94. void FontMapReverseFree(FontMapReversePtr);
  95. #endif