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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. * $Xorg: TextP.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/TextP.h,v 3.21 2001/12/14 19:54:44 dawes Exp $ */
  40. #ifndef _XawTextP_h
  41. #define _XawTextP_h
  42. #include <X11/Xfuncproto.h>
  43. #include <X11/Xaw/Text.h>
  44. #include <X11/Xaw/SimpleP.h>
  45. _XFUNCPROTOBEGIN
  46. #define MAXCUT 30000 /* Maximum number of characters that can be cut */
  47. #define XawTextGetLastPosition(ctx)
  48. XawTextSourceScan((ctx)->text.source, 0,
  49.   XawstAll, XawsdRight, 1, True)
  50. #define GETLASTPOS XawTextGetLastPosition(ctx)
  51. #define zeroPosition ((XawTextPosition)0)
  52. extern XtActionsRec _XawTextActionsTable[];
  53. extern Cardinal _XawTextActionsTableCount;
  54. #define XawLF   0x0a
  55. #define XawCR   0x0d
  56. #define XawTAB   0x09
  57. #define XawBS   0x08
  58. #define XawSP   0x20
  59. #define XawDEL   0x7f
  60. #define XawESC   0x1b
  61. #define XawBSLASH '\'
  62. /* constants that subclasses may want to know */
  63. #define DEFAULT_TEXT_HEIGHT ((Dimension)~0)
  64. #define DEFAULT_TAB_SIZE 8
  65. /* displayable text management data structures */
  66. typedef struct {
  67.     XawTextPosition position;
  68.     Position y;
  69. #ifndef OLDXAW
  70.     unsigned int textWidth;
  71. #else
  72.     Dimension textWidth;
  73. #endif
  74. } XawTextLineTableEntry, *XawTextLineTableEntryPtr;
  75. typedef struct {
  76.     XawTextPosition left, right;
  77.     XawTextSelectType type;
  78.     Atom *selections;
  79.     int atom_count;
  80.     int array_size;
  81. } XawTextSelection;
  82. typedef struct _XawTextSelectionSalt {
  83.     struct _XawTextSelectionSalt *next;
  84.     XawTextSelection s;
  85.     /* 
  86.      * The element "contents" stores the CT string which is gotten in the
  87.      * function _XawTextSaltAwaySelection()
  88.     */ 
  89.     char *contents;
  90.     int length;
  91. } XawTextSelectionSalt;
  92. #ifndef OLDXAW
  93. typedef struct _XawTextKillRing {
  94.     struct _XawTextKillRing *next;
  95.     char *contents;
  96.     int length;
  97.     unsigned refcount;
  98.     unsigned long format;
  99. } XawTextKillRing;
  100. extern XawTextKillRing *xaw_text_kill_ring;
  101. #endif
  102. /* Line Tables are n+1 long - last position displayed is in last lt entry */
  103. typedef struct {
  104.     XawTextPosition top;  /* Top of the displayed text */
  105.     int lines;  /* How many lines in this table */
  106. #ifndef OLDXAW
  107.     int base_line;  /* line number of first entry */
  108. #endif
  109.     XawTextLineTableEntry *info; /* A dynamic array, one entry per line  */
  110. } XawTextLineTable, *XawTextLineTablePtr;
  111. typedef struct _XawTextMargin {
  112.     Position left, right, top, bottom;
  113. } XawTextMargin;
  114. typedef struct _XmuScanline XmuTextUpdate;
  115. #define VMargins(ctx)  ((ctx)->text.margin.top + (ctx)->text.margin.bottom)
  116. #define HMargins(ctx)  ((ctx)->text.left_margin + (ctx)->text.margin.right)
  117. #define RVMargins(ctx) ((ctx)->text.r_margin.top + (ctx)->text.r_margin.bottom)
  118. #define RHMargins(ctx) ((ctx)->text.r_margin.left + (ctx)->text.r_margin.right)
  119. #define IsPositionVisible(ctx, pos) 
  120. (pos >= ctx->text.lt.info[0].position && 
  121.  pos < ctx->text.lt.info[ctx->text.lt.lines].position)
  122. /*
  123.  * Search & Replace data structure
  124.  */
  125. struct SearchAndReplace {
  126.     Boolean selection_changed; /* flag so that the selection cannot be
  127.    changed out from underneath query-replace.*/
  128.     Widget search_popup; /* The poppup widget that allows searches.*/
  129.     Widget label1; /* The label widgets for the search window. */
  130.     Widget label2;
  131.     Widget left_toggle;  /* The left search toggle radioGroup. */
  132.     Widget right_toggle; /* The right search toggle radioGroup. */
  133.     Widget rep_label; /* The Replace label string. */
  134.     Widget rep_text; /* The Replace text field. */
  135.     Widget search_text;  /* The Search text field. */
  136.     Widget rep_one; /* The Replace one button. */
  137.     Widget rep_all; /* The Replace all button. */
  138. #ifndef OLDXAW
  139.     Widget case_sensitive; /* The "Case Sensitive" toggle */
  140. #endif
  141. };
  142. /* New fields for the Text widget class record */
  143. typedef struct {
  144.   XtPointer extension;
  145. } TextClassPart;
  146. /* Full class record declaration */
  147. typedef struct _TextClassRec {
  148.     CoreClassPart core_class;
  149.     SimpleClassPart simple_class;
  150.     TextClassPart text_class;
  151. } TextClassRec;
  152. extern TextClassRec textClassRec;
  153. /* New fields for the Text widget record */
  154. typedef struct _TextPart {
  155.     /* resources */
  156.     Widget source, sink;
  157.     XawTextPosition insertPos;
  158.     XawTextSelection s;
  159.     XawTextSelectType *sarray;      /* Array to cycle for selections */
  160.     XawTextSelectionSalt *salt;      /* salted away selections */
  161.     int left_margin;
  162.     int dialog_horiz_offset, dialog_vert_offset; /* position for popup dialog */
  163.     Boolean display_caret;      /* insertion pt visible iff T */
  164.     Boolean auto_fill;      /* Auto fill mode? */
  165.     XawTextScrollMode scroll_vert, scroll_horiz;
  166.     XawTextWrapMode wrap;      /* The type of wrapping */
  167.     XawTextResizeMode resize;
  168.     XawTextMargin r_margin;      /* The real margins */
  169. #ifndef OLDXAW
  170.     XtCallbackList position_callbacks;
  171. #else
  172.     XtPointer pad1;
  173. #endif
  174.     /* private state */
  175.     XawTextMargin margin;      /* The current margins */
  176.     XawTextLineTable lt;
  177.     XawTextScanDirection extendDir;
  178.     XawTextSelection origSel;      /* the selection being modified */
  179.     Time lasttime;      /* timestamp of last processed action */
  180.     Time time;      /* time of last key or button action */
  181.     Position ev_x, ev_y;      /* x, y coords for key or button action */
  182.     Widget vbar, hbar;      /* The scroll bars (none = NULL) */
  183.     struct SearchAndReplace *search;      /* Search and replace structure */
  184.     Widget file_insert;      /* The file insert popup widget */
  185.     XmuTextUpdate *update;      /* Position intervals to update */
  186. #ifndef OLDXAW
  187.     int line_number;
  188.     short column_number;
  189.     unsigned char kill_ring;
  190.     Boolean selection_state;
  191. #else
  192.     XtPointer pad2;
  193.     int pad3;
  194. #endif
  195.     int from_left;      /* Cursor position */
  196.     XawTextPosition lastPos;      /* Last position of source */
  197.     GC gc;
  198.     Boolean showposition;      /* True if we need to show the position */
  199.     Boolean hasfocus;      /* TRUE if we currently have input focus*/
  200.     Boolean update_disabled;      /* TRUE if display updating turned off */
  201.     Boolean clear_to_eol;      /* Clear to eol when painting text? */
  202.     XawTextPosition old_insert;      /* Last insertPos for batched updates */
  203.     short mult;      /* Multiplier */
  204. #ifndef OLDXAW
  205.     XawTextKillRing *kill_ring_ptr;
  206. #else
  207.     XtPointer pad4;
  208. #endif
  209.     /* private state, shared w/Source and Sink */
  210.     Boolean redisplay_needed;      /* in SetValues */
  211.     XawTextSelectionSalt *salt2;      /* salted away selections */
  212. #ifndef OLDXAW
  213.     char numeric;
  214.     char source_changed;
  215.     Boolean overwrite;                      /* Overwrite mode */
  216.     /* new resources and states, for text edition
  217.      * Note: a fixed width font is required for these resources/states.
  218.      */
  219.     short left_column, right_column;
  220.     XawTextJustifyMode justify;
  221.     XtPointer pad[4]; /* for future use and keep binary compatability */
  222. #endif
  223. } TextPart;
  224. #define XtRWrapMode "WrapMode"
  225. #define XtRScrollMode "ScrollMode"
  226. #define XtRResizeMode "ResizeMode"
  227. #define XtRJustifyMode "JustifyMode"
  228. /* full instance record */
  229. typedef struct _TextRec {
  230.     CorePart core;
  231.     SimplePart simple;
  232.     TextPart text;
  233. } TextRec;
  234. /*
  235.  * Semi-private functions
  236.  * for use by other Xaw modules only
  237.  */
  238. void _XawTextBuildLineTable
  239. (
  240.  TextWidget ctx,
  241.  XawTextPosition top_pos,
  242.  _XtBoolean force_rebuild
  243.  );
  244. char *_XawTextGetSTRING
  245. (
  246.  TextWidget ctx,
  247.  XawTextPosition left,
  248.  XawTextPosition right
  249.  );
  250. void _XawTextSaltAwaySelection
  251. (
  252.  TextWidget ctx,
  253.  Atom *selections,
  254.  int num_atoms
  255.  );
  256. void _XawTextPosToXY
  257. (
  258.  Widget w,
  259.  XawTextPosition pos,
  260.  Position *x,
  261.  Position *y
  262.  );
  263. void _XawTextNeedsUpdating
  264. (
  265.  TextWidget ctx,
  266.  XawTextPosition left,
  267.  XawTextPosition right
  268.  );
  269. _XFUNCPROTOEND
  270. #endif /* _XawTextP_h */