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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XConsortium: Text.h,v 1.45 94/04/17 20:13:05 kaleb Exp $ */
  2. /***********************************************************
  3. Copyright (c) 1987, 1988, 1994  X Consortium
  4. Permission is hereby granted, free of charge, to any person obtaining a copy
  5. of this software and associated documentation files (the "Software"), to deal
  6. in the Software without restriction, including without limitation the rights
  7. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. copies of the Software, and to permit persons to whom the Software is
  9. furnished to do so, subject to the following conditions:
  10. The above copyright notice and this permission notice shall be included in
  11. all copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  15. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  16. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  17. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of the X Consortium shall not be
  19. used in advertising or otherwise to promote the sale, use or other dealings
  20. in this Software without prior written authorization from the X Consortium.
  21. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  22.                         All Rights Reserved
  23. Permission to use, copy, modify, and distribute this software and its 
  24. documentation for any purpose and without fee is hereby granted, 
  25. provided that the above copyright notice appear in all copies and that
  26. both that copyright notice and this permission notice appear in 
  27. supporting documentation, and that the name of Digital not be
  28. used in advertising or publicity pertaining to distribution of the
  29. software without specific, written prior permission.  
  30. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  31. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  32. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  33. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  34. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  35. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  36. SOFTWARE.
  37. ******************************************************************/
  38. #ifndef _XawText_h
  39. #define _XawText_h
  40. #include <X11/Xaw3d/Simple.h>
  41. /*
  42.  Text widget
  43.  Class:  textWidgetClass
  44.  Class Name: Text
  45.  Superclass: Simple
  46.  Resources added by the Text widget:
  47.  Name      Class      RepType Default Value
  48.  ----      -----      ------- -------------
  49.  autoFill     AutoFill      Boolean False
  50.  bottomMargin     Margin      Position 2
  51.  displayPosition    TextPosition     XawTextPosition 0
  52.  insertPosition     TextPosition     XawTextPosition 0
  53.  leftMargin     Margin      Position 2
  54.  resize     Resize      XawTextResizeMode XawTextResizeNever
  55.  rightMargin     Margin      Position 4
  56.  scrollHorizontal   Scroll      XawTextScrollMode XawtextScrollNever
  57.  scrollVertical     Scroll      XawTextScrollMode  XawtextScrollNever
  58.  selectTypes        SelectTypes      Pointer            see documentation
  59.  textSink     TextSink      Widget NULL
  60.  textSource     TextSource      Widget NULL
  61.  topMargin     Margin      Position 2
  62.  unrealizeCallback  Callback      Callback NULL
  63.  wrap     Wrap      XawTextWrapMode XawTextWrapNever
  64. */
  65. typedef long XawTextPosition;
  66. typedef enum { XawtextScrollNever,
  67.        XawtextScrollWhenNeeded, XawtextScrollAlways} XawTextScrollMode;
  68. typedef enum { XawtextWrapNever, 
  69.        XawtextWrapLine, XawtextWrapWord} XawTextWrapMode;
  70. typedef enum { XawtextResizeNever, XawtextResizeWidth,
  71.        XawtextResizeHeight, XawtextResizeBoth} XawTextResizeMode;
  72. typedef enum {XawsdLeft, XawsdRight} XawTextScanDirection;
  73. typedef enum {XawtextRead, XawtextAppend, XawtextEdit} XawTextEditType;
  74. typedef enum {XawselectNull, XawselectPosition, XawselectChar, XawselectWord,
  75.     XawselectLine, XawselectParagraph, XawselectAll} XawTextSelectType;
  76. typedef struct {
  77.     int  firstPos;
  78.     int  length;
  79.     char *ptr;
  80.     unsigned long format;
  81.     } XawTextBlock, *XawTextBlockPtr; 
  82. #include <X11/Xaw3d/TextSink.h>
  83. #include <X11/Xaw3d/TextSrc.h>
  84. #define XtEtextScrollNever "never"
  85. #define XtEtextScrollWhenNeeded "whenneeded"
  86. #define XtEtextScrollAlways "always"
  87. #define XtEtextWrapNever "never"
  88. #define XtEtextWrapLine "line"
  89. #define XtEtextWrapWord "word"
  90. #define XtEtextResizeNever "never"
  91. #define XtEtextResizeWidth "width"
  92. #define XtEtextResizeHeight "height"
  93. #define XtEtextResizeBoth "both"
  94. #define XtNautoFill "autoFill"
  95. #define XtNbottomMargin "bottomMargin"
  96. #define XtNdialogHOffset "dialogHOffset"
  97. #define XtNdialogVOffset "dialogVOffset"
  98. #define XtNdisplayCaret "displayCaret"
  99. #define XtNdisplayPosition "displayPosition"
  100. #define XtNleftMargin "leftMargin"
  101. #define XtNrightMargin "rightMargin"
  102. #define XtNscrollVertical "scrollVertical"
  103. #define XtNscrollHorizontal "scrollHorizontal"
  104. #define XtNselectTypes "selectTypes"
  105. #define XtNtopMargin "topMargin"
  106. #define XtNwrap "wrap"
  107. #define XtCAutoFill "AutoFill"
  108. #define XtCScroll "Scroll"
  109. #define XtCSelectTypes "SelectTypes"
  110. #define XtCWrap "Wrap"
  111. #ifndef _XtStringDefs_h_
  112. #define XtNinsertPosition "insertPosition"
  113. #define XtNresize "resize"
  114. #define XtNselection "selection"
  115. #define XtCResize "Resize"
  116. #endif
  117. /* Return Error code for XawTextSearch */
  118. #define XawTextSearchError      (-12345L)
  119. /* Return codes from XawTextReplace */
  120. #define XawReplaceError        -1
  121. #define XawEditDone 0
  122. #define XawEditError 1
  123. #define XawPositionError 2
  124. extern unsigned long FMT8BIT;
  125. extern unsigned long XawFmt8Bit;
  126. extern unsigned long XawFmtWide;
  127. /* Class record constants */
  128. extern WidgetClass textWidgetClass;
  129. typedef struct _TextClassRec *TextWidgetClass;
  130. typedef struct _TextRec      *TextWidget;
  131. _XFUNCPROTOBEGIN
  132. extern XrmQuark _XawTextFormat(
  133. #if NeedFunctionPrototypes
  134.     TextWidget /* tw */
  135. #endif
  136. );
  137. extern void XawTextDisplay(
  138. #if NeedFunctionPrototypes
  139.     Widget /* w */
  140. #endif
  141. ); 
  142. extern void XawTextEnableRedisplay(
  143. #if NeedFunctionPrototypes
  144.     Widget /* w */
  145. #endif
  146. );
  147. extern void XawTextDisableRedisplay(
  148. #if NeedFunctionPrototypes
  149.     Widget /* w */
  150. #endif
  151. );
  152. extern void XawTextSetSelectionArray(
  153. #if NeedFunctionPrototypes
  154.     Widget /* w */,
  155.     XawTextSelectType* /* sarray */
  156. #endif
  157. );
  158. extern void XawTextGetSelectionPos(
  159. #if NeedFunctionPrototypes
  160.     Widget /* w */,
  161.     XawTextPosition* /* begin_return */,
  162.     XawTextPosition* /* end_return */
  163. #endif
  164. );
  165. extern void XawTextSetSource(
  166. #if NeedFunctionPrototypes
  167.     Widget /* w */,
  168.     Widget /* source */,
  169.     XawTextPosition /* position */
  170. #endif
  171. );
  172. extern int XawTextReplace(
  173. #if NeedFunctionPrototypes
  174.     Widget /* w */,
  175.     XawTextPosition /* start */,
  176.     XawTextPosition /* end */,
  177.     XawTextBlock* /* text */
  178. #endif
  179. );
  180. extern XawTextPosition XawTextTopPosition(
  181. #if NeedFunctionPrototypes
  182.     Widget /* w */
  183. #endif
  184. );
  185. extern void XawTextSetInsertionPoint(
  186. #if NeedFunctionPrototypes
  187.     Widget /* w */,
  188.     XawTextPosition /* position */
  189. #endif
  190. );
  191. extern XawTextPosition XawTextGetInsertionPoint(
  192. #if NeedFunctionPrototypes
  193.     Widget /* w */
  194. #endif
  195. );
  196. extern void XawTextUnsetSelection(
  197. #if NeedFunctionPrototypes
  198.     Widget /* w */
  199. #endif
  200. );
  201. extern void XawTextSetSelection(
  202. #if NeedFunctionPrototypes
  203.     Widget /* w */,
  204.     XawTextPosition /* left */,
  205.     XawTextPosition /* right */
  206. #endif
  207. );
  208. extern void XawTextInvalidate(
  209. #if NeedFunctionPrototypes
  210.     Widget /* w */,
  211.     XawTextPosition /* from */,
  212.     XawTextPosition /* to */
  213. #endif
  214. );
  215. extern Widget XawTextGetSource(
  216. #if NeedFunctionPrototypes
  217.     Widget /* w */
  218. #endif
  219. );
  220. extern XawTextPosition XawTextSearch(
  221. #if NeedFunctionPrototypes
  222.     Widget /* w */,
  223. #if NeedWidePrototypes
  224.     /* XawTextScanDirection */ int /* dir */,
  225. #else
  226.     XawTextScanDirection /* dir */,
  227. #endif
  228.     XawTextBlock* /* text */
  229. #endif
  230. );
  231. extern void XawTextDisplayCaret(
  232. #if NeedFunctionPrototypes
  233.     Widget /* w */,
  234. #if NeedWidePrototypes
  235.     /* Boolean */ int /* visible */
  236. #else
  237.     Boolean /* visible */
  238. #endif
  239. #endif
  240. );
  241. _XFUNCPROTOEND
  242. /*
  243.  * For R3 compatability only. 
  244.  */
  245. #include <X11/Xaw3d/AsciiSrc.h>
  246. #include <X11/Xaw3d/AsciiSink.h>
  247. #endif /* _XawText_h */
  248. /* DON'T ADD STUFF AFTER THIS #endif */