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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XConsortium: AsciiSrc.h,v 1.15 94/04/17 20:11:46 kaleb Exp $ */
  2. /*
  3. Copyright (c) 1989, 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. */
  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/Xaw3d/TextSrc.h>
  38. /* Resources:
  39.  Name      Class RepType Default Value
  40.  ----      ----- ------- -------------
  41.  callback      Callback Callback (none)
  42.  dataCompression     DataCompression Boolean True
  43.  length      Length int (internal)
  44.  pieceSize      PieceSize int BUFSIZ
  45.  string      String String NULL
  46.  type      Type XawAsciiType XawAsciiString
  47.  useStringInPlace    UseStringInPlace Boolean False
  48. */
  49.  
  50. /* Class record constants */
  51. extern WidgetClass asciiSrcObjectClass;
  52. typedef struct _AsciiSrcClassRec *AsciiSrcObjectClass;
  53. typedef struct _AsciiSrcRec      *AsciiSrcObject;
  54. /*
  55.  * Just to make people's lives a bit easier.
  56.  */
  57. #define AsciiSourceObjectClass AsciiSrcObjectClass
  58. #define AsciiSourceObject      AsciiSrcObject
  59. /*
  60.  * Resource Definitions.
  61.  */
  62. #define XtCDataCompression "DataCompression"
  63. #define XtCPieceSize "PieceSize"
  64. #define XtCType "Type"
  65. #define XtCUseStringInPlace "UseStringInPlace"
  66. #define XtNdataCompression "dataCompression"
  67. #define XtNpieceSize "pieceSize"
  68. #define XtNtype "type"
  69. #define XtNuseStringInPlace "useStringInPlace"
  70. #define XtRAsciiType "AsciiType"
  71. #define XtEstring "string"
  72. #define XtEfile "file"
  73. typedef enum {XawAsciiFile, XawAsciiString} XawAsciiType;
  74. /************************************************************
  75.  *
  76.  * Public routines 
  77.  *
  78.  ************************************************************/
  79. _XFUNCPROTOBEGIN
  80. /* Function Name: XawAsciiSourceFreeString
  81.  * Description: Frees the string returned by a get values call
  82.  *                   on the string when the source is of type string.
  83.  * Arguments: w - the AsciiSrc object.
  84.  * Returns: none.
  85.  */
  86. extern void XawAsciiSourceFreeString(
  87. #if NeedFunctionPrototypes
  88.     Widget /* w */
  89. #endif
  90. );
  91. /* Function Name: XawAsciiSave
  92.  * Description: Saves all the pieces into a file or string as required.
  93.  * Arguments: w - the asciiSrc Object.
  94.  * Returns: TRUE if the save was successful.
  95.  */
  96. extern Boolean XawAsciiSave(
  97. #if NeedFunctionPrototypes
  98.     Widget /* w */
  99. #endif
  100. );
  101. /* Function Name: XawAsciiSaveAsFile
  102.  * Description: Save the current buffer as a file.
  103.  * Arguments: w - the asciiSrc object.
  104.  *                 name - name of the file to save this file into.
  105.  * Returns: True if the save was successful.
  106.  */
  107. extern Boolean XawAsciiSaveAsFile(
  108. #if NeedFunctionPrototypes
  109.     Widget /* w */,
  110.     _Xconst char* /* name */
  111. #endif 
  112. );
  113. /* Function Name: XawAsciiSourceChanged
  114.  * Description: Returns true if the source has changed since last saved.
  115.  * Arguments: w - the asciiSource object.
  116.  * Returns: a Boolean (see description).
  117.  */
  118. extern Boolean XawAsciiSourceChanged(
  119. #if NeedFunctionPrototypes
  120.     Widget /* w */
  121. #endif
  122. );
  123. _XFUNCPROTOEND
  124. #endif /* _XawAsciiSrc_h */