xref: /386bsd/usr/X386/include/X11/Xaw/AsciiSink.h (revision a2142627)
1 /*
2  * $XConsortium: AsciiSink.h,v 1.7 90/12/01 13:01:31 rws Exp $
3  */
4 
5 /***********************************************************
6 Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
7 and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
8 
9                         All Rights Reserved
10 
11 Permission to use, copy, modify, and distribute this software and its
12 documentation for any purpose and without fee is hereby granted,
13 provided that the above copyright notice appear in all copies and that
14 both that copyright notice and this permission notice appear in
15 supporting documentation, and that the names of Digital or MIT not be
16 used in advertising or publicity pertaining to distribution of the
17 software without specific, written prior permission.
18 
19 DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
20 ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
21 DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
22 ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
23 WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
24 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
25 SOFTWARE.
26 
27 ******************************************************************/
28 
29 #ifndef _XawAsciiSink_h
30 #define _XawAsciiSink_h
31 
32 /***********************************************************************
33  *
34  * AsciiSink Object
35  *
36  ***********************************************************************/
37 
38 #include <X11/Xaw/TextSink.h>
39 
40 /* Resources:
41 
42  Name		     Class		RepType		Default Value
43  ----		     -----		-------		-------------
44  echo                Output             Boolean         True
45  displayNonprinting  Output             Boolean         True
46 
47 */
48 
49 #define XtCOutput "Output"
50 
51 #define XtNdisplayNonprinting "displayNonprinting"
52 #define XtNecho "echo"
53 
54 /* Class record constants */
55 
56 extern WidgetClass asciiSinkObjectClass;
57 
58 typedef struct _AsciiSinkClassRec *AsciiSinkObjectClass;
59 typedef struct _AsciiSinkRec      *AsciiSinkObject;
60 
61 /************************************************************
62  *
63  * Public Functions.
64  *
65  ************************************************************/
66 
67 #endif /* _XawAsciiSrc_h */
68 /* DON'T ADD STUFF AFTER THIS #endif */
69