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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. * $Xorg: TextSinkP.h,v 1.4 2001/02/09 02:03:46 xorgcvs Exp $
  3. */
  4. /***********************************************************
  5. Copyright 1987, 1988, 1994, 1998  The Open Group
  6. Permission to use, copy, modify, distribute, and sell this software and its
  7. documentation for any purpose is hereby granted without fee, provided that
  8. the above copyright notice appear in all copies and that both that
  9. copyright notice and this permission notice appear in supporting
  10. documentation.
  11. The above copyright notice and this permission notice shall be included in
  12. all copies or substantial portions of the Software.
  13. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  16. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  17. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  18. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  19. Except as contained in this notice, the name of The Open Group shall not be
  20. used in advertising or otherwise to promote the sale, use or other dealings
  21. in this Software without prior written authorization from The Open Group.
  22. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  23.                         All Rights Reserved
  24. Permission to use, copy, modify, and distribute this software and its 
  25. documentation for any purpose and without fee is hereby granted, 
  26. provided that the above copyright notice appear in all copies and that
  27. both that copyright notice and this permission notice appear in 
  28. supporting documentation, and that the name of Digital not be
  29. used in advertising or publicity pertaining to distribution of the
  30. software without specific, written prior permission.  
  31. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  32. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  33. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  34. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  35. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  36. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  37. SOFTWARE.
  38. ******************************************************************/
  39. /* $XFree86: xc/lib/Xaw/TextSinkP.h,v 1.11 2001/01/17 19:42:35 dawes Exp $ */
  40. #ifndef _XawTextSinkP_h
  41. #define _XawTextSinkP_h
  42. /*
  43.  * TextSink Object Private Data
  44.  */
  45. #include <X11/Xaw/TextSink.h>
  46. #include <X11/Xaw/TextP.h> /* This sink works with the Text widget */
  47. #include <X11/Xaw/TextSrcP.h> /* This sink works with the Text Source */
  48. #include <X11/Xmu/Xmu.h>
  49. #ifndef OLDXAW
  50. /* font/fontset defined? */
  51. #define XAW_TPROP_FONT (1<<0)
  52. #define XAW_TPROP_FONTSET (1<<1)
  53. /* extra attributes */
  54. #define XAW_TPROP_FOREGROUND (1<<2)
  55. #define XAW_TPROP_BACKGROUND (1<<3)
  56. #define XAW_TPROP_FPIXMAP (1<<4)
  57. #define XAW_TPROP_BPIXMAP (1<<5)
  58. #define XAW_TPROP_UNDERLINE (1<<6)
  59. #define XAW_TPROP_OVERSTRIKE (1<<7)
  60. #define XAW_TPROP_SUBSCRIPT (1<<8)
  61. #define XAW_TPROP_SUPERSCRIPT (1<<9)
  62. /* xlfd attributes */
  63. #define XAW_TPROP_FOUNDRY (1<<0)
  64. #define XAW_TPROP_FAMILY (1<<1)
  65. #define XAW_TPROP_WEIGHT (1<<2)
  66. #define XAW_TPROP_SLANT (1<<3)
  67. #define XAW_TPROP_SETWIDTH (1<<4)
  68. #define XAW_TPROP_ADDSTYLE (1<<5)
  69. #define XAW_TPROP_PIXELSIZE (1<<6)
  70. #define XAW_TPROP_POINTSIZE (1<<7)
  71. #define XAW_TPROP_RESX (1<<8)
  72. #define XAW_TPROP_RESY (1<<9)
  73. #define XAW_TPROP_SPACING (1<<10)
  74. #define XAW_TPROP_AVGWIDTH (1<<11)
  75. #define XAW_TPROP_REGISTRY (1<<12)
  76. #define XAW_TPROP_ENCODING (1<<13)
  77. struct _XawTextProperty { /* to be extended/modified */
  78.     XrmQuark identifier, code;
  79.     unsigned long mask;
  80.     XFontStruct *font;
  81.     XFontSet fontset;
  82.     Pixel foreground, background;
  83.     Pixmap foreground_pixmap, background_pixmap;
  84.     XrmQuark xlfd;
  85.     unsigned long xlfd_mask;
  86.     XrmQuark foundry, family, weight, slant, setwidth, addstyle, pixel_size,
  87.      point_size, res_x, res_y, spacing, avgwidth, registry, encoding;
  88.     short underline_position, underline_thickness;
  89. };
  90. struct _XawTextPropertyList {
  91.     XrmQuark identifier;
  92.     Screen *screen;
  93.     Colormap colormap;
  94.     int depth;
  95.     XawTextProperty **properties;
  96.     Cardinal num_properties;
  97.     XawTextPropertyList *next;
  98. };
  99. typedef struct _XawTextPaintStruct XawTextPaintStruct;
  100. struct _XawTextPaintStruct {
  101.     XawTextPaintStruct *next;
  102.     int x, y, width;
  103.     char *text; /* formatted text */
  104.     Cardinal length; /* length of text */
  105.     XawTextProperty *property;
  106.     int max_ascent, max_descent;
  107.     XmuArea *backtabs;
  108.     Boolean highlight;
  109. };
  110. typedef struct {
  111.     XmuArea *clip, *hightabs; /* clip list */
  112.     XawTextPaintStruct *paint, *bearings; /* drawing information */
  113. } XawTextPaintList;
  114. typedef struct {
  115.     XtPointer next_extension;
  116.     XrmQuark record_type;
  117.     long version;
  118.     Cardinal record_size;
  119.     Bool (*BeginPaint)(Widget);
  120.     void (*PreparePaint)(Widget, int, int,
  121.  XawTextPosition, XawTextPosition, Bool);
  122.     void (*DoPaint)(Widget);
  123.     Bool (*EndPaint)(Widget);
  124. } TextSinkExtRec, *TextSinkExt;
  125. #endif
  126. typedef void (*_XawSinkDisplayTextProc)
  127.      (Widget, int, int, XawTextPosition, XawTextPosition, Bool);
  128. typedef void (*_XawSinkInsertCursorProc)
  129.      (Widget, int, int, XawTextInsertState);
  130. typedef void (*_XawSinkClearToBackgroundProc)
  131.      (Widget, int, int, unsigned int, unsigned int);
  132. typedef void (*_XawSinkFindPositionProc)
  133.      (Widget, XawTextPosition, int, int, Bool, XawTextPosition*, int*, int*);
  134. typedef void (*_XawSinkFindDistanceProc)
  135.      (Widget, XawTextPosition, int, XawTextPosition, int*,
  136.       XawTextPosition*, int*);
  137. typedef void (*_XawSinkResolveProc)
  138.      (Widget, XawTextPosition, int, int, XawTextPosition*);
  139. typedef int  (*_XawSinkMaxLinesProc)
  140.      (Widget, unsigned int);
  141. typedef int  (*_XawSinkMaxHeightProc)
  142.      (Widget, int);
  143. typedef void (*_XawSinkSetTabsProc)
  144.      (Widget, int, short*);
  145. typedef void (*_XawSinkGetCursorBoundsProc)
  146.      (Widget, XRectangle*);
  147. typedef struct _TextSinkClassPart {
  148.     _XawSinkDisplayTextProc DisplayText;
  149.     _XawSinkInsertCursorProc InsertCursor;
  150.     _XawSinkClearToBackgroundProc ClearToBackground;
  151.     _XawSinkFindPositionProc FindPosition;
  152.     _XawSinkFindDistanceProc FindDistance;
  153.     _XawSinkResolveProc Resolve;
  154.     _XawSinkMaxLinesProc MaxLines;
  155.     _XawSinkMaxHeightProc MaxHeight;
  156.     _XawSinkSetTabsProc SetTabs;
  157.     _XawSinkGetCursorBoundsProc GetCursorBounds;
  158. #ifndef OLDXAW
  159.     TextSinkExt extension;
  160. #endif
  161. } TextSinkClassPart;
  162. /* Full class record */
  163. typedef struct _TextSinkClassRec {
  164.     ObjectClassPart     object_class;
  165.     TextSinkClassPart text_sink_class;
  166. } TextSinkClassRec;
  167. extern TextSinkClassRec textSinkClassRec;
  168. /* New fields for the TextSink object */
  169. typedef struct {
  170.     /* resources */
  171.     Pixel foreground; /* Foreground color */
  172.     Pixel background; /* Background color */
  173.     /* private */
  174.     Position *tabs; /* The tab stops as pixel values */
  175.     short *char_tabs; /* The tabs stops as character values */
  176.     int tab_count; /* number of items in tabs */
  177. #ifndef OLDXAW
  178.     /* more resources */
  179.     Pixel cursor_color;
  180.     XawTextPropertyList *properties;
  181.     XawTextPaintList *paint;
  182.     XtPointer pad[2]; /* for future use and keep binary compatability */
  183. #endif
  184. } TextSinkPart;
  185. /* Full instance record */
  186. typedef struct _TextSinkRec {
  187.     ObjectPart  object;
  188.     TextSinkPart text_sink;
  189. } TextSinkRec;
  190. /* Semi private routines */
  191. #ifndef OLDXAW
  192. XawTextPropertyList *XawTextSinkConvertPropertyList
  193. (
  194.  String  name,
  195.  String  spec,
  196.  Screen *screen,
  197.  Colormap  Colormap,
  198.  int  depth
  199.  );
  200. XawTextProperty *XawTextSinkGetProperty
  201. (
  202.  Widget  w,
  203.  XrmQuark  property
  204.  );
  205. XawTextProperty *XawTextSinkCopyProperty
  206. (
  207.  Widget w,
  208.  XrmQuark property
  209.  );
  210. XawTextProperty *XawTextSinkAddProperty
  211. (
  212.  Widget  w,
  213.  XawTextProperty *property
  214.  );
  215. XawTextProperty *XawTextSinkCombineProperty
  216. (
  217.  Widget  w,
  218.  XawTextProperty *result_in_out,
  219.  XawTextProperty *property,
  220.  Bool  override
  221.  );
  222. Bool XawTextSinkBeginPaint
  223. (
  224.  Widget w
  225.  );
  226. void XawTextSinkPreparePaint
  227. (
  228.  Widget w,
  229.  int y,
  230.  int line,
  231.  XawTextPosition from,
  232.  XawTextPosition to,
  233.  Bool highlight
  234. );
  235. void XawTextSinkDoPaint
  236. (
  237.  Widget w
  238.  );
  239. Bool XawTextSinkEndPaint
  240. (
  241.  Widget w
  242.  );
  243. #endif
  244. #define XtInheritDisplayText    ((_XawSinkDisplayTextProc)_XtInherit)
  245. #define XtInheritInsertCursor    ((_XawSinkInsertCursorProc)_XtInherit)
  246. #define XtInheritClearToBackground ((_XawSinkClearToBackgroundProc)_XtInherit)
  247. #define XtInheritFindPosition    ((_XawSinkFindPositionProc)_XtInherit)
  248. #define XtInheritFindDistance    ((_XawSinkFindDistanceProc)_XtInherit)
  249. #define XtInheritResolve    ((_XawSinkResolveProc)_XtInherit)
  250. #define XtInheritMaxLines    ((_XawSinkMaxLinesProc)_XtInherit)
  251. #define XtInheritMaxHeight    ((_XawSinkMaxHeightProc)_XtInherit)
  252. #define XtInheritSetTabs    ((_XawSinkSetTabsProc)_XtInherit)
  253. #define XtInheritGetCursorBounds   ((_XawSinkGetCursorBoundsProc)_XtInherit)
  254. #endif /* _XawTextSinkP_h */