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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: TextSrc.h,v 1.4 2001/02/09 02:03:47 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/TextSrc.h,v 1.11 2001/01/17 19:42:35 dawes Exp $ */
  40. #ifndef _XawTextSrc_h
  41. #define _XawTextSrc_h
  42. #include <X11/Xaw/Text.h>
  43. /* Resources:
  44.  Name      Class RepType Default Value
  45.  ----      ----- ------- -------------
  46.  callback      Callback Callback NULL
  47.  editType      EditType XawTextEditType XawtextRead
  48.  enableUndo      Undo Boolean False
  49.  sourceChanged      Changed Boolean False
  50. */
  51.  
  52. /* Class record constants */
  53. extern WidgetClass textSrcObjectClass;
  54. typedef struct _TextSrcClassRec *TextSrcObjectClass;
  55. typedef struct _TextSrcRec      *TextSrcObject;
  56. typedef enum {
  57.     XawstPositions,
  58.     XawstWhiteSpace,
  59.     XawstEOL,
  60.     XawstParagraph,
  61.     XawstAll,
  62.     XawstAlphaNumeric
  63.   } XawTextScanType;
  64. typedef enum {
  65.     Normal,
  66.     Selected
  67. } highlightType;
  68. typedef enum {
  69.     XawsmTextSelect,
  70.     XawsmTextExtend
  71. } XawTextSelectionMode;
  72. typedef enum {
  73.     XawactionStart,
  74.     XawactionAdjust,
  75.     XawactionEnd
  76. } XawTextSelectionAction;
  77. #define XawTextReadError -1
  78. #define XawTextScanError -1
  79. #ifndef OLDXAW
  80. #define XtNenableUndo "enableUndo"
  81. #define XtCUndo "Undo"
  82. #define XtNsourceChanged "sourceChanged"
  83. #define XtCChanged "Changed"
  84. #define XtNpropertyCallback "propertyCallback"
  85. #endif
  86. /*
  87.  * Public Functions
  88.  */
  89. _XFUNCPROTOBEGIN
  90. /*
  91.  * Function:
  92.  * XawTextSourceRead
  93.  *
  94.  * Parameters:
  95.  * w      - TextSrc Object
  96.  * pos    - position of the text to retreive
  97.  * text   - text block that will contain returned text
  98.  * length - maximum number of characters to read
  99.  *
  100.  * Description:
  101.  * This function reads the source.
  102.  *
  103.  * Returns:
  104.  * The number of characters read into the buffer
  105.  */
  106. XawTextPosition XawTextSourceRead
  107. (
  108.  Widget w,
  109.  XawTextPosition pos,
  110.  XawTextBlock *text_return,
  111.  int length
  112.  );
  113. /*
  114.  * Function:
  115.  * XawTextSourceReplace
  116.  *
  117.  * Parameters:
  118.  * src  - Text Source Object
  119.  * startPos - ends of text that will be removed
  120.  * endPos  - ""
  121.  * text  - new text to be inserted into buffer at startPos
  122.  *
  123.  * Description:
  124.  * Replaces a block of text with new text
  125.  *
  126.  * Returns:
  127.  * XawEditError or XawEditDone
  128.  */
  129. int XawTextSourceReplace
  130. (
  131.  Widget w,
  132.  XawTextPosition start,
  133.  XawTextPosition end,
  134.  XawTextBlock *text
  135.  );
  136. /*
  137.  * Function:
  138.  * XawTextSourceScan
  139.  *
  140.  * Parameters:
  141.  * w  - TextSrc Object
  142.  * position - position to start scanning
  143.  * type  - type of thing to scan for
  144.  * dir  - direction to scan
  145.  * count  - which occurance if this thing to search for
  146.  * include  - whether or not to include the character found in
  147.  *    the position that is returned. 
  148.  *
  149.  * Description:
  150.  * Scans the text source for the number and type of item specified.
  151.  *
  152.  * Returns:
  153.  * The position of the text
  154.  */
  155. XawTextPosition XawTextSourceScan
  156. (
  157.  Widget w,
  158.  XawTextPosition position,
  159. #if NeedWidePrototypes
  160.  int type,
  161.  int dir,
  162.  int count,
  163.  int include
  164. #else
  165.  XawTextScanType type,
  166.  XawTextScanDirection dir,
  167.  int count,
  168.  Boolean include
  169. #endif
  170.  );
  171. /*
  172.  * Function:
  173.  * XawTextSourceSearch
  174.  *
  175.  * Parameters:
  176.  * w  - TextSource Object
  177.  * position - position to start scanning
  178.  * dir  - direction to search
  179.  * text  - the text block to search for
  180.  *
  181.  * Description:
  182.  * Searchs the text source for the text block passed.
  183.  *
  184.  * Returns:
  185.  * The position of the text we are searching for or XawTextSearchError
  186.  */
  187. XawTextPosition XawTextSourceSearch
  188. (
  189.  Widget w,
  190.  XawTextPosition position,
  191. #if NeedWidePrototypes
  192.  int dir,
  193. #else
  194.  XawTextScanDirection dir,
  195. #endif
  196.  XawTextBlock *text
  197.  );
  198. /*
  199.  * Function:
  200.  * XawTextSourceConvertSelection
  201.  *
  202.  * Parameters:
  203.  * w   - TextSrc object
  204.  * selection - current selection atom
  205.  * target   - current target atom
  206.  * type   - type to conver the selection to
  207.  * value   - return value that has been converted
  208.  * length   - ""
  209.  * format   - format of the returned value
  210.  *
  211.  * Returns:
  212.  * True if the selection has been converted
  213.  */
  214. Boolean XawTextSourceConvertSelection
  215. (
  216.  Widget w,
  217.  Atom *selection,
  218.  Atom *target,
  219.  Atom *type,
  220.  XtPointer *value_return,
  221.  unsigned long *length_return,
  222.  int *format_return
  223.  );
  224. /*
  225.  * Function:
  226.  * XawTextSourceSetSelection
  227.  *
  228.  * Parameters:
  229.  * w   - TextSrc object
  230.  * left   - bounds of the selection
  231.  * right   - ""
  232.  * selection - selection atom
  233.  *
  234.  * Description:
  235.  * Allows special setting of the selection.
  236.  */
  237. void XawTextSourceSetSelection
  238. (
  239.  Widget w,
  240.  XawTextPosition start,
  241.  XawTextPosition end,
  242.  Atom selection
  243.  );
  244. _XFUNCPROTOEND
  245. #endif /* _XawTextSrc_h */