1 /* $XConsortium: AsciiSrc.h,v 1.15 94/04/17 20:11:46 kaleb Exp $ */
5 Copyright (c) 1989, 1994 X Consortium
7 Permission is hereby granted, free of charge, to any person obtaining a copy
8 of this software and associated documentation files (the "Software"), to deal
9 in the Software without restriction, including without limitation the rights
10 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 copies of the Software, and to permit persons to whom the Software is
12 furnished to do so, subject to the following conditions:
14 The above copyright notice and this permission notice shall be included in
15 all copies or substantial portions of the Software.
17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 Except as contained in this notice, the name of the X Consortium shall not be
25 used in advertising or otherwise to promote the sale, use or other dealings
26 in this Software without prior written authorization from the X Consortium.
32 * AsciiSrc.h - Public Header file for Ascii Text Source.
34 * This is the public header file for the Ascii Text Source.
35 * It is intended to be used with the Text widget, the simplest way to use
36 * this text source is to use the AsciiText Object.
40 * By: Chris D. Peterson
42 * kit@expo.lcs.mit.edu
46 #ifndef _XawAsciiSrc_h
47 #define _XawAsciiSrc_h
49 #include <X11/Xaw/TextSrc.h>
53 Name Class RepType Default Value
54 ---- ----- ------- -------------
55 callback Callback Callback (none)
56 dataCompression DataCompression Boolean True
57 length Length int (internal)
58 pieceSize PieceSize int BUFSIZ
59 string String String NULL
60 type Type XawAsciiType XawAsciiString
61 useStringInPlace UseStringInPlace Boolean False
65 /* Class record constants */
67 extern WidgetClass asciiSrcObjectClass
;
69 typedef struct _AsciiSrcClassRec
*AsciiSrcObjectClass
;
70 typedef struct _AsciiSrcRec
*AsciiSrcObject
;
73 * Just to make people's lives a bit easier.
76 #define AsciiSourceObjectClass AsciiSrcObjectClass
77 #define AsciiSourceObject AsciiSrcObject
80 * Resource Definitions.
83 #define XtCDataCompression "DataCompression"
84 #define XtCPieceSize "PieceSize"
85 #define XtCType "Type"
86 #define XtCUseStringInPlace "UseStringInPlace"
88 #define XtNdataCompression "dataCompression"
89 #define XtNpieceSize "pieceSize"
90 #define XtNtype "type"
91 #define XtNuseStringInPlace "useStringInPlace"
93 #define XtRAsciiType "AsciiType"
95 #define XtEstring "string"
96 #define XtEfile "file"
98 typedef enum {XawAsciiFile
, XawAsciiString
} XawAsciiType
;
100 /************************************************************
104 ************************************************************/
108 /* Function Name: XawAsciiSourceFreeString
109 * Description: Frees the string returned by a get values call
110 * on the string when the source is of type string.
111 * Arguments: w - the AsciiSrc object.
115 extern void XawAsciiSourceFreeString(
116 #if NeedFunctionPrototypes
121 /* Function Name: XawAsciiSave
122 * Description: Saves all the pieces into a file or string as required.
123 * Arguments: w - the asciiSrc Object.
124 * Returns: TRUE if the save was successful.
127 extern Boolean
XawAsciiSave(
128 #if NeedFunctionPrototypes
133 /* Function Name: XawAsciiSaveAsFile
134 * Description: Save the current buffer as a file.
135 * Arguments: w - the asciiSrc object.
136 * name - name of the file to save this file into.
137 * Returns: True if the save was successful.
140 extern Boolean
XawAsciiSaveAsFile(
141 #if NeedFunctionPrototypes
143 _Xconst
char* /* name */
147 /* Function Name: XawAsciiSourceChanged
148 * Description: Returns true if the source has changed since last saved.
149 * Arguments: w - the asciiSource object.
150 * Returns: a Boolean (see description).
153 extern Boolean
XawAsciiSourceChanged(
154 #if NeedFunctionPrototypes
161 #endif /* _XawAsciiSrc_h */