2005-03-12 23:38:43 +00:00
|
|
|
/* Interface of a lightweight menubar widget.
|
2011-01-26 08:36:39 +00:00
|
|
|
|
2024-01-02 01:47:10 +00:00
|
|
|
Copyright (C) 2002-2024 Free Software Foundation, Inc.
|
2007-02-27 03:10:29 +00:00
|
|
|
Copyright (C) 1992 Lucid, Inc.
|
2005-03-12 23:38:43 +00:00
|
|
|
|
|
|
|
This file is part of the Lucid Widget Library.
|
|
|
|
|
|
|
|
The Lucid Widget Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License as published by
|
2007-02-28 03:59:36 +00:00
|
|
|
the Free Software Foundation; either version 1, or (at your option)
|
2005-03-12 23:38:43 +00:00
|
|
|
any later version.
|
|
|
|
|
|
|
|
The Lucid Widget Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
|
2005-03-12 23:38:43 +00:00
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
#ifndef _XlwMenu_h
|
|
|
|
#define _XlwMenu_h
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
*
|
|
|
|
* XlwMenu Widget
|
|
|
|
*
|
|
|
|
***********************************************************************/
|
|
|
|
|
|
|
|
#include "lwlib.h"
|
|
|
|
|
|
|
|
/* Resource names used by the XlwMenu widget */
|
2002-05-06 18:54:56 +00:00
|
|
|
#define XtNdisabledForeground "disabledForeground"
|
|
|
|
#define XtCDisabledForeground "DisabledForeground"
|
1994-01-18 23:47:41 +00:00
|
|
|
#define XtNbuttonForeground "buttonForeground"
|
|
|
|
#define XtCButtonForeground "ButtonForeground"
|
|
|
|
#define XtNmargin "margin"
|
|
|
|
#define XtNhorizontalSpacing "horizontalSpacing"
|
|
|
|
#define XtNverticalSpacing "verticalSpacing"
|
|
|
|
#define XtNarrowSpacing "arrowSpacing"
|
|
|
|
#define XtNmenu "menu"
|
|
|
|
#define XtCMenu "Menu"
|
|
|
|
#define XtNopen "open"
|
|
|
|
#define XtNselect "select"
|
2000-01-17 09:11:11 +00:00
|
|
|
#define XtNhighlightCallback "highlightCallback"
|
2007-01-01 15:19:46 +00:00
|
|
|
#define XtNenterCallback "enterCallback"
|
|
|
|
#define XtNleaveCallback "leaveCallback"
|
1994-01-18 23:47:41 +00:00
|
|
|
#define XtNmenuBorderWidth "menuBorderWidth"
|
|
|
|
#define XtNhorizontal "horizontal"
|
|
|
|
#define XtCHorizontal "Horizontal"
|
|
|
|
#define XtNcursor "cursor"
|
|
|
|
#define XtNCursor "Cursor"
|
1994-09-16 18:39:54 +00:00
|
|
|
#define XtNshowGrip "showGrip"
|
|
|
|
#define XtCShowGrip "ShowGrip"
|
|
|
|
#define XtNresizeToPreferred "resizeToPreferred"
|
|
|
|
#define XtCResizeToPreferred "ResizeToPreferred"
|
|
|
|
#define XtNallowResize "allowResize"
|
|
|
|
#define XtCAllowResize "AllowResize"
|
2021-11-16 08:00:24 +00:00
|
|
|
#define XtNborderThickness "borderThickness"
|
|
|
|
#define XtCBorderThickness "BorderThickness"
|
2022-07-11 09:14:08 +00:00
|
|
|
#define XtNhighlightForeground "highlightForeground"
|
|
|
|
#define XtCHighlightForeground "HighlightForeground"
|
|
|
|
#define XtNhighlightBackground "highlightBackground"
|
|
|
|
#define XtCHighlightBackground "HighlightBackground"
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
/* Motif-compatible resource names */
|
|
|
|
#define XmNshadowThickness "shadowThickness"
|
|
|
|
#define XmCShadowThickness "ShadowThickness"
|
|
|
|
#define XmNtopShadowColor "topShadowColor"
|
|
|
|
#define XmCTopShadowColor "TopShadowColor"
|
|
|
|
#define XmNbottomShadowColor "bottomShadowColor"
|
|
|
|
#define XmCBottomShadowColor "BottomShadowColor"
|
|
|
|
#define XmNtopShadowPixmap "topShadowPixmap"
|
|
|
|
#define XmCTopShadowPixmap "TopShadowPixmap"
|
|
|
|
#define XmNbottomShadowPixmap "bottomShadowPixmap"
|
|
|
|
#define XmCBottomShadowPixmap "BottomShadowPixmap"
|
|
|
|
#define XmRHorizontalDimension "HorizontalDimension"
|
|
|
|
|
|
|
|
typedef struct _XlwMenuRec *XlwMenuWidget;
|
|
|
|
typedef struct _XlwMenuClassRec *XlwMenuWidgetClass;
|
|
|
|
|
|
|
|
extern WidgetClass xlwMenuWidgetClass;
|
|
|
|
|
2010-07-26 06:22:32 +00:00
|
|
|
extern int xlwmenu_window_p (Widget w, Window window);
|
|
|
|
extern void xlwmenu_redisplay (Widget);
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
#endif /* _XlwMenu_h */
|