749N/A#include <X11/copyright.h>
749N/A
749N/A/* $XConsortium: Template.h,v 1.4 89/07/21 01:41:49 kit Exp $ */
749N/A/* Copyright Massachusetts Institute of Technology 1987, 1988 */
749N/A
749N/A#ifndef _Template_h
749N/A#define _Template_h
749N/A
749N/A/****************************************************************
749N/A *
749N/A * Template widget
749N/A *
749N/A ****************************************************************/
749N/A
749N/A/* Resources:
749N/A
749N/A Name Class RepType Default Value
749N/A ---- ----- ------- -------------
749N/A background Background Pixel XtDefaultBackground
749N/A border BorderColor Pixel XtDefaultForeground
749N/A borderWidth BorderWidth Dimension 1
749N/A destroyCallback Callback Pointer NULL
749N/A height Height Dimension 0
749N/A mappedWhenManaged MappedWhenManaged Boolean True
749N/A sensitive Sensitive Boolean True
749N/A width Width Dimension 0
749N/A x Position Position 0
749N/A y Position Position 0
749N/A
749N/A*/
749N/A
749N/A/* define any special resource names here that are not in <X11/StringDefs.h> */
749N/A
749N/A#define XtNtemplateResource "templateResource"
749N/A
749N/A#define XtCTemplateResource "TemplateResource"
749N/A
749N/A/* declare specific TemplateWidget class and instance datatypes */
749N/A
749N/Atypedef struct _TemplateClassRec* TemplateWidgetClass;
749N/Atypedef struct _TemplateRec* TemplateWidget;
749N/A
749N/A/* declare the class constant */
749N/A
749N/Aextern WidgetClass templateWidgetClass;
749N/A
749N/A#endif /* _Template_h */