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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $XConsortium: TextSrc.h,v 1.11 94/04/17 20:13:15 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 _XawTextSrc_h
  41. #define _XawTextSrc_h
  42. /***********************************************************************
  43.  *
  44.  * TextSrc Object
  45.  *
  46.  ***********************************************************************/
  47. #include <X11/Xaw3d/Text.h>
  48. /* Resources:
  49.  Name      Class RepType Default Value
  50.  ----      ----- ------- -------------
  51.  editType      EditType XawTextEditType XawtextRead
  52. */
  53.  
  54. /* Class record constants */
  55. extern WidgetClass textSrcObjectClass;
  56. typedef struct _TextSrcClassRec *TextSrcObjectClass;
  57. typedef struct _TextSrcRec      *TextSrcObject;
  58. typedef enum {XawstPositions, XawstWhiteSpace, XawstEOL, XawstParagraph,
  59.               XawstAll} XawTextScanType;
  60. typedef enum {Normal, Selected }highlightType;
  61. typedef enum {XawsmTextSelect, XawsmTextExtend} XawTextSelectionMode;
  62. typedef enum {XawactionStart, XawactionAdjust, XawactionEnd}
  63.     XawTextSelectionAction;
  64. /*
  65.  * Error Conditions:
  66.  */
  67. #define XawTextReadError -1
  68. #define XawTextScanError -1
  69. /************************************************************
  70.  *
  71.  * Public Functions.
  72.  *
  73.  ************************************************************/
  74. _XFUNCPROTOBEGIN
  75. /* Function Name: XawTextSourceRead
  76.  * Description: This function reads the source.
  77.  * Arguments: w - the TextSrc Object.
  78.  *                 pos - position of the text to retreive.
  79.  * RETURNED        text - text block that will contain returned text.
  80.  *                 length - maximum number of characters to read.
  81.  * Returns: The number of characters read into the buffer.
  82.  */
  83. extern XawTextPosition XawTextSourceRead(
  84. #if NeedFunctionPrototypes
  85.     Widget /* w */,
  86.     XawTextPosition /* pos */,
  87.     XawTextBlock* /* text_return */,
  88.     int /* length */
  89. #endif
  90. );
  91. /* Function Name: XawTextSourceReplace.
  92.  * Description: Replaces a block of text with new text.
  93.  * Arguments: src - the Text Source Object.
  94.  *                 startPos, endPos - ends of text that will be removed.
  95.  *                 text - new text to be inserted into buffer at startPos.
  96.  * Returns: XawEditError or XawEditDone.
  97.  */
  98. extern int XawTextSourceReplace (
  99. #if NeedFunctionPrototypes
  100.     Widget /* w */,
  101.     XawTextPosition /* start */,
  102.     XawTextPosition /* end */,
  103.     XawTextBlock* /* text */
  104. #endif
  105. );
  106. /* Function Name: XawTextSourceScan
  107.  * Description: Scans the text source for the number and type
  108.  *                   of item specified.
  109.  * Arguments: w - the TextSrc Object.
  110.  *                 position - the position to start scanning.
  111.  *                 type - type of thing to scan for.
  112.  *                 dir - direction to scan.
  113.  *                 count - which occurance if this thing to search for.
  114.  *                 include - whether or not to include the character found in
  115.  *                           the position that is returned. 
  116.  * Returns: The position of the text.
  117.  *
  118.  */
  119. extern XawTextPosition XawTextSourceScan(
  120. #if NeedFunctionPrototypes
  121.     Widget /* w */,
  122.     XawTextPosition /* position */,
  123. #if NeedWidePrototypes
  124.     /* XawTextScanType */ int /* type */,
  125.     /* XawTextScanDirection */ int /* dir */,
  126. #else
  127.     XawTextScanType /* type */,
  128.     XawTextScanDirection /* dir */,
  129. #endif
  130.     int /* count */,
  131. #if NeedWidePrototypes
  132.     /* Boolean */ int /* include */
  133. #else
  134.     Boolean /* include */
  135. #endif
  136. #endif
  137. );
  138. /* Function Name: XawTextSourceSearch
  139.  * Description: Searchs the text source for the text block passed
  140.  * Arguments: w - the TextSource Object.
  141.  *                 position - the position to start scanning.
  142.  *                 dir - direction to scan.
  143.  *                 text - the text block to search for.
  144.  * Returns: The position of the text we are searching for or
  145.  *               XawTextSearchError.
  146.  */
  147. extern XawTextPosition XawTextSourceSearch(
  148. #if NeedFunctionPrototypes
  149.     Widget /* w */,
  150.     XawTextPosition /* position */,
  151. #if NeedWidePrototypes
  152.     /* XawTextScanDirection */ int /* dir */,
  153. #else
  154.     XawTextScanDirection /* dir */,
  155. #endif
  156.     XawTextBlock* /* text */
  157. #endif
  158. );
  159. /* Function Name: XawTextSourceConvertSelection
  160.  * Description: Dummy selection converter.
  161.  * Arguments: w - the TextSrc object.
  162.  *                 selection - the current selection atom.
  163.  *                 target    - the current target atom.
  164.  *                 type      - the type to conver the selection to.
  165.  * RETURNED        value, length - the return value that has been converted.
  166.  * RETURNED        format    - the format of the returned value.
  167.  * Returns: TRUE if the selection has been converted.
  168.  *
  169.  */
  170. extern Boolean XawTextSourceConvertSelection(
  171. #if NeedFunctionPrototypes
  172.     Widget /* w */,
  173.     Atom* /* selection */,
  174.     Atom* /* target */,
  175.     Atom* /* type */,
  176.     XtPointer* /* value_return */,
  177.     unsigned long* /* length_return */,
  178.     int* /* format_return */
  179. #endif
  180. );
  181. /* Function Name: XawTextSourceSetSelection
  182.  * Description: allows special setting of the selection.
  183.  * Arguments: w - the TextSrc object.
  184.  *                 left, right - bounds of the selection.
  185.  *                 selection - the selection atom.
  186.  * Returns: none
  187.  */
  188. extern void XawTextSourceSetSelection(
  189. #if NeedFunctionPrototypes
  190.     Widget /* w */,
  191.     XawTextPosition /* start */,
  192.     XawTextPosition /* end */,
  193.     Atom /* selection */
  194. #endif
  195. );
  196. _XFUNCPROTOEND
  197. #endif /* _XawTextSrc_h */
  198. /* DON'T ADD STUFF AFTER THIS #endif */