1 /*
2  * Label.h
3  *
4  * Copyright (C) 1997 Rasca Gmelch, Berlin
5  * EMail: thron@gmx.de
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21 
22 #ifndef _Label_h
23 #define _Label_h
24 
25 #include <Xw/Base.h>
26 
27 /* class record constants */
28 
29 #ifndef XtNmargin
30 #define XtNmargin	"margin"
31 #endif
32 #ifndef XtCMargin
33 #define XtCMargin	"Margin"
34 #endif
35 #ifndef XtNresize
36 #define XtNresize	"resize"
37 #define XtCResize	"Resize"
38 #endif
39 
40 #define XtNleftPixmap "leftPixmap"
41 #define XtCLeftPixmap "LeftPixmap"
42 
43 extern WidgetClass xwLabelWidgetClass;
44 
45 typedef struct _XwLabelClassRec *XwLabelWidgetClass;
46 typedef struct _XwLabelRec *XwLabelWidget;
47 
48 #endif
49