(main): Cast isdigit() argument to unsigned char.
[bpt/emacs.git] / lwlib / xlwmenu.h
CommitLineData
07bf635f
RS
1#ifndef _XlwMenu_h
2#define _XlwMenu_h
3
4/***********************************************************************
5 *
6 * XlwMenu Widget
7 *
8 ***********************************************************************/
9
10#include "lwlib.h"
11
12/* Resource names used by the XlwMenu widget */
13#define XtNbuttonForeground "buttonForeground"
14#define XtCButtonForeground "ButtonForeground"
15#define XtNmargin "margin"
16#define XtNhorizontalSpacing "horizontalSpacing"
17#define XtNverticalSpacing "verticalSpacing"
18#define XtNarrowSpacing "arrowSpacing"
19#define XtNmenu "menu"
20#define XtCMenu "Menu"
21#define XtNopen "open"
22#define XtNselect "select"
0d8f7378 23#define XtNhighlightCallback "highlightCallback"
07bf635f
RS
24#define XtNmenuBorderWidth "menuBorderWidth"
25#define XtNhorizontal "horizontal"
26#define XtCHorizontal "Horizontal"
27#define XtNcursor "cursor"
28#define XtNCursor "Cursor"
5acc1a62
PR
29#define XtNshowGrip "showGrip"
30#define XtCShowGrip "ShowGrip"
31#define XtNresizeToPreferred "resizeToPreferred"
32#define XtCResizeToPreferred "ResizeToPreferred"
33#define XtNallowResize "allowResize"
34#define XtCAllowResize "AllowResize"
07bf635f
RS
35
36/* Motif-compatible resource names */
37#define XmNshadowThickness "shadowThickness"
38#define XmCShadowThickness "ShadowThickness"
39#define XmNtopShadowColor "topShadowColor"
40#define XmCTopShadowColor "TopShadowColor"
41#define XmNbottomShadowColor "bottomShadowColor"
42#define XmCBottomShadowColor "BottomShadowColor"
43#define XmNtopShadowPixmap "topShadowPixmap"
44#define XmCTopShadowPixmap "TopShadowPixmap"
45#define XmNbottomShadowPixmap "bottomShadowPixmap"
46#define XmCBottomShadowPixmap "BottomShadowPixmap"
47#define XmRHorizontalDimension "HorizontalDimension"
48
49typedef struct _XlwMenuRec *XlwMenuWidget;
50typedef struct _XlwMenuClassRec *XlwMenuWidgetClass;
51
52extern WidgetClass xlwMenuWidgetClass;
53
54void
99570665 55pop_up_menu __P ((XlwMenuWidget, XButtonPressedEvent*));
07bf635f
RS
56
57#endif /* _XlwMenu_h */