xref: /386bsd/usr/X386/include/X11/Xaw/LogoP.h (revision a2142627)
1 /*
2 * $XConsortium: LogoP.h,v 1.9 90/10/22 14:45:51 converse Exp $
3 */
4 
5 /*
6 Copyright 1988 by the Massachusetts Institute of Technology
7 
8 Permission to use, copy, modify, and distribute this
9 software and its documentation for any purpose and without
10 fee is hereby granted, provided that the above copyright
11 notice appear in all copies and that both that copyright
12 notice and this permission notice appear in supporting
13 documentation, and that the name of M.I.T. not be used in
14 advertising or publicity pertaining to distribution of the
15 software without specific, written prior permission.
16 M.I.T. makes no representations about the suitability of
17 this software for any purpose.  It is provided "as is"
18 without express or implied warranty.
19 */
20 
21 #ifndef _XawLogoP_h
22 #define _XawLogoP_h
23 
24 #include <X11/Xaw/Logo.h>
25 #include <X11/Xaw/SimpleP.h>
26 
27 typedef struct {
28 	 Pixel	 fgpixel;
29 	 GC	 foreGC;
30 	 GC	 backGC;
31 	 Boolean shape_window;
32 	 Boolean need_shaping;
33    } LogoPart;
34 
35 typedef struct _LogoRec {
36    CorePart core;
37    SimplePart simple;
38    LogoPart logo;
39    } LogoRec;
40 
41 typedef struct {int dummy;} LogoClassPart;
42 
43 typedef struct _LogoClassRec {
44    CoreClassPart core_class;
45    SimpleClassPart simple_class;
46    LogoClassPart logo_class;
47    } LogoClassRec;
48 
49 extern LogoClassRec logoClassRec;
50 
51 #endif /* _XawLogoP_h */
52