Template.h revision 7a84e134
1/* $Xorg: Template.h,v 1.5 2001/02/09 02:03:46 xorgcvs Exp $ */
2
3/*
4
5Copyright 1987, 1998  The Open Group
6
7Permission to use, copy, modify, distribute, and sell this software and its
8documentation for any purpose is hereby granted without fee, provided that
9the above copyright notice appear in all copies and that both that
10copyright notice and this permission notice appear in supporting
11documentation.
12
13The above copyright notice and this permission notice shall be included in
14all copies or substantial portions of the Software.
15
16THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
19OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
20AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
23Except as contained in this notice, the name of The Open Group shall not be
24used in advertising or otherwise to promote the sale, use or other dealings
25in this Software without prior written authorization from The Open Group.
26
27*/
28/* $XFree86: xc/lib/Xaw/Template.h,v 1.5 2001/01/17 19:42:32 dawes Exp $ */
29
30#ifndef _Template_h
31#define _Template_h
32
33#include <X11/Intrinsic.h>
34
35/****************************************************************
36 *
37 * Template widget
38 *
39 ****************************************************************/
40
41/* Resources:
42
43 Name		     Class		RepType		Default Value
44 ----		     -----		-------		-------------
45 background	     Background		Pixel		XtDefaultBackground
46 border		     BorderColor	Pixel		XtDefaultForeground
47 borderWidth	     BorderWidth	Dimension	1
48 destroyCallback     Callback		Pointer		NULL
49 height		     Height		Dimension	0
50 mappedWhenManaged   MappedWhenManaged	Boolean		True
51 sensitive	     Sensitive		Boolean		True
52 width		     Width		Dimension	0
53 x		     Position		Position	0
54 y		     Position		Position	0
55
56*/
57
58/* define any special resource names here that are not in <X11/StringDefs.h> */
59#define XtNtemplateResource "templateResource"
60
61#define XtCTemplateResource "TemplateResource"
62
63/* declare specific TemplateWidget class and instance datatypes */
64typedef struct _TemplateClassRec *TemplateWidgetClass;
65typedef struct _TemplateRec *TemplateWidget;
66
67/* declare the class constant */
68extern WidgetClass templateWidgetClass;
69
70#endif /* _Template_h */
71