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