upload tizen2.0 source
[framework/uifw/xorg/lib/libxaw.git] / include / X11 / Xaw / MultiSink.h
1 /*
2  * Copyright 1991 by OMRON Corporation
3  *
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, and that the name OMRON is not be used in
9  * advertising or publicity pertaining to distribution of the software without
10  * specific, written prior permission.  OMRON makes no representations
11  * about the suitability of this software for any purpose.  It is provided
12  * "as is" without express or implied warranty.
13  *
14  * OMRON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16  * EVENT SHALL OMRON BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19  * TORTUOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20  * PERFORMANCE OF THIS SOFTWARE.
21  *
22  *      Author: Li Yuhong        OMRON Corporation
23  */
24
25 /***********************************************************
26
27 Copyright 1987, 1988, 1994, 1998  The Open Group
28
29 Permission to use, copy, modify, distribute, and sell this software and its
30 documentation for any purpose is hereby granted without fee, provided that
31 the above copyright notice appear in all copies and that both that
32 copyright notice and this permission notice appear in supporting
33 documentation.
34
35 The above copyright notice and this permission notice shall be included in
36 all copies or substantial portions of the Software.
37
38 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
39 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
40 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
41 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
42 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
43 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
44
45 Except as contained in this notice, the name of The Open Group shall not be
46 used in advertising or otherwise to promote the sale, use or other dealings
47 in this Software without prior written authorization from The Open Group.
48
49
50 Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
51
52                         All Rights Reserved
53
54 Permission to use, copy, modify, and distribute this software and its
55 documentation for any purpose and without fee is hereby granted,
56 provided that the above copyright notice appear in all copies and that
57 both that copyright notice and this permission notice appear in
58 supporting documentation, and that the name of Digital not be
59 used in advertising or publicity pertaining to distribution of the
60 software without specific, written prior permission.
61
62 DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
63 ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
64 DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
65 ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
66 WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
67 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
68 SOFTWARE.
69
70 ******************************************************************/
71
72 #ifndef _XawMultiSink_h
73 #define _XawMultiSink_h
74
75 /*
76  * MultiSink Object
77  */
78
79 #include <X11/Xaw/TextSink.h>
80
81 /* Resources:
82
83  Name                Class              RepType         Default Value
84  ----                -----              -------         -------------
85  echo                Output             Boolean         True
86  displayNonprinting  Output             Boolean         True
87  fontSet             FontSet            XFontSet        XtDefaultFontSet
88
89 */
90
91 #define XtCOutput "Output"
92
93 #define XtNdisplayNonprinting "displayNonprinting"
94 #define XtNecho "echo"
95
96 #ifndef XtNfontSet              /*Sheeran, Omron KK, 93/03/04*/
97 #define XtNfontSet              "fontSet"
98 #endif
99
100 #ifndef XtCFontSet              /*Sheeran, Omron KK, 93/03/04*/
101 #define XtCFontSet              "FontSet"
102 #endif
103
104 /* Class record constants */
105 extern WidgetClass multiSinkObjectClass;
106
107 typedef struct _MultiSinkClassRec *MultiSinkObjectClass;
108 typedef struct _MultiSinkRec      *MultiSinkObject;
109
110 #endif /* _XawMultiSink_h */