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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: Xct.h,v 1.4 2001/02/09 02:03:53 xorgcvs Exp $ */
  2. /*
  3. Copyright 1989, 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 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. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. */
  21. /* $XFree86: xc/lib/Xmu/Xct.h,v 1.6 2001/01/17 19:42:58 dawes Exp $ */
  22. #ifndef _Xct_h
  23. #define _Xct_h
  24. #include <X11/Xfuncproto.h>
  25. #define XctVersion 1
  26. typedef unsigned char *XctString;
  27. typedef enum {
  28.     XctUnspecified,
  29.     XctLeftToRight,
  30.     XctRightToLeft
  31. } XctHDirection;
  32. typedef unsigned long XctFlags;
  33. /* These are bits in XctFlags. */
  34. #define XctSingleSetSegments 0x0001
  35.    /* This means that returned segments should contain characters from only
  36.     * one set (C0, C1, GL, GR).  When this is requested, XctSegment is never
  37.     * returned, instead XctC0Segment, XctC1Segment, XctGlSegment, and
  38.     * XctGRSegment are returned.  C0 and C1 segments are always returned as
  39.     * singleton characters.
  40.     */
  41. #define XctProvideExtensions 0x0002
  42.    /* This means that if the Compound Text string is from a higher version
  43.     * than this code is implemented to, then syntactically correct but unknown
  44.     * control sequences should be returned as XctExtension items.  If this
  45.     * flag is not set, and the Compound Text string version indicates that
  46.     * extensions cannot be ignored, then each unknown control sequence will be
  47.     * reported as an XctError.
  48.     */
  49. #define XctAcceptC0Extensions 0x0004
  50.    /* This means that if the Compound Text string is from a higher version
  51.     * than this code is implemented to, then unknown C0 characters should be
  52.     * treated as if they were legal, and returned as C0 characters (regardless
  53.     * of how XctProvideExtensions is set).  If this flag is not set, then all
  54.     * unknown C0 characters are treated according to XctProvideExtensions.
  55.     */
  56. #define XctAcceptC1Extensions 0x0008
  57.    /* This means that if the Compound Text string is from a higher version
  58.     * than this code is implemented to, then unknown C0 characters should be
  59.     * treated as if they were legal, and returned as C0 characters (regardless
  60.     * of how XctProvideExtensions is set).  If this flag is not set, then all
  61.     * unknown C0 characters are treated according to XctProvideExtensions.
  62.     */
  63. #define XctHideDirection 0x0010
  64.    /* This means that horizontal direction changes should be reported as
  65.     * XctHorizontal items.  If this flag is not set, then direction changes are
  66.     * not returned as items, but the current direction is still maintained and
  67.     * reported for other items.
  68.     */
  69. #define XctFreeString 0x0020
  70.    /* This means that XctFree should free the Compound Text string (that was
  71.     * passed to XctCreate.  If this flag is not set, the string is not freed.
  72.     */
  73. #define XctShiftMultiGRToGL 0x0040
  74.    /* Translate GR segments on-the-fly into GL segments for the GR sets:
  75.     * GB2312.1980-1, JISX0208.1983-1, and KSC5601.1987-1.
  76.     */
  77. /* This is the return type for XctNextItem. */
  78. typedef enum {
  79.     XctSegment, /* used when XctSingleSetSegments is not requested */
  80.     XctC0Segment, /* used when XctSingleSetSegments is requested */
  81.     XctGLSegment, /* used when XctSingleSetSegments is requested */
  82.     XctC1Segment, /* used when XctSingleSetSegments is requested */
  83.     XctGRSegment, /* used when XctSingleSetSegments is requested */
  84.     XctExtendedSegment, /* an extended segment */
  85.     XctExtension, /* used when XctProvideExtensions is requested */
  86.     XctHorizontal, /* horizontal direction or depth change */
  87.     XctEndOfText, /* end of text string */
  88.     XctError /* syntactic or semantic error */
  89. } XctResult;
  90. typedef struct _XctRec {
  91.     XctString total_string; /* as given to XctCreate */
  92.     int total_length; /* as given to XctCreate */
  93.     XctFlags flags; /* as given to XctCreate */
  94.     int version; /* indicates the version of the CT spec
  95.  * the string was produced from */
  96.     int can_ignore_exts;/* non-zero if ignoring extensions is
  97.  * acceptable, else zero */
  98.     XctString item; /* item returned from XctNextItem */
  99.     unsigned item_length; /* length of item in bytes */
  100.     int char_size; /* number of bytes per character in
  101.  * item, with zero meaning variable */
  102.     char *encoding; /* Encoding name for item */
  103.     XctHDirection horizontal; /* direction of item */
  104.     unsigned horz_depth; /* current direction nesting depth */
  105.     char *GL; /* "{I} F" string for current GL */
  106.     char *GL_encoding; /* Encoding name for current GL */
  107.     int GL_set_size; /* 94 or 96 */
  108.     int GL_char_size; /* number of bytes per GL character */
  109.     char *GR; /* "{I} F" string for current GR */
  110.     char *GR_encoding; /* Encoding name for current GR */
  111.     int GR_set_size; /* 94 or 96 */
  112.     int GR_char_size; /* number of bytes per GR character */
  113.     char *GLGR_encoding; /* Encoding name for current GL+GR,
  114.  * if known */
  115.     struct _XctPriv *priv; /* private to parser, don't peek */
  116. } *XctData;
  117. /* these are the external routines */
  118. _XFUNCPROTOBEGIN
  119. XctData XctCreate
  120. (
  121.  _Xconst unsigned char *string,
  122.  int length,
  123.  XctFlags flags
  124. );
  125. XctResult XctNextItem
  126. (
  127.  XctData data
  128. );
  129. void XctFree
  130. (
  131.  XctData data
  132.  );
  133. void XctReset
  134. (
  135.  XctData data
  136.  );
  137. _XFUNCPROTOEND
  138. #endif /* _Xct_h */