summaryrefslogtreecommitdiff
path: root/Menu.h
blob: a86b0b1c158dcb248979d7f451d2a01778b063b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef _XtMenu_h
#define _XtMenu_h

/***********************************************************************
 *
 * Menu Widget
 *
 ***********************************************************************/

/* Parameters:

 Name		     Class		RepType		Default Value
 ----		     -----		-------		-------------
 background	     Background		pixel		White
 border		     BorderColor	pixel		Black
 borderWidth	     BorderWidth	int		1
 height		     Height		int		120
 mappedWhenManaged   MappedWhenManaged	Boolean		True
 reverseVideo	     ReverseVideo	Boolean		False
 width		     Width		int		120
 x		     Position		int		0
 y		     Position		int		0

*/

#define XtNmenuEntries		"menuEntries"
#define XtNhorizontalPadding	"horizontalPadding"
#define XtNverticalPadding	"verticalPadding"
#define XtNselection		"Selection"

#define XtCMenuEntries		"MenuEntries"
#define XtCPadding		"Padding"
#define XtCSelection		"Selection"

typedef struct _MenuRec *MenuWidget;    /* completely defined in MenuPrivate.h */
typedef struct _MenuClassRec *MenuWidgetClass;  /* completely defined in MenuPrivate.h */

extern WidgetClass menuWidgetClass;

extern Widget XawMenuCreate();
#endif /* _XtMenu_h */
/* DON'T ADD STUFF AFTER THIS #endif */