1 /*
2  * @(#)LabelH.h	7.1 01/12/28
3  *
4  * $Id: LabelH.h,v 1.1 1998/01/07 03:49:23 cwikla Exp $
5  *
6  * Copyright 1998 John L. Cwikla
7  *
8  * Permission to use, copy, modify, distribute, and sell this software
9  * and its documentation for any purpose is hereby granted without fee,
10  * provided that the above copyright notice appears in all copies and that
11  * both that copyright notice and this permission notice appear in
12  * supporting documentation, and that the name of John L. Cwikla or
13  * Wolfram Research, Inc not be used in advertising or publicity
14  * pertaining to distribution of the software without specific, written
15  * prior permission.  John L. Cwikla and Wolfram Research, Inc make no
16  * representations about the suitability of this software for any
17  * purpose.  It is provided "as is" without express or implied warranty.
18  *
19  * John L. Cwikla and Wolfram Research, Inc disclaim all warranties with
20  * regard to this software, including all implied warranties of
21  * merchantability and fitness, in no event shall John L. Cwikla or
22  * Wolfram Research, Inc be liable for any special, indirect or
23  * consequential damages or any damages whatsoever resulting from loss of
24  * use, data or profits, whether in an action of contract, negligence or
25  * other tortious action, arising out of or in connection with the use or
26  * performance of this software.
27  *
28  * Author:
29  *  John L. Cwikla
30  *  X Programmer
31  *  Wolfram Research Inc.
32  *
33  *  cwikla@wolfram.com
34  */
35 
36 
37 #ifndef _LabelH_h
38 #define _LabelH_h
39 
40 #include <Xm/Xm.h>
41 
42 #ifndef XmIsLabelHack
43 #define XmIsLabelHack(w)	XtIsSubclass((Widget)w, xmLabelHackWidgetClass)
44 #endif
45 
46 extern WidgetClass			xmLabelHackWidgetClass;
47 
48 typedef struct _XmLabelHackClassRec	*XmLabelHackWidgetClass;
49 typedef struct _XmLabelHackRec		*XmLabelHackWidget;
50 
51 #ifndef XmNinsensitive3D
52 #define XmNinsensitive3D		"insensitive3D"
53 #define XmCInsensitive3D		"Insensitive3D"
54 #endif
55 
56 #endif /* _LabelH_h */
57 
58