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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. * $XConsortium: TextP.h,v 1.54 95/06/14 15:07:27 kaleb Exp $
  3. */
  4. /***********************************************************
  5. Copyright (c) 1987, 1988, 1994  X Consortium
  6. Permission is hereby granted, free of charge, to any person obtaining a copy
  7. of this software and associated documentation files (the "Software"), to deal
  8. in the Software without restriction, including without limitation the rights
  9. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. copies of the Software, and to permit persons to whom the Software is
  11. furnished to do so, subject to the following conditions:
  12. The above copyright notice and this permission notice shall be included in
  13. all copies or substantial portions of the Software.
  14. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  17. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  18. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  19. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  20. Except as contained in this notice, the name of the X Consortium shall not be
  21. used in advertising or otherwise to promote the sale, use or other dealings
  22. in this Software without prior written authorization from the X Consortium.
  23. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  24.                         All Rights Reserved
  25. Permission to use, copy, modify, and distribute this software and its 
  26. documentation for any purpose and without fee is hereby granted, 
  27. provided that the above copyright notice appear in all copies and that
  28. both that copyright notice and this permission notice appear in 
  29. supporting documentation, and that the name of Digital not be
  30. used in advertising or publicity pertaining to distribution of the
  31. software without specific, written prior permission.  
  32. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  33. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  34. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  35. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  36. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  37. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  38. SOFTWARE.
  39. ******************************************************************/
  40. #ifndef _XawTextP_h
  41. #define _XawTextP_h
  42. #include <X11/Xaw3d/Text.h>
  43. #include <X11/Xaw3d/SimpleP.h>
  44. /****************************************************************
  45.  *
  46.  * Text widget private
  47.  *
  48.  ****************************************************************/
  49. #define MAXCUT 30000 /* Maximum number of characters that can be cut. */
  50. #define GETLASTPOS  XawTextSourceScan(ctx->text.source, 0, 
  51.       XawstAll, XawsdRight, 1, TRUE)
  52. #define zeroPosition ((XawTextPosition) 0)
  53. extern XtActionsRec _XawTextActionsTable[];
  54. extern Cardinal _XawTextActionsTableCount;
  55. #define XawLF 0x0a
  56. #define XawCR 0x0d
  57. #define XawTAB 0x09
  58. #define XawBS 0x08
  59. #define XawSP 0x20
  60. #define XawDEL 0x7f
  61. #define XawESC  0x1b
  62. #define XawBSLASH '\'
  63. /* constants that subclasses may want to know */
  64. #define DEFAULT_TEXT_HEIGHT ((Dimension)~0)
  65. /* displayable text management data structures */
  66. typedef struct {
  67.   XawTextPosition position;
  68.   Position y;
  69.   Dimension textWidth;
  70. } XawTextLineTableEntry, *XawTextLineTableEntryPtr;
  71. typedef struct {
  72.     XawTextPosition   left, right;
  73.     XawTextSelectType type;
  74.     Atom*      selections;
  75.     int      atom_count;
  76.     int      array_size;
  77. } XawTextSelection;
  78. typedef struct _XawTextSelectionSalt {
  79.     struct _XawTextSelectionSalt    *next;
  80.     XawTextSelection s;
  81.     /* 
  82.      * The element "contents" stores the CT string which is gotten in the
  83.      * function _XawTextSaltAwaySelection().
  84.     */ 
  85.     char *contents;
  86.     int length;
  87. } XawTextSelectionSalt;
  88. /* Line Tables are n+1 long - last position displayed is in last lt entry */
  89. typedef struct {
  90.   XawTextPosition  top; /* Top of the displayed text. */
  91.   int  lines; /* How many lines in this table. */
  92.   XawTextLineTableEntry *info;  /* A dynamic array, one entry per line  */
  93. } XawTextLineTable, *XawTextLineTablePtr;
  94. typedef struct _XawTextMargin {
  95.   Position left, right, top, bottom;
  96. } XawTextMargin;
  97. #define VMargins(ctx) ( (ctx)->text.margin.top + (ctx)->text.margin.bottom )
  98. #define HMargins(ctx) ( (ctx)->text.margin.left + (ctx)->text.margin.right )
  99. #define IsPositionVisible(ctx, pos) 
  100. (pos >= ctx->text.lt.info[0].position && 
  101.  pos < ctx->text.lt.info[ctx->text.lt.lines].position)
  102. /*
  103.  * Search & Replace data structure.
  104.  */
  105. struct SearchAndReplace {
  106.   Boolean selection_changed; /* flag so that the selection cannot be
  107.    changed out from underneath query-replace.*/
  108.   Widget search_popup; /* The poppup widget that allows searches.*/
  109.   Widget label1; /* The label widgets for the search window. */
  110.   Widget label2;
  111.   Widget left_toggle; /* The left search toggle radioGroup. */
  112.   Widget right_toggle; /* The right search toggle radioGroup. */
  113.   Widget rep_label; /* The Replace label string. */
  114.   Widget rep_text; /* The Replace text field. */
  115.   Widget search_text; /* The Search text field. */
  116.   Widget rep_one; /* The Replace one button. */
  117.   Widget rep_all; /* The Replace all button. */
  118. };
  119.     
  120. /* Private Text Definitions */
  121. typedef int (*ActionProc)();
  122. /* New fields for the Text widget class record */
  123. typedef struct {int empty;} TextClassPart;
  124. struct text_move {
  125.     int h, v;
  126.     struct text_move * next;
  127. };
  128. /* Full class record declaration */
  129. typedef struct _TextClassRec {
  130.     CoreClassPart core_class;
  131.     SimpleClassPart simple_class;
  132.     TextClassPart text_class;
  133. } TextClassRec;
  134. extern TextClassRec textClassRec;
  135. /* New fields for the Text widget record */
  136. typedef struct _TextPart {
  137.     /* resources */
  138.     Widget              source, sink;
  139.     XawTextPosition insertPos;
  140.     XawTextSelection s;
  141.     XawTextSelectType *sarray;    /* Array to cycle for selections. */
  142.     XawTextSelectionSalt    *salt;      /* salted away selections */
  143.     int options;      /* wordbreak, scroll, etc. */
  144.     int dialog_horiz_offset; /* position for popup dialog */
  145.     int dialog_vert_offset;  /* position for popup dialog */
  146.     Boolean display_caret;      /* insertion pt visible iff T */
  147.     Boolean             auto_fill;           /* Auto fill mode? */
  148.     XawTextScrollMode   scroll_vert, scroll_horiz; /*what type of scrollbars.*/
  149.     XawTextWrapMode     wrap;            /* The type of wrapping. */
  150.     XawTextResizeMode   resize;              /* what to resize */
  151.     XawTextMargin       r_margin;            /* The real margins. */
  152.     XtCallbackList unrealize_callbacks; /* used for scrollbars */
  153.     
  154.     /* private state */
  155.     XawTextMargin       margin;            /* The current margins. */
  156.     XawTextLineTable lt;
  157.     XawTextScanDirection extendDir;
  158.     XawTextSelection origSel;    /* the selection being modified */
  159.     Time     lasttime;     /* timestamp of last processed action */
  160.     Time     time;     /* time of last key or button action */ 
  161.     Position     ev_x, ev_y;     /* x, y coords for key or button action */
  162.     Widget     vbar, hbar;     /* The scroll bars (none = NULL). */
  163.     struct SearchAndReplace * search;/* Search and replace structure. */
  164.     Widget          file_insert;    /* The file insert popup widget. */
  165.     XawTextPosition  *updateFrom;   /* Array of start positions for update. */
  166.     XawTextPosition  *updateTo;     /* Array of end positions for update. */
  167.     int     numranges;     /* How many update ranges there are. */
  168.     int     maxranges;     /* How many ranges we have space for */
  169.     XawTextPosition  lastPos;     /* Last position of source. */
  170.     GC              gc;
  171.     Boolean     showposition;   /* True if we need to show the position. */
  172.     Boolean         hasfocus;       /* TRUE if we currently have input focus.*/
  173.     Boolean     update_disabled; /* TRUE if display updating turned off */
  174.     Boolean         single_char;    /* Single character replaced. */
  175.     XawTextPosition  old_insert;    /* Last insertPos for batched updates */
  176.     short           mult;     /* Multiplier. */
  177.     struct text_move * copy_area_offsets; /* Text offset area (linked list) */
  178.     /* private state, shared w/Source and Sink */
  179.     Boolean     redisplay_needed; /* in SetValues */
  180.     XawTextSelectionSalt    *salt2;      /* salted away selections */
  181. } TextPart;
  182. /*************************************************************
  183.  *
  184.  * Resource types private to Text widget.
  185.  *
  186.  *************************************************************/
  187. #define XtRScrollMode "ScrollMode"
  188. #define XtRWrapMode "WrapMode"
  189. #define XtRResizeMode "ResizeMode"
  190. /****************************************************************
  191.  *
  192.  * Full instance record declaration
  193.  *
  194.  ****************************************************************/
  195. typedef struct _TextRec {
  196.     CorePart core;
  197.     SimplePart simple;
  198.     TextPart text;
  199. } TextRec;
  200. /********************************************
  201.  *
  202.  * Semi-private functions
  203.  * for use by other Xaw modules only
  204.  *
  205.  *******************************************/
  206. extern void _XawTextBuildLineTable (
  207. #if NeedFunctionPrototypes
  208.     TextWidget /*ctx*/, 
  209.     XawTextPosition /*top pos*/, 
  210.     _XtBoolean /* force_rebuild */
  211. #endif
  212. );
  213. extern char* _XawTextGetSTRING(
  214. #if NeedFunctionPrototypes
  215.     TextWidget /*ctx*/, 
  216.     XawTextPosition /*left*/, 
  217.     XawTextPosition /*right*/
  218. #endif
  219. ); 
  220. extern void _XawTextSaltAwaySelection(
  221. #if NeedFunctionPrototypes
  222.     TextWidget /*ctx*/, 
  223.     Atom* /*selections*/, 
  224.     int /*num_atoms*/
  225. #endif
  226. ); 
  227. extern void _XawTextPosToXY(
  228. #if NeedFunctionPrototypes
  229.     Widget /* w */,
  230.     XawTextPosition /* pos */,
  231.     Position * /* x */,
  232.     Position * /*y */
  233. #endif
  234. );
  235. #endif /* _XawTextP_h */