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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: AsciiSrc.h,v 1.4 2001/02/09 02:03:42 xorgcvs Exp $ */
  2. /*
  3. Copyright 1989, 1994, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. */
  21. /* $XFree86: xc/lib/Xaw/AsciiSrc.h,v 1.7 2001/01/17 19:42:25 dawes Exp $ */
  22. /*
  23.  * AsciiSrc.h - Public Header file for Ascii Text Source.
  24.  *
  25.  * This is the public header file for the Ascii Text Source.
  26.  * It is intended to be used with the Text widget, the simplest way to use
  27.  * this text source is to use the AsciiText Object.
  28.  *
  29.  * Date:    June 29, 1989
  30.  *
  31.  * By:      Chris D. Peterson
  32.  *          MIT X Consortium 
  33.  *          kit@expo.lcs.mit.edu
  34.  */
  35. #ifndef _XawAsciiSrc_h
  36. #define _XawAsciiSrc_h
  37. #include <X11/Xaw/TextSrc.h>
  38. /* Resources:
  39.  Name      Class RepType Default Value
  40.  ----      ----- ------- -------------
  41.  dataCompression     DataCompression Boolean True
  42.  length      Length int (internal)
  43.  pieceSize      PieceSize int BUFSIZ
  44.  string      String String NULL
  45.  type      Type XawAsciiType XawAsciiString
  46.  useStringInPlace    UseStringInPlace Boolean False
  47. */
  48.  
  49. extern WidgetClass asciiSrcObjectClass;
  50. typedef struct _AsciiSrcClassRec *AsciiSrcObjectClass;
  51. typedef struct _AsciiSrcRec      *AsciiSrcObject;
  52. #define AsciiSourceObjectClass AsciiSrcObjectClass
  53. #define AsciiSourceObject      AsciiSrcObject
  54. /*
  55.  * Resource Definitions
  56.  */
  57. #define XtCDataCompression "DataCompression"
  58. #define XtCPieceSize "PieceSize"
  59. #define XtCType "Type"
  60. #define XtCUseStringInPlace "UseStringInPlace"
  61. #define XtNdataCompression "dataCompression"
  62. #define XtNpieceSize "pieceSize"
  63. #define XtNtype "type"
  64. #define XtNuseStringInPlace "useStringInPlace"
  65. #define XtRAsciiType "AsciiType"
  66. #define XtEstring "string"
  67. #define XtEfile "file"
  68. typedef enum {
  69.   XawAsciiFile,
  70.   XawAsciiString
  71. } XawAsciiType;
  72. /*
  73.  * Public routines
  74.  */
  75. _XFUNCPROTOBEGIN
  76. /*
  77.  * Function:
  78.  * XawAsciiSourceFreeString
  79.  *
  80.  * Parameters:
  81.  * w - AsciiSrc object
  82.  *
  83.  * Description:
  84.  *   Frees the string returned by a get values call
  85.  *      on the string when the source is of type string.
  86.  */
  87. void XawAsciiSourceFreeString
  88. (
  89.  Widget w
  90.  );
  91. /*
  92.  * Function:
  93.  * XawAsciiSave
  94.  *
  95.  * Arguments:
  96.  * w - asciiSrc Object.
  97.  *
  98.  * Description:
  99.  * Saves all the pieces into a file or string as required.
  100.  *
  101.  * Returns:
  102.  * True if the save was successful
  103.  */
  104. Bool XawAsciiSave
  105. (
  106.  Widget w
  107.  );
  108. /*
  109.  * Function:
  110.  * XawAsciiSaveAsFile
  111.  *
  112.  * Parameters:
  113.  * w    - asciiSrc object
  114.  * name - name of the file to save this file into
  115.  *
  116.  * Description:
  117.  * Save the current buffer as a file.
  118.  *
  119.  * Returns:
  120.  * True if the save was successful
  121.  */
  122. Bool XawAsciiSaveAsFile
  123. (
  124.  Widget w,
  125.  _Xconst char *name
  126.  );
  127. /*
  128.  * Function:
  129.  * XawAsciiSourceChanged
  130.  *
  131.  * Parameters:
  132.  * w - asciiSource object
  133.  *
  134.  * Description:
  135.  * Returns true if the source has changed since last saved.
  136.  *
  137.  * Returns:
  138.  * a Boolean (see description)
  139.  */
  140. Bool XawAsciiSourceChanged
  141. (
  142.  Widget w
  143.  );
  144. _XFUNCPROTOEND
  145. #endif /* _XawAsciiSrc_h */