Xaw3_1Simple.h revision 749
1185N/A/*
1185N/A * $XConsortium: Simple.h,v 1.9 89/07/21 01:44:53 kit Exp $
1185N/A */
1185N/A
1185N/A/***********************************************************
1185N/ACopyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
1185N/Aand the Massachusetts Institute of Technology, Cambridge, Massachusetts.
1185N/A
1185N/A All Rights Reserved
1185N/A
1185N/APermission to use, copy, modify, and distribute this software and its
1185N/Adocumentation for any purpose and without fee is hereby granted,
1185N/Aprovided that the above copyright notice appear in all copies and that
1185N/Aboth that copyright notice and this permission notice appear in
1185N/Asupporting documentation, and that the names of Digital or MIT not be
1185N/Aused in advertising or publicity pertaining to distribution of the
1185N/Asoftware without specific, written prior permission.
1185N/A
1220N/ADIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
1185N/AALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
1185N/ADIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
1226N/AANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
1185N/AWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
1185N/AARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
1185N/ASOFTWARE.
1185N/A
1185N/A******************************************************************/
1185N/A
1185N/A#ifndef _Simple_h
1185N/A#define _Simple_h
1185N/A
1185N/A/****************************************************************
1185N/A *
1185N/A * Simple widgets
1244N/A *
1244N/A ****************************************************************/
1185N/A
1185N/A/* Resources:
1198N/A
1213N/A Name Class RepType Default Value
1185N/A ---- ----- ------- -------------
1194N/A background Background Pixel XtDefaultBackground
1194N/A border BorderColor Pixel XtDefaultForeground
1185N/A borderWidth BorderWidth Dimension 1
1185N/A cursor Cursor Cursor None
1185N/A destroyCallback Callback Pointer NULL
1185N/A height Height Dimension 0
1185N/A insensitiveBorder Insensitive Pixmap Gray
1185N/A mappedWhenManaged MappedWhenManaged Boolean True
1185N/A sensitive Sensitive Boolean True
1185N/A width Width Dimension 0
1185N/A x Position Position 0
1185N/A y Position Position 0
1185N/A
1185N/A*/
1185N/A
1185N/A#define XtNcursor "cursor"
1185N/A#define XtNinsensitiveBorder "insensitiveBorder"
1185N/A
1194N/A#define XtCInsensitive "Insensitive"
1185N/A
1185N/Atypedef struct _SimpleClassRec *SimpleWidgetClass;
1190N/Atypedef struct _SimpleRec *SimpleWidget;
1190N/A
1185N/Aextern WidgetClass simpleWidgetClass;
1190N/A
1185N/A#endif /* _Simple_h */
1190N/A