]> code.delx.au - gnu-emacs/blob - lwlib/xlwmenu.h
*** empty log message ***
[gnu-emacs] / lwlib / xlwmenu.h
1 /* Interface of a lightweight menubar widget.
2 Copyright (C) 2000, 2002, 2003, 2004, 2005,
3 2006 Free Software Foundation, Inc.
4
5 This file is part of the Lucid Widget Library.
6
7 The Lucid Widget Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 The Lucid Widget 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
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to the
19 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
21
22 #ifndef _XlwMenu_h
23 #define _XlwMenu_h
24
25 /***********************************************************************
26 *
27 * XlwMenu Widget
28 *
29 ***********************************************************************/
30
31 #include "lwlib.h"
32
33 /* Resource names used by the XlwMenu widget */
34 #define XtNdisabledForeground "disabledForeground"
35 #define XtCDisabledForeground "DisabledForeground"
36 #define XtNbuttonForeground "buttonForeground"
37 #define XtCButtonForeground "ButtonForeground"
38 #define XtNmargin "margin"
39 #define XtNhorizontalSpacing "horizontalSpacing"
40 #define XtNverticalSpacing "verticalSpacing"
41 #define XtNarrowSpacing "arrowSpacing"
42 #define XtNmenu "menu"
43 #define XtCMenu "Menu"
44 #define XtNopen "open"
45 #define XtNselect "select"
46 #define XtNhighlightCallback "highlightCallback"
47 #define XtNmenuBorderWidth "menuBorderWidth"
48 #define XtNhorizontal "horizontal"
49 #define XtCHorizontal "Horizontal"
50 #define XtNcursor "cursor"
51 #define XtNCursor "Cursor"
52 #define XtNshowGrip "showGrip"
53 #define XtCShowGrip "ShowGrip"
54 #define XtNresizeToPreferred "resizeToPreferred"
55 #define XtCResizeToPreferred "ResizeToPreferred"
56 #define XtNallowResize "allowResize"
57 #define XtCAllowResize "AllowResize"
58
59 /* Motif-compatible resource names */
60 #define XmNshadowThickness "shadowThickness"
61 #define XmCShadowThickness "ShadowThickness"
62 #define XmNtopShadowColor "topShadowColor"
63 #define XmCTopShadowColor "TopShadowColor"
64 #define XmNbottomShadowColor "bottomShadowColor"
65 #define XmCBottomShadowColor "BottomShadowColor"
66 #define XmNtopShadowPixmap "topShadowPixmap"
67 #define XmCTopShadowPixmap "TopShadowPixmap"
68 #define XmNbottomShadowPixmap "bottomShadowPixmap"
69 #define XmCBottomShadowPixmap "BottomShadowPixmap"
70 #define XmRHorizontalDimension "HorizontalDimension"
71
72 typedef struct _XlwMenuRec *XlwMenuWidget;
73 typedef struct _XlwMenuClassRec *XlwMenuWidgetClass;
74
75 extern WidgetClass xlwMenuWidgetClass;
76
77 #endif /* _XlwMenu_h */
78
79 /* arch-tag: 0c019735-d61b-4080-be85-4fdd6e50ae07
80 (do not change this comment) */