2000-09-28 20:30:52 +00:00
|
|
|
|
/* Implements a lightweight menubar widget.
|
1994-01-18 23:47:41 +00:00
|
|
|
|
Copyright (C) 1992 Lucid, Inc.
|
2006-02-05 23:44:47 +00:00
|
|
|
|
Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
This file is part of the Lucid Widget Library.
|
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
The Lucid Widget Library is free software; you can redistribute it and/or
|
1994-01-18 23:47:41 +00:00
|
|
|
|
modify it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
The Lucid Widget Library is distributed in the hope that it will be useful,
|
2000-09-28 20:30:52 +00:00
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
1994-01-18 23:47:41 +00:00
|
|
|
|
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
|
1996-07-20 18:10:35 +00:00
|
|
|
|
along with GNU Emacs; see the file COPYING. If not, write to the
|
2005-07-04 15:47:28 +00:00
|
|
|
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
|
Boston, MA 02110-1301, USA. */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
/* Created by devin@lucid.com */
|
|
|
|
|
|
Add support for large files, plus some locale improvements.
* dispatch.c, lwlib-Xaw.c, lwlib-Xlw.c, lwlib-Xm.c, lwlib.c, xlwmenu.c,
xrdb-cpp.c, xrdb.c:
Include <config.h> before any system include files.
* lwlib-Xm.c, lwlib.c:
Do not include <stdlib.h> or <string.h>, as <config.h> does this.
1999-10-19 07:21:16 +00:00
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-05-22 13:38:44 +00:00
|
|
|
|
#include "lisp.h"
|
2001-12-02 05:00:27 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2000-09-28 20:30:52 +00:00
|
|
|
|
#if (defined __sun) && !(defined SUNOS41)
|
|
|
|
|
#define SUNOS41
|
1994-01-18 23:47:41 +00:00
|
|
|
|
#include <X11/Xos.h>
|
2000-09-28 20:30:52 +00:00
|
|
|
|
#undef SUNOS41
|
|
|
|
|
#else
|
|
|
|
|
#include <X11/Xos.h>
|
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
#include <X11/IntrinsicP.h>
|
1994-09-24 00:12:06 +00:00
|
|
|
|
#include <X11/ObjectP.h>
|
1994-01-18 23:47:41 +00:00
|
|
|
|
#include <X11/StringDefs.h>
|
|
|
|
|
#include <X11/cursorfont.h>
|
|
|
|
|
#include "xlwmenuP.h"
|
2000-06-12 19:12:11 +00:00
|
|
|
|
|
2000-06-06 14:21:15 +00:00
|
|
|
|
#ifdef emacs
|
2000-07-19 15:49:28 +00:00
|
|
|
|
|
|
|
|
|
/* Defined in xfns.c. When config.h defines `static' as empty, we get
|
|
|
|
|
redefinition errors when gray_bitmap is included more than once, so
|
|
|
|
|
we're referring to the one include in xfns.c here. */
|
|
|
|
|
|
|
|
|
|
extern int gray_bitmap_width;
|
|
|
|
|
extern int gray_bitmap_height;
|
2000-12-14 14:11:03 +00:00
|
|
|
|
extern char *gray_bitmap_bits;
|
2000-07-19 15:49:28 +00:00
|
|
|
|
|
2006-05-23 07:19:45 +00:00
|
|
|
|
#include "xterm.h"
|
|
|
|
|
|
2000-07-19 15:49:28 +00:00
|
|
|
|
#else /* not emacs */
|
|
|
|
|
|
|
|
|
|
#include <X11/bitmaps/gray>
|
|
|
|
|
#define gray_bitmap_width gray_width
|
|
|
|
|
#define gray_bitmap_height gray_height
|
|
|
|
|
#define gray_bitmap_bits gray_bits
|
|
|
|
|
|
|
|
|
|
#endif /* not emacs */
|
1994-09-17 12:53:30 +00:00
|
|
|
|
|
|
|
|
|
static int pointer_grabbed;
|
|
|
|
|
static XEvent menu_post_event;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
1994-10-29 23:25:10 +00:00
|
|
|
|
XFontStruct *xlwmenu_default_font;
|
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static char
|
|
|
|
|
xlwMenuTranslations [] =
|
1995-12-31 19:15:18 +00:00
|
|
|
|
"<BtnDown>: start()\n\
|
|
|
|
|
<Motion>: drag()\n\
|
|
|
|
|
<BtnUp>: select()\n\
|
|
|
|
|
<Key>Shift_L: nothing()\n\
|
|
|
|
|
<Key>Shift_R: nothing()\n\
|
|
|
|
|
<Key>Meta_L: nothing()\n\
|
|
|
|
|
<Key>Meta_R: nothing()\n\
|
|
|
|
|
<Key>Control_L: nothing()\n\
|
|
|
|
|
<Key>Control_R: nothing()\n\
|
|
|
|
|
<Key>Hyper_L: nothing()\n\
|
|
|
|
|
<Key>Hyper_R: nothing()\n\
|
|
|
|
|
<Key>Super_L: nothing()\n\
|
|
|
|
|
<Key>Super_R: nothing()\n\
|
|
|
|
|
<Key>Alt_L: nothing()\n\
|
|
|
|
|
<Key>Alt_R: nothing()\n\
|
|
|
|
|
<Key>Caps_Lock: nothing()\n\
|
|
|
|
|
<Key>Shift_Lock: nothing()\n\
|
|
|
|
|
<KeyUp>Shift_L: nothing()\n\
|
|
|
|
|
<KeyUp>Shift_R: nothing()\n\
|
|
|
|
|
<KeyUp>Meta_L: nothing()\n\
|
|
|
|
|
<KeyUp>Meta_R: nothing()\n\
|
|
|
|
|
<KeyUp>Control_L: nothing()\n\
|
|
|
|
|
<KeyUp>Control_R: nothing()\n\
|
|
|
|
|
<KeyUp>Hyper_L: nothing()\n\
|
|
|
|
|
<KeyUp>Hyper_R: nothing()\n\
|
|
|
|
|
<KeyUp>Super_L: nothing()\n\
|
|
|
|
|
<KeyUp>Super_R: nothing()\n\
|
|
|
|
|
<KeyUp>Alt_L: nothing()\n\
|
|
|
|
|
<KeyUp>Alt_R: nothing()\n\
|
|
|
|
|
<KeyUp>Caps_Lock: nothing()\n\
|
|
|
|
|
<KeyUp>Shift_Lock:nothing()\n\
|
2002-04-19 18:56:51 +00:00
|
|
|
|
<Key>Return: select()\n\
|
|
|
|
|
<Key>Down: down()\n\
|
|
|
|
|
<Key>Up: up()\n\
|
|
|
|
|
<Key>Left: left()\n\
|
|
|
|
|
<Key>Right: right()\n\
|
1995-12-31 19:15:18 +00:00
|
|
|
|
<Key>: key()\n\
|
|
|
|
|
<KeyUp>: key()\n\
|
1994-01-18 23:47:41 +00:00
|
|
|
|
";
|
|
|
|
|
|
2002-04-19 18:56:51 +00:00
|
|
|
|
/* FIXME: Space should toggle toggleable menu item but not remove the menu
|
|
|
|
|
so you can toggle the next one without entering the menu again. */
|
|
|
|
|
|
|
|
|
|
/* FIXME: Should ESC close one level of menu structure or the complete menu? */
|
|
|
|
|
|
2002-04-29 09:10:28 +00:00
|
|
|
|
/* FIXME: F10 should enter the menu, the first one in the menu-bar. */
|
2002-04-19 18:56:51 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
#define offset(field) XtOffset(XlwMenuWidget, field)
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static XtResource
|
1994-01-18 23:47:41 +00:00
|
|
|
|
xlwMenuResources[] =
|
2000-09-28 20:30:52 +00:00
|
|
|
|
{
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
2005-04-01 18:42:19 +00:00
|
|
|
|
{XtNfontSet, XtCFontSet, XtRFontSet, sizeof(XFontSet),
|
|
|
|
|
offset(menu.fontSet), XtRFontSet, NULL},
|
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{XtNfont, XtCFont, XtRFontStruct, sizeof(XFontStruct *),
|
2005-03-18 04:19:41 +00:00
|
|
|
|
offset(menu.font), XtRString, "XtDefaultFont"},
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{XtNforeground, XtCForeground, XtRPixel, sizeof(Pixel),
|
|
|
|
|
offset(menu.foreground), XtRString, "XtDefaultForeground"},
|
2002-05-06 18:56:25 +00:00
|
|
|
|
{XtNdisabledForeground, XtCDisabledForeground, XtRPixel, sizeof(Pixel),
|
|
|
|
|
offset(menu.disabled_foreground), XtRString, (XtPointer)NULL},
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{XtNbuttonForeground, XtCButtonForeground, XtRPixel, sizeof(Pixel),
|
|
|
|
|
offset(menu.button_foreground), XtRString, "XtDefaultForeground"},
|
|
|
|
|
{XtNmargin, XtCMargin, XtRDimension, sizeof(Dimension),
|
2002-04-29 09:10:28 +00:00
|
|
|
|
offset(menu.margin), XtRImmediate, (XtPointer)1},
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{XtNhorizontalSpacing, XtCMargin, XtRDimension, sizeof(Dimension),
|
|
|
|
|
offset(menu.horizontal_spacing), XtRImmediate, (XtPointer)3},
|
|
|
|
|
{XtNverticalSpacing, XtCMargin, XtRDimension, sizeof(Dimension),
|
2002-04-29 09:10:28 +00:00
|
|
|
|
offset(menu.vertical_spacing), XtRImmediate, (XtPointer)2},
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{XtNarrowSpacing, XtCMargin, XtRDimension, sizeof(Dimension),
|
|
|
|
|
offset(menu.arrow_spacing), XtRImmediate, (XtPointer)10},
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
{XmNshadowThickness, XmCShadowThickness, XtRDimension,
|
1994-01-18 23:47:41 +00:00
|
|
|
|
sizeof (Dimension), offset (menu.shadow_thickness),
|
2002-04-29 09:10:28 +00:00
|
|
|
|
XtRImmediate, (XtPointer)1},
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{XmNtopShadowColor, XmCTopShadowColor, XtRPixel, sizeof (Pixel),
|
|
|
|
|
offset (menu.top_shadow_color), XtRImmediate, (XtPointer)-1},
|
|
|
|
|
{XmNbottomShadowColor, XmCBottomShadowColor, XtRPixel, sizeof (Pixel),
|
|
|
|
|
offset (menu.bottom_shadow_color), XtRImmediate, (XtPointer)-1},
|
|
|
|
|
{XmNtopShadowPixmap, XmCTopShadowPixmap, XtRPixmap, sizeof (Pixmap),
|
|
|
|
|
offset (menu.top_shadow_pixmap), XtRImmediate, (XtPointer)None},
|
|
|
|
|
{XmNbottomShadowPixmap, XmCBottomShadowPixmap, XtRPixmap, sizeof (Pixmap),
|
|
|
|
|
offset (menu.bottom_shadow_pixmap), XtRImmediate, (XtPointer)None},
|
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
{XtNopen, XtCCallback, XtRCallback, sizeof(XtPointer),
|
1994-01-18 23:47:41 +00:00
|
|
|
|
offset(menu.open), XtRCallback, (XtPointer)NULL},
|
2000-09-28 20:30:52 +00:00
|
|
|
|
{XtNselect, XtCCallback, XtRCallback, sizeof(XtPointer),
|
1994-01-18 23:47:41 +00:00
|
|
|
|
offset(menu.select), XtRCallback, (XtPointer)NULL},
|
2000-09-28 20:30:52 +00:00
|
|
|
|
{XtNhighlightCallback, XtCCallback, XtRCallback, sizeof(XtPointer),
|
2000-01-17 09:10:58 +00:00
|
|
|
|
offset(menu.highlight), XtRCallback, (XtPointer)NULL},
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{XtNmenu, XtCMenu, XtRPointer, sizeof(XtPointer),
|
|
|
|
|
offset(menu.contents), XtRImmediate, (XtPointer)NULL},
|
|
|
|
|
{XtNcursor, XtCCursor, XtRCursor, sizeof(Cursor),
|
|
|
|
|
offset(menu.cursor_shape), XtRString, (XtPointer)"right_ptr"},
|
|
|
|
|
{XtNhorizontal, XtCHorizontal, XtRInt, sizeof(int),
|
|
|
|
|
offset(menu.horizontal), XtRImmediate, (XtPointer)True},
|
|
|
|
|
};
|
|
|
|
|
#undef offset
|
|
|
|
|
|
|
|
|
|
static Boolean XlwMenuSetValues();
|
|
|
|
|
static void XlwMenuRealize();
|
|
|
|
|
static void XlwMenuRedisplay();
|
|
|
|
|
static void XlwMenuResize();
|
|
|
|
|
static void XlwMenuInitialize();
|
|
|
|
|
static void XlwMenuRedisplay();
|
|
|
|
|
static void XlwMenuDestroy();
|
|
|
|
|
static void XlwMenuClassInitialize();
|
|
|
|
|
static void Start();
|
|
|
|
|
static void Drag();
|
2002-04-19 18:56:51 +00:00
|
|
|
|
static void Down();
|
|
|
|
|
static void Up();
|
|
|
|
|
static void Left();
|
|
|
|
|
static void Right();
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static void Select();
|
1995-12-31 19:15:18 +00:00
|
|
|
|
static void Key();
|
|
|
|
|
static void Nothing();
|
2002-11-20 19:19:14 +00:00
|
|
|
|
static int separator_height __P ((enum menu_separator));
|
2004-01-12 01:45:22 +00:00
|
|
|
|
static void pop_up_menu __P ((XlwMenuWidget, XButtonPressedEvent *));
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static XtActionsRec
|
1994-01-18 23:47:41 +00:00
|
|
|
|
xlwMenuActionsList [] =
|
|
|
|
|
{
|
|
|
|
|
{"start", Start},
|
|
|
|
|
{"drag", Drag},
|
2002-04-19 18:56:51 +00:00
|
|
|
|
{"down", Down},
|
|
|
|
|
{"up", Up},
|
|
|
|
|
{"left", Left},
|
|
|
|
|
{"right", Right},
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{"select", Select},
|
1995-12-31 19:15:18 +00:00
|
|
|
|
{"key", Key},
|
2004-12-27 15:22:36 +00:00
|
|
|
|
{"MenuGadgetEscape", Key}, /* Compatibility with Lesstif/Motif. */
|
1995-12-31 19:15:18 +00:00
|
|
|
|
{"nothing", Nothing},
|
1994-01-18 23:47:41 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define SuperClass ((CoreWidgetClass)&coreClassRec)
|
|
|
|
|
|
|
|
|
|
XlwMenuClassRec xlwMenuClassRec =
|
|
|
|
|
{
|
|
|
|
|
{ /* CoreClass fields initialization */
|
2000-09-28 20:30:52 +00:00
|
|
|
|
(WidgetClass) SuperClass, /* superclass */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
"XlwMenu", /* class_name */
|
|
|
|
|
sizeof(XlwMenuRec), /* size */
|
|
|
|
|
XlwMenuClassInitialize, /* class_initialize */
|
|
|
|
|
NULL, /* class_part_initialize */
|
|
|
|
|
FALSE, /* class_inited */
|
|
|
|
|
XlwMenuInitialize, /* initialize */
|
|
|
|
|
NULL, /* initialize_hook */
|
|
|
|
|
XlwMenuRealize, /* realize */
|
|
|
|
|
xlwMenuActionsList, /* actions */
|
|
|
|
|
XtNumber(xlwMenuActionsList), /* num_actions */
|
|
|
|
|
xlwMenuResources, /* resources */
|
|
|
|
|
XtNumber(xlwMenuResources), /* resource_count */
|
|
|
|
|
NULLQUARK, /* xrm_class */
|
|
|
|
|
TRUE, /* compress_motion */
|
2005-03-18 04:19:41 +00:00
|
|
|
|
XtExposeCompressMaximal, /* compress_exposure */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
TRUE, /* compress_enterleave */
|
|
|
|
|
FALSE, /* visible_interest */
|
|
|
|
|
XlwMenuDestroy, /* destroy */
|
|
|
|
|
XlwMenuResize, /* resize */
|
|
|
|
|
XlwMenuRedisplay, /* expose */
|
|
|
|
|
XlwMenuSetValues, /* set_values */
|
|
|
|
|
NULL, /* set_values_hook */
|
|
|
|
|
XtInheritSetValuesAlmost, /* set_values_almost */
|
|
|
|
|
NULL, /* get_values_hook */
|
|
|
|
|
NULL, /* accept_focus */
|
|
|
|
|
XtVersion, /* version */
|
|
|
|
|
NULL, /* callback_private */
|
|
|
|
|
xlwMenuTranslations, /* tm_table */
|
|
|
|
|
XtInheritQueryGeometry, /* query_geometry */
|
|
|
|
|
XtInheritDisplayAccelerator, /* display_accelerator */
|
|
|
|
|
NULL /* extension */
|
|
|
|
|
}, /* XlwMenuClass fields initialization */
|
|
|
|
|
{
|
|
|
|
|
0 /* dummy */
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
WidgetClass xlwMenuWidgetClass = (WidgetClass) &xlwMenuClassRec;
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
int submenu_destroyed;
|
|
|
|
|
|
2002-04-28 19:54:30 +00:00
|
|
|
|
/* For debug, if installation-directory is non-nil this is not an installed
|
|
|
|
|
Emacs. In that case we do not grab the keyboard to make it easier to
|
|
|
|
|
debug. */
|
|
|
|
|
#define GRAB_KEYBOARD (EQ (Vinstallation_directory, Qnil))
|
2002-04-22 18:21:06 +00:00
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
static int next_release_must_exit;
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* Utilities */
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2002-04-22 18:21:06 +00:00
|
|
|
|
/* Ungrab pointer and keyboard */
|
|
|
|
|
static void
|
|
|
|
|
ungrab_all (w, ungrabtime)
|
|
|
|
|
Widget w;
|
|
|
|
|
Time ungrabtime;
|
|
|
|
|
{
|
|
|
|
|
XtUngrabPointer (w, ungrabtime);
|
2002-04-28 19:54:30 +00:00
|
|
|
|
if (GRAB_KEYBOARD) XtUngrabKeyboard (w, ungrabtime);
|
2002-04-22 18:21:06 +00:00
|
|
|
|
}
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
/* Like abort, but remove grabs from widget W before. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
abort_gracefully (w)
|
|
|
|
|
Widget w;
|
|
|
|
|
{
|
|
|
|
|
if (XtIsShell (XtParent (w)))
|
|
|
|
|
XtRemoveGrab (w);
|
2002-04-22 18:21:06 +00:00
|
|
|
|
ungrab_all (w, CurrentTime);
|
1999-07-21 21:43:52 +00:00
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
push_new_stack (mw, val)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
widget_value* val;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
if (!mw->menu.new_stack)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.new_stack_length = 10;
|
|
|
|
|
mw->menu.new_stack =
|
|
|
|
|
(widget_value**)XtCalloc (mw->menu.new_stack_length,
|
|
|
|
|
sizeof (widget_value*));
|
|
|
|
|
}
|
|
|
|
|
else if (mw->menu.new_depth == mw->menu.new_stack_length)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.new_stack_length *= 2;
|
|
|
|
|
mw->menu.new_stack =
|
|
|
|
|
(widget_value**)XtRealloc ((char*)mw->menu.new_stack,
|
|
|
|
|
mw->menu.new_stack_length * sizeof (widget_value*));
|
|
|
|
|
}
|
|
|
|
|
mw->menu.new_stack [mw->menu.new_depth++] = val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
pop_new_stack_if_no_contents (mw)
|
|
|
|
|
XlwMenuWidget mw;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
2002-12-22 22:00:44 +00:00
|
|
|
|
if (mw->menu.new_depth > 1)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
if (!mw->menu.new_stack [mw->menu.new_depth - 1]->contents)
|
|
|
|
|
mw->menu.new_depth -= 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
make_old_stack_space (mw, n)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
int n;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
if (!mw->menu.old_stack)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.old_stack_length = 10;
|
|
|
|
|
mw->menu.old_stack =
|
|
|
|
|
(widget_value**)XtCalloc (mw->menu.old_stack_length,
|
|
|
|
|
sizeof (widget_value*));
|
|
|
|
|
}
|
|
|
|
|
else if (mw->menu.old_stack_length < n)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.old_stack_length *= 2;
|
|
|
|
|
mw->menu.old_stack =
|
|
|
|
|
(widget_value**)XtRealloc ((char*)mw->menu.old_stack,
|
|
|
|
|
mw->menu.old_stack_length * sizeof (widget_value*));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Size code */
|
2006-05-23 07:19:45 +00:00
|
|
|
|
static int
|
1994-09-17 12:53:30 +00:00
|
|
|
|
string_width (mw, s)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
char *s;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XCharStruct xcs;
|
|
|
|
|
int drop;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
|
|
|
|
XRectangle ink, logical;
|
|
|
|
|
if (mw->menu.fontSet)
|
|
|
|
|
{
|
|
|
|
|
XmbTextExtents (mw->menu.fontSet, s, strlen (s), &ink, &logical);
|
|
|
|
|
return logical.width;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XTextExtents (mw->menu.font, s, strlen (s), &drop, &drop, &drop, &xcs);
|
|
|
|
|
return xcs.width;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
|
|
|
|
#define MENU_FONT_HEIGHT(mw) \
|
2005-04-01 18:42:19 +00:00
|
|
|
|
((mw)->menu.fontSet != NULL \
|
|
|
|
|
? (mw)->menu.font_extents->max_logical_extent.height \
|
|
|
|
|
: (mw)->menu.font->ascent + (mw)->menu.font->descent)
|
2005-03-18 05:19:59 +00:00
|
|
|
|
#define MENU_FONT_ASCENT(mw) \
|
2005-04-01 18:42:19 +00:00
|
|
|
|
((mw)->menu.fontSet != NULL \
|
|
|
|
|
? - (mw)->menu.font_extents->max_logical_extent.y \
|
|
|
|
|
: (mw)->menu.font->ascent)
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#else
|
|
|
|
|
#define MENU_FONT_HEIGHT(mw) \
|
|
|
|
|
((mw)->menu.font->ascent + (mw)->menu.font->descent)
|
|
|
|
|
#define MENU_FONT_ASCENT(mw) ((mw)->menu.font->ascent)
|
|
|
|
|
#endif
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static int
|
1994-09-17 12:53:30 +00:00
|
|
|
|
arrow_width (mw)
|
|
|
|
|
XlwMenuWidget mw;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
2005-03-18 04:19:41 +00:00
|
|
|
|
return (MENU_FONT_ASCENT (mw) * 3/4) | 1;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
/* Return the width of toggle buttons of widget MW. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
toggle_button_width (mw)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
{
|
2005-03-18 04:19:41 +00:00
|
|
|
|
return (MENU_FONT_HEIGHT (mw) * 2 / 3) | 1;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Return the width of radio buttons of widget MW. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
radio_button_width (mw)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
{
|
|
|
|
|
return toggle_button_width (mw) * 1.41;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static XtResource
|
|
|
|
|
nameResource[] =
|
2000-09-28 20:30:52 +00:00
|
|
|
|
{
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{"labelString", "LabelString", XtRString, sizeof(String),
|
|
|
|
|
0, XtRImmediate, 0},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static char*
|
1994-09-17 12:53:30 +00:00
|
|
|
|
resource_widget_value (mw, val)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
widget_value *val;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
if (!val->toolkit_data)
|
|
|
|
|
{
|
|
|
|
|
char* resourced_name = NULL;
|
|
|
|
|
char* complete_name;
|
|
|
|
|
XtGetSubresources ((Widget) mw,
|
|
|
|
|
(XtPointer) &resourced_name,
|
|
|
|
|
val->name, val->name,
|
|
|
|
|
nameResource, 1, NULL, 0);
|
|
|
|
|
if (!resourced_name)
|
|
|
|
|
resourced_name = val->name;
|
|
|
|
|
if (!val->value)
|
1994-01-21 16:52:12 +00:00
|
|
|
|
{
|
|
|
|
|
complete_name = (char *) XtMalloc (strlen (resourced_name) + 1);
|
|
|
|
|
strcpy (complete_name, resourced_name);
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int complete_length =
|
|
|
|
|
strlen (resourced_name) + strlen (val->value) + 2;
|
|
|
|
|
complete_name = XtMalloc (complete_length);
|
|
|
|
|
*complete_name = 0;
|
|
|
|
|
strcat (complete_name, resourced_name);
|
|
|
|
|
strcat (complete_name, " ");
|
|
|
|
|
strcat (complete_name, val->value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
val->toolkit_data = complete_name;
|
|
|
|
|
val->free_toolkit_data = True;
|
|
|
|
|
}
|
|
|
|
|
return (char*)val->toolkit_data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns the sizes of an item */
|
|
|
|
|
static void
|
1999-07-21 21:43:52 +00:00
|
|
|
|
size_menu_item (mw, val, horizontal_p, label_width, rest_width, button_width,
|
|
|
|
|
height)
|
1994-09-17 12:53:30 +00:00
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
widget_value* val;
|
|
|
|
|
int horizontal_p;
|
|
|
|
|
int* label_width;
|
|
|
|
|
int* rest_width;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
int* button_width;
|
1994-09-17 12:53:30 +00:00
|
|
|
|
int* height;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1999-07-21 21:43:52 +00:00
|
|
|
|
enum menu_separator separator;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
if (lw_separator_p (val->name, &separator, 0))
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1999-07-21 21:43:52 +00:00
|
|
|
|
*height = separator_height (separator);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
*label_width = 1;
|
|
|
|
|
*rest_width = 0;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
*button_width = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2005-03-18 04:19:41 +00:00
|
|
|
|
*height = MENU_FONT_HEIGHT (mw)
|
|
|
|
|
+ 2 * mw->menu.vertical_spacing + 2 * mw->menu.shadow_thickness;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
*label_width =
|
|
|
|
|
string_width (mw, resource_widget_value (mw, val))
|
|
|
|
|
+ mw->menu.horizontal_spacing + mw->menu.shadow_thickness;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
*rest_width = mw->menu.horizontal_spacing + mw->menu.shadow_thickness;
|
|
|
|
|
if (!horizontal_p)
|
|
|
|
|
{
|
|
|
|
|
if (val->contents)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
/* Add width of the arrow displayed for submenus. */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
*rest_width += arrow_width (mw) + mw->menu.arrow_spacing;
|
|
|
|
|
else if (val->key)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
/* Add width of key equivalent string. */
|
|
|
|
|
*rest_width += (string_width (mw, val->key)
|
|
|
|
|
+ mw->menu.arrow_spacing);
|
|
|
|
|
|
|
|
|
|
if (val->button_type == BUTTON_TYPE_TOGGLE)
|
|
|
|
|
*button_width = (toggle_button_width (mw)
|
|
|
|
|
+ mw->menu.horizontal_spacing);
|
|
|
|
|
else if (val->button_type == BUTTON_TYPE_RADIO)
|
|
|
|
|
*button_width = (radio_button_width (mw)
|
|
|
|
|
+ mw->menu.horizontal_spacing);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
size_menu (mw, level)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
int level;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1995-04-15 18:33:29 +00:00
|
|
|
|
unsigned int label_width = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
int rest_width = 0;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
int button_width = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
int max_rest_width = 0;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
int max_button_width = 0;
|
1995-04-15 18:33:29 +00:00
|
|
|
|
unsigned int height = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
int horizontal_p = mw->menu.horizontal && (level == 0);
|
|
|
|
|
widget_value* val;
|
|
|
|
|
window_state* ws;
|
|
|
|
|
|
|
|
|
|
if (level >= mw->menu.old_depth)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
abort_gracefully ((Widget) mw);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
ws = &mw->menu.windows [level];
|
1994-01-18 23:47:41 +00:00
|
|
|
|
ws->width = 0;
|
|
|
|
|
ws->height = 0;
|
|
|
|
|
ws->label_width = 0;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
ws->button_width = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
for (val = mw->menu.old_stack [level]->contents; val; val = val->next)
|
|
|
|
|
{
|
|
|
|
|
size_menu_item (mw, val, horizontal_p, &label_width, &rest_width,
|
1999-07-21 21:43:52 +00:00
|
|
|
|
&button_width, &height);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (horizontal_p)
|
|
|
|
|
{
|
|
|
|
|
ws->width += label_width + rest_width;
|
|
|
|
|
if (height > ws->height)
|
|
|
|
|
ws->height = height;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (label_width > ws->label_width)
|
|
|
|
|
ws->label_width = label_width;
|
|
|
|
|
if (rest_width > max_rest_width)
|
|
|
|
|
max_rest_width = rest_width;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
if (button_width > max_button_width)
|
|
|
|
|
max_button_width = button_width;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
ws->height += height;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (horizontal_p)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
ws->label_width = ws->button_width = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
else
|
1999-07-21 21:43:52 +00:00
|
|
|
|
{
|
|
|
|
|
ws->width = ws->label_width + max_rest_width + max_button_width;
|
|
|
|
|
ws->button_width = max_button_width;
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
ws->width += 2 * mw->menu.shadow_thickness;
|
|
|
|
|
ws->height += 2 * mw->menu.shadow_thickness;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
if (horizontal_p)
|
|
|
|
|
{
|
|
|
|
|
ws->width += 2 * mw->menu.margin;
|
|
|
|
|
ws->height += 2 * mw->menu.margin;
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Display code */
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static void
|
1999-07-21 21:43:52 +00:00
|
|
|
|
draw_arrow (mw, window, gc, x, y, width, down_p)
|
1994-09-17 12:53:30 +00:00
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
Window window;
|
|
|
|
|
GC gc;
|
|
|
|
|
int x;
|
|
|
|
|
int y;
|
|
|
|
|
int width;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
int down_p;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1999-07-21 21:43:52 +00:00
|
|
|
|
Display *dpy = XtDisplay (mw);
|
|
|
|
|
GC top_gc = mw->menu.shadow_top_gc;
|
|
|
|
|
GC bottom_gc = mw->menu.shadow_bottom_gc;
|
|
|
|
|
int thickness = mw->menu.shadow_thickness;
|
|
|
|
|
int height = width;
|
|
|
|
|
XPoint pt[10];
|
|
|
|
|
/* alpha = atan (0.5)
|
|
|
|
|
factor = (1 + sin (alpha)) / cos (alpha) */
|
|
|
|
|
double factor = 1.62;
|
|
|
|
|
int thickness2 = thickness * factor;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
2005-03-18 04:19:41 +00:00
|
|
|
|
y += (MENU_FONT_HEIGHT (mw) - height) / 2;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
if (down_p)
|
|
|
|
|
{
|
|
|
|
|
GC temp;
|
|
|
|
|
temp = top_gc;
|
|
|
|
|
top_gc = bottom_gc;
|
|
|
|
|
bottom_gc = temp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pt[0].x = x;
|
|
|
|
|
pt[0].y = y + height;
|
|
|
|
|
pt[1].x = x + thickness;
|
|
|
|
|
pt[1].y = y + height - thickness2;
|
|
|
|
|
pt[2].x = x + thickness2;
|
|
|
|
|
pt[2].y = y + thickness2;
|
|
|
|
|
pt[3].x = x;
|
|
|
|
|
pt[3].y = y;
|
|
|
|
|
XFillPolygon (dpy, window, top_gc, pt, 4, Convex, CoordModeOrigin);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
pt[0].x = x;
|
|
|
|
|
pt[0].y = y;
|
|
|
|
|
pt[1].x = x + thickness;
|
|
|
|
|
pt[1].y = y + thickness2;
|
|
|
|
|
pt[2].x = x + width - thickness2;
|
|
|
|
|
pt[2].y = y + height / 2;
|
|
|
|
|
pt[3].x = x + width;
|
|
|
|
|
pt[3].y = y + height / 2;
|
|
|
|
|
XFillPolygon (dpy, window, top_gc, pt, 4, Convex, CoordModeOrigin);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
pt[0].x = x;
|
|
|
|
|
pt[0].y = y + height;
|
|
|
|
|
pt[1].x = x + thickness;
|
|
|
|
|
pt[1].y = y + height - thickness2;
|
|
|
|
|
pt[2].x = x + width - thickness2;
|
|
|
|
|
pt[2].y = y + height / 2;
|
|
|
|
|
pt[3].x = x + width;
|
|
|
|
|
pt[3].y = y + height / 2;
|
|
|
|
|
XFillPolygon (dpy, window, bottom_gc, pt, 4, Convex, CoordModeOrigin);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static void
|
1999-07-21 21:43:52 +00:00
|
|
|
|
draw_shadow_rectangle (mw, window, x, y, width, height, erase_p, down_p)
|
1994-09-17 12:53:30 +00:00
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
Window window;
|
|
|
|
|
int x;
|
|
|
|
|
int y;
|
|
|
|
|
int width;
|
|
|
|
|
int height;
|
|
|
|
|
int erase_p;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
int down_p;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
Display *dpy = XtDisplay (mw);
|
|
|
|
|
GC top_gc = !erase_p ? mw->menu.shadow_top_gc : mw->menu.background_gc;
|
|
|
|
|
GC bottom_gc = !erase_p ? mw->menu.shadow_bottom_gc : mw->menu.background_gc;
|
|
|
|
|
int thickness = mw->menu.shadow_thickness;
|
|
|
|
|
XPoint points [4];
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
if (!erase_p && down_p)
|
|
|
|
|
{
|
|
|
|
|
GC temp;
|
|
|
|
|
temp = top_gc;
|
|
|
|
|
top_gc = bottom_gc;
|
|
|
|
|
bottom_gc = temp;
|
|
|
|
|
}
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
points [0].x = x;
|
|
|
|
|
points [0].y = y;
|
|
|
|
|
points [1].x = x + width;
|
|
|
|
|
points [1].y = y;
|
|
|
|
|
points [2].x = x + width - thickness;
|
|
|
|
|
points [2].y = y + thickness;
|
|
|
|
|
points [3].x = x;
|
|
|
|
|
points [3].y = y + thickness;
|
|
|
|
|
XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin);
|
|
|
|
|
points [0].x = x;
|
|
|
|
|
points [0].y = y + thickness;
|
|
|
|
|
points [1].x = x;
|
|
|
|
|
points [1].y = y + height;
|
|
|
|
|
points [2].x = x + thickness;
|
|
|
|
|
points [2].y = y + height - thickness;
|
|
|
|
|
points [3].x = x + thickness;
|
|
|
|
|
points [3].y = y + thickness;
|
|
|
|
|
XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin);
|
|
|
|
|
points [0].x = x + width;
|
|
|
|
|
points [0].y = y;
|
|
|
|
|
points [1].x = x + width - thickness;
|
|
|
|
|
points [1].y = y + thickness;
|
|
|
|
|
points [2].x = x + width - thickness;
|
|
|
|
|
points [2].y = y + height - thickness;
|
|
|
|
|
points [3].x = x + width;
|
|
|
|
|
points [3].y = y + height - thickness;
|
|
|
|
|
XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin);
|
|
|
|
|
points [0].x = x;
|
|
|
|
|
points [0].y = y + height;
|
|
|
|
|
points [1].x = x + width;
|
|
|
|
|
points [1].y = y + height;
|
|
|
|
|
points [2].x = x + width;
|
|
|
|
|
points [2].y = y + height - thickness;
|
|
|
|
|
points [3].x = x + thickness;
|
|
|
|
|
points [3].y = y + height - thickness;
|
|
|
|
|
XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
static void
|
|
|
|
|
draw_shadow_rhombus (mw, window, x, y, width, height, erase_p, down_p)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
Window window;
|
|
|
|
|
int x;
|
|
|
|
|
int y;
|
|
|
|
|
int width;
|
|
|
|
|
int height;
|
|
|
|
|
int erase_p;
|
|
|
|
|
int down_p;
|
|
|
|
|
{
|
|
|
|
|
Display *dpy = XtDisplay (mw);
|
|
|
|
|
GC top_gc = !erase_p ? mw->menu.shadow_top_gc : mw->menu.background_gc;
|
|
|
|
|
GC bottom_gc = !erase_p ? mw->menu.shadow_bottom_gc : mw->menu.background_gc;
|
|
|
|
|
int thickness = mw->menu.shadow_thickness;
|
|
|
|
|
XPoint points [4];
|
|
|
|
|
|
|
|
|
|
if (!erase_p && down_p)
|
|
|
|
|
{
|
|
|
|
|
GC temp;
|
|
|
|
|
temp = top_gc;
|
|
|
|
|
top_gc = bottom_gc;
|
|
|
|
|
bottom_gc = temp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
points [0].x = x;
|
|
|
|
|
points [0].y = y + height / 2;
|
|
|
|
|
points [1].x = x + thickness;
|
|
|
|
|
points [1].y = y + height / 2;
|
|
|
|
|
points [2].x = x + width / 2;
|
|
|
|
|
points [2].y = y + thickness;
|
|
|
|
|
points [3].x = x + width / 2;
|
|
|
|
|
points [3].y = y;
|
|
|
|
|
XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin);
|
|
|
|
|
points [0].x = x + width / 2;
|
|
|
|
|
points [0].y = y;
|
|
|
|
|
points [1].x = x + width / 2;
|
|
|
|
|
points [1].y = y + thickness;
|
|
|
|
|
points [2].x = x + width - thickness;
|
|
|
|
|
points [2].y = y + height / 2;
|
|
|
|
|
points [3].x = x + width;
|
|
|
|
|
points [3].y = y + height / 2;
|
|
|
|
|
XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin);
|
|
|
|
|
points [0].x = x;
|
|
|
|
|
points [0].y = y + height / 2;
|
|
|
|
|
points [1].x = x + thickness;
|
|
|
|
|
points [1].y = y + height / 2;
|
|
|
|
|
points [2].x = x + width / 2;
|
|
|
|
|
points [2].y = y + height - thickness;
|
|
|
|
|
points [3].x = x + width / 2;
|
|
|
|
|
points [3].y = y + height;
|
|
|
|
|
XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin);
|
|
|
|
|
points [0].x = x + width / 2;
|
|
|
|
|
points [0].y = y + height;
|
|
|
|
|
points [1].x = x + width / 2;
|
|
|
|
|
points [1].y = y + height - thickness;
|
|
|
|
|
points [2].x = x + width - thickness;
|
|
|
|
|
points [2].y = y + height / 2;
|
|
|
|
|
points [3].x = x + width;
|
|
|
|
|
points [3].y = y + height / 2;
|
|
|
|
|
XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Draw a toggle button on widget MW, X window WINDOW. X/Y is the
|
|
|
|
|
top-left corner of the menu item. SELECTED_P non-zero means the
|
|
|
|
|
toggle button is selected. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
draw_toggle (mw, window, x, y, selected_p)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
Window window;
|
|
|
|
|
int x, y, selected_p;
|
|
|
|
|
{
|
|
|
|
|
int width, height;
|
|
|
|
|
|
|
|
|
|
width = toggle_button_width (mw);
|
|
|
|
|
height = width;
|
|
|
|
|
x += mw->menu.horizontal_spacing;
|
2005-03-18 04:19:41 +00:00
|
|
|
|
y += (MENU_FONT_ASCENT (mw) - height) / 2;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
draw_shadow_rectangle (mw, window, x, y, width, height, False, selected_p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Draw a radio button on widget MW, X window WINDOW. X/Y is the
|
|
|
|
|
top-left corner of the menu item. SELECTED_P non-zero means the
|
|
|
|
|
toggle button is selected. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
draw_radio (mw, window, x, y, selected_p)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
Window window;
|
|
|
|
|
int x, y, selected_p;
|
|
|
|
|
{
|
|
|
|
|
int width, height;
|
|
|
|
|
|
|
|
|
|
width = radio_button_width (mw);
|
|
|
|
|
height = width;
|
|
|
|
|
x += mw->menu.horizontal_spacing;
|
2005-03-18 04:19:41 +00:00
|
|
|
|
y += (MENU_FONT_ASCENT (mw) - height) / 2;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
draw_shadow_rhombus (mw, window, x, y, width, height, False, selected_p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Draw a menu separator on widget MW, X window WINDOW. X/Y is the
|
|
|
|
|
top-left corner of the menu item. WIDTH is the width of the
|
|
|
|
|
separator to draw. TYPE is the separator type. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
draw_separator (mw, window, x, y, width, type)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
Window window;
|
|
|
|
|
int x, y, width;
|
|
|
|
|
enum menu_separator type;
|
|
|
|
|
{
|
|
|
|
|
Display *dpy = XtDisplay (mw);
|
|
|
|
|
XGCValues xgcv;
|
|
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case SEPARATOR_NO_LINE:
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SINGLE_LINE:
|
|
|
|
|
XDrawLine (dpy, window, mw->menu.foreground_gc,
|
|
|
|
|
x, y, x + width, y);
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_DOUBLE_LINE:
|
|
|
|
|
draw_separator (mw, window, x, y, width, SEPARATOR_SINGLE_LINE);
|
|
|
|
|
draw_separator (mw, window, x, y + 2, width, SEPARATOR_SINGLE_LINE);
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SINGLE_DASHED_LINE:
|
|
|
|
|
xgcv.line_style = LineOnOffDash;
|
|
|
|
|
XChangeGC (dpy, mw->menu.foreground_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XDrawLine (dpy, window, mw->menu.foreground_gc,
|
|
|
|
|
x, y, x + width, y);
|
|
|
|
|
xgcv.line_style = LineSolid;
|
|
|
|
|
XChangeGC (dpy, mw->menu.foreground_gc, GCLineStyle, &xgcv);
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_DOUBLE_DASHED_LINE:
|
|
|
|
|
draw_separator (mw, window, x, y, width,
|
|
|
|
|
SEPARATOR_SINGLE_DASHED_LINE);
|
|
|
|
|
draw_separator (mw, window, x, y + 2, width,
|
|
|
|
|
SEPARATOR_SINGLE_DASHED_LINE);
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SHADOW_ETCHED_IN:
|
|
|
|
|
XDrawLine (dpy, window, mw->menu.shadow_bottom_gc,
|
|
|
|
|
x, y, x + width, y);
|
|
|
|
|
XDrawLine (dpy, window, mw->menu.shadow_top_gc,
|
|
|
|
|
x, y + 1, x + width, y + 1);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SEPARATOR_SHADOW_ETCHED_OUT:
|
|
|
|
|
XDrawLine (dpy, window, mw->menu.shadow_top_gc,
|
|
|
|
|
x, y, x + width, y);
|
|
|
|
|
XDrawLine (dpy, window, mw->menu.shadow_bottom_gc,
|
|
|
|
|
x, y + 1, x + width, y + 1);
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SHADOW_ETCHED_IN_DASH:
|
|
|
|
|
xgcv.line_style = LineOnOffDash;
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
|
2000-12-11 14:33:47 +00:00
|
|
|
|
draw_separator (mw, window, x, y, width, SEPARATOR_SHADOW_ETCHED_IN);
|
1999-07-21 21:43:52 +00:00
|
|
|
|
xgcv.line_style = LineSolid;
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SHADOW_ETCHED_OUT_DASH:
|
|
|
|
|
xgcv.line_style = LineOnOffDash;
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
|
2000-12-11 14:33:47 +00:00
|
|
|
|
draw_separator (mw, window, x, y, width, SEPARATOR_SHADOW_ETCHED_OUT);
|
1999-07-21 21:43:52 +00:00
|
|
|
|
xgcv.line_style = LineSolid;
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN:
|
|
|
|
|
draw_separator (mw, window, x, y, width, SEPARATOR_SHADOW_ETCHED_IN);
|
|
|
|
|
draw_separator (mw, window, x, y + 3, width, SEPARATOR_SHADOW_ETCHED_IN);
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT:
|
|
|
|
|
draw_separator (mw, window, x, y, width,
|
|
|
|
|
SEPARATOR_SHADOW_ETCHED_OUT);
|
|
|
|
|
draw_separator (mw, window, x, y + 3, width,
|
|
|
|
|
SEPARATOR_SHADOW_ETCHED_OUT);
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN_DASH:
|
|
|
|
|
xgcv.line_style = LineOnOffDash;
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
|
|
|
|
|
draw_separator (mw, window, x, y, width,
|
|
|
|
|
SEPARATOR_SHADOW_DOUBLE_ETCHED_IN);
|
|
|
|
|
xgcv.line_style = LineSolid;
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT_DASH:
|
|
|
|
|
xgcv.line_style = LineOnOffDash;
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
|
|
|
|
|
draw_separator (mw, window, x, y, width,
|
|
|
|
|
SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT);
|
|
|
|
|
xgcv.line_style = LineSolid;
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Return the pixel height of menu separator SEPARATOR. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
separator_height (separator)
|
|
|
|
|
enum menu_separator separator;
|
|
|
|
|
{
|
|
|
|
|
switch (separator)
|
|
|
|
|
{
|
|
|
|
|
case SEPARATOR_NO_LINE:
|
|
|
|
|
return 2;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SINGLE_LINE:
|
|
|
|
|
case SEPARATOR_SINGLE_DASHED_LINE:
|
|
|
|
|
return 1;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_DOUBLE_LINE:
|
|
|
|
|
case SEPARATOR_DOUBLE_DASHED_LINE:
|
|
|
|
|
return 3;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SHADOW_ETCHED_IN:
|
|
|
|
|
case SEPARATOR_SHADOW_ETCHED_OUT:
|
|
|
|
|
case SEPARATOR_SHADOW_ETCHED_IN_DASH:
|
|
|
|
|
case SEPARATOR_SHADOW_ETCHED_OUT_DASH:
|
|
|
|
|
return 2;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN:
|
|
|
|
|
case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT:
|
|
|
|
|
case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN_DASH:
|
|
|
|
|
case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT_DASH:
|
|
|
|
|
return 5;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* Display the menu item and increment where.x and where.y to show how large
|
1999-07-21 21:43:52 +00:00
|
|
|
|
the menu item was. */
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static void
|
1999-07-21 21:43:52 +00:00
|
|
|
|
display_menu_item (mw, val, ws, where, highlighted_p, horizontal_p,
|
|
|
|
|
just_compute_p)
|
1994-09-17 12:53:30 +00:00
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
widget_value* val;
|
|
|
|
|
window_state* ws;
|
|
|
|
|
XPoint* where;
|
|
|
|
|
Boolean highlighted_p;
|
|
|
|
|
Boolean horizontal_p;
|
|
|
|
|
Boolean just_compute_p;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
GC deco_gc;
|
|
|
|
|
GC text_gc;
|
2005-03-18 04:19:41 +00:00
|
|
|
|
int font_height = MENU_FONT_HEIGHT (mw);
|
|
|
|
|
int font_ascent = MENU_FONT_ASCENT (mw);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
int shadow = mw->menu.shadow_thickness;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
int margin = mw->menu.margin;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
int h_spacing = mw->menu.horizontal_spacing;
|
|
|
|
|
int v_spacing = mw->menu.vertical_spacing;
|
|
|
|
|
int label_width;
|
|
|
|
|
int rest_width;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
int button_width;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
int height;
|
|
|
|
|
int width;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
enum menu_separator separator;
|
|
|
|
|
int separator_p = lw_separator_p (val->name, &separator, 0);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
/* compute the sizes of the item */
|
1999-07-21 21:43:52 +00:00
|
|
|
|
size_menu_item (mw, val, horizontal_p, &label_width, &rest_width,
|
|
|
|
|
&button_width, &height);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (horizontal_p)
|
|
|
|
|
width = label_width + rest_width;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
label_width = ws->label_width;
|
|
|
|
|
width = ws->width - 2 * shadow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Only highlight an enabled item that has a callback. */
|
|
|
|
|
if (highlighted_p)
|
|
|
|
|
if (!val->enabled || !(val->call_data || val->contents))
|
|
|
|
|
highlighted_p = 0;
|
|
|
|
|
|
|
|
|
|
/* do the drawing. */
|
|
|
|
|
if (!just_compute_p)
|
|
|
|
|
{
|
|
|
|
|
/* Add the shadow border of the containing menu */
|
|
|
|
|
int x = where->x + shadow;
|
|
|
|
|
int y = where->y + shadow;
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
if (horizontal_p)
|
|
|
|
|
{
|
|
|
|
|
x += margin;
|
|
|
|
|
y += margin;
|
|
|
|
|
}
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* pick the foreground and background GC. */
|
|
|
|
|
if (val->enabled)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
text_gc = mw->menu.foreground_gc;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
else
|
2002-05-06 18:56:25 +00:00
|
|
|
|
text_gc = mw->menu.disabled_gc;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
deco_gc = mw->menu.foreground_gc;
|
|
|
|
|
|
|
|
|
|
if (separator_p)
|
|
|
|
|
{
|
1999-07-21 21:43:52 +00:00
|
|
|
|
draw_separator (mw, ws->window, x, y, width, separator);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
2000-09-28 20:30:52 +00:00
|
|
|
|
else
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1994-10-02 12:14:00 +00:00
|
|
|
|
int x_offset = x + h_spacing + shadow;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
char* display_string = resource_widget_value (mw, val);
|
1999-07-21 21:43:52 +00:00
|
|
|
|
draw_shadow_rectangle (mw, ws->window, x, y, width, height, True,
|
|
|
|
|
False);
|
1994-10-02 12:14:00 +00:00
|
|
|
|
|
|
|
|
|
/* Deal with centering a menu title. */
|
|
|
|
|
if (!horizontal_p && !val->contents && !val->call_data)
|
|
|
|
|
{
|
|
|
|
|
int l = string_width (mw, display_string);
|
|
|
|
|
|
|
|
|
|
if (width > l)
|
|
|
|
|
x_offset = (width - l) >> 1;
|
|
|
|
|
}
|
1999-07-21 21:43:52 +00:00
|
|
|
|
else if (!horizontal_p && ws->button_width)
|
|
|
|
|
x_offset += ws->button_width;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
|
|
|
|
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
2005-04-01 18:42:19 +00:00
|
|
|
|
if (mw->menu.fontSet)
|
|
|
|
|
XmbDrawString (XtDisplay (mw), ws->window, mw->menu.fontSet,
|
|
|
|
|
text_gc, x_offset,
|
|
|
|
|
y + v_spacing + shadow + font_ascent,
|
|
|
|
|
display_string, strlen (display_string));
|
|
|
|
|
else
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#endif
|
2005-04-01 18:42:19 +00:00
|
|
|
|
XDrawString (XtDisplay (mw), ws->window,
|
2005-03-18 04:19:41 +00:00
|
|
|
|
text_gc, x_offset,
|
1994-01-18 23:47:41 +00:00
|
|
|
|
y + v_spacing + shadow + font_ascent,
|
|
|
|
|
display_string, strlen (display_string));
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (!horizontal_p)
|
|
|
|
|
{
|
1999-07-21 21:43:52 +00:00
|
|
|
|
if (val->button_type == BUTTON_TYPE_TOGGLE)
|
|
|
|
|
draw_toggle (mw, ws->window, x, y + v_spacing + shadow,
|
|
|
|
|
val->selected);
|
|
|
|
|
else if (val->button_type == BUTTON_TYPE_RADIO)
|
|
|
|
|
draw_radio (mw, ws->window, x, y + v_spacing + shadow,
|
|
|
|
|
val->selected);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (val->contents)
|
|
|
|
|
{
|
|
|
|
|
int a_w = arrow_width (mw);
|
|
|
|
|
draw_arrow (mw, ws->window, deco_gc,
|
1999-07-21 21:43:52 +00:00
|
|
|
|
x + width - a_w
|
2000-09-28 20:30:52 +00:00
|
|
|
|
- mw->menu.horizontal_spacing
|
1994-09-17 12:53:30 +00:00
|
|
|
|
- mw->menu.shadow_thickness,
|
1999-07-21 21:43:52 +00:00
|
|
|
|
y + v_spacing + shadow, a_w,
|
|
|
|
|
highlighted_p);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
else if (val->key)
|
|
|
|
|
{
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
2005-04-01 18:42:19 +00:00
|
|
|
|
if (mw->menu.fontSet)
|
|
|
|
|
XmbDrawString (XtDisplay (mw), ws->window,
|
|
|
|
|
mw->menu.fontSet,
|
|
|
|
|
text_gc,
|
|
|
|
|
x + label_width + mw->menu.arrow_spacing,
|
|
|
|
|
y + v_spacing + shadow + font_ascent,
|
|
|
|
|
val->key, strlen (val->key));
|
|
|
|
|
else
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#endif
|
2005-04-01 18:42:19 +00:00
|
|
|
|
XDrawString (XtDisplay (mw), ws->window,
|
2005-03-18 04:19:41 +00:00
|
|
|
|
text_gc,
|
1994-01-18 23:47:41 +00:00
|
|
|
|
x + label_width + mw->menu.arrow_spacing,
|
|
|
|
|
y + v_spacing + shadow + font_ascent,
|
|
|
|
|
val->key, strlen (val->key));
|
|
|
|
|
}
|
|
|
|
|
}
|
1994-09-17 12:53:30 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2000-09-28 20:30:52 +00:00
|
|
|
|
XDrawRectangle (XtDisplay (mw), ws->window,
|
1994-09-17 12:53:30 +00:00
|
|
|
|
mw->menu.background_gc,
|
|
|
|
|
x + shadow, y + shadow,
|
|
|
|
|
label_width + h_spacing - 1,
|
2005-03-18 04:19:41 +00:00
|
|
|
|
font_height + 2 * v_spacing - 1);
|
1994-09-17 12:53:30 +00:00
|
|
|
|
draw_shadow_rectangle (mw, ws->window, x, y, width, height,
|
1999-07-21 21:43:52 +00:00
|
|
|
|
True, False);
|
1994-09-17 12:53:30 +00:00
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (highlighted_p)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
draw_shadow_rectangle (mw, ws->window, x, y, width, height, False,
|
|
|
|
|
False);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
where->x += width;
|
|
|
|
|
where->y += height;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
display_menu (mw, level, just_compute_p, highlighted_pos, hit, hit_return,
|
|
|
|
|
this, that)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
int level;
|
|
|
|
|
Boolean just_compute_p;
|
|
|
|
|
XPoint* highlighted_pos;
|
|
|
|
|
XPoint* hit;
|
|
|
|
|
widget_value** hit_return;
|
|
|
|
|
widget_value* this;
|
|
|
|
|
widget_value* that;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
widget_value* val;
|
|
|
|
|
widget_value* following_item;
|
|
|
|
|
window_state* ws;
|
|
|
|
|
XPoint where;
|
|
|
|
|
int horizontal_p = mw->menu.horizontal && (level == 0);
|
|
|
|
|
int highlighted_p;
|
|
|
|
|
int just_compute_this_one_p;
|
1997-07-26 01:40:05 +00:00
|
|
|
|
/* This is set nonzero if the element containing HIGHLIGHTED_POS
|
|
|
|
|
is disabled, so that we do not return any subsequent element either. */
|
|
|
|
|
int no_return = 0;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
enum menu_separator separator;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (level >= mw->menu.old_depth)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
abort_gracefully ((Widget) mw);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (level < mw->menu.old_depth - 1)
|
|
|
|
|
following_item = mw->menu.old_stack [level + 1];
|
2000-09-28 20:30:52 +00:00
|
|
|
|
else
|
1994-01-18 23:47:41 +00:00
|
|
|
|
following_item = NULL;
|
|
|
|
|
|
|
|
|
|
if (hit)
|
|
|
|
|
*hit_return = NULL;
|
|
|
|
|
|
|
|
|
|
where.x = 0;
|
|
|
|
|
where.y = 0;
|
|
|
|
|
|
|
|
|
|
ws = &mw->menu.windows [level];
|
|
|
|
|
for (val = mw->menu.old_stack [level]->contents; val; val = val->next)
|
|
|
|
|
{
|
|
|
|
|
highlighted_p = val == following_item;
|
|
|
|
|
if (highlighted_p && highlighted_pos)
|
|
|
|
|
{
|
|
|
|
|
if (horizontal_p)
|
|
|
|
|
highlighted_pos->x = where.x;
|
|
|
|
|
else
|
|
|
|
|
highlighted_pos->y = where.y;
|
|
|
|
|
}
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
just_compute_this_one_p =
|
|
|
|
|
just_compute_p || ((this || that) && val != this && val != that);
|
|
|
|
|
|
|
|
|
|
display_menu_item (mw, val, ws, &where, highlighted_p, horizontal_p,
|
|
|
|
|
just_compute_this_one_p);
|
|
|
|
|
|
|
|
|
|
if (highlighted_p && highlighted_pos)
|
|
|
|
|
{
|
|
|
|
|
if (horizontal_p)
|
|
|
|
|
highlighted_pos->y = where.y;
|
|
|
|
|
else
|
|
|
|
|
highlighted_pos->x = where.x;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (hit
|
|
|
|
|
&& !*hit_return
|
|
|
|
|
&& (horizontal_p ? hit->x < where.x : hit->y < where.y)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
&& !lw_separator_p (val->name, &separator, 0)
|
1997-07-26 01:40:05 +00:00
|
|
|
|
&& !no_return)
|
|
|
|
|
{
|
|
|
|
|
if (val->enabled)
|
|
|
|
|
*hit_return = val;
|
|
|
|
|
else
|
|
|
|
|
no_return = 1;
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (horizontal_p)
|
|
|
|
|
where.y = 0;
|
|
|
|
|
else
|
|
|
|
|
where.x = 0;
|
|
|
|
|
}
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (!just_compute_p)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
draw_shadow_rectangle (mw, ws->window, 0, 0, ws->width, ws->height,
|
|
|
|
|
False, False);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Motion code */
|
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
set_new_state (mw, val, level)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
widget_value* val;
|
|
|
|
|
int level;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.new_depth = 0;
|
|
|
|
|
for (i = 0; i < level; i++)
|
|
|
|
|
push_new_stack (mw, mw->menu.old_stack [i]);
|
|
|
|
|
push_new_stack (mw, val);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
make_windows_if_needed (mw, n)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
int n;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
int start_at;
|
|
|
|
|
XSetWindowAttributes xswa;
|
|
|
|
|
int mask;
|
|
|
|
|
Window root = RootWindowOfScreen (DefaultScreenOfDisplay (XtDisplay (mw)));
|
|
|
|
|
window_state* windows;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (mw->menu.windows_length >= n)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
xswa.save_under = True;
|
|
|
|
|
xswa.override_redirect = True;
|
|
|
|
|
xswa.background_pixel = mw->core.background_pixel;
|
|
|
|
|
xswa.border_pixel = mw->core.border_pixel;
|
|
|
|
|
xswa.event_mask =
|
1994-09-17 12:53:30 +00:00
|
|
|
|
ExposureMask | PointerMotionMask | PointerMotionHintMask
|
1994-01-18 23:47:41 +00:00
|
|
|
|
| ButtonReleaseMask | ButtonPressMask;
|
|
|
|
|
xswa.cursor = mw->menu.cursor_shape;
|
|
|
|
|
mask = CWSaveUnder | CWOverrideRedirect | CWBackPixel | CWBorderPixel
|
|
|
|
|
| CWEventMask | CWCursor;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (!mw->menu.windows)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.windows =
|
|
|
|
|
(window_state*)XtMalloc (n * sizeof (window_state));
|
|
|
|
|
start_at = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
mw->menu.windows =
|
|
|
|
|
(window_state*)XtRealloc ((char*)mw->menu.windows,
|
|
|
|
|
n * sizeof (window_state));
|
|
|
|
|
start_at = mw->menu.windows_length;
|
|
|
|
|
}
|
|
|
|
|
mw->menu.windows_length = n;
|
|
|
|
|
|
|
|
|
|
windows = mw->menu.windows;
|
|
|
|
|
|
|
|
|
|
for (i = start_at; i < n; i++)
|
|
|
|
|
{
|
|
|
|
|
windows [i].x = 0;
|
|
|
|
|
windows [i].y = 0;
|
|
|
|
|
windows [i].width = 1;
|
|
|
|
|
windows [i].height = 1;
|
|
|
|
|
windows [i].window =
|
|
|
|
|
XCreateWindow (XtDisplay (mw), root, 0, 0, 1, 1,
|
|
|
|
|
0, 0, CopyFromParent, CopyFromParent, mask, &xswa);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-04-30 14:34:54 +00:00
|
|
|
|
/* Value is non-zero if WINDOW is part of menu bar widget W. */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
xlwmenu_window_p (w, window)
|
|
|
|
|
Widget w;
|
|
|
|
|
Window window;
|
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget) w;
|
|
|
|
|
int i;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
2001-04-30 14:34:54 +00:00
|
|
|
|
for (i = 0; i < mw->menu.windows_length; ++i)
|
|
|
|
|
if (window == mw->menu.windows[i].window)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
return i < mw->menu.windows_length;
|
|
|
|
|
}
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* Make the window fit in the screen */
|
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
fit_to_screen (mw, ws, previous_ws, horizontal_p)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
window_state* ws;
|
|
|
|
|
window_state* previous_ws;
|
|
|
|
|
Boolean horizontal_p;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1995-04-15 18:33:29 +00:00
|
|
|
|
unsigned int screen_width = WidthOfScreen (XtScreen (mw));
|
|
|
|
|
unsigned int screen_height = HeightOfScreen (XtScreen (mw));
|
1997-01-22 02:04:17 +00:00
|
|
|
|
/* 1 if we are unable to avoid an overlap between
|
|
|
|
|
this menu and the parent menu in the X dimension. */
|
|
|
|
|
int horizontal_overlap = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (ws->x < 0)
|
|
|
|
|
ws->x = 0;
|
|
|
|
|
else if (ws->x + ws->width > screen_width)
|
|
|
|
|
{
|
|
|
|
|
if (!horizontal_p)
|
2000-09-04 13:04:49 +00:00
|
|
|
|
/* The addition of shadow-thickness for a sub-menu's position is
|
|
|
|
|
to reflect a similar adjustment when the menu is displayed to
|
|
|
|
|
the right of the invoking menu-item; it makes the sub-menu
|
|
|
|
|
look more `attached' to the menu-item. */
|
|
|
|
|
ws->x = previous_ws->x - ws->width + mw->menu.shadow_thickness;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
else
|
|
|
|
|
ws->x = screen_width - ws->width;
|
1994-10-08 04:16:17 +00:00
|
|
|
|
if (ws->x < 0)
|
1997-01-22 02:04:17 +00:00
|
|
|
|
{
|
|
|
|
|
ws->x = 0;
|
|
|
|
|
horizontal_overlap = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* If we overlap in X, try to avoid overlap in Y. */
|
|
|
|
|
if (horizontal_overlap
|
|
|
|
|
&& ws->y < previous_ws->y + previous_ws->height
|
|
|
|
|
&& previous_ws->y < ws->y + ws->height)
|
|
|
|
|
{
|
|
|
|
|
/* Put this menu right below or right above PREVIOUS_WS
|
|
|
|
|
if there's room. */
|
|
|
|
|
if (previous_ws->y + previous_ws->height + ws->height < screen_height)
|
|
|
|
|
ws->y = previous_ws->y + previous_ws->height;
|
|
|
|
|
else if (previous_ws->y - ws->height > 0)
|
|
|
|
|
ws->y = previous_ws->y - ws->height;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
1997-01-22 02:04:17 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (ws->y < 0)
|
|
|
|
|
ws->y = 0;
|
|
|
|
|
else if (ws->y + ws->height > screen_height)
|
|
|
|
|
{
|
|
|
|
|
if (horizontal_p)
|
|
|
|
|
ws->y = previous_ws->y - ws->height;
|
|
|
|
|
else
|
|
|
|
|
ws->y = screen_height - ws->height;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
if (ws->y < 0)
|
1994-10-08 04:16:17 +00:00
|
|
|
|
ws->y = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Updates old_stack from new_stack and redisplays. */
|
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
remap_menubar (mw)
|
|
|
|
|
XlwMenuWidget mw;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
int last_same;
|
|
|
|
|
XPoint selection_position;
|
|
|
|
|
int old_depth = mw->menu.old_depth;
|
|
|
|
|
int new_depth = mw->menu.new_depth;
|
|
|
|
|
widget_value** old_stack;
|
|
|
|
|
widget_value** new_stack;
|
|
|
|
|
window_state* windows;
|
|
|
|
|
widget_value* old_selection;
|
|
|
|
|
widget_value* new_selection;
|
|
|
|
|
|
|
|
|
|
/* Check that enough windows and old_stack are ready. */
|
|
|
|
|
make_windows_if_needed (mw, new_depth);
|
|
|
|
|
make_old_stack_space (mw, new_depth);
|
|
|
|
|
windows = mw->menu.windows;
|
|
|
|
|
old_stack = mw->menu.old_stack;
|
|
|
|
|
new_stack = mw->menu.new_stack;
|
|
|
|
|
|
|
|
|
|
/* compute the last identical different entry */
|
|
|
|
|
for (i = 1; i < old_depth && i < new_depth; i++)
|
|
|
|
|
if (old_stack [i] != new_stack [i])
|
|
|
|
|
break;
|
|
|
|
|
last_same = i - 1;
|
|
|
|
|
|
|
|
|
|
/* Memorize the previously selected item to be able to refresh it */
|
|
|
|
|
old_selection = last_same + 1 < old_depth ? old_stack [last_same + 1] : NULL;
|
|
|
|
|
if (old_selection && !old_selection->enabled)
|
|
|
|
|
old_selection = NULL;
|
|
|
|
|
new_selection = last_same + 1 < new_depth ? new_stack [last_same + 1] : NULL;
|
|
|
|
|
if (new_selection && !new_selection->enabled)
|
|
|
|
|
new_selection = NULL;
|
|
|
|
|
|
2000-01-17 09:10:58 +00:00
|
|
|
|
/* Call callback when the hightlighted item changes. */
|
|
|
|
|
if (old_selection || new_selection)
|
|
|
|
|
XtCallCallbackList ((Widget)mw, mw->menu.highlight,
|
|
|
|
|
(XtPointer) new_selection);
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* updates old_state from new_state. It has to be done now because
|
|
|
|
|
display_menu (called below) uses the old_stack to know what to display. */
|
|
|
|
|
for (i = last_same + 1; i < new_depth; i++)
|
|
|
|
|
old_stack [i] = new_stack [i];
|
|
|
|
|
mw->menu.old_depth = new_depth;
|
|
|
|
|
|
1996-01-05 00:45:43 +00:00
|
|
|
|
/* refresh the last selection */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
selection_position.x = 0;
|
|
|
|
|
selection_position.y = 0;
|
|
|
|
|
display_menu (mw, last_same, new_selection == old_selection,
|
|
|
|
|
&selection_position, NULL, NULL, old_selection, new_selection);
|
|
|
|
|
|
1997-01-22 02:04:17 +00:00
|
|
|
|
/* Now place the new menus. */
|
|
|
|
|
for (i = last_same + 1; i < new_depth && new_stack[i]->contents; i++)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1997-01-22 02:04:17 +00:00
|
|
|
|
window_state *previous_ws = &windows[i - 1];
|
|
|
|
|
window_state *ws = &windows[i];
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
ws->x = (previous_ws->x + selection_position.x
|
|
|
|
|
+ mw->menu.shadow_thickness);
|
2000-09-04 13:04:49 +00:00
|
|
|
|
if (mw->menu.horizontal && i == 1)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
ws->x += mw->menu.margin;
|
|
|
|
|
|
|
|
|
|
#if 0
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (!mw->menu.horizontal || i > 1)
|
|
|
|
|
ws->x += mw->menu.shadow_thickness;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
#endif
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
ws->y = (previous_ws->y + selection_position.y
|
|
|
|
|
+ mw->menu.shadow_thickness);
|
2000-09-04 13:04:49 +00:00
|
|
|
|
if (mw->menu.horizontal && i == 1)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
ws->y += mw->menu.margin;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
size_menu (mw, i);
|
|
|
|
|
|
|
|
|
|
fit_to_screen (mw, ws, previous_ws, mw->menu.horizontal && i == 1);
|
|
|
|
|
|
|
|
|
|
XClearWindow (XtDisplay (mw), ws->window);
|
|
|
|
|
XMoveResizeWindow (XtDisplay (mw), ws->window, ws->x, ws->y,
|
|
|
|
|
ws->width, ws->height);
|
|
|
|
|
XMapRaised (XtDisplay (mw), ws->window);
|
|
|
|
|
display_menu (mw, i, False, &selection_position, NULL, NULL, NULL, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* unmap the menus that popped down */
|
|
|
|
|
for (i = new_depth - 1; i < old_depth; i++)
|
2002-12-22 22:00:44 +00:00
|
|
|
|
if (i >= new_depth || (i > 0 && !new_stack[i]->contents))
|
1997-01-22 02:04:17 +00:00
|
|
|
|
XUnmapWindow (XtDisplay (mw), windows[i].window);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Boolean
|
1994-09-17 12:53:30 +00:00
|
|
|
|
motion_event_is_in_menu (mw, ev, level, relative_pos)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
XMotionEvent* ev;
|
|
|
|
|
int level;
|
|
|
|
|
XPoint* relative_pos;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
window_state* ws = &mw->menu.windows [level];
|
1997-09-20 04:48:29 +00:00
|
|
|
|
int shadow = level == 0 ? 0 : mw->menu.shadow_thickness;
|
|
|
|
|
int x = ws->x + shadow;
|
|
|
|
|
int y = ws->y + shadow;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
relative_pos->x = ev->x_root - x;
|
|
|
|
|
relative_pos->y = ev->y_root - y;
|
1997-09-20 04:48:29 +00:00
|
|
|
|
return (x - shadow < ev->x_root && ev->x_root < x + ws->width
|
|
|
|
|
&& y - shadow < ev->y_root && ev->y_root < y + ws->height);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Boolean
|
1994-09-17 12:53:30 +00:00
|
|
|
|
map_event_to_widget_value (mw, ev, val, level)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
XMotionEvent* ev;
|
|
|
|
|
widget_value** val;
|
|
|
|
|
int* level;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
XPoint relative_pos;
|
|
|
|
|
window_state* ws;
|
|
|
|
|
|
|
|
|
|
*val = NULL;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* Find the window */
|
|
|
|
|
for (i = mw->menu.old_depth - 1; i >= 0; i--)
|
|
|
|
|
{
|
|
|
|
|
ws = &mw->menu.windows [i];
|
|
|
|
|
if (ws && motion_event_is_in_menu (mw, ev, i, &relative_pos))
|
|
|
|
|
{
|
|
|
|
|
display_menu (mw, i, True, NULL, &relative_pos, val, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
if (*val)
|
|
|
|
|
{
|
|
|
|
|
*level = i + 1;
|
|
|
|
|
return True;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return False;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Procedures */
|
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
make_drawing_gcs (mw)
|
|
|
|
|
XlwMenuWidget mw;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XGCValues xgcv;
|
2002-05-07 05:22:48 +00:00
|
|
|
|
float scale;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
XtGCMask mask = GCForeground | GCBackground;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
2005-04-01 18:42:19 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
|
|
|
|
if (!mw->menu.fontSet)
|
|
|
|
|
{
|
|
|
|
|
xgcv.font = mw->menu.font->fid;
|
|
|
|
|
mask |= GCFont;
|
|
|
|
|
}
|
|
|
|
|
#else
|
1994-01-18 23:47:41 +00:00
|
|
|
|
xgcv.font = mw->menu.font->fid;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
mask |= GCFont;
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
xgcv.foreground = mw->menu.foreground;
|
|
|
|
|
xgcv.background = mw->core.background_pixel;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
mw->menu.foreground_gc = XtGetGC ((Widget)mw, mask, &xgcv);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
xgcv.foreground = mw->menu.button_foreground;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
mw->menu.button_gc = XtGetGC ((Widget)mw, mask, &xgcv);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
xgcv.background = mw->core.background_pixel;
|
2002-05-06 18:56:25 +00:00
|
|
|
|
|
|
|
|
|
#define BRIGHTNESS(color) (((color) & 0xff) + (((color) >> 8) & 0xff) + (((color) >> 16) & 0xff))
|
|
|
|
|
|
|
|
|
|
/* Allocate color for disabled menu-items. */
|
2002-05-07 05:22:48 +00:00
|
|
|
|
mw->menu.disabled_foreground = mw->menu.foreground;
|
2002-05-06 18:56:25 +00:00
|
|
|
|
if (BRIGHTNESS(mw->menu.foreground) < BRIGHTNESS(mw->core.background_pixel))
|
2002-05-07 05:22:48 +00:00
|
|
|
|
scale = 2.3;
|
2002-05-06 18:56:25 +00:00
|
|
|
|
else
|
2002-05-07 05:22:48 +00:00
|
|
|
|
scale = 0.55;
|
2002-05-06 18:56:25 +00:00
|
|
|
|
|
|
|
|
|
x_alloc_lighter_color_for_widget ((Widget) mw, XtDisplay ((Widget) mw),
|
|
|
|
|
mw->core.colormap,
|
2002-05-07 05:22:48 +00:00
|
|
|
|
&mw->menu.disabled_foreground,
|
|
|
|
|
scale,
|
2002-05-06 18:56:25 +00:00
|
|
|
|
0x8000);
|
|
|
|
|
|
|
|
|
|
if (mw->menu.foreground == mw->menu.disabled_foreground
|
|
|
|
|
|| mw->core.background_pixel == mw->menu.disabled_foreground)
|
|
|
|
|
{
|
|
|
|
|
/* Too few colors, use stipple. */
|
|
|
|
|
xgcv.foreground = mw->menu.foreground;
|
|
|
|
|
xgcv.fill_style = FillStippled;
|
|
|
|
|
xgcv.stipple = mw->menu.gray_pixmap;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
mw->menu.disabled_gc = XtGetGC ((Widget)mw, mask
|
2005-03-18 04:19:41 +00:00
|
|
|
|
| GCFillStyle | GCStipple, &xgcv);
|
2002-05-06 18:56:25 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Many colors available, use disabled pixel. */
|
|
|
|
|
xgcv.foreground = mw->menu.disabled_foreground;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
mw->menu.disabled_gc = XtGetGC ((Widget)mw, mask, &xgcv);
|
2002-05-06 18:56:25 +00:00
|
|
|
|
}
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
xgcv.foreground = mw->menu.button_foreground;
|
|
|
|
|
xgcv.background = mw->core.background_pixel;
|
|
|
|
|
xgcv.fill_style = FillStippled;
|
|
|
|
|
xgcv.stipple = mw->menu.gray_pixmap;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
mw->menu.inactive_button_gc = XtGetGC ((Widget)mw, mask
|
2005-03-18 04:19:41 +00:00
|
|
|
|
| GCFillStyle | GCStipple, &xgcv);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
xgcv.foreground = mw->core.background_pixel;
|
|
|
|
|
xgcv.background = mw->menu.foreground;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
mw->menu.background_gc = XtGetGC ((Widget)mw, mask, &xgcv);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
release_drawing_gcs (mw)
|
|
|
|
|
XlwMenuWidget mw;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XtReleaseGC ((Widget) mw, mw->menu.foreground_gc);
|
|
|
|
|
XtReleaseGC ((Widget) mw, mw->menu.button_gc);
|
2002-05-06 18:56:25 +00:00
|
|
|
|
XtReleaseGC ((Widget) mw, mw->menu.disabled_gc);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtReleaseGC ((Widget) mw, mw->menu.inactive_button_gc);
|
|
|
|
|
XtReleaseGC ((Widget) mw, mw->menu.background_gc);
|
|
|
|
|
/* let's get some segvs if we try to use these... */
|
|
|
|
|
mw->menu.foreground_gc = (GC) -1;
|
|
|
|
|
mw->menu.button_gc = (GC) -1;
|
2002-05-06 18:56:25 +00:00
|
|
|
|
mw->menu.disabled_gc = (GC) -1;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.inactive_button_gc = (GC) -1;
|
|
|
|
|
mw->menu.background_gc = (GC) -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define MINL(x,y) ((((unsigned long) (x)) < ((unsigned long) (y))) \
|
|
|
|
|
? ((unsigned long) (x)) : ((unsigned long) (y)))
|
|
|
|
|
|
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
make_shadow_gcs (mw)
|
|
|
|
|
XlwMenuWidget mw;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XGCValues xgcv;
|
|
|
|
|
unsigned long pm = 0;
|
|
|
|
|
Display *dpy = XtDisplay ((Widget) mw);
|
1999-07-21 21:43:52 +00:00
|
|
|
|
Screen *screen = XtScreen ((Widget) mw);
|
2000-03-04 16:04:00 +00:00
|
|
|
|
Colormap cmap = mw->core.colormap;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XColor topc, botc;
|
|
|
|
|
int top_frobbed = 0, bottom_frobbed = 0;
|
|
|
|
|
|
2000-06-16 18:34:17 +00:00
|
|
|
|
mw->menu.free_top_shadow_color_p = 0;
|
|
|
|
|
mw->menu.free_bottom_shadow_color_p = 0;
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (mw->menu.top_shadow_color == -1)
|
|
|
|
|
mw->menu.top_shadow_color = mw->core.background_pixel;
|
2000-06-16 18:34:17 +00:00
|
|
|
|
else
|
|
|
|
|
mw->menu.top_shadow_color = mw->menu.top_shadow_color;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (mw->menu.bottom_shadow_color == -1)
|
|
|
|
|
mw->menu.bottom_shadow_color = mw->menu.foreground;
|
2000-06-16 18:34:17 +00:00
|
|
|
|
else
|
|
|
|
|
mw->menu.bottom_shadow_color = mw->menu.bottom_shadow_color;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (mw->menu.top_shadow_color == mw->core.background_pixel ||
|
|
|
|
|
mw->menu.top_shadow_color == mw->menu.foreground)
|
|
|
|
|
{
|
|
|
|
|
topc.pixel = mw->core.background_pixel;
|
2000-09-03 11:37:45 +00:00
|
|
|
|
#ifdef emacs
|
|
|
|
|
if (x_alloc_lighter_color_for_widget ((Widget) mw, dpy, cmap,
|
|
|
|
|
&topc.pixel,
|
|
|
|
|
1.2, 0x8000))
|
|
|
|
|
#else
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XQueryColor (dpy, cmap, &topc);
|
|
|
|
|
/* don't overflow/wrap! */
|
|
|
|
|
topc.red = MINL (65535, topc.red * 1.2);
|
|
|
|
|
topc.green = MINL (65535, topc.green * 1.2);
|
|
|
|
|
topc.blue = MINL (65535, topc.blue * 1.2);
|
|
|
|
|
if (XAllocColor (dpy, cmap, &topc))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
mw->menu.top_shadow_color = topc.pixel;
|
2000-06-16 18:34:17 +00:00
|
|
|
|
mw->menu.free_top_shadow_color_p = 1;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
top_frobbed = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (mw->menu.bottom_shadow_color == mw->menu.foreground ||
|
|
|
|
|
mw->menu.bottom_shadow_color == mw->core.background_pixel)
|
|
|
|
|
{
|
|
|
|
|
botc.pixel = mw->core.background_pixel;
|
2000-09-03 11:37:45 +00:00
|
|
|
|
#ifdef emacs
|
|
|
|
|
if (x_alloc_lighter_color_for_widget ((Widget) mw, dpy, cmap,
|
|
|
|
|
&botc.pixel,
|
|
|
|
|
0.6, 0x4000))
|
|
|
|
|
#else
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XQueryColor (dpy, cmap, &botc);
|
|
|
|
|
botc.red *= 0.6;
|
|
|
|
|
botc.green *= 0.6;
|
|
|
|
|
botc.blue *= 0.6;
|
|
|
|
|
if (XAllocColor (dpy, cmap, &botc))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
mw->menu.bottom_shadow_color = botc.pixel;
|
2000-06-16 18:34:17 +00:00
|
|
|
|
mw->menu.free_bottom_shadow_color_p = 1;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
bottom_frobbed = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (top_frobbed && bottom_frobbed)
|
|
|
|
|
{
|
2000-09-03 11:37:45 +00:00
|
|
|
|
if (topc.pixel == botc.pixel)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
if (botc.pixel == mw->menu.foreground)
|
2000-06-12 19:12:11 +00:00
|
|
|
|
{
|
2000-06-16 18:34:17 +00:00
|
|
|
|
if (mw->menu.free_top_shadow_color_p)
|
|
|
|
|
{
|
|
|
|
|
x_free_dpy_colors (dpy, screen, cmap,
|
|
|
|
|
&mw->menu.top_shadow_color, 1);
|
|
|
|
|
mw->menu.free_top_shadow_color_p = 0;
|
|
|
|
|
}
|
|
|
|
|
mw->menu.top_shadow_color = mw->core.background_pixel;
|
2000-06-12 19:12:11 +00:00
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
else
|
2000-06-12 19:12:11 +00:00
|
|
|
|
{
|
2000-06-16 18:34:17 +00:00
|
|
|
|
if (mw->menu.free_bottom_shadow_color_p)
|
|
|
|
|
{
|
|
|
|
|
x_free_dpy_colors (dpy, screen, cmap,
|
|
|
|
|
&mw->menu.bottom_shadow_color, 1);
|
|
|
|
|
mw->menu.free_bottom_shadow_color_p = 0;
|
|
|
|
|
}
|
|
|
|
|
mw->menu.bottom_shadow_color = mw->menu.foreground;
|
2000-06-12 19:12:11 +00:00
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!mw->menu.top_shadow_pixmap &&
|
|
|
|
|
mw->menu.top_shadow_color == mw->core.background_pixel)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.top_shadow_pixmap = mw->menu.gray_pixmap;
|
2000-06-16 18:34:17 +00:00
|
|
|
|
if (mw->menu.free_top_shadow_color_p)
|
|
|
|
|
{
|
|
|
|
|
x_free_dpy_colors (dpy, screen, cmap, &mw->menu.top_shadow_color, 1);
|
|
|
|
|
mw->menu.free_top_shadow_color_p = 0;
|
|
|
|
|
}
|
|
|
|
|
mw->menu.top_shadow_color = mw->menu.foreground;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
if (!mw->menu.bottom_shadow_pixmap &&
|
|
|
|
|
mw->menu.bottom_shadow_color == mw->core.background_pixel)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.bottom_shadow_pixmap = mw->menu.gray_pixmap;
|
2000-06-16 18:34:17 +00:00
|
|
|
|
if (mw->menu.free_bottom_shadow_color_p)
|
|
|
|
|
{
|
|
|
|
|
x_free_dpy_colors (dpy, screen, cmap,
|
|
|
|
|
&mw->menu.bottom_shadow_color, 1);
|
|
|
|
|
mw->menu.free_bottom_shadow_color_p = 0;
|
|
|
|
|
}
|
|
|
|
|
mw->menu.bottom_shadow_color = mw->menu.foreground;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
xgcv.fill_style = FillStippled;
|
|
|
|
|
xgcv.foreground = mw->menu.top_shadow_color;
|
|
|
|
|
xgcv.stipple = mw->menu.top_shadow_pixmap;
|
|
|
|
|
pm = (xgcv.stipple ? GCStipple|GCFillStyle : 0);
|
|
|
|
|
mw->menu.shadow_top_gc = XtGetGC ((Widget)mw, GCForeground | pm, &xgcv);
|
|
|
|
|
|
|
|
|
|
xgcv.foreground = mw->menu.bottom_shadow_color;
|
|
|
|
|
xgcv.stipple = mw->menu.bottom_shadow_pixmap;
|
|
|
|
|
pm = (xgcv.stipple ? GCStipple|GCFillStyle : 0);
|
|
|
|
|
mw->menu.shadow_bottom_gc = XtGetGC ((Widget)mw, GCForeground | pm, &xgcv);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
release_shadow_gcs (mw)
|
|
|
|
|
XlwMenuWidget mw;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
2000-06-12 19:12:11 +00:00
|
|
|
|
Display *dpy = XtDisplay ((Widget) mw);
|
|
|
|
|
Screen *screen = XtScreen ((Widget) mw);
|
|
|
|
|
Colormap cmap = mw->core.colormap;
|
|
|
|
|
Pixel px[2];
|
2000-06-16 18:34:17 +00:00
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
|
|
if (mw->menu.free_top_shadow_color_p)
|
|
|
|
|
px[i++] = mw->menu.top_shadow_color;
|
|
|
|
|
if (mw->menu.free_bottom_shadow_color_p)
|
|
|
|
|
px[i++] = mw->menu.bottom_shadow_color;
|
|
|
|
|
if (i > 0)
|
|
|
|
|
x_free_dpy_colors (dpy, screen, cmap, px, i);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtReleaseGC ((Widget) mw, mw->menu.shadow_top_gc);
|
|
|
|
|
XtReleaseGC ((Widget) mw, mw->menu.shadow_bottom_gc);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
1994-10-29 23:25:10 +00:00
|
|
|
|
XlwMenuInitialize (request, mw, args, num_args)
|
1994-09-17 12:53:30 +00:00
|
|
|
|
Widget request;
|
1994-10-29 23:25:10 +00:00
|
|
|
|
XlwMenuWidget mw;
|
1994-09-17 12:53:30 +00:00
|
|
|
|
ArgList args;
|
|
|
|
|
Cardinal *num_args;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
/* Get the GCs and the widget size */
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
Window window = RootWindowOfScreen (DefaultScreenOfDisplay (XtDisplay (mw)));
|
|
|
|
|
Display* display = XtDisplay (mw);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
#if 0
|
|
|
|
|
widget_value *tem = (widget_value *) XtMalloc (sizeof (widget_value));
|
|
|
|
|
|
|
|
|
|
/* _XtCreate is freeing the object that was passed to us,
|
|
|
|
|
so make a copy that we will actually keep. */
|
|
|
|
|
lwlib_bcopy (mw->menu.contents, tem, sizeof (widget_value));
|
|
|
|
|
mw->menu.contents = tem;
|
|
|
|
|
#endif
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* mw->menu.cursor = XCreateFontCursor (display, mw->menu.cursor_shape); */
|
|
|
|
|
mw->menu.cursor = mw->menu.cursor_shape;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1995-05-23 03:04:22 +00:00
|
|
|
|
mw->menu.gray_pixmap
|
2000-07-19 15:49:28 +00:00
|
|
|
|
= XCreatePixmapFromBitmapData (display, window, gray_bitmap_bits,
|
|
|
|
|
gray_bitmap_width, gray_bitmap_height,
|
1995-05-23 03:04:22 +00:00
|
|
|
|
(unsigned long)1, (unsigned long)0, 1);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-10-29 23:25:10 +00:00
|
|
|
|
/* I don't understand why this ends up 0 sometimes,
|
|
|
|
|
but it does. This kludge works around it.
|
|
|
|
|
Can anyone find a real fix? -- rms. */
|
|
|
|
|
if (mw->menu.font == 0)
|
|
|
|
|
mw->menu.font = xlwmenu_default_font;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
|
|
|
|
if (mw->menu.fontSet)
|
|
|
|
|
mw->menu.font_extents = XExtentsOfFontSet (mw->menu.fontSet);
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
make_drawing_gcs (mw);
|
|
|
|
|
make_shadow_gcs (mw);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.popped_up = False;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.old_depth = 1;
|
|
|
|
|
mw->menu.old_stack = (widget_value**)XtMalloc (sizeof (widget_value*));
|
|
|
|
|
mw->menu.old_stack_length = 1;
|
|
|
|
|
mw->menu.old_stack [0] = mw->menu.contents;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.new_depth = 0;
|
|
|
|
|
mw->menu.new_stack = 0;
|
|
|
|
|
mw->menu.new_stack_length = 0;
|
|
|
|
|
push_new_stack (mw, mw->menu.contents);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.windows = (window_state*)XtMalloc (sizeof (window_state));
|
|
|
|
|
mw->menu.windows_length = 1;
|
|
|
|
|
mw->menu.windows [0].x = 0;
|
|
|
|
|
mw->menu.windows [0].y = 0;
|
|
|
|
|
mw->menu.windows [0].width = 0;
|
|
|
|
|
mw->menu.windows [0].height = 0;
|
|
|
|
|
size_menu (mw, 0);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->core.width = mw->menu.windows [0].width;
|
|
|
|
|
mw->core.height = mw->menu.windows [0].height;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
XlwMenuClassInitialize ()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
XlwMenuRealize (w, valueMask, attributes)
|
|
|
|
|
Widget w;
|
|
|
|
|
Mask *valueMask;
|
|
|
|
|
XSetWindowAttributes *attributes;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget)w;
|
|
|
|
|
XSetWindowAttributes xswa;
|
|
|
|
|
int mask;
|
|
|
|
|
|
|
|
|
|
(*xlwMenuWidgetClass->core_class.superclass->core_class.realize)
|
|
|
|
|
(w, valueMask, attributes);
|
|
|
|
|
|
|
|
|
|
xswa.save_under = True;
|
|
|
|
|
xswa.cursor = mw->menu.cursor_shape;
|
|
|
|
|
mask = CWSaveUnder | CWCursor;
|
|
|
|
|
XChangeWindowAttributes (XtDisplay (w), XtWindow (w), mask, &xswa);
|
|
|
|
|
|
|
|
|
|
mw->menu.windows [0].window = XtWindow (w);
|
|
|
|
|
mw->menu.windows [0].x = w->core.x;
|
|
|
|
|
mw->menu.windows [0].y = w->core.y;
|
|
|
|
|
mw->menu.windows [0].width = w->core.width;
|
|
|
|
|
mw->menu.windows [0].height = w->core.height;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Only the toplevel menubar/popup is a widget so it's the only one that
|
|
|
|
|
receives expose events through Xt. So we repaint all the other panes
|
|
|
|
|
when receiving an Expose event. */
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
XlwMenuRedisplay (w, ev, region)
|
|
|
|
|
Widget w;
|
|
|
|
|
XEvent* ev;
|
|
|
|
|
Region region;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget)w;
|
|
|
|
|
int i;
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
/* If we have a depth beyond 1, it's because a submenu was displayed.
|
|
|
|
|
If the submenu has been destroyed, set the depth back to 1. */
|
|
|
|
|
if (submenu_destroyed)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.old_depth = 1;
|
|
|
|
|
submenu_destroyed = 0;
|
|
|
|
|
}
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
for (i = 0; i < mw->menu.old_depth; i++)
|
|
|
|
|
display_menu (mw, i, False, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-21 22:27:08 +00:00
|
|
|
|
|
|
|
|
|
/* Part of a hack to make the menu redisplay when a tooltip frame
|
|
|
|
|
over a menu item is unmapped. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
xlwmenu_redisplay (w)
|
|
|
|
|
Widget w;
|
|
|
|
|
{
|
|
|
|
|
XlwMenuRedisplay (w, NULL, None);
|
|
|
|
|
}
|
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
XlwMenuDestroy (w)
|
|
|
|
|
Widget w;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget) w;
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
if (pointer_grabbed)
|
2002-04-22 18:21:06 +00:00
|
|
|
|
ungrab_all ((Widget)w, CurrentTime);
|
1994-09-17 12:53:30 +00:00
|
|
|
|
pointer_grabbed = 0;
|
|
|
|
|
|
|
|
|
|
submenu_destroyed = 1;
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
release_drawing_gcs (mw);
|
|
|
|
|
release_shadow_gcs (mw);
|
|
|
|
|
|
|
|
|
|
/* this doesn't come from the resource db but is created explicitly
|
|
|
|
|
so we must free it ourselves. */
|
|
|
|
|
XFreePixmap (XtDisplay (mw), mw->menu.gray_pixmap);
|
|
|
|
|
mw->menu.gray_pixmap = (Pixmap) -1;
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
#if 0
|
|
|
|
|
/* Do free mw->menu.contents because nowadays we copy it
|
|
|
|
|
during initialization. */
|
|
|
|
|
XtFree (mw->menu.contents);
|
|
|
|
|
#endif
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* Don't free mw->menu.contents because that comes from our creator.
|
|
|
|
|
The `*_stack' elements are just pointers into `contents' so leave
|
|
|
|
|
that alone too. But free the stacks themselves. */
|
|
|
|
|
if (mw->menu.old_stack) XtFree ((char *) mw->menu.old_stack);
|
|
|
|
|
if (mw->menu.new_stack) XtFree ((char *) mw->menu.new_stack);
|
|
|
|
|
|
|
|
|
|
/* Remember, you can't free anything that came from the resource
|
|
|
|
|
database. This includes:
|
|
|
|
|
mw->menu.cursor
|
|
|
|
|
mw->menu.top_shadow_pixmap
|
|
|
|
|
mw->menu.bottom_shadow_pixmap
|
|
|
|
|
mw->menu.font
|
|
|
|
|
Also the color cells of top_shadow_color, bottom_shadow_color,
|
|
|
|
|
foreground, and button_foreground will never be freed until this
|
|
|
|
|
client exits. Nice, eh?
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* start from 1 because the one in slot 0 is w->core.window */
|
|
|
|
|
for (i = 1; i < mw->menu.windows_length; i++)
|
|
|
|
|
XDestroyWindow (XtDisplay (mw), mw->menu.windows [i].window);
|
|
|
|
|
if (mw->menu.windows)
|
|
|
|
|
XtFree ((char *) mw->menu.windows);
|
|
|
|
|
}
|
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static Boolean
|
1994-09-17 12:53:30 +00:00
|
|
|
|
XlwMenuSetValues (current, request, new)
|
|
|
|
|
Widget current;
|
|
|
|
|
Widget request;
|
|
|
|
|
Widget new;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget oldmw = (XlwMenuWidget)current;
|
|
|
|
|
XlwMenuWidget newmw = (XlwMenuWidget)new;
|
|
|
|
|
Boolean redisplay = False;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if (newmw->menu.contents
|
|
|
|
|
&& newmw->menu.contents->contents
|
|
|
|
|
&& newmw->menu.contents->contents->change >= VISIBLE_CHANGE)
|
|
|
|
|
redisplay = True;
|
1995-12-31 19:15:18 +00:00
|
|
|
|
/* Do redisplay if the contents are entirely eliminated. */
|
|
|
|
|
if (newmw->menu.contents
|
|
|
|
|
&& newmw->menu.contents->contents == 0
|
|
|
|
|
&& newmw->menu.contents->change >= VISIBLE_CHANGE)
|
|
|
|
|
redisplay = True;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (newmw->core.background_pixel != oldmw->core.background_pixel
|
1994-09-17 12:53:30 +00:00
|
|
|
|
|| newmw->menu.foreground != oldmw->menu.foreground
|
2005-04-01 18:42:19 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
|
|
|
|
|| newmw->menu.fontSet != oldmw->menu.fontSet
|
|
|
|
|
|| (newmw->menu.fontSet == NULL && newmw->menu.font != oldmw->menu.font)
|
|
|
|
|
#else
|
2005-03-18 04:19:41 +00:00
|
|
|
|
|| newmw->menu.font != oldmw->menu.font
|
|
|
|
|
#endif
|
|
|
|
|
)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
release_drawing_gcs (newmw);
|
|
|
|
|
make_drawing_gcs (newmw);
|
2000-08-30 11:52:37 +00:00
|
|
|
|
|
|
|
|
|
release_shadow_gcs (newmw);
|
|
|
|
|
/* Cause the shadow colors to be recalculated. */
|
|
|
|
|
newmw->menu.top_shadow_color = -1;
|
|
|
|
|
newmw->menu.bottom_shadow_color = -1;
|
|
|
|
|
make_shadow_gcs (newmw);
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
redisplay = True;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
2000-09-04 12:13:34 +00:00
|
|
|
|
if (XtIsRealized (current))
|
2000-09-04 11:55:02 +00:00
|
|
|
|
/* If the menu is currently displayed, change the display. */
|
|
|
|
|
for (i = 0; i < oldmw->menu.windows_length; i++)
|
|
|
|
|
{
|
|
|
|
|
XSetWindowBackground (XtDisplay (oldmw),
|
|
|
|
|
oldmw->menu.windows [i].window,
|
|
|
|
|
newmw->core.background_pixel);
|
|
|
|
|
/* clear windows and generate expose events */
|
|
|
|
|
XClearArea (XtDisplay (oldmw), oldmw->menu.windows[i].window,
|
|
|
|
|
0, 0, 0, 0, True);
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
2005-04-01 18:42:19 +00:00
|
|
|
|
if (newmw->menu.fontSet != oldmw->menu.fontSet && newmw->menu.fontSet != NULL)
|
2005-03-18 04:19:41 +00:00
|
|
|
|
{
|
|
|
|
|
redisplay = True;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
newmw->menu.font_extents = XExtentsOfFontSet (newmw->menu.fontSet);
|
2005-03-18 04:19:41 +00:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
return redisplay;
|
|
|
|
|
}
|
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
XlwMenuResize (w)
|
|
|
|
|
Widget w;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget)w;
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
if (mw->menu.popped_up)
|
|
|
|
|
{
|
|
|
|
|
/* Don't allow the popup menu to resize itself. */
|
|
|
|
|
mw->core.width = mw->menu.windows [0].width;
|
|
|
|
|
mw->core.height = mw->menu.windows [0].height;
|
|
|
|
|
mw->core.parent->core.width = mw->core.width ;
|
|
|
|
|
mw->core.parent->core.height = mw->core.height ;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
mw->menu.windows [0].width = mw->core.width;
|
|
|
|
|
mw->menu.windows [0].height = mw->core.height;
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Action procedures */
|
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
handle_single_motion_event (mw, ev)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
XMotionEvent* ev;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
widget_value* val;
|
|
|
|
|
int level;
|
|
|
|
|
|
|
|
|
|
if (!map_event_to_widget_value (mw, ev, &val, &level))
|
|
|
|
|
pop_new_stack_if_no_contents (mw);
|
|
|
|
|
else
|
|
|
|
|
set_new_state (mw, val, level);
|
|
|
|
|
remap_menubar (mw);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* Sync with the display. Makes it feel better on X terms. */
|
|
|
|
|
XSync (XtDisplay (mw), False);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
handle_motion_event (mw, ev)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
XMotionEvent* ev;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
int x = ev->x_root;
|
|
|
|
|
int y = ev->y_root;
|
|
|
|
|
int state = ev->state;
|
|
|
|
|
|
|
|
|
|
handle_single_motion_event (mw, ev);
|
|
|
|
|
|
|
|
|
|
/* allow motion events to be generated again */
|
|
|
|
|
if (ev->is_hint
|
|
|
|
|
&& XQueryPointer (XtDisplay (mw), ev->window,
|
|
|
|
|
&ev->root, &ev->subwindow,
|
|
|
|
|
&ev->x_root, &ev->y_root,
|
|
|
|
|
&ev->x, &ev->y,
|
|
|
|
|
&ev->state)
|
|
|
|
|
&& ev->state == state
|
|
|
|
|
&& (ev->x_root != x || ev->y_root != y))
|
|
|
|
|
handle_single_motion_event (mw, ev);
|
|
|
|
|
}
|
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
Start (w, ev, params, num_params)
|
|
|
|
|
Widget w;
|
|
|
|
|
XEvent *ev;
|
|
|
|
|
String *params;
|
|
|
|
|
Cardinal *num_params;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget)w;
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
if (!mw->menu.popped_up)
|
|
|
|
|
{
|
|
|
|
|
menu_post_event = *ev;
|
2004-01-12 01:45:22 +00:00
|
|
|
|
/* If event is set to CurrentTime, get the last known time stamp.
|
|
|
|
|
This is for calculating if (popup) menus should stay up after
|
|
|
|
|
a fast click. */
|
|
|
|
|
if (menu_post_event.xbutton.time == CurrentTime)
|
|
|
|
|
menu_post_event.xbutton.time
|
|
|
|
|
= XtLastTimestampProcessed (XtDisplay (w));
|
|
|
|
|
|
2000-06-06 14:21:15 +00:00
|
|
|
|
pop_up_menu (mw, (XButtonPressedEvent*) ev);
|
1994-09-17 12:53:30 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
1994-09-23 21:02:25 +00:00
|
|
|
|
{
|
|
|
|
|
/* If we push a button while the menu is posted semipermanently,
|
|
|
|
|
releasing the button should always pop the menu down. */
|
|
|
|
|
next_release_must_exit = 1;
|
1994-09-17 12:53:30 +00:00
|
|
|
|
|
1994-09-23 21:02:25 +00:00
|
|
|
|
/* notes the absolute position of the menubar window */
|
|
|
|
|
mw->menu.windows [0].x = ev->xmotion.x_root - ev->xmotion.x;
|
|
|
|
|
mw->menu.windows [0].y = ev->xmotion.y_root - ev->xmotion.y;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
1994-09-23 21:02:25 +00:00
|
|
|
|
/* handles the down like a move, slots are compatible */
|
2006-05-23 07:19:45 +00:00
|
|
|
|
ev->xmotion.is_hint = 0;
|
1994-09-23 21:02:25 +00:00
|
|
|
|
handle_motion_event (mw, &ev->xmotion);
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
Drag (w, ev, params, num_params)
|
|
|
|
|
Widget w;
|
|
|
|
|
XEvent *ev;
|
|
|
|
|
String *params;
|
|
|
|
|
Cardinal *num_params;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget)w;
|
1995-05-29 07:16:27 +00:00
|
|
|
|
if (mw->menu.popped_up)
|
|
|
|
|
handle_motion_event (mw, &ev->xmotion);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
1995-12-31 19:15:18 +00:00
|
|
|
|
/* Do nothing.
|
|
|
|
|
This is how we handle presses and releases of modifier keys. */
|
|
|
|
|
static void
|
|
|
|
|
Nothing (w, ev, params, num_params)
|
|
|
|
|
Widget w;
|
|
|
|
|
XEvent *ev;
|
|
|
|
|
String *params;
|
|
|
|
|
Cardinal *num_params;
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
static widget_value *
|
2004-11-01 12:20:45 +00:00
|
|
|
|
find_first_selectable (mw, item, skip_titles)
|
2002-04-20 13:39:57 +00:00
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
widget_value *item;
|
2004-11-01 12:20:45 +00:00
|
|
|
|
int skip_titles;
|
2002-04-20 13:39:57 +00:00
|
|
|
|
{
|
|
|
|
|
widget_value *current = item;
|
|
|
|
|
enum menu_separator separator;
|
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
while (lw_separator_p (current->name, &separator, 0) || !current->enabled
|
2004-11-01 12:20:45 +00:00
|
|
|
|
|| (skip_titles && !current->call_data && !current->contents))
|
2002-04-20 13:39:57 +00:00
|
|
|
|
if (current->next)
|
|
|
|
|
current=current->next;
|
|
|
|
|
else
|
2004-11-01 12:20:45 +00:00
|
|
|
|
return NULL;
|
2002-04-20 13:39:57 +00:00
|
|
|
|
|
|
|
|
|
return current;
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
static widget_value *
|
2004-11-01 12:20:45 +00:00
|
|
|
|
find_next_selectable (mw, item, skip_titles)
|
2002-04-19 18:56:51 +00:00
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
widget_value *item;
|
2005-09-27 18:48:59 +00:00
|
|
|
|
int skip_titles;
|
2002-04-19 18:56:51 +00:00
|
|
|
|
{
|
|
|
|
|
widget_value *current = item;
|
|
|
|
|
enum menu_separator separator;
|
|
|
|
|
|
|
|
|
|
while (current->next && (current=current->next) &&
|
2004-01-12 01:45:22 +00:00
|
|
|
|
(lw_separator_p (current->name, &separator, 0) || !current->enabled
|
2004-11-01 12:20:45 +00:00
|
|
|
|
|| (skip_titles && !current->call_data && !current->contents)))
|
2002-04-19 18:56:51 +00:00
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
if (current == item)
|
|
|
|
|
{
|
2002-05-06 18:56:25 +00:00
|
|
|
|
if (mw->menu.old_depth < 2)
|
|
|
|
|
return current;
|
2002-04-19 18:56:51 +00:00
|
|
|
|
current = mw->menu.old_stack [mw->menu.old_depth - 2]->contents;
|
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
while (lw_separator_p (current->name, &separator, 0)
|
|
|
|
|
|| !current->enabled
|
2004-11-01 12:20:45 +00:00
|
|
|
|
|| (skip_titles && !current->call_data
|
|
|
|
|
&& !current->contents))
|
2002-04-20 13:39:57 +00:00
|
|
|
|
{
|
|
|
|
|
if (current->next)
|
|
|
|
|
current=current->next;
|
|
|
|
|
|
|
|
|
|
if (current == item)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2002-04-19 18:56:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return current;
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
static widget_value *
|
2004-11-01 12:20:45 +00:00
|
|
|
|
find_prev_selectable (mw, item, skip_titles)
|
2002-04-19 18:56:51 +00:00
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
widget_value *item;
|
2005-09-27 18:48:59 +00:00
|
|
|
|
int skip_titles;
|
2002-04-19 18:56:51 +00:00
|
|
|
|
{
|
|
|
|
|
widget_value *current = item;
|
|
|
|
|
widget_value *prev = item;
|
|
|
|
|
|
2004-11-01 12:20:45 +00:00
|
|
|
|
while ((current=find_next_selectable (mw, current, skip_titles))
|
2004-01-12 01:45:22 +00:00
|
|
|
|
!= item)
|
2002-04-20 13:39:57 +00:00
|
|
|
|
{
|
|
|
|
|
if (prev == current)
|
|
|
|
|
break;
|
2002-04-19 18:56:51 +00:00
|
|
|
|
prev=current;
|
2002-04-20 13:39:57 +00:00
|
|
|
|
}
|
2002-04-19 18:56:51 +00:00
|
|
|
|
|
|
|
|
|
return prev;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
Down (w, ev, params, num_params)
|
|
|
|
|
Widget w;
|
|
|
|
|
XEvent *ev;
|
|
|
|
|
String *params;
|
|
|
|
|
Cardinal *num_params;
|
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget) w;
|
|
|
|
|
widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
|
2004-01-12 01:45:22 +00:00
|
|
|
|
int popup_menu_p = mw->menu.top_depth == 1;
|
2002-04-19 18:56:51 +00:00
|
|
|
|
|
|
|
|
|
/* Inside top-level menu-bar? */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
if (mw->menu.old_depth == mw->menu.top_depth)
|
2002-04-19 18:56:51 +00:00
|
|
|
|
/* When <down> in the menu-bar is pressed, display the corresponding
|
2004-01-12 01:45:22 +00:00
|
|
|
|
sub-menu and select the first selectable menu item there.
|
2004-11-01 12:20:45 +00:00
|
|
|
|
If this is a popup menu, skip title item of the popup. */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw,
|
|
|
|
|
find_first_selectable (mw,
|
|
|
|
|
selected_item->contents,
|
|
|
|
|
popup_menu_p),
|
|
|
|
|
mw->menu.old_depth);
|
2002-04-19 18:56:51 +00:00
|
|
|
|
else
|
|
|
|
|
/* Highlight next possible (enabled and not separator) menu item. */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw, find_next_selectable (mw, selected_item, popup_menu_p),
|
|
|
|
|
mw->menu.old_depth - 1);
|
2002-04-19 18:56:51 +00:00
|
|
|
|
|
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
Up (w, ev, params, num_params)
|
|
|
|
|
Widget w;
|
|
|
|
|
XEvent *ev;
|
|
|
|
|
String *params;
|
|
|
|
|
Cardinal *num_params;
|
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget) w;
|
|
|
|
|
widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
|
2004-01-12 01:45:22 +00:00
|
|
|
|
int popup_menu_p = mw->menu.top_depth == 1;
|
2002-04-19 18:56:51 +00:00
|
|
|
|
|
|
|
|
|
/* Inside top-level menu-bar? */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
if (mw->menu.old_depth == mw->menu.top_depth)
|
2002-04-19 18:56:51 +00:00
|
|
|
|
{
|
|
|
|
|
/* FIXME: this is tricky. <up> in the menu-bar should select the
|
2002-04-20 13:39:57 +00:00
|
|
|
|
last selectable item in the list. So we select the first
|
|
|
|
|
selectable one and find the previous selectable item. Is there
|
|
|
|
|
a better way? */
|
2004-11-01 12:20:45 +00:00
|
|
|
|
/* If this is a popup menu, skip title item of the popup. */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw,
|
|
|
|
|
find_first_selectable (mw,
|
|
|
|
|
selected_item->contents,
|
|
|
|
|
popup_menu_p),
|
|
|
|
|
mw->menu.old_depth);
|
2002-04-19 18:56:51 +00:00
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw,
|
|
|
|
|
find_prev_selectable (mw,
|
|
|
|
|
selected_item,
|
|
|
|
|
popup_menu_p),
|
|
|
|
|
mw->menu.old_depth - 1);
|
2002-04-19 18:56:51 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
/* Highlight previous (enabled and not separator) menu item. */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw, find_prev_selectable (mw, selected_item, popup_menu_p),
|
|
|
|
|
mw->menu.old_depth - 1);
|
2002-04-19 18:56:51 +00:00
|
|
|
|
|
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
void
|
2002-04-19 18:56:51 +00:00
|
|
|
|
Left (w, ev, params, num_params)
|
|
|
|
|
Widget w;
|
|
|
|
|
XEvent *ev;
|
|
|
|
|
String *params;
|
|
|
|
|
Cardinal *num_params;
|
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget) w;
|
|
|
|
|
widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
|
|
|
|
|
|
|
|
|
|
/* Inside top-level menu-bar? */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
if (mw->menu.old_depth == mw->menu.top_depth)
|
2002-04-19 18:56:51 +00:00
|
|
|
|
/* When <left> in the menu-bar is pressed, display the previous item on
|
|
|
|
|
the menu-bar. If the current item is the first one, highlight the
|
|
|
|
|
last item in the menubar (probably Help). */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw, find_prev_selectable (mw, selected_item, 0),
|
|
|
|
|
mw->menu.old_depth - 1);
|
2002-12-22 22:00:44 +00:00
|
|
|
|
else if (mw->menu.old_depth == 1
|
|
|
|
|
&& selected_item->contents) /* Is this menu item expandable? */
|
|
|
|
|
{
|
|
|
|
|
set_new_state (mw, selected_item->contents, mw->menu.old_depth);
|
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
|
2004-01-12 01:45:22 +00:00
|
|
|
|
if (!selected_item->enabled && find_first_selectable (mw,
|
|
|
|
|
selected_item,
|
|
|
|
|
0))
|
|
|
|
|
set_new_state (mw, find_first_selectable (mw, selected_item, 0),
|
|
|
|
|
mw->menu.old_depth - 1);
|
2002-12-22 22:00:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-04-19 18:56:51 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pop_new_stack_if_no_contents (mw);
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw, mw->menu.old_stack [mw->menu.old_depth - 2],
|
|
|
|
|
mw->menu.old_depth - 2);
|
2002-04-19 18:56:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
void
|
2002-04-19 18:56:51 +00:00
|
|
|
|
Right (w, ev, params, num_params)
|
|
|
|
|
Widget w;
|
|
|
|
|
XEvent *ev;
|
|
|
|
|
String *params;
|
|
|
|
|
Cardinal *num_params;
|
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget) w;
|
|
|
|
|
widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
|
|
|
|
|
|
|
|
|
|
/* Inside top-level menu-bar? */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
if (mw->menu.old_depth == mw->menu.top_depth)
|
2002-04-19 18:56:51 +00:00
|
|
|
|
/* When <right> in the menu-bar is pressed, display the next item on
|
|
|
|
|
the menu-bar. If the current item is the last one, highlight the
|
|
|
|
|
first item (probably File). */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw, find_next_selectable (mw, selected_item, 0),
|
|
|
|
|
mw->menu.old_depth - 1);
|
2002-04-19 18:56:51 +00:00
|
|
|
|
else if (selected_item->contents) /* Is this menu item expandable? */
|
2002-04-20 13:39:57 +00:00
|
|
|
|
{
|
|
|
|
|
set_new_state (mw, selected_item->contents, mw->menu.old_depth);
|
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
|
2004-01-12 01:45:22 +00:00
|
|
|
|
if (!selected_item->enabled && find_first_selectable (mw,
|
|
|
|
|
selected_item,
|
|
|
|
|
0))
|
|
|
|
|
set_new_state (mw, find_first_selectable (mw, selected_item, 0),
|
|
|
|
|
mw->menu.old_depth - 1);
|
2002-04-20 13:39:57 +00:00
|
|
|
|
}
|
2002-04-19 18:56:51 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pop_new_stack_if_no_contents (mw);
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw, mw->menu.old_stack [mw->menu.old_depth - 2],
|
|
|
|
|
mw->menu.old_depth - 2);
|
2002-04-19 18:56:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
}
|
|
|
|
|
|
1995-12-31 19:15:18 +00:00
|
|
|
|
/* Handle key press and release events while menu is popped up.
|
|
|
|
|
Our action is to get rid of the menu. */
|
|
|
|
|
static void
|
|
|
|
|
Key (w, ev, params, num_params)
|
|
|
|
|
Widget w;
|
|
|
|
|
XEvent *ev;
|
|
|
|
|
String *params;
|
|
|
|
|
Cardinal *num_params;
|
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget)w;
|
|
|
|
|
|
|
|
|
|
/* Pop down everything. */
|
|
|
|
|
mw->menu.new_depth = 1;
|
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
|
|
|
|
|
if (mw->menu.popped_up)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.popped_up = False;
|
2002-04-22 18:21:06 +00:00
|
|
|
|
ungrab_all ((Widget)mw, ev->xmotion.time);
|
1995-12-31 19:15:18 +00:00
|
|
|
|
if (XtIsShell (XtParent ((Widget) mw)))
|
|
|
|
|
XtPopdown (XtParent ((Widget) mw));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
XtRemoveGrab ((Widget) mw);
|
|
|
|
|
display_menu (mw, 0, False, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* callback */
|
|
|
|
|
XtCallCallbackList ((Widget)mw, mw->menu.select, (XtPointer)0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
Select (w, ev, params, num_params)
|
|
|
|
|
Widget w;
|
|
|
|
|
XEvent *ev;
|
|
|
|
|
String *params;
|
|
|
|
|
Cardinal *num_params;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget)w;
|
|
|
|
|
widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
/* If user releases the button quickly, without selecting anything,
|
|
|
|
|
after the initial down-click that brought the menu up,
|
|
|
|
|
do nothing. */
|
|
|
|
|
if ((selected_item == 0
|
|
|
|
|
|| ((widget_value *) selected_item)->call_data == 0)
|
|
|
|
|
&& !next_release_must_exit
|
|
|
|
|
&& (ev->xbutton.time - menu_post_event.xbutton.time
|
|
|
|
|
< XtGetMultiClickTime (XtDisplay (w))))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* pop down everything. */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.new_depth = 1;
|
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
|
|
|
|
|
if (mw->menu.popped_up)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.popped_up = False;
|
2002-04-22 18:21:06 +00:00
|
|
|
|
ungrab_all ((Widget)mw, ev->xmotion.time);
|
1994-09-24 00:12:06 +00:00
|
|
|
|
if (XtIsShell (XtParent ((Widget) mw)))
|
|
|
|
|
XtPopdown (XtParent ((Widget) mw));
|
1994-09-23 21:02:25 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
XtRemoveGrab ((Widget) mw);
|
|
|
|
|
display_menu (mw, 0, False, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* callback */
|
|
|
|
|
XtCallCallbackList ((Widget)mw, mw->menu.select, (XtPointer)selected_item);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Special code to pop-up a menu */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
static void
|
1994-09-17 12:53:30 +00:00
|
|
|
|
pop_up_menu (mw, event)
|
|
|
|
|
XlwMenuWidget mw;
|
|
|
|
|
XButtonPressedEvent* event;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
int x = event->x_root;
|
|
|
|
|
int y = event->y_root;
|
|
|
|
|
int w;
|
|
|
|
|
int h;
|
|
|
|
|
int borderwidth = mw->menu.shadow_thickness;
|
|
|
|
|
Screen* screen = XtScreen (mw);
|
1994-10-26 04:57:41 +00:00
|
|
|
|
Display *display = XtDisplay (mw);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
next_release_must_exit = 0;
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtCallCallbackList ((Widget)mw, mw->menu.open, NULL);
|
|
|
|
|
|
1994-09-24 00:12:06 +00:00
|
|
|
|
if (XtIsShell (XtParent ((Widget)mw)))
|
1994-09-23 21:02:25 +00:00
|
|
|
|
size_menu (mw, 0);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
w = mw->menu.windows [0].width;
|
|
|
|
|
h = mw->menu.windows [0].height;
|
|
|
|
|
|
|
|
|
|
x -= borderwidth;
|
|
|
|
|
y -= borderwidth;
|
|
|
|
|
if (x < borderwidth)
|
|
|
|
|
x = borderwidth;
|
|
|
|
|
if (x + w + 2 * borderwidth > WidthOfScreen (screen))
|
|
|
|
|
x = WidthOfScreen (screen) - w - 2 * borderwidth;
|
|
|
|
|
if (y < borderwidth)
|
|
|
|
|
y = borderwidth;
|
|
|
|
|
if (y + h + 2 * borderwidth> HeightOfScreen (screen))
|
|
|
|
|
y = HeightOfScreen (screen) - h - 2 * borderwidth;
|
|
|
|
|
|
|
|
|
|
mw->menu.popped_up = True;
|
1994-09-24 00:12:06 +00:00
|
|
|
|
if (XtIsShell (XtParent ((Widget)mw)))
|
1994-09-23 21:02:25 +00:00
|
|
|
|
{
|
1994-09-24 00:12:06 +00:00
|
|
|
|
XtConfigureWidget (XtParent ((Widget)mw), x, y, w, h,
|
|
|
|
|
XtParent ((Widget)mw)->core.border_width);
|
|
|
|
|
XtPopup (XtParent ((Widget)mw), XtGrabExclusive);
|
1994-09-23 21:02:25 +00:00
|
|
|
|
display_menu (mw, 0, False, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
mw->menu.windows [0].x = x + borderwidth;
|
|
|
|
|
mw->menu.windows [0].y = y + borderwidth;
|
2004-01-12 01:45:22 +00:00
|
|
|
|
mw->menu.top_depth = 1; /* Popup menus don't have a bar so top is 1 */
|
1994-09-23 21:02:25 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
XEvent *ev = (XEvent *) event;
|
|
|
|
|
|
1994-09-25 23:30:51 +00:00
|
|
|
|
XtAddGrab ((Widget) mw, True, True);
|
1994-09-23 21:02:25 +00:00
|
|
|
|
|
|
|
|
|
/* notes the absolute position of the menubar window */
|
|
|
|
|
mw->menu.windows [0].x = ev->xmotion.x_root - ev->xmotion.x;
|
|
|
|
|
mw->menu.windows [0].y = ev->xmotion.y_root - ev->xmotion.y;
|
2004-01-12 01:45:22 +00:00
|
|
|
|
mw->menu.top_depth = 2;
|
1994-09-23 21:02:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
#ifdef emacs
|
2006-05-23 07:19:45 +00:00
|
|
|
|
x_catch_errors (display);
|
1994-09-17 12:53:30 +00:00
|
|
|
|
#endif
|
2002-04-22 18:21:06 +00:00
|
|
|
|
if (XtGrabPointer ((Widget)mw, False,
|
|
|
|
|
(PointerMotionMask
|
|
|
|
|
| PointerMotionHintMask
|
|
|
|
|
| ButtonReleaseMask
|
|
|
|
|
| ButtonPressMask),
|
|
|
|
|
GrabModeAsync, GrabModeAsync, None,
|
|
|
|
|
mw->menu.cursor_shape,
|
|
|
|
|
event->time) == Success)
|
|
|
|
|
{
|
2002-04-28 19:54:30 +00:00
|
|
|
|
if (! GRAB_KEYBOARD
|
2002-04-22 18:21:06 +00:00
|
|
|
|
|| XtGrabKeyboard ((Widget)mw, False, GrabModeAsync,
|
|
|
|
|
GrabModeAsync, event->time) == Success)
|
|
|
|
|
{
|
|
|
|
|
XtSetKeyboardFocus((Widget)mw, None);
|
|
|
|
|
pointer_grabbed = 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
XtUngrabPointer ((Widget)mw, event->time);
|
|
|
|
|
}
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
#ifdef emacs
|
1994-10-26 04:57:41 +00:00
|
|
|
|
if (x_had_errors_p (display))
|
1994-09-17 12:53:30 +00:00
|
|
|
|
{
|
|
|
|
|
pointer_grabbed = 0;
|
|
|
|
|
XtUngrabPointer ((Widget)mw, event->time);
|
|
|
|
|
}
|
2006-05-23 07:19:45 +00:00
|
|
|
|
x_uncatch_errors ();
|
1994-09-17 12:53:30 +00:00
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
2006-05-23 07:19:45 +00:00
|
|
|
|
((XMotionEvent*)event)->is_hint = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
handle_motion_event (mw, (XMotionEvent*)event);
|
|
|
|
|
}
|
2003-09-01 15:45:59 +00:00
|
|
|
|
|
|
|
|
|
/* arch-tag: 657f43dd-dfd0-4cc9-910c-52935f01176e
|
|
|
|
|
(do not change this comment) */
|