annotate lwlib/xlwmenu.c @ 60411:f13a9378709a

*** empty log message ***
author Luc Teirlinck <teirllm@auburn.edu>
date Sat, 05 Mar 2005 19:28:06 +0000
parents 768cf68dcd0a
children 3e557e11645e 95879cc1ed20
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1 /* Implements a lightweight menubar widget.
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2 Copyright (C) 1992 Lucid, Inc.
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
3 Copyright (C) 2002 Free Software Foundation, Inc.
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5 This file is part of the Lucid Widget Library.
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
7 The Lucid Widget Library is free software; you can redistribute it and/or
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8 modify it under the terms of the GNU General Public License as published by
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 the Free Software Foundation; either version 2, or (at your option)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10 any later version.
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 The Lucid Widget Library is distributed in the hope that it will be useful,
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15 GNU General Public License for more details.
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
15742
80562f089595 Fix FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 14728
diff changeset
18 along with GNU Emacs; see the file COPYING. If not, write to the
80562f089595 Fix FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 14728
diff changeset
19 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
80562f089595 Fix FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 14728
diff changeset
20 Boston, MA 02111-1307, USA. */
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 /* Created by devin@lucid.com */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23
26087
e0d966fb548f Add support for large files, plus some locale improvements.
Paul Eggert <eggert@twinsun.com>
parents: 25526
diff changeset
24 #ifdef HAVE_CONFIG_H
e0d966fb548f Add support for large files, plus some locale improvements.
Paul Eggert <eggert@twinsun.com>
parents: 25526
diff changeset
25 #include <config.h>
e0d966fb548f Add support for large files, plus some locale improvements.
Paul Eggert <eggert@twinsun.com>
parents: 25526
diff changeset
26 #endif
e0d966fb548f Add support for large files, plus some locale improvements.
Paul Eggert <eggert@twinsun.com>
parents: 25526
diff changeset
27
51143
d4196d00eba5 Include lisp.h, not ../src/lisp.h.
Dave Love <fx@gnu.org>
parents: 49600
diff changeset
28 #include "lisp.h"
41767
7fb1caba0f51 Include ../src/lisp.h.
Richard M. Stallman <rms@gnu.org>
parents: 37524
diff changeset
29
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30 #include <stdio.h>
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32 #include <sys/types.h>
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
33 #if (defined __sun) && !(defined SUNOS41)
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
34 #define SUNOS41
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35 #include <X11/Xos.h>
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
36 #undef SUNOS41
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
37 #else
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
38 #include <X11/Xos.h>
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
39 #endif
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40 #include <X11/IntrinsicP.h>
9033
3c36c72db2bb *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 9027
diff changeset
41 #include <X11/ObjectP.h>
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
42 #include <X11/StringDefs.h>
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43 #include <X11/cursorfont.h>
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
44 #include "xlwmenuP.h"
29602
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
45
29469
f9b5fe053f7c (x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents: 27988
diff changeset
46 #ifdef emacs
30324
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
47
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
48 /* Defined in xfns.c. When config.h defines `static' as empty, we get
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
49 redefinition errors when gray_bitmap is included more than once, so
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
50 we're referring to the one include in xfns.c here. */
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
51
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
52 extern int gray_bitmap_width;
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
53 extern int gray_bitmap_height;
34557
b9586137049e (gray_bitmap_bits): Remove `unsigned' from
Dave Love <fx@gnu.org>
parents: 34436
diff changeset
54 extern char *gray_bitmap_bits;
30324
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
55
29469
f9b5fe053f7c (x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents: 27988
diff changeset
56 /* Defined in xterm.c. */
f9b5fe053f7c (x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents: 27988
diff changeset
57 extern int x_alloc_nearest_color_for_widget __P ((Widget, Colormap, XColor*));
31341
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
58 extern int x_alloc_lighter_color_for_widget __P ((Widget, Display*, Colormap,
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
59 unsigned long *,
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
60 double, int));
29469
f9b5fe053f7c (x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents: 27988
diff changeset
61 extern int x_catch_errors __P ((Display*));
f9b5fe053f7c (x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents: 27988
diff changeset
62 extern int x_uncatch_errors __P ((Display*, int));
f9b5fe053f7c (x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents: 27988
diff changeset
63 extern int x_had_errors_p __P ((Display*));
f9b5fe053f7c (x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents: 27988
diff changeset
64 extern int x_clear_errors __P ((Display*));
29602
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
65 extern unsigned long x_copy_dpy_color __P ((Display *, Colormap,
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
66 unsigned long));
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
67
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
68 /* Defined in xfaces.c. */
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
69 extern void x_free_dpy_colors __P ((Display *, Screen *, Colormap,
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
70 unsigned long *pixels, int npixels));
30324
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
71 #else /* not emacs */
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
72
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
73 #include <X11/bitmaps/gray>
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
74 #define gray_bitmap_width gray_width
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
75 #define gray_bitmap_height gray_height
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
76 #define gray_bitmap_bits gray_bits
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
77
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
78 #endif /* not emacs */
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
79
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
80 static int pointer_grabbed;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
81 static XEvent menu_post_event;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
82
9746
49e984bf6689 (xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents: 9700
diff changeset
83 XFontStruct *xlwmenu_default_font;
49e984bf6689 (xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents: 9700
diff changeset
84
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
85 static char
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
86 xlwMenuTranslations [] =
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
87 "<BtnDown>: start()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
88 <Motion>: drag()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
89 <BtnUp>: select()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
90 <Key>Shift_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
91 <Key>Shift_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
92 <Key>Meta_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
93 <Key>Meta_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
94 <Key>Control_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
95 <Key>Control_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
96 <Key>Hyper_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
97 <Key>Hyper_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
98 <Key>Super_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
99 <Key>Super_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
100 <Key>Alt_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
101 <Key>Alt_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
102 <Key>Caps_Lock: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
103 <Key>Shift_Lock: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
104 <KeyUp>Shift_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
105 <KeyUp>Shift_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
106 <KeyUp>Meta_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
107 <KeyUp>Meta_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
108 <KeyUp>Control_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
109 <KeyUp>Control_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
110 <KeyUp>Hyper_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
111 <KeyUp>Hyper_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
112 <KeyUp>Super_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
113 <KeyUp>Super_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
114 <KeyUp>Alt_L: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
115 <KeyUp>Alt_R: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
116 <KeyUp>Caps_Lock: nothing()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
117 <KeyUp>Shift_Lock:nothing()\n\
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
118 <Key>Return: select()\n\
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
119 <Key>Down: down()\n\
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
120 <Key>Up: up()\n\
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
121 <Key>Left: left()\n\
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
122 <Key>Right: right()\n\
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
123 <Key>: key()\n\
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
124 <KeyUp>: key()\n\
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
125 ";
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
126
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
127 /* FIXME: Space should toggle toggleable menu item but not remove the menu
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
128 so you can toggle the next one without entering the menu again. */
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
129
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
130 /* FIXME: Should ESC close one level of menu structure or the complete menu? */
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
131
44966
4b2f9e2a9a29 Change default values.
Pavel Janík <Pavel@Janik.cz>
parents: 44931
diff changeset
132 /* FIXME: F10 should enter the menu, the first one in the menu-bar. */
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
133
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
134 #define offset(field) XtOffset(XlwMenuWidget, field)
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
135 static XtResource
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
136 xlwMenuResources[] =
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
137 {
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
138 {XtNfont, XtCFont, XtRFontStruct, sizeof(XFontStruct *),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
139 offset(menu.font),XtRString, "XtDefaultFont"},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
140 {XtNforeground, XtCForeground, XtRPixel, sizeof(Pixel),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
141 offset(menu.foreground), XtRString, "XtDefaultForeground"},
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
142 {XtNdisabledForeground, XtCDisabledForeground, XtRPixel, sizeof(Pixel),
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
143 offset(menu.disabled_foreground), XtRString, (XtPointer)NULL},
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
144 {XtNbuttonForeground, XtCButtonForeground, XtRPixel, sizeof(Pixel),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
145 offset(menu.button_foreground), XtRString, "XtDefaultForeground"},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
146 {XtNmargin, XtCMargin, XtRDimension, sizeof(Dimension),
44966
4b2f9e2a9a29 Change default values.
Pavel Janík <Pavel@Janik.cz>
parents: 44931
diff changeset
147 offset(menu.margin), XtRImmediate, (XtPointer)1},
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
148 {XtNhorizontalSpacing, XtCMargin, XtRDimension, sizeof(Dimension),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
149 offset(menu.horizontal_spacing), XtRImmediate, (XtPointer)3},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
150 {XtNverticalSpacing, XtCMargin, XtRDimension, sizeof(Dimension),
44966
4b2f9e2a9a29 Change default values.
Pavel Janík <Pavel@Janik.cz>
parents: 44931
diff changeset
151 offset(menu.vertical_spacing), XtRImmediate, (XtPointer)2},
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
152 {XtNarrowSpacing, XtCMargin, XtRDimension, sizeof(Dimension),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
153 offset(menu.arrow_spacing), XtRImmediate, (XtPointer)10},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
154
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
155 {XmNshadowThickness, XmCShadowThickness, XtRDimension,
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
156 sizeof (Dimension), offset (menu.shadow_thickness),
44966
4b2f9e2a9a29 Change default values.
Pavel Janík <Pavel@Janik.cz>
parents: 44931
diff changeset
157 XtRImmediate, (XtPointer)1},
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
158 {XmNtopShadowColor, XmCTopShadowColor, XtRPixel, sizeof (Pixel),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
159 offset (menu.top_shadow_color), XtRImmediate, (XtPointer)-1},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
160 {XmNbottomShadowColor, XmCBottomShadowColor, XtRPixel, sizeof (Pixel),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
161 offset (menu.bottom_shadow_color), XtRImmediate, (XtPointer)-1},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
162 {XmNtopShadowPixmap, XmCTopShadowPixmap, XtRPixmap, sizeof (Pixmap),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
163 offset (menu.top_shadow_pixmap), XtRImmediate, (XtPointer)None},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
164 {XmNbottomShadowPixmap, XmCBottomShadowPixmap, XtRPixmap, sizeof (Pixmap),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
165 offset (menu.bottom_shadow_pixmap), XtRImmediate, (XtPointer)None},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
166
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
167 {XtNopen, XtCCallback, XtRCallback, sizeof(XtPointer),
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
168 offset(menu.open), XtRCallback, (XtPointer)NULL},
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
169 {XtNselect, XtCCallback, XtRCallback, sizeof(XtPointer),
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
170 offset(menu.select), XtRCallback, (XtPointer)NULL},
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
171 {XtNhighlightCallback, XtCCallback, XtRCallback, sizeof(XtPointer),
27338
58f8eee82765 (xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents: 26087
diff changeset
172 offset(menu.highlight), XtRCallback, (XtPointer)NULL},
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
173 {XtNmenu, XtCMenu, XtRPointer, sizeof(XtPointer),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
174 offset(menu.contents), XtRImmediate, (XtPointer)NULL},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
175 {XtNcursor, XtCCursor, XtRCursor, sizeof(Cursor),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
176 offset(menu.cursor_shape), XtRString, (XtPointer)"right_ptr"},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
177 {XtNhorizontal, XtCHorizontal, XtRInt, sizeof(int),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
178 offset(menu.horizontal), XtRImmediate, (XtPointer)True},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
179 };
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
180 #undef offset
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
181
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
182 static Boolean XlwMenuSetValues();
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
183 static void XlwMenuRealize();
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
184 static void XlwMenuRedisplay();
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
185 static void XlwMenuResize();
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
186 static void XlwMenuInitialize();
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
187 static void XlwMenuRedisplay();
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
188 static void XlwMenuDestroy();
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
189 static void XlwMenuClassInitialize();
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
190 static void Start();
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
191 static void Drag();
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
192 static void Down();
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
193 static void Up();
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
194 static void Left();
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
195 static void Right();
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
196 static void Select();
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
197 static void Key();
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
198 static void Nothing();
48479
a24391626ba1 (separator_height): Prototype.
Dave Love <fx@gnu.org>
parents: 45152
diff changeset
199 static int separator_height __P ((enum menu_separator));
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
200 static void pop_up_menu __P ((XlwMenuWidget, XButtonPressedEvent *));
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
201
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
202
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
203 static XtActionsRec
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
204 xlwMenuActionsList [] =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
205 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
206 {"start", Start},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
207 {"drag", Drag},
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
208 {"down", Down},
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
209 {"up", Up},
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
210 {"left", Left},
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
211 {"right", Right},
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
212 {"select", Select},
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
213 {"key", Key},
59100
768cf68dcd0a * xlwmenu.c (xlwMenuActionsList): Install MenuGadgetEscape as an
Jan Djärv <jan.h.d@swipnet.se>
parents: 57842
diff changeset
214 {"MenuGadgetEscape", Key}, /* Compatibility with Lesstif/Motif. */
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
215 {"nothing", Nothing},
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
216 };
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
217
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
218 #define SuperClass ((CoreWidgetClass)&coreClassRec)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
219
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
220 XlwMenuClassRec xlwMenuClassRec =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
221 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
222 { /* CoreClass fields initialization */
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
223 (WidgetClass) SuperClass, /* superclass */
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
224 "XlwMenu", /* class_name */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
225 sizeof(XlwMenuRec), /* size */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
226 XlwMenuClassInitialize, /* class_initialize */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
227 NULL, /* class_part_initialize */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
228 FALSE, /* class_inited */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
229 XlwMenuInitialize, /* initialize */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
230 NULL, /* initialize_hook */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
231 XlwMenuRealize, /* realize */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
232 xlwMenuActionsList, /* actions */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
233 XtNumber(xlwMenuActionsList), /* num_actions */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
234 xlwMenuResources, /* resources */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
235 XtNumber(xlwMenuResources), /* resource_count */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
236 NULLQUARK, /* xrm_class */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
237 TRUE, /* compress_motion */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
238 TRUE, /* compress_exposure */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
239 TRUE, /* compress_enterleave */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
240 FALSE, /* visible_interest */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
241 XlwMenuDestroy, /* destroy */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
242 XlwMenuResize, /* resize */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
243 XlwMenuRedisplay, /* expose */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
244 XlwMenuSetValues, /* set_values */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
245 NULL, /* set_values_hook */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
246 XtInheritSetValuesAlmost, /* set_values_almost */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
247 NULL, /* get_values_hook */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
248 NULL, /* accept_focus */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
249 XtVersion, /* version */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
250 NULL, /* callback_private */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
251 xlwMenuTranslations, /* tm_table */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
252 XtInheritQueryGeometry, /* query_geometry */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
253 XtInheritDisplayAccelerator, /* display_accelerator */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
254 NULL /* extension */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
255 }, /* XlwMenuClass fields initialization */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
256 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
257 0 /* dummy */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
258 },
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
259 };
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
260
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
261 WidgetClass xlwMenuWidgetClass = (WidgetClass) &xlwMenuClassRec;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
262
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
263 int submenu_destroyed;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
264
44931
18616c930588 Do not grab keyboard if installation-directory is
Jan Djärv <jan.h.d@swipnet.se>
parents: 44750
diff changeset
265 /* For debug, if installation-directory is non-nil this is not an installed
18616c930588 Do not grab keyboard if installation-directory is
Jan Djärv <jan.h.d@swipnet.se>
parents: 44750
diff changeset
266 Emacs. In that case we do not grab the keyboard to make it easier to
18616c930588 Do not grab keyboard if installation-directory is
Jan Djärv <jan.h.d@swipnet.se>
parents: 44750
diff changeset
267 debug. */
18616c930588 Do not grab keyboard if installation-directory is
Jan Djärv <jan.h.d@swipnet.se>
parents: 44750
diff changeset
268 #define GRAB_KEYBOARD (EQ (Vinstallation_directory, Qnil))
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
269
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
270 static int next_release_must_exit;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
271
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
272 /* Utilities */
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
273
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
274 /* Ungrab pointer and keyboard */
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
275 static void
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
276 ungrab_all (w, ungrabtime)
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
277 Widget w;
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
278 Time ungrabtime;
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
279 {
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
280 XtUngrabPointer (w, ungrabtime);
44931
18616c930588 Do not grab keyboard if installation-directory is
Jan Djärv <jan.h.d@swipnet.se>
parents: 44750
diff changeset
281 if (GRAB_KEYBOARD) XtUngrabKeyboard (w, ungrabtime);
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
282 }
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
283
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
284 /* Like abort, but remove grabs from widget W before. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
285
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
286 static void
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
287 abort_gracefully (w)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
288 Widget w;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
289 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
290 if (XtIsShell (XtParent (w)))
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
291 XtRemoveGrab (w);
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
292 ungrab_all (w, CurrentTime);
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
293 abort ();
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
294 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
295
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
296 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
297 push_new_stack (mw, val)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
298 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
299 widget_value* val;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
300 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
301 if (!mw->menu.new_stack)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
302 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
303 mw->menu.new_stack_length = 10;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
304 mw->menu.new_stack =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
305 (widget_value**)XtCalloc (mw->menu.new_stack_length,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
306 sizeof (widget_value*));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
307 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
308 else if (mw->menu.new_depth == mw->menu.new_stack_length)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
309 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
310 mw->menu.new_stack_length *= 2;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
311 mw->menu.new_stack =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
312 (widget_value**)XtRealloc ((char*)mw->menu.new_stack,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
313 mw->menu.new_stack_length * sizeof (widget_value*));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
314 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
315 mw->menu.new_stack [mw->menu.new_depth++] = val;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
316 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
317
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
318 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
319 pop_new_stack_if_no_contents (mw)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
320 XlwMenuWidget mw;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
321 {
48929
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
322 if (mw->menu.new_depth > 1)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
323 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
324 if (!mw->menu.new_stack [mw->menu.new_depth - 1]->contents)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
325 mw->menu.new_depth -= 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
326 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
327 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
328
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
329 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
330 make_old_stack_space (mw, n)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
331 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
332 int n;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
333 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
334 if (!mw->menu.old_stack)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
335 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
336 mw->menu.old_stack_length = 10;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
337 mw->menu.old_stack =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
338 (widget_value**)XtCalloc (mw->menu.old_stack_length,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
339 sizeof (widget_value*));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
340 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
341 else if (mw->menu.old_stack_length < n)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
342 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
343 mw->menu.old_stack_length *= 2;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
344 mw->menu.old_stack =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
345 (widget_value**)XtRealloc ((char*)mw->menu.old_stack,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
346 mw->menu.old_stack_length * sizeof (widget_value*));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
347 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
348 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
349
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
350 /* Size code */
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
351 int
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
352 string_width (mw, s)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
353 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
354 char *s;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
355 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
356 XCharStruct xcs;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
357 int drop;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
358
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
359 XTextExtents (mw->menu.font, s, strlen (s), &drop, &drop, &drop, &xcs);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
360 return xcs.width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
361 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
362
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
363 static int
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
364 arrow_width (mw)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
365 XlwMenuWidget mw;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
366 {
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
367 return (mw->menu.font->ascent * 3/4) | 1;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
368 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
369
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
370 /* Return the width of toggle buttons of widget MW. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
371
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
372 static int
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
373 toggle_button_width (mw)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
374 XlwMenuWidget mw;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
375 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
376 return ((mw->menu.font->ascent + mw->menu.font->descent) * 2 / 3) | 1;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
377 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
378
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
379
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
380 /* Return the width of radio buttons of widget MW. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
381
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
382 static int
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
383 radio_button_width (mw)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
384 XlwMenuWidget mw;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
385 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
386 return toggle_button_width (mw) * 1.41;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
387 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
388
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
389
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
390 static XtResource
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
391 nameResource[] =
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
392 {
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
393 {"labelString", "LabelString", XtRString, sizeof(String),
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
394 0, XtRImmediate, 0},
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
395 };
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
396
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
397 static char*
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
398 resource_widget_value (mw, val)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
399 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
400 widget_value *val;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
401 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
402 if (!val->toolkit_data)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
403 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
404 char* resourced_name = NULL;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
405 char* complete_name;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
406 XtGetSubresources ((Widget) mw,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
407 (XtPointer) &resourced_name,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
408 val->name, val->name,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
409 nameResource, 1, NULL, 0);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
410 if (!resourced_name)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
411 resourced_name = val->name;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
412 if (!val->value)
5654
f84dac6453db *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 5626
diff changeset
413 {
f84dac6453db *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 5626
diff changeset
414 complete_name = (char *) XtMalloc (strlen (resourced_name) + 1);
f84dac6453db *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 5626
diff changeset
415 strcpy (complete_name, resourced_name);
f84dac6453db *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 5626
diff changeset
416 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
417 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
418 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
419 int complete_length =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
420 strlen (resourced_name) + strlen (val->value) + 2;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
421 complete_name = XtMalloc (complete_length);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
422 *complete_name = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
423 strcat (complete_name, resourced_name);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
424 strcat (complete_name, " ");
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
425 strcat (complete_name, val->value);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
426 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
427
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
428 val->toolkit_data = complete_name;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
429 val->free_toolkit_data = True;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
430 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
431 return (char*)val->toolkit_data;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
432 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
433
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
434 /* Returns the sizes of an item */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
435 static void
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
436 size_menu_item (mw, val, horizontal_p, label_width, rest_width, button_width,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
437 height)
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
438 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
439 widget_value* val;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
440 int horizontal_p;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
441 int* label_width;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
442 int* rest_width;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
443 int* button_width;
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
444 int* height;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
445 {
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
446 enum menu_separator separator;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
447
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
448 if (lw_separator_p (val->name, &separator, 0))
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
449 {
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
450 *height = separator_height (separator);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
451 *label_width = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
452 *rest_width = 0;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
453 *button_width = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
454 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
455 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
456 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
457 *height =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
458 mw->menu.font->ascent + mw->menu.font->descent
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
459 + 2 * mw->menu.vertical_spacing + 2 * mw->menu.shadow_thickness;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
460
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
461 *label_width =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
462 string_width (mw, resource_widget_value (mw, val))
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
463 + mw->menu.horizontal_spacing + mw->menu.shadow_thickness;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
464
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
465 *rest_width = mw->menu.horizontal_spacing + mw->menu.shadow_thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
466 if (!horizontal_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
467 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
468 if (val->contents)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
469 /* Add width of the arrow displayed for submenus. */
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
470 *rest_width += arrow_width (mw) + mw->menu.arrow_spacing;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
471 else if (val->key)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
472 /* Add width of key equivalent string. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
473 *rest_width += (string_width (mw, val->key)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
474 + mw->menu.arrow_spacing);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
475
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
476 if (val->button_type == BUTTON_TYPE_TOGGLE)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
477 *button_width = (toggle_button_width (mw)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
478 + mw->menu.horizontal_spacing);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
479 else if (val->button_type == BUTTON_TYPE_RADIO)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
480 *button_width = (radio_button_width (mw)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
481 + mw->menu.horizontal_spacing);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
482 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
483 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
484 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
485
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
486 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
487 size_menu (mw, level)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
488 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
489 int level;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
490 {
11461
65c12e57f119 (size_menu): Make height and label_width unsigned.
Richard M. Stallman <rms@gnu.org>
parents: 9746
diff changeset
491 unsigned int label_width = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
492 int rest_width = 0;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
493 int button_width = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
494 int max_rest_width = 0;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
495 int max_button_width = 0;
11461
65c12e57f119 (size_menu): Make height and label_width unsigned.
Richard M. Stallman <rms@gnu.org>
parents: 9746
diff changeset
496 unsigned int height = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
497 int horizontal_p = mw->menu.horizontal && (level == 0);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
498 widget_value* val;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
499 window_state* ws;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
500
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
501 if (level >= mw->menu.old_depth)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
502 abort_gracefully ((Widget) mw);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
503
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
504 ws = &mw->menu.windows [level];
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
505 ws->width = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
506 ws->height = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
507 ws->label_width = 0;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
508 ws->button_width = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
509
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
510 for (val = mw->menu.old_stack [level]->contents; val; val = val->next)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
511 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
512 size_menu_item (mw, val, horizontal_p, &label_width, &rest_width,
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
513 &button_width, &height);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
514 if (horizontal_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
515 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
516 ws->width += label_width + rest_width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
517 if (height > ws->height)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
518 ws->height = height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
519 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
520 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
521 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
522 if (label_width > ws->label_width)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
523 ws->label_width = label_width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
524 if (rest_width > max_rest_width)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
525 max_rest_width = rest_width;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
526 if (button_width > max_button_width)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
527 max_button_width = button_width;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
528 ws->height += height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
529 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
530 }
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
531
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
532 if (horizontal_p)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
533 ws->label_width = ws->button_width = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
534 else
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
535 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
536 ws->width = ws->label_width + max_rest_width + max_button_width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
537 ws->button_width = max_button_width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
538 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
539
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
540 ws->width += 2 * mw->menu.shadow_thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
541 ws->height += 2 * mw->menu.shadow_thickness;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
542
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
543 if (horizontal_p)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
544 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
545 ws->width += 2 * mw->menu.margin;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
546 ws->height += 2 * mw->menu.margin;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
547 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
548 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
549
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
550
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
551 /* Display code */
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
552
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
553 static void
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
554 draw_arrow (mw, window, gc, x, y, width, down_p)
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
555 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
556 Window window;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
557 GC gc;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
558 int x;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
559 int y;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
560 int width;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
561 int down_p;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
562 {
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
563 Display *dpy = XtDisplay (mw);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
564 GC top_gc = mw->menu.shadow_top_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
565 GC bottom_gc = mw->menu.shadow_bottom_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
566 int thickness = mw->menu.shadow_thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
567 int height = width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
568 XPoint pt[10];
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
569 /* alpha = atan (0.5)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
570 factor = (1 + sin (alpha)) / cos (alpha) */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
571 double factor = 1.62;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
572 int thickness2 = thickness * factor;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
573
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
574 y += (mw->menu.font->ascent + mw->menu.font->descent - height) / 2;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
575
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
576 if (down_p)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
577 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
578 GC temp;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
579 temp = top_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
580 top_gc = bottom_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
581 bottom_gc = temp;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
582 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
583
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
584 pt[0].x = x;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
585 pt[0].y = y + height;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
586 pt[1].x = x + thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
587 pt[1].y = y + height - thickness2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
588 pt[2].x = x + thickness2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
589 pt[2].y = y + thickness2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
590 pt[3].x = x;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
591 pt[3].y = y;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
592 XFillPolygon (dpy, window, top_gc, pt, 4, Convex, CoordModeOrigin);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
593
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
594 pt[0].x = x;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
595 pt[0].y = y;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
596 pt[1].x = x + thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
597 pt[1].y = y + thickness2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
598 pt[2].x = x + width - thickness2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
599 pt[2].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
600 pt[3].x = x + width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
601 pt[3].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
602 XFillPolygon (dpy, window, top_gc, pt, 4, Convex, CoordModeOrigin);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
603
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
604 pt[0].x = x;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
605 pt[0].y = y + height;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
606 pt[1].x = x + thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
607 pt[1].y = y + height - thickness2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
608 pt[2].x = x + width - thickness2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
609 pt[2].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
610 pt[3].x = x + width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
611 pt[3].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
612 XFillPolygon (dpy, window, bottom_gc, pt, 4, Convex, CoordModeOrigin);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
613 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
614
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
615
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
616
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
617 static void
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
618 draw_shadow_rectangle (mw, window, x, y, width, height, erase_p, down_p)
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
619 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
620 Window window;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
621 int x;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
622 int y;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
623 int width;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
624 int height;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
625 int erase_p;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
626 int down_p;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
627 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
628 Display *dpy = XtDisplay (mw);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
629 GC top_gc = !erase_p ? mw->menu.shadow_top_gc : mw->menu.background_gc;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
630 GC bottom_gc = !erase_p ? mw->menu.shadow_bottom_gc : mw->menu.background_gc;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
631 int thickness = mw->menu.shadow_thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
632 XPoint points [4];
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
633
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
634 if (!erase_p && down_p)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
635 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
636 GC temp;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
637 temp = top_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
638 top_gc = bottom_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
639 bottom_gc = temp;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
640 }
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
641
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
642 points [0].x = x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
643 points [0].y = y;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
644 points [1].x = x + width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
645 points [1].y = y;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
646 points [2].x = x + width - thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
647 points [2].y = y + thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
648 points [3].x = x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
649 points [3].y = y + thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
650 XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
651 points [0].x = x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
652 points [0].y = y + thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
653 points [1].x = x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
654 points [1].y = y + height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
655 points [2].x = x + thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
656 points [2].y = y + height - thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
657 points [3].x = x + thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
658 points [3].y = y + thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
659 XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
660 points [0].x = x + width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
661 points [0].y = y;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
662 points [1].x = x + width - thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
663 points [1].y = y + thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
664 points [2].x = x + width - thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
665 points [2].y = y + height - thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
666 points [3].x = x + width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
667 points [3].y = y + height - thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
668 XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
669 points [0].x = x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
670 points [0].y = y + height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
671 points [1].x = x + width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
672 points [1].y = y + height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
673 points [2].x = x + width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
674 points [2].y = y + height - thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
675 points [3].x = x + thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
676 points [3].y = y + height - thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
677 XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
678 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
679
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
680
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
681 static void
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
682 draw_shadow_rhombus (mw, window, x, y, width, height, erase_p, down_p)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
683 XlwMenuWidget mw;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
684 Window window;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
685 int x;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
686 int y;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
687 int width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
688 int height;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
689 int erase_p;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
690 int down_p;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
691 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
692 Display *dpy = XtDisplay (mw);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
693 GC top_gc = !erase_p ? mw->menu.shadow_top_gc : mw->menu.background_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
694 GC bottom_gc = !erase_p ? mw->menu.shadow_bottom_gc : mw->menu.background_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
695 int thickness = mw->menu.shadow_thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
696 XPoint points [4];
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
697
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
698 if (!erase_p && down_p)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
699 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
700 GC temp;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
701 temp = top_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
702 top_gc = bottom_gc;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
703 bottom_gc = temp;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
704 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
705
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
706 points [0].x = x;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
707 points [0].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
708 points [1].x = x + thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
709 points [1].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
710 points [2].x = x + width / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
711 points [2].y = y + thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
712 points [3].x = x + width / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
713 points [3].y = y;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
714 XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
715 points [0].x = x + width / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
716 points [0].y = y;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
717 points [1].x = x + width / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
718 points [1].y = y + thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
719 points [2].x = x + width - thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
720 points [2].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
721 points [3].x = x + width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
722 points [3].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
723 XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
724 points [0].x = x;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
725 points [0].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
726 points [1].x = x + thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
727 points [1].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
728 points [2].x = x + width / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
729 points [2].y = y + height - thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
730 points [3].x = x + width / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
731 points [3].y = y + height;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
732 XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
733 points [0].x = x + width / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
734 points [0].y = y + height;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
735 points [1].x = x + width / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
736 points [1].y = y + height - thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
737 points [2].x = x + width - thickness;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
738 points [2].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
739 points [3].x = x + width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
740 points [3].y = y + height / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
741 XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
742 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
743
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
744
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
745 /* Draw a toggle button on widget MW, X window WINDOW. X/Y is the
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
746 top-left corner of the menu item. SELECTED_P non-zero means the
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
747 toggle button is selected. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
748
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
749 static void
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
750 draw_toggle (mw, window, x, y, selected_p)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
751 XlwMenuWidget mw;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
752 Window window;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
753 int x, y, selected_p;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
754 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
755 int width, height;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
756
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
757 width = toggle_button_width (mw);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
758 height = width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
759 x += mw->menu.horizontal_spacing;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
760 y += (mw->menu.font->ascent - height) / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
761 draw_shadow_rectangle (mw, window, x, y, width, height, False, selected_p);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
762 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
763
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
764
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
765 /* Draw a radio button on widget MW, X window WINDOW. X/Y is the
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
766 top-left corner of the menu item. SELECTED_P non-zero means the
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
767 toggle button is selected. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
768
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
769 static void
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
770 draw_radio (mw, window, x, y, selected_p)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
771 XlwMenuWidget mw;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
772 Window window;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
773 int x, y, selected_p;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
774 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
775 int width, height;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
776
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
777 width = radio_button_width (mw);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
778 height = width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
779 x += mw->menu.horizontal_spacing;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
780 y += (mw->menu.font->ascent - height) / 2;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
781 draw_shadow_rhombus (mw, window, x, y, width, height, False, selected_p);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
782 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
783
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
784
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
785 /* Draw a menu separator on widget MW, X window WINDOW. X/Y is the
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
786 top-left corner of the menu item. WIDTH is the width of the
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
787 separator to draw. TYPE is the separator type. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
788
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
789 static void
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
790 draw_separator (mw, window, x, y, width, type)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
791 XlwMenuWidget mw;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
792 Window window;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
793 int x, y, width;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
794 enum menu_separator type;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
795 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
796 Display *dpy = XtDisplay (mw);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
797 XGCValues xgcv;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
798
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
799 switch (type)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
800 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
801 case SEPARATOR_NO_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
802 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
803
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
804 case SEPARATOR_SINGLE_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
805 XDrawLine (dpy, window, mw->menu.foreground_gc,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
806 x, y, x + width, y);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
807 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
808
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
809 case SEPARATOR_DOUBLE_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
810 draw_separator (mw, window, x, y, width, SEPARATOR_SINGLE_LINE);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
811 draw_separator (mw, window, x, y + 2, width, SEPARATOR_SINGLE_LINE);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
812 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
813
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
814 case SEPARATOR_SINGLE_DASHED_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
815 xgcv.line_style = LineOnOffDash;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
816 XChangeGC (dpy, mw->menu.foreground_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
817 XDrawLine (dpy, window, mw->menu.foreground_gc,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
818 x, y, x + width, y);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
819 xgcv.line_style = LineSolid;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
820 XChangeGC (dpy, mw->menu.foreground_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
821 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
822
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
823 case SEPARATOR_DOUBLE_DASHED_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
824 draw_separator (mw, window, x, y, width,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
825 SEPARATOR_SINGLE_DASHED_LINE);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
826 draw_separator (mw, window, x, y + 2, width,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
827 SEPARATOR_SINGLE_DASHED_LINE);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
828 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
829
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
830 case SEPARATOR_SHADOW_ETCHED_IN:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
831 XDrawLine (dpy, window, mw->menu.shadow_bottom_gc,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
832 x, y, x + width, y);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
833 XDrawLine (dpy, window, mw->menu.shadow_top_gc,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
834 x, y + 1, x + width, y + 1);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
835 break;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
836
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
837 case SEPARATOR_SHADOW_ETCHED_OUT:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
838 XDrawLine (dpy, window, mw->menu.shadow_top_gc,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
839 x, y, x + width, y);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
840 XDrawLine (dpy, window, mw->menu.shadow_bottom_gc,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
841 x, y + 1, x + width, y + 1);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
842 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
843
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
844 case SEPARATOR_SHADOW_ETCHED_IN_DASH:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
845 xgcv.line_style = LineOnOffDash;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
846 XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
847 XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
34436
a27cc46a67b4 (draw_separator) <SEPARATOR_SHADOW_ETCHED_IN_DASH>:
Dave Love <fx@gnu.org>
parents: 33714
diff changeset
848 draw_separator (mw, window, x, y, width, SEPARATOR_SHADOW_ETCHED_IN);
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
849 xgcv.line_style = LineSolid;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
850 XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
851 XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
852 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
853
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
854 case SEPARATOR_SHADOW_ETCHED_OUT_DASH:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
855 xgcv.line_style = LineOnOffDash;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
856 XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
857 XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
34436
a27cc46a67b4 (draw_separator) <SEPARATOR_SHADOW_ETCHED_IN_DASH>:
Dave Love <fx@gnu.org>
parents: 33714
diff changeset
858 draw_separator (mw, window, x, y, width, SEPARATOR_SHADOW_ETCHED_OUT);
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
859 xgcv.line_style = LineSolid;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
860 XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
861 XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
862 break;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
863
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
864 case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
865 draw_separator (mw, window, x, y, width, SEPARATOR_SHADOW_ETCHED_IN);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
866 draw_separator (mw, window, x, y + 3, width, SEPARATOR_SHADOW_ETCHED_IN);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
867 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
868
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
869 case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
870 draw_separator (mw, window, x, y, width,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
871 SEPARATOR_SHADOW_ETCHED_OUT);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
872 draw_separator (mw, window, x, y + 3, width,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
873 SEPARATOR_SHADOW_ETCHED_OUT);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
874 break;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
875
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
876 case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN_DASH:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
877 xgcv.line_style = LineOnOffDash;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
878 XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
879 XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
880 draw_separator (mw, window, x, y, width,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
881 SEPARATOR_SHADOW_DOUBLE_ETCHED_IN);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
882 xgcv.line_style = LineSolid;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
883 XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
884 XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
885 break;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
886
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
887 case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT_DASH:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
888 xgcv.line_style = LineOnOffDash;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
889 XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
890 XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
891 draw_separator (mw, window, x, y, width,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
892 SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
893 xgcv.line_style = LineSolid;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
894 XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
895 XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
896 break;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
897
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
898 default:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
899 abort ();
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
900 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
901 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
902
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
903
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
904 /* Return the pixel height of menu separator SEPARATOR. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
905
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
906 static int
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
907 separator_height (separator)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
908 enum menu_separator separator;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
909 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
910 switch (separator)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
911 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
912 case SEPARATOR_NO_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
913 return 2;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
914
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
915 case SEPARATOR_SINGLE_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
916 case SEPARATOR_SINGLE_DASHED_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
917 return 1;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
918
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
919 case SEPARATOR_DOUBLE_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
920 case SEPARATOR_DOUBLE_DASHED_LINE:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
921 return 3;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
922
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
923 case SEPARATOR_SHADOW_ETCHED_IN:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
924 case SEPARATOR_SHADOW_ETCHED_OUT:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
925 case SEPARATOR_SHADOW_ETCHED_IN_DASH:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
926 case SEPARATOR_SHADOW_ETCHED_OUT_DASH:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
927 return 2;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
928
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
929 case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
930 case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
931 case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN_DASH:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
932 case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT_DASH:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
933 return 5;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
934
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
935 default:
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
936 abort ();
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
937 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
938 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
939
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
940
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
941 /* Display the menu item and increment where.x and where.y to show how large
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
942 the menu item was. */
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
943
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
944 static void
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
945 display_menu_item (mw, val, ws, where, highlighted_p, horizontal_p,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
946 just_compute_p)
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
947 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
948 widget_value* val;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
949 window_state* ws;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
950 XPoint* where;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
951 Boolean highlighted_p;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
952 Boolean horizontal_p;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
953 Boolean just_compute_p;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
954 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
955 GC deco_gc;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
956 GC text_gc;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
957 int font_ascent = mw->menu.font->ascent;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
958 int font_descent = mw->menu.font->descent;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
959 int shadow = mw->menu.shadow_thickness;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
960 int margin = mw->menu.margin;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
961 int h_spacing = mw->menu.horizontal_spacing;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
962 int v_spacing = mw->menu.vertical_spacing;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
963 int label_width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
964 int rest_width;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
965 int button_width;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
966 int height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
967 int width;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
968 enum menu_separator separator;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
969 int separator_p = lw_separator_p (val->name, &separator, 0);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
970
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
971 /* compute the sizes of the item */
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
972 size_menu_item (mw, val, horizontal_p, &label_width, &rest_width,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
973 &button_width, &height);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
974
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
975 if (horizontal_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
976 width = label_width + rest_width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
977 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
978 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
979 label_width = ws->label_width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
980 width = ws->width - 2 * shadow;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
981 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
982
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
983 /* Only highlight an enabled item that has a callback. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
984 if (highlighted_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
985 if (!val->enabled || !(val->call_data || val->contents))
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
986 highlighted_p = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
987
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
988 /* do the drawing. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
989 if (!just_compute_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
990 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
991 /* Add the shadow border of the containing menu */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
992 int x = where->x + shadow;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
993 int y = where->y + shadow;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
994
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
995 if (horizontal_p)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
996 {
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
997 x += margin;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
998 y += margin;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
999 }
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1000
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1001 /* pick the foreground and background GC. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1002 if (val->enabled)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1003 text_gc = mw->menu.foreground_gc;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1004 else
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1005 text_gc = mw->menu.disabled_gc;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1006 deco_gc = mw->menu.foreground_gc;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1007
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1008 if (separator_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1009 {
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1010 draw_separator (mw, ws->window, x, y, width, separator);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1011 }
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1012 else
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1013 {
9227
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1014 int x_offset = x + h_spacing + shadow;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1015 char* display_string = resource_widget_value (mw, val);
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1016 draw_shadow_rectangle (mw, ws->window, x, y, width, height, True,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1017 False);
9227
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1018
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1019 /* Deal with centering a menu title. */
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1020 if (!horizontal_p && !val->contents && !val->call_data)
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1021 {
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1022 int l = string_width (mw, display_string);
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1023
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1024 if (width > l)
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1025 x_offset = (width - l) >> 1;
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1026 }
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1027 else if (!horizontal_p && ws->button_width)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1028 x_offset += ws->button_width;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1029
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1030
9227
968bb25ec1af (display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents: 9092
diff changeset
1031 XDrawString (XtDisplay (mw), ws->window, text_gc, x_offset,
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1032 y + v_spacing + shadow + font_ascent,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1033 display_string, strlen (display_string));
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1034
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1035 if (!horizontal_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1036 {
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1037 if (val->button_type == BUTTON_TYPE_TOGGLE)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1038 draw_toggle (mw, ws->window, x, y + v_spacing + shadow,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1039 val->selected);
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1040 else if (val->button_type == BUTTON_TYPE_RADIO)
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1041 draw_radio (mw, ws->window, x, y + v_spacing + shadow,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1042 val->selected);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1043
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1044 if (val->contents)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1045 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1046 int a_w = arrow_width (mw);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1047 draw_arrow (mw, ws->window, deco_gc,
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1048 x + width - a_w
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1049 - mw->menu.horizontal_spacing
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1050 - mw->menu.shadow_thickness,
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1051 y + v_spacing + shadow, a_w,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1052 highlighted_p);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1053 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1054 else if (val->key)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1055 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1056 XDrawString (XtDisplay (mw), ws->window, text_gc,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1057 x + label_width + mw->menu.arrow_spacing,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1058 y + v_spacing + shadow + font_ascent,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1059 val->key, strlen (val->key));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1060 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1061 }
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1062 else
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1063 {
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1064 XDrawRectangle (XtDisplay (mw), ws->window,
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1065 mw->menu.background_gc,
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1066 x + shadow, y + shadow,
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1067 label_width + h_spacing - 1,
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1068 font_ascent + font_descent + 2 * v_spacing - 1);
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1069 draw_shadow_rectangle (mw, ws->window, x, y, width, height,
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1070 True, False);
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1071 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1072
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1073 if (highlighted_p)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1074 draw_shadow_rectangle (mw, ws->window, x, y, width, height, False,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1075 False);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1076 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1077 }
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1078
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1079 where->x += width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1080 where->y += height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1081 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1082
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1083 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1084 display_menu (mw, level, just_compute_p, highlighted_pos, hit, hit_return,
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1085 this, that)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1086 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1087 int level;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1088 Boolean just_compute_p;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1089 XPoint* highlighted_pos;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1090 XPoint* hit;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1091 widget_value** hit_return;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1092 widget_value* this;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1093 widget_value* that;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1094 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1095 widget_value* val;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1096 widget_value* following_item;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1097 window_state* ws;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1098 XPoint where;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1099 int horizontal_p = mw->menu.horizontal && (level == 0);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1100 int highlighted_p;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1101 int just_compute_this_one_p;
18993
c3bfd473a4d3 (display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents: 17622
diff changeset
1102 /* This is set nonzero if the element containing HIGHLIGHTED_POS
c3bfd473a4d3 (display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents: 17622
diff changeset
1103 is disabled, so that we do not return any subsequent element either. */
c3bfd473a4d3 (display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents: 17622
diff changeset
1104 int no_return = 0;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1105 enum menu_separator separator;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1106
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1107 if (level >= mw->menu.old_depth)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1108 abort_gracefully ((Widget) mw);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1109
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1110 if (level < mw->menu.old_depth - 1)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1111 following_item = mw->menu.old_stack [level + 1];
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1112 else
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1113 following_item = NULL;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1114
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1115 if (hit)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1116 *hit_return = NULL;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1117
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1118 where.x = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1119 where.y = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1120
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1121 ws = &mw->menu.windows [level];
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1122 for (val = mw->menu.old_stack [level]->contents; val; val = val->next)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1123 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1124 highlighted_p = val == following_item;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1125 if (highlighted_p && highlighted_pos)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1126 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1127 if (horizontal_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1128 highlighted_pos->x = where.x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1129 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1130 highlighted_pos->y = where.y;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1131 }
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1132
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1133 just_compute_this_one_p =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1134 just_compute_p || ((this || that) && val != this && val != that);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1135
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1136 display_menu_item (mw, val, ws, &where, highlighted_p, horizontal_p,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1137 just_compute_this_one_p);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1138
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1139 if (highlighted_p && highlighted_pos)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1140 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1141 if (horizontal_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1142 highlighted_pos->y = where.y;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1143 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1144 highlighted_pos->x = where.x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1145 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1146
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1147 if (hit
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1148 && !*hit_return
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1149 && (horizontal_p ? hit->x < where.x : hit->y < where.y)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1150 && !lw_separator_p (val->name, &separator, 0)
18993
c3bfd473a4d3 (display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents: 17622
diff changeset
1151 && !no_return)
c3bfd473a4d3 (display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents: 17622
diff changeset
1152 {
c3bfd473a4d3 (display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents: 17622
diff changeset
1153 if (val->enabled)
c3bfd473a4d3 (display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents: 17622
diff changeset
1154 *hit_return = val;
c3bfd473a4d3 (display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents: 17622
diff changeset
1155 else
c3bfd473a4d3 (display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents: 17622
diff changeset
1156 no_return = 1;
c3bfd473a4d3 (display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents: 17622
diff changeset
1157 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1158
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1159 if (horizontal_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1160 where.y = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1161 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1162 where.x = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1163 }
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1164
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1165 if (!just_compute_p)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1166 draw_shadow_rectangle (mw, ws->window, 0, 0, ws->width, ws->height,
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1167 False, False);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1168 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1169
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1170 /* Motion code */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1171 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1172 set_new_state (mw, val, level)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1173 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1174 widget_value* val;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1175 int level;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1176 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1177 int i;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1178
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1179 mw->menu.new_depth = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1180 for (i = 0; i < level; i++)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1181 push_new_stack (mw, mw->menu.old_stack [i]);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1182 push_new_stack (mw, val);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1183 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1184
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1185 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1186 make_windows_if_needed (mw, n)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1187 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1188 int n;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1189 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1190 int i;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1191 int start_at;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1192 XSetWindowAttributes xswa;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1193 int mask;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1194 Window root = RootWindowOfScreen (DefaultScreenOfDisplay (XtDisplay (mw)));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1195 window_state* windows;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1196
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1197 if (mw->menu.windows_length >= n)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1198 return;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1199
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1200 xswa.save_under = True;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1201 xswa.override_redirect = True;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1202 xswa.background_pixel = mw->core.background_pixel;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1203 xswa.border_pixel = mw->core.border_pixel;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1204 xswa.event_mask =
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1205 ExposureMask | PointerMotionMask | PointerMotionHintMask
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1206 | ButtonReleaseMask | ButtonPressMask;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1207 xswa.cursor = mw->menu.cursor_shape;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1208 mask = CWSaveUnder | CWOverrideRedirect | CWBackPixel | CWBorderPixel
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1209 | CWEventMask | CWCursor;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1210
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1211 if (!mw->menu.windows)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1212 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1213 mw->menu.windows =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1214 (window_state*)XtMalloc (n * sizeof (window_state));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1215 start_at = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1216 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1217 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1218 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1219 mw->menu.windows =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1220 (window_state*)XtRealloc ((char*)mw->menu.windows,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1221 n * sizeof (window_state));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1222 start_at = mw->menu.windows_length;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1223 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1224 mw->menu.windows_length = n;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1225
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1226 windows = mw->menu.windows;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1227
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1228 for (i = start_at; i < n; i++)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1229 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1230 windows [i].x = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1231 windows [i].y = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1232 windows [i].width = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1233 windows [i].height = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1234 windows [i].window =
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1235 XCreateWindow (XtDisplay (mw), root, 0, 0, 1, 1,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1236 0, 0, CopyFromParent, CopyFromParent, mask, &xswa);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1237 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1238 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1239
37524
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1240 /* Value is non-zero if WINDOW is part of menu bar widget W. */
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1241
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1242 int
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1243 xlwmenu_window_p (w, window)
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1244 Widget w;
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1245 Window window;
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1246 {
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1247 XlwMenuWidget mw = (XlwMenuWidget) w;
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1248 int i;
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48929
diff changeset
1249
37524
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1250 for (i = 0; i < mw->menu.windows_length; ++i)
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1251 if (window == mw->menu.windows[i].window)
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1252 break;
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1253
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1254 return i < mw->menu.windows_length;
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1255 }
f0a59a792f7d (xlwmenu_window_p): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 34557
diff changeset
1256
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1257 /* Make the window fit in the screen */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1258 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1259 fit_to_screen (mw, ws, previous_ws, horizontal_p)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1260 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1261 window_state* ws;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1262 window_state* previous_ws;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1263 Boolean horizontal_p;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1264 {
11461
65c12e57f119 (size_menu): Make height and label_width unsigned.
Richard M. Stallman <rms@gnu.org>
parents: 9746
diff changeset
1265 unsigned int screen_width = WidthOfScreen (XtScreen (mw));
65c12e57f119 (size_menu): Make height and label_width unsigned.
Richard M. Stallman <rms@gnu.org>
parents: 9746
diff changeset
1266 unsigned int screen_height = HeightOfScreen (XtScreen (mw));
16917
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1267 /* 1 if we are unable to avoid an overlap between
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1268 this menu and the parent menu in the X dimension. */
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1269 int horizontal_overlap = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1270
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1271 if (ws->x < 0)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1272 ws->x = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1273 else if (ws->x + ws->width > screen_width)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1274 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1275 if (!horizontal_p)
31370
735439f8377f (remap_menubar):
Miles Bader <miles@gnu.org>
parents: 31369
diff changeset
1276 /* The addition of shadow-thickness for a sub-menu's position is
735439f8377f (remap_menubar):
Miles Bader <miles@gnu.org>
parents: 31369
diff changeset
1277 to reflect a similar adjustment when the menu is displayed to
735439f8377f (remap_menubar):
Miles Bader <miles@gnu.org>
parents: 31369
diff changeset
1278 the right of the invoking menu-item; it makes the sub-menu
735439f8377f (remap_menubar):
Miles Bader <miles@gnu.org>
parents: 31369
diff changeset
1279 look more `attached' to the menu-item. */
735439f8377f (remap_menubar):
Miles Bader <miles@gnu.org>
parents: 31369
diff changeset
1280 ws->x = previous_ws->x - ws->width + mw->menu.shadow_thickness;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1281 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1282 ws->x = screen_width - ws->width;
9395
d954daf0a213 (fit_to_screen): Don't put the menu off the left or top.
Richard M. Stallman <rms@gnu.org>
parents: 9227
diff changeset
1283 if (ws->x < 0)
16917
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1284 {
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1285 ws->x = 0;
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1286 horizontal_overlap = 1;
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1287 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1288 }
16917
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1289 /* If we overlap in X, try to avoid overlap in Y. */
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1290 if (horizontal_overlap
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1291 && ws->y < previous_ws->y + previous_ws->height
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1292 && previous_ws->y < ws->y + ws->height)
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1293 {
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1294 /* Put this menu right below or right above PREVIOUS_WS
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1295 if there's room. */
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1296 if (previous_ws->y + previous_ws->height + ws->height < screen_height)
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1297 ws->y = previous_ws->y + previous_ws->height;
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1298 else if (previous_ws->y - ws->height > 0)
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1299 ws->y = previous_ws->y - ws->height;
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1300 }
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1301
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1302 if (ws->y < 0)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1303 ws->y = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1304 else if (ws->y + ws->height > screen_height)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1305 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1306 if (horizontal_p)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1307 ws->y = previous_ws->y - ws->height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1308 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1309 ws->y = screen_height - ws->height;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1310 if (ws->y < 0)
9395
d954daf0a213 (fit_to_screen): Don't put the menu off the left or top.
Richard M. Stallman <rms@gnu.org>
parents: 9227
diff changeset
1311 ws->y = 0;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1312 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1313 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1314
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1315 /* Updates old_stack from new_stack and redisplays. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1316 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1317 remap_menubar (mw)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1318 XlwMenuWidget mw;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1319 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1320 int i;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1321 int last_same;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1322 XPoint selection_position;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1323 int old_depth = mw->menu.old_depth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1324 int new_depth = mw->menu.new_depth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1325 widget_value** old_stack;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1326 widget_value** new_stack;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1327 window_state* windows;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1328 widget_value* old_selection;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1329 widget_value* new_selection;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1330
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1331 /* Check that enough windows and old_stack are ready. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1332 make_windows_if_needed (mw, new_depth);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1333 make_old_stack_space (mw, new_depth);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1334 windows = mw->menu.windows;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1335 old_stack = mw->menu.old_stack;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1336 new_stack = mw->menu.new_stack;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1337
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1338 /* compute the last identical different entry */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1339 for (i = 1; i < old_depth && i < new_depth; i++)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1340 if (old_stack [i] != new_stack [i])
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1341 break;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1342 last_same = i - 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1343
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1344 /* Memorize the previously selected item to be able to refresh it */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1345 old_selection = last_same + 1 < old_depth ? old_stack [last_same + 1] : NULL;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1346 if (old_selection && !old_selection->enabled)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1347 old_selection = NULL;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1348 new_selection = last_same + 1 < new_depth ? new_stack [last_same + 1] : NULL;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1349 if (new_selection && !new_selection->enabled)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1350 new_selection = NULL;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1351
27338
58f8eee82765 (xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents: 26087
diff changeset
1352 /* Call callback when the hightlighted item changes. */
58f8eee82765 (xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents: 26087
diff changeset
1353 if (old_selection || new_selection)
58f8eee82765 (xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents: 26087
diff changeset
1354 XtCallCallbackList ((Widget)mw, mw->menu.highlight,
58f8eee82765 (xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents: 26087
diff changeset
1355 (XtPointer) new_selection);
58f8eee82765 (xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents: 26087
diff changeset
1356
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1357 /* updates old_state from new_state. It has to be done now because
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1358 display_menu (called below) uses the old_stack to know what to display. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1359 for (i = last_same + 1; i < new_depth; i++)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1360 old_stack [i] = new_stack [i];
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1361 mw->menu.old_depth = new_depth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1362
14018
0a94cd2c51c4 Comment fixes.
Karl Heuer <kwzh@gnu.org>
parents: 13899
diff changeset
1363 /* refresh the last selection */
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1364 selection_position.x = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1365 selection_position.y = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1366 display_menu (mw, last_same, new_selection == old_selection,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1367 &selection_position, NULL, NULL, old_selection, new_selection);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1368
16917
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1369 /* Now place the new menus. */
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1370 for (i = last_same + 1; i < new_depth && new_stack[i]->contents; i++)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1371 {
16917
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1372 window_state *previous_ws = &windows[i - 1];
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1373 window_state *ws = &windows[i];
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1374
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1375 ws->x = (previous_ws->x + selection_position.x
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1376 + mw->menu.shadow_thickness);
31370
735439f8377f (remap_menubar):
Miles Bader <miles@gnu.org>
parents: 31369
diff changeset
1377 if (mw->menu.horizontal && i == 1)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1378 ws->x += mw->menu.margin;
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1379
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1380 #if 0
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1381 if (!mw->menu.horizontal || i > 1)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1382 ws->x += mw->menu.shadow_thickness;
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1383 #endif
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1384
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1385 ws->y = (previous_ws->y + selection_position.y
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1386 + mw->menu.shadow_thickness);
31370
735439f8377f (remap_menubar):
Miles Bader <miles@gnu.org>
parents: 31369
diff changeset
1387 if (mw->menu.horizontal && i == 1)
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1388 ws->y += mw->menu.margin;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1389
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1390 size_menu (mw, i);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1391
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1392 fit_to_screen (mw, ws, previous_ws, mw->menu.horizontal && i == 1);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1393
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1394 XClearWindow (XtDisplay (mw), ws->window);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1395 XMoveResizeWindow (XtDisplay (mw), ws->window, ws->x, ws->y,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1396 ws->width, ws->height);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1397 XMapRaised (XtDisplay (mw), ws->window);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1398 display_menu (mw, i, False, &selection_position, NULL, NULL, NULL, NULL);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1399 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1400
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1401 /* unmap the menus that popped down */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1402 for (i = new_depth - 1; i < old_depth; i++)
48929
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
1403 if (i >= new_depth || (i > 0 && !new_stack[i]->contents))
16917
5aabcff9fdd3 (enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents: 15742
diff changeset
1404 XUnmapWindow (XtDisplay (mw), windows[i].window);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1405 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1406
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1407 static Boolean
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1408 motion_event_is_in_menu (mw, ev, level, relative_pos)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1409 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1410 XMotionEvent* ev;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1411 int level;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1412 XPoint* relative_pos;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1413 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1414 window_state* ws = &mw->menu.windows [level];
19960
38172783650b (motion_event_is_in_menu): Extend the left and
Richard M. Stallman <rms@gnu.org>
parents: 18993
diff changeset
1415 int shadow = level == 0 ? 0 : mw->menu.shadow_thickness;
38172783650b (motion_event_is_in_menu): Extend the left and
Richard M. Stallman <rms@gnu.org>
parents: 18993
diff changeset
1416 int x = ws->x + shadow;
38172783650b (motion_event_is_in_menu): Extend the left and
Richard M. Stallman <rms@gnu.org>
parents: 18993
diff changeset
1417 int y = ws->y + shadow;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1418 relative_pos->x = ev->x_root - x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1419 relative_pos->y = ev->y_root - y;
19960
38172783650b (motion_event_is_in_menu): Extend the left and
Richard M. Stallman <rms@gnu.org>
parents: 18993
diff changeset
1420 return (x - shadow < ev->x_root && ev->x_root < x + ws->width
38172783650b (motion_event_is_in_menu): Extend the left and
Richard M. Stallman <rms@gnu.org>
parents: 18993
diff changeset
1421 && y - shadow < ev->y_root && ev->y_root < y + ws->height);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1422 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1423
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1424 static Boolean
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1425 map_event_to_widget_value (mw, ev, val, level)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1426 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1427 XMotionEvent* ev;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1428 widget_value** val;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1429 int* level;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1430 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1431 int i;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1432 XPoint relative_pos;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1433 window_state* ws;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1434
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1435 *val = NULL;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1436
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1437 /* Find the window */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1438 for (i = mw->menu.old_depth - 1; i >= 0; i--)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1439 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1440 ws = &mw->menu.windows [i];
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1441 if (ws && motion_event_is_in_menu (mw, ev, i, &relative_pos))
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1442 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1443 display_menu (mw, i, True, NULL, &relative_pos, val, NULL, NULL);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1444
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1445 if (*val)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1446 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1447 *level = i + 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1448 return True;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1449 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1450 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1451 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1452 return False;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1453 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1454
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1455 /* Procedures */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1456 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1457 make_drawing_gcs (mw)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1458 XlwMenuWidget mw;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1459 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1460 XGCValues xgcv;
45152
0e9984418269 (make_drawing_gcs): The scaling factor passed to
Pavel Janík <Pavel@Janik.cz>
parents: 45147
diff changeset
1461 float scale;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1462
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1463 xgcv.font = mw->menu.font->fid;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1464 xgcv.foreground = mw->menu.foreground;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1465 xgcv.background = mw->core.background_pixel;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1466 mw->menu.foreground_gc = XtGetGC ((Widget)mw,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1467 GCFont | GCForeground | GCBackground,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1468 &xgcv);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1469
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1470 xgcv.font = mw->menu.font->fid;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1471 xgcv.foreground = mw->menu.button_foreground;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1472 xgcv.background = mw->core.background_pixel;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1473 mw->menu.button_gc = XtGetGC ((Widget)mw,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1474 GCFont | GCForeground | GCBackground,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1475 &xgcv);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1476
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1477 xgcv.font = mw->menu.font->fid;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1478 xgcv.background = mw->core.background_pixel;
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1479
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1480 #define BRIGHTNESS(color) (((color) & 0xff) + (((color) >> 8) & 0xff) + (((color) >> 16) & 0xff))
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1481
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1482 /* Allocate color for disabled menu-items. */
45152
0e9984418269 (make_drawing_gcs): The scaling factor passed to
Pavel Janík <Pavel@Janik.cz>
parents: 45147
diff changeset
1483 mw->menu.disabled_foreground = mw->menu.foreground;
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1484 if (BRIGHTNESS(mw->menu.foreground) < BRIGHTNESS(mw->core.background_pixel))
45152
0e9984418269 (make_drawing_gcs): The scaling factor passed to
Pavel Janík <Pavel@Janik.cz>
parents: 45147
diff changeset
1485 scale = 2.3;
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1486 else
45152
0e9984418269 (make_drawing_gcs): The scaling factor passed to
Pavel Janík <Pavel@Janik.cz>
parents: 45147
diff changeset
1487 scale = 0.55;
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1488
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1489 x_alloc_lighter_color_for_widget ((Widget) mw, XtDisplay ((Widget) mw),
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1490 mw->core.colormap,
45152
0e9984418269 (make_drawing_gcs): The scaling factor passed to
Pavel Janík <Pavel@Janik.cz>
parents: 45147
diff changeset
1491 &mw->menu.disabled_foreground,
0e9984418269 (make_drawing_gcs): The scaling factor passed to
Pavel Janík <Pavel@Janik.cz>
parents: 45147
diff changeset
1492 scale,
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1493 0x8000);
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1494
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1495 if (mw->menu.foreground == mw->menu.disabled_foreground
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1496 || mw->core.background_pixel == mw->menu.disabled_foreground)
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1497 {
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1498 /* Too few colors, use stipple. */
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1499 xgcv.foreground = mw->menu.foreground;
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1500 xgcv.fill_style = FillStippled;
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1501 xgcv.stipple = mw->menu.gray_pixmap;
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1502 mw->menu.disabled_gc = XtGetGC ((Widget)mw,
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1503 (GCFont | GCForeground | GCBackground
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1504 | GCFillStyle | GCStipple), &xgcv);
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1505 }
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1506 else
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1507 {
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1508 /* Many colors available, use disabled pixel. */
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1509 xgcv.foreground = mw->menu.disabled_foreground;
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1510 mw->menu.disabled_gc = XtGetGC ((Widget)mw,
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1511 (GCFont | GCForeground | GCBackground), &xgcv);
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1512 }
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1513
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1514 xgcv.font = mw->menu.font->fid;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1515 xgcv.foreground = mw->menu.button_foreground;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1516 xgcv.background = mw->core.background_pixel;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1517 xgcv.fill_style = FillStippled;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1518 xgcv.stipple = mw->menu.gray_pixmap;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1519 mw->menu.inactive_button_gc = XtGetGC ((Widget)mw,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1520 (GCFont | GCForeground | GCBackground
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1521 | GCFillStyle | GCStipple), &xgcv);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1522
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1523 xgcv.font = mw->menu.font->fid;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1524 xgcv.foreground = mw->core.background_pixel;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1525 xgcv.background = mw->menu.foreground;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1526 mw->menu.background_gc = XtGetGC ((Widget)mw,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1527 GCFont | GCForeground | GCBackground,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1528 &xgcv);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1529 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1530
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1531 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1532 release_drawing_gcs (mw)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1533 XlwMenuWidget mw;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1534 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1535 XtReleaseGC ((Widget) mw, mw->menu.foreground_gc);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1536 XtReleaseGC ((Widget) mw, mw->menu.button_gc);
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1537 XtReleaseGC ((Widget) mw, mw->menu.disabled_gc);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1538 XtReleaseGC ((Widget) mw, mw->menu.inactive_button_gc);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1539 XtReleaseGC ((Widget) mw, mw->menu.background_gc);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1540 /* let's get some segvs if we try to use these... */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1541 mw->menu.foreground_gc = (GC) -1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1542 mw->menu.button_gc = (GC) -1;
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
1543 mw->menu.disabled_gc = (GC) -1;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1544 mw->menu.inactive_button_gc = (GC) -1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1545 mw->menu.background_gc = (GC) -1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1546 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1547
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1548 #define MINL(x,y) ((((unsigned long) (x)) < ((unsigned long) (y))) \
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1549 ? ((unsigned long) (x)) : ((unsigned long) (y)))
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1550
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1551 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1552 make_shadow_gcs (mw)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1553 XlwMenuWidget mw;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1554 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1555 XGCValues xgcv;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1556 unsigned long pm = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1557 Display *dpy = XtDisplay ((Widget) mw);
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1558 Screen *screen = XtScreen ((Widget) mw);
27988
817a3a4058a0 (make_shadow_gcs): Use the widget's colormap instead
Gerd Moellmann <gerd@gnu.org>
parents: 27338
diff changeset
1559 Colormap cmap = mw->core.colormap;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1560 XColor topc, botc;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1561 int top_frobbed = 0, bottom_frobbed = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1562
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1563 mw->menu.free_top_shadow_color_p = 0;
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1564 mw->menu.free_bottom_shadow_color_p = 0;
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1565
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1566 if (mw->menu.top_shadow_color == -1)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1567 mw->menu.top_shadow_color = mw->core.background_pixel;
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1568 else
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1569 mw->menu.top_shadow_color = mw->menu.top_shadow_color;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1570
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1571 if (mw->menu.bottom_shadow_color == -1)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1572 mw->menu.bottom_shadow_color = mw->menu.foreground;
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1573 else
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1574 mw->menu.bottom_shadow_color = mw->menu.bottom_shadow_color;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1575
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1576 if (mw->menu.top_shadow_color == mw->core.background_pixel ||
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1577 mw->menu.top_shadow_color == mw->menu.foreground)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1578 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1579 topc.pixel = mw->core.background_pixel;
31341
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1580 #ifdef emacs
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1581 if (x_alloc_lighter_color_for_widget ((Widget) mw, dpy, cmap,
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1582 &topc.pixel,
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1583 1.2, 0x8000))
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1584 #else
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1585 XQueryColor (dpy, cmap, &topc);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1586 /* don't overflow/wrap! */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1587 topc.red = MINL (65535, topc.red * 1.2);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1588 topc.green = MINL (65535, topc.green * 1.2);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1589 topc.blue = MINL (65535, topc.blue * 1.2);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1590 if (XAllocColor (dpy, cmap, &topc))
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1591 #endif
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1592 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1593 mw->menu.top_shadow_color = topc.pixel;
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1594 mw->menu.free_top_shadow_color_p = 1;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1595 top_frobbed = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1596 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1597 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1598 if (mw->menu.bottom_shadow_color == mw->menu.foreground ||
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1599 mw->menu.bottom_shadow_color == mw->core.background_pixel)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1600 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1601 botc.pixel = mw->core.background_pixel;
31341
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1602 #ifdef emacs
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1603 if (x_alloc_lighter_color_for_widget ((Widget) mw, dpy, cmap,
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1604 &botc.pixel,
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1605 0.6, 0x4000))
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1606 #else
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1607 XQueryColor (dpy, cmap, &botc);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1608 botc.red *= 0.6;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1609 botc.green *= 0.6;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1610 botc.blue *= 0.6;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1611 if (XAllocColor (dpy, cmap, &botc))
25034
305d2ac394ae (make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents: 19960
diff changeset
1612 #endif
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1613 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1614 mw->menu.bottom_shadow_color = botc.pixel;
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1615 mw->menu.free_bottom_shadow_color_p = 1;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1616 bottom_frobbed = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1617 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1618 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1619
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1620 if (top_frobbed && bottom_frobbed)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1621 {
31341
1c5d68acbded (x_alloc_lighter_color_for_widget):
Miles Bader <miles@gnu.org>
parents: 31287
diff changeset
1622 if (topc.pixel == botc.pixel)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1623 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1624 if (botc.pixel == mw->menu.foreground)
29602
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1625 {
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1626 if (mw->menu.free_top_shadow_color_p)
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1627 {
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1628 x_free_dpy_colors (dpy, screen, cmap,
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1629 &mw->menu.top_shadow_color, 1);
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1630 mw->menu.free_top_shadow_color_p = 0;
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1631 }
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1632 mw->menu.top_shadow_color = mw->core.background_pixel;
29602
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1633 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1634 else
29602
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1635 {
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1636 if (mw->menu.free_bottom_shadow_color_p)
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1637 {
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1638 x_free_dpy_colors (dpy, screen, cmap,
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1639 &mw->menu.bottom_shadow_color, 1);
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1640 mw->menu.free_bottom_shadow_color_p = 0;
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1641 }
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1642 mw->menu.bottom_shadow_color = mw->menu.foreground;
29602
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1643 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1644 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1645 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1646
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1647 if (!mw->menu.top_shadow_pixmap &&
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1648 mw->menu.top_shadow_color == mw->core.background_pixel)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1649 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1650 mw->menu.top_shadow_pixmap = mw->menu.gray_pixmap;
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1651 if (mw->menu.free_top_shadow_color_p)
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1652 {
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1653 x_free_dpy_colors (dpy, screen, cmap, &mw->menu.top_shadow_color, 1);
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1654 mw->menu.free_top_shadow_color_p = 0;
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1655 }
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1656 mw->menu.top_shadow_color = mw->menu.foreground;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1657 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1658 if (!mw->menu.bottom_shadow_pixmap &&
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1659 mw->menu.bottom_shadow_color == mw->core.background_pixel)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1660 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1661 mw->menu.bottom_shadow_pixmap = mw->menu.gray_pixmap;
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1662 if (mw->menu.free_bottom_shadow_color_p)
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1663 {
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1664 x_free_dpy_colors (dpy, screen, cmap,
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1665 &mw->menu.bottom_shadow_color, 1);
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1666 mw->menu.free_bottom_shadow_color_p = 0;
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1667 }
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1668 mw->menu.bottom_shadow_color = mw->menu.foreground;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1669 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1670
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1671 xgcv.fill_style = FillStippled;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1672 xgcv.foreground = mw->menu.top_shadow_color;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1673 xgcv.stipple = mw->menu.top_shadow_pixmap;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1674 pm = (xgcv.stipple ? GCStipple|GCFillStyle : 0);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1675 mw->menu.shadow_top_gc = XtGetGC ((Widget)mw, GCForeground | pm, &xgcv);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1676
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1677 xgcv.foreground = mw->menu.bottom_shadow_color;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1678 xgcv.stipple = mw->menu.bottom_shadow_pixmap;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1679 pm = (xgcv.stipple ? GCStipple|GCFillStyle : 0);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1680 mw->menu.shadow_bottom_gc = XtGetGC ((Widget)mw, GCForeground | pm, &xgcv);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1681 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1682
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1683
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1684 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1685 release_shadow_gcs (mw)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1686 XlwMenuWidget mw;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1687 {
29602
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1688 Display *dpy = XtDisplay ((Widget) mw);
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1689 Screen *screen = XtScreen ((Widget) mw);
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1690 Colormap cmap = mw->core.colormap;
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1691 Pixel px[2];
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1692 int i = 0;
29602
d13e7c93d265 (make_shadow_gcs): Free and copy colors so that
Gerd Moellmann <gerd@gnu.org>
parents: 29469
diff changeset
1693
29700
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1694 if (mw->menu.free_top_shadow_color_p)
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1695 px[i++] = mw->menu.top_shadow_color;
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1696 if (mw->menu.free_bottom_shadow_color_p)
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1697 px[i++] = mw->menu.bottom_shadow_color;
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1698 if (i > 0)
1e88ad071a1a (make_shadow_gcs): Set free_top_shadow_color_p
Gerd Moellmann <gerd@gnu.org>
parents: 29602
diff changeset
1699 x_free_dpy_colors (dpy, screen, cmap, px, i);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1700
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1701 XtReleaseGC ((Widget) mw, mw->menu.shadow_top_gc);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1702 XtReleaseGC ((Widget) mw, mw->menu.shadow_bottom_gc);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1703 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1704
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1705 static void
9746
49e984bf6689 (xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents: 9700
diff changeset
1706 XlwMenuInitialize (request, mw, args, num_args)
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1707 Widget request;
9746
49e984bf6689 (xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents: 9700
diff changeset
1708 XlwMenuWidget mw;
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1709 ArgList args;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1710 Cardinal *num_args;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1711 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1712 /* Get the GCs and the widget size */
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1713
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1714 Window window = RootWindowOfScreen (DefaultScreenOfDisplay (XtDisplay (mw)));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1715 Display* display = XtDisplay (mw);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1716
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1717 #if 0
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1718 widget_value *tem = (widget_value *) XtMalloc (sizeof (widget_value));
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1719
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1720 /* _XtCreate is freeing the object that was passed to us,
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1721 so make a copy that we will actually keep. */
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1722 lwlib_bcopy (mw->menu.contents, tem, sizeof (widget_value));
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1723 mw->menu.contents = tem;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1724 #endif
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1725
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1726 /* mw->menu.cursor = XCreateFontCursor (display, mw->menu.cursor_shape); */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1727 mw->menu.cursor = mw->menu.cursor_shape;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1728
11885
c686f5539749 (XlwMenuInitialize): Cast XCreatePixmapFromBitmapData args.
Karl Heuer <kwzh@gnu.org>
parents: 11461
diff changeset
1729 mw->menu.gray_pixmap
30324
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
1730 = XCreatePixmapFromBitmapData (display, window, gray_bitmap_bits,
d4713daa6716 Don't include <X11/bitmaps/gray> because that
Gerd Moellmann <gerd@gnu.org>
parents: 29700
diff changeset
1731 gray_bitmap_width, gray_bitmap_height,
11885
c686f5539749 (XlwMenuInitialize): Cast XCreatePixmapFromBitmapData args.
Karl Heuer <kwzh@gnu.org>
parents: 11461
diff changeset
1732 (unsigned long)1, (unsigned long)0, 1);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1733
9746
49e984bf6689 (xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents: 9700
diff changeset
1734 /* I don't understand why this ends up 0 sometimes,
49e984bf6689 (xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents: 9700
diff changeset
1735 but it does. This kludge works around it.
49e984bf6689 (xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents: 9700
diff changeset
1736 Can anyone find a real fix? -- rms. */
49e984bf6689 (xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents: 9700
diff changeset
1737 if (mw->menu.font == 0)
49e984bf6689 (xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents: 9700
diff changeset
1738 mw->menu.font = xlwmenu_default_font;
49e984bf6689 (xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents: 9700
diff changeset
1739
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1740 make_drawing_gcs (mw);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1741 make_shadow_gcs (mw);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1742
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1743 mw->menu.popped_up = False;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1744
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1745 mw->menu.old_depth = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1746 mw->menu.old_stack = (widget_value**)XtMalloc (sizeof (widget_value*));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1747 mw->menu.old_stack_length = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1748 mw->menu.old_stack [0] = mw->menu.contents;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1749
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1750 mw->menu.new_depth = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1751 mw->menu.new_stack = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1752 mw->menu.new_stack_length = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1753 push_new_stack (mw, mw->menu.contents);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1754
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1755 mw->menu.windows = (window_state*)XtMalloc (sizeof (window_state));
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1756 mw->menu.windows_length = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1757 mw->menu.windows [0].x = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1758 mw->menu.windows [0].y = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1759 mw->menu.windows [0].width = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1760 mw->menu.windows [0].height = 0;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1761 size_menu (mw, 0);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1762
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1763 mw->core.width = mw->menu.windows [0].width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1764 mw->core.height = mw->menu.windows [0].height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1765 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1766
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1767 static void
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1768 XlwMenuClassInitialize ()
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1769 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1770 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1771
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1772 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1773 XlwMenuRealize (w, valueMask, attributes)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1774 Widget w;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1775 Mask *valueMask;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1776 XSetWindowAttributes *attributes;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1777 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1778 XlwMenuWidget mw = (XlwMenuWidget)w;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1779 XSetWindowAttributes xswa;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1780 int mask;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1781
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1782 (*xlwMenuWidgetClass->core_class.superclass->core_class.realize)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1783 (w, valueMask, attributes);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1784
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1785 xswa.save_under = True;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1786 xswa.cursor = mw->menu.cursor_shape;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1787 mask = CWSaveUnder | CWCursor;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1788 XChangeWindowAttributes (XtDisplay (w), XtWindow (w), mask, &xswa);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1789
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1790 mw->menu.windows [0].window = XtWindow (w);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1791 mw->menu.windows [0].x = w->core.x;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1792 mw->menu.windows [0].y = w->core.y;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1793 mw->menu.windows [0].width = w->core.width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1794 mw->menu.windows [0].height = w->core.height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1795 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1796
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1797 /* Only the toplevel menubar/popup is a widget so it's the only one that
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1798 receives expose events through Xt. So we repaint all the other panes
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1799 when receiving an Expose event. */
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1800 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1801 XlwMenuRedisplay (w, ev, region)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1802 Widget w;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1803 XEvent* ev;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1804 Region region;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1805 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1806 XlwMenuWidget mw = (XlwMenuWidget)w;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1807 int i;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1808
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1809 /* If we have a depth beyond 1, it's because a submenu was displayed.
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1810 If the submenu has been destroyed, set the depth back to 1. */
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1811 if (submenu_destroyed)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1812 {
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1813 mw->menu.old_depth = 1;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1814 submenu_destroyed = 0;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1815 }
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1816
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1817 for (i = 0; i < mw->menu.old_depth; i++)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1818 display_menu (mw, i, False, NULL, NULL, NULL, NULL, NULL);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1819 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1820
33714
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
1821
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
1822 /* Part of a hack to make the menu redisplay when a tooltip frame
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
1823 over a menu item is unmapped. */
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
1824
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
1825 void
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
1826 xlwmenu_redisplay (w)
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
1827 Widget w;
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
1828 {
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
1829 XlwMenuRedisplay (w, NULL, None);
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
1830 }
f957a9063fb1 (xlwmenu_redisplay): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31963
diff changeset
1831
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1832 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1833 XlwMenuDestroy (w)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1834 Widget w;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1835 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1836 int i;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1837 XlwMenuWidget mw = (XlwMenuWidget) w;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1838
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1839 if (pointer_grabbed)
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
1840 ungrab_all ((Widget)w, CurrentTime);
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1841 pointer_grabbed = 0;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1842
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1843 submenu_destroyed = 1;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1844
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1845 release_drawing_gcs (mw);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1846 release_shadow_gcs (mw);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1847
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1848 /* this doesn't come from the resource db but is created explicitly
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1849 so we must free it ourselves. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1850 XFreePixmap (XtDisplay (mw), mw->menu.gray_pixmap);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1851 mw->menu.gray_pixmap = (Pixmap) -1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1852
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1853 #if 0
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1854 /* Do free mw->menu.contents because nowadays we copy it
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1855 during initialization. */
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1856 XtFree (mw->menu.contents);
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1857 #endif
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1858
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1859 /* Don't free mw->menu.contents because that comes from our creator.
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1860 The `*_stack' elements are just pointers into `contents' so leave
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1861 that alone too. But free the stacks themselves. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1862 if (mw->menu.old_stack) XtFree ((char *) mw->menu.old_stack);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1863 if (mw->menu.new_stack) XtFree ((char *) mw->menu.new_stack);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1864
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1865 /* Remember, you can't free anything that came from the resource
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1866 database. This includes:
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1867 mw->menu.cursor
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1868 mw->menu.top_shadow_pixmap
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1869 mw->menu.bottom_shadow_pixmap
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1870 mw->menu.font
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1871 Also the color cells of top_shadow_color, bottom_shadow_color,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1872 foreground, and button_foreground will never be freed until this
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1873 client exits. Nice, eh?
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1874 */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1875
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1876 /* start from 1 because the one in slot 0 is w->core.window */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1877 for (i = 1; i < mw->menu.windows_length; i++)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1878 XDestroyWindow (XtDisplay (mw), mw->menu.windows [i].window);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1879 if (mw->menu.windows)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1880 XtFree ((char *) mw->menu.windows);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1881 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1882
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1883 static Boolean
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1884 XlwMenuSetValues (current, request, new)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1885 Widget current;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1886 Widget request;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1887 Widget new;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1888 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1889 XlwMenuWidget oldmw = (XlwMenuWidget)current;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1890 XlwMenuWidget newmw = (XlwMenuWidget)new;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1891 Boolean redisplay = False;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1892 int i;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1893
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1894 if (newmw->menu.contents
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1895 && newmw->menu.contents->contents
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1896 && newmw->menu.contents->contents->change >= VISIBLE_CHANGE)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1897 redisplay = True;
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
1898 /* Do redisplay if the contents are entirely eliminated. */
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
1899 if (newmw->menu.contents
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
1900 && newmw->menu.contents->contents == 0
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
1901 && newmw->menu.contents->change >= VISIBLE_CHANGE)
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
1902 redisplay = True;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1903
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1904 if (newmw->core.background_pixel != oldmw->core.background_pixel
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1905 || newmw->menu.foreground != oldmw->menu.foreground
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1906 || newmw->menu.font != oldmw->menu.font)
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1907 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1908 release_drawing_gcs (newmw);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1909 make_drawing_gcs (newmw);
31287
c37c79e6a6e7 (XlwMenuSetValues):
Miles Bader <miles@gnu.org>
parents: 30324
diff changeset
1910
c37c79e6a6e7 (XlwMenuSetValues):
Miles Bader <miles@gnu.org>
parents: 30324
diff changeset
1911 release_shadow_gcs (newmw);
c37c79e6a6e7 (XlwMenuSetValues):
Miles Bader <miles@gnu.org>
parents: 30324
diff changeset
1912 /* Cause the shadow colors to be recalculated. */
c37c79e6a6e7 (XlwMenuSetValues):
Miles Bader <miles@gnu.org>
parents: 30324
diff changeset
1913 newmw->menu.top_shadow_color = -1;
c37c79e6a6e7 (XlwMenuSetValues):
Miles Bader <miles@gnu.org>
parents: 30324
diff changeset
1914 newmw->menu.bottom_shadow_color = -1;
c37c79e6a6e7 (XlwMenuSetValues):
Miles Bader <miles@gnu.org>
parents: 30324
diff changeset
1915 make_shadow_gcs (newmw);
c37c79e6a6e7 (XlwMenuSetValues):
Miles Bader <miles@gnu.org>
parents: 30324
diff changeset
1916
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1917 redisplay = True;
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1918
31369
6aa8a6e72c0f (XlwMenuSetValues): Pass the correct pointer type to XtIsRealized.
Miles Bader <miles@gnu.org>
parents: 31364
diff changeset
1919 if (XtIsRealized (current))
31364
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
1920 /* If the menu is currently displayed, change the display. */
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
1921 for (i = 0; i < oldmw->menu.windows_length; i++)
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
1922 {
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
1923 XSetWindowBackground (XtDisplay (oldmw),
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
1924 oldmw->menu.windows [i].window,
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
1925 newmw->core.background_pixel);
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
1926 /* clear windows and generate expose events */
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
1927 XClearArea (XtDisplay (oldmw), oldmw->menu.windows[i].window,
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
1928 0, 0, 0, 0, True);
8bafcf2cfd57 (XlwMenuSetValues): Only frob the display if the menu is actually displayed.
Miles Bader <miles@gnu.org>
parents: 31341
diff changeset
1929 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1930 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1931
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1932 return redisplay;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1933 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1934
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1935 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1936 XlwMenuResize (w)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1937 Widget w;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1938 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1939 XlwMenuWidget mw = (XlwMenuWidget)w;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1940
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1941 if (mw->menu.popped_up)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1942 {
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1943 /* Don't allow the popup menu to resize itself. */
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1944 mw->core.width = mw->menu.windows [0].width;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1945 mw->core.height = mw->menu.windows [0].height;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1946 mw->core.parent->core.width = mw->core.width ;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1947 mw->core.parent->core.height = mw->core.height ;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1948 }
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1949 else
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1950 {
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1951 mw->menu.windows [0].width = mw->core.width;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1952 mw->menu.windows [0].height = mw->core.height;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1953 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1954 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1955
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1956 /* Action procedures */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1957 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1958 handle_single_motion_event (mw, ev)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1959 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1960 XMotionEvent* ev;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1961 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1962 widget_value* val;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1963 int level;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1964
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1965 if (!map_event_to_widget_value (mw, ev, &val, &level))
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1966 pop_new_stack_if_no_contents (mw);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1967 else
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1968 set_new_state (mw, val, level);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1969 remap_menubar (mw);
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1970
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1971 /* Sync with the display. Makes it feel better on X terms. */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1972 XSync (XtDisplay (mw), False);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1973 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1974
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1975 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1976 handle_motion_event (mw, ev)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1977 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1978 XMotionEvent* ev;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1979 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1980 int x = ev->x_root;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1981 int y = ev->y_root;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1982 int state = ev->state;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1983
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1984 handle_single_motion_event (mw, ev);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1985
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1986 /* allow motion events to be generated again */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1987 if (ev->is_hint
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1988 && XQueryPointer (XtDisplay (mw), ev->window,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1989 &ev->root, &ev->subwindow,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1990 &ev->x_root, &ev->y_root,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1991 &ev->x, &ev->y,
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1992 &ev->state)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1993 && ev->state == state
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1994 && (ev->x_root != x || ev->y_root != y))
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1995 handle_single_motion_event (mw, ev);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1996 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1997
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
1998 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
1999 Start (w, ev, params, num_params)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2000 Widget w;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2001 XEvent *ev;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2002 String *params;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2003 Cardinal *num_params;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2004 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2005 XlwMenuWidget mw = (XlwMenuWidget)w;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2006
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2007 if (!mw->menu.popped_up)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2008 {
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2009 menu_post_event = *ev;
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2010 /* If event is set to CurrentTime, get the last known time stamp.
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2011 This is for calculating if (popup) menus should stay up after
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2012 a fast click. */
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2013 if (menu_post_event.xbutton.time == CurrentTime)
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2014 menu_post_event.xbutton.time
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2015 = XtLastTimestampProcessed (XtDisplay (w));
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2016
29469
f9b5fe053f7c (x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents: 27988
diff changeset
2017 pop_up_menu (mw, (XButtonPressedEvent*) ev);
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2018 }
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2019 else
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2020 {
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2021 /* If we push a button while the menu is posted semipermanently,
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2022 releasing the button should always pop the menu down. */
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2023 next_release_must_exit = 1;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2024
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2025 /* notes the absolute position of the menubar window */
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2026 mw->menu.windows [0].x = ev->xmotion.x_root - ev->xmotion.x;
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2027 mw->menu.windows [0].y = ev->xmotion.y_root - ev->xmotion.y;
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2028
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2029 /* handles the down like a move, slots are compatible */
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2030 handle_motion_event (mw, &ev->xmotion);
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2031 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2032 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2033
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
2034 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2035 Drag (w, ev, params, num_params)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2036 Widget w;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2037 XEvent *ev;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2038 String *params;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2039 Cardinal *num_params;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2040 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2041 XlwMenuWidget mw = (XlwMenuWidget)w;
11987
9619c1121b43 (Drag): Do nothing unless menu.popped_up field is set.
Karl Heuer <kwzh@gnu.org>
parents: 11885
diff changeset
2042 if (mw->menu.popped_up)
9619c1121b43 (Drag): Do nothing unless menu.popped_up field is set.
Karl Heuer <kwzh@gnu.org>
parents: 11885
diff changeset
2043 handle_motion_event (mw, &ev->xmotion);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2044 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2045
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2046 /* Do nothing.
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2047 This is how we handle presses and releases of modifier keys. */
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2048 static void
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2049 Nothing (w, ev, params, num_params)
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2050 Widget w;
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2051 XEvent *ev;
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2052 String *params;
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2053 Cardinal *num_params;
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2054 {
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2055 }
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2056
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2057 static widget_value *
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2058 find_first_selectable (mw, item, skip_titles)
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2059 XlwMenuWidget mw;
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2060 widget_value *item;
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2061 int skip_titles;
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2062 {
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2063 widget_value *current = item;
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2064 enum menu_separator separator;
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2065
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2066 while (lw_separator_p (current->name, &separator, 0) || !current->enabled
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2067 || (skip_titles && !current->call_data && !current->contents))
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2068 if (current->next)
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2069 current=current->next;
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2070 else
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2071 return NULL;
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2072
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2073 return current;
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2074 }
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2075
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2076 static widget_value *
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2077 find_next_selectable (mw, item, skip_titles)
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2078 XlwMenuWidget mw;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2079 widget_value *item;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2080 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2081 widget_value *current = item;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2082 enum menu_separator separator;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2083
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2084 while (current->next && (current=current->next) &&
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2085 (lw_separator_p (current->name, &separator, 0) || !current->enabled
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2086 || (skip_titles && !current->call_data && !current->contents)))
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2087 ;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2088
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2089 if (current == item)
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2090 {
45147
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
2091 if (mw->menu.old_depth < 2)
e10cf8f440ae (xlwMenuResources): New resource.
Pavel Janík <Pavel@Janik.cz>
parents: 44966
diff changeset
2092 return current;
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2093 current = mw->menu.old_stack [mw->menu.old_depth - 2]->contents;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2094
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2095 while (lw_separator_p (current->name, &separator, 0)
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2096 || !current->enabled
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2097 || (skip_titles && !current->call_data
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2098 && !current->contents))
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2099 {
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2100 if (current->next)
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2101 current=current->next;
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2102
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2103 if (current == item)
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2104 break;
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2105 }
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2106
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2107 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2108
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2109 return current;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2110 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2111
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2112 static widget_value *
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2113 find_prev_selectable (mw, item, skip_titles)
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2114 XlwMenuWidget mw;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2115 widget_value *item;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2116 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2117 widget_value *current = item;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2118 widget_value *prev = item;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2119
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2120 while ((current=find_next_selectable (mw, current, skip_titles))
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2121 != item)
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2122 {
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2123 if (prev == current)
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2124 break;
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2125 prev=current;
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2126 }
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2127
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2128 return prev;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2129 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2130
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2131 static void
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2132 Down (w, ev, params, num_params)
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2133 Widget w;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2134 XEvent *ev;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2135 String *params;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2136 Cardinal *num_params;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2137 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2138 XlwMenuWidget mw = (XlwMenuWidget) w;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2139 widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2140 int popup_menu_p = mw->menu.top_depth == 1;
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2141
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2142 /* Inside top-level menu-bar? */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2143 if (mw->menu.old_depth == mw->menu.top_depth)
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2144 /* When <down> in the menu-bar is pressed, display the corresponding
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2145 sub-menu and select the first selectable menu item there.
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2146 If this is a popup menu, skip title item of the popup. */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2147 set_new_state (mw,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2148 find_first_selectable (mw,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2149 selected_item->contents,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2150 popup_menu_p),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2151 mw->menu.old_depth);
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2152 else
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2153 /* Highlight next possible (enabled and not separator) menu item. */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2154 set_new_state (mw, find_next_selectable (mw, selected_item, popup_menu_p),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2155 mw->menu.old_depth - 1);
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2156
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2157 remap_menubar (mw);
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2158 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2159
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2160 static void
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2161 Up (w, ev, params, num_params)
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2162 Widget w;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2163 XEvent *ev;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2164 String *params;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2165 Cardinal *num_params;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2166 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2167 XlwMenuWidget mw = (XlwMenuWidget) w;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2168 widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2169 int popup_menu_p = mw->menu.top_depth == 1;
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2170
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2171 /* Inside top-level menu-bar? */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2172 if (mw->menu.old_depth == mw->menu.top_depth)
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2173 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2174 /* FIXME: this is tricky. <up> in the menu-bar should select the
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2175 last selectable item in the list. So we select the first
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2176 selectable one and find the previous selectable item. Is there
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2177 a better way? */
57842
2c65a9fc7dec * xlwmenu.c (find_first_selectable, find_next_selectable)
Jan Djärv <jan.h.d@swipnet.se>
parents: 53564
diff changeset
2178 /* If this is a popup menu, skip title item of the popup. */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2179 set_new_state (mw,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2180 find_first_selectable (mw,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2181 selected_item->contents,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2182 popup_menu_p),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2183 mw->menu.old_depth);
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2184 remap_menubar (mw);
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2185 selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2186 set_new_state (mw,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2187 find_prev_selectable (mw,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2188 selected_item,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2189 popup_menu_p),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2190 mw->menu.old_depth - 1);
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2191 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2192 else
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2193 /* Highlight previous (enabled and not separator) menu item. */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2194 set_new_state (mw, find_prev_selectable (mw, selected_item, popup_menu_p),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2195 mw->menu.old_depth - 1);
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2196
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2197 remap_menubar (mw);
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2198 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2199
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2200 void
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2201 Left (w, ev, params, num_params)
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2202 Widget w;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2203 XEvent *ev;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2204 String *params;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2205 Cardinal *num_params;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2206 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2207 XlwMenuWidget mw = (XlwMenuWidget) w;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2208 widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2209
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2210 /* Inside top-level menu-bar? */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2211 if (mw->menu.old_depth == mw->menu.top_depth)
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2212 /* When <left> in the menu-bar is pressed, display the previous item on
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2213 the menu-bar. If the current item is the first one, highlight the
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2214 last item in the menubar (probably Help). */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2215 set_new_state (mw, find_prev_selectable (mw, selected_item, 0),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2216 mw->menu.old_depth - 1);
48929
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
2217 else if (mw->menu.old_depth == 1
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
2218 && selected_item->contents) /* Is this menu item expandable? */
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
2219 {
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
2220 set_new_state (mw, selected_item->contents, mw->menu.old_depth);
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
2221 remap_menubar (mw);
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
2222 selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2223 if (!selected_item->enabled && find_first_selectable (mw,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2224 selected_item,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2225 0))
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2226 set_new_state (mw, find_first_selectable (mw, selected_item, 0),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2227 mw->menu.old_depth - 1);
48929
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
2228 }
d81c005163cb (pop_new_stack_if_no_contents): Do nothing if new_depth is 1.
Richard M. Stallman <rms@gnu.org>
parents: 48479
diff changeset
2229
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2230 else
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2231 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2232 pop_new_stack_if_no_contents (mw);
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2233 set_new_state (mw, mw->menu.old_stack [mw->menu.old_depth - 2],
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2234 mw->menu.old_depth - 2);
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2235 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2236
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2237 remap_menubar (mw);
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2238 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2239
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2240 void
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2241 Right (w, ev, params, num_params)
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2242 Widget w;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2243 XEvent *ev;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2244 String *params;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2245 Cardinal *num_params;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2246 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2247 XlwMenuWidget mw = (XlwMenuWidget) w;
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2248 widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2249
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2250 /* Inside top-level menu-bar? */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2251 if (mw->menu.old_depth == mw->menu.top_depth)
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2252 /* When <right> in the menu-bar is pressed, display the next item on
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2253 the menu-bar. If the current item is the last one, highlight the
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2254 first item (probably File). */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2255 set_new_state (mw, find_next_selectable (mw, selected_item, 0),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2256 mw->menu.old_depth - 1);
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2257 else if (selected_item->contents) /* Is this menu item expandable? */
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2258 {
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2259 set_new_state (mw, selected_item->contents, mw->menu.old_depth);
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2260 remap_menubar (mw);
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2261 selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2262 if (!selected_item->enabled && find_first_selectable (mw,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2263 selected_item,
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2264 0))
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2265 set_new_state (mw, find_first_selectable (mw, selected_item, 0),
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2266 mw->menu.old_depth - 1);
44713
a05c8614feee (find_next_selectable): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 44707
diff changeset
2267 }
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2268 else
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2269 {
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2270 pop_new_stack_if_no_contents (mw);
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2271 set_new_state (mw, mw->menu.old_stack [mw->menu.old_depth - 2],
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2272 mw->menu.old_depth - 2);
44707
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2273 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2274
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2275 remap_menubar (mw);
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2276 }
3444517c6483 (xlwMenuTranslations, xlwMenuActionsList): Add translations for cursor keys
Pavel Janík <Pavel@Janik.cz>
parents: 41767
diff changeset
2277
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2278 /* Handle key press and release events while menu is popped up.
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2279 Our action is to get rid of the menu. */
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2280 static void
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2281 Key (w, ev, params, num_params)
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2282 Widget w;
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2283 XEvent *ev;
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2284 String *params;
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2285 Cardinal *num_params;
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2286 {
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2287 XlwMenuWidget mw = (XlwMenuWidget)w;
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2288
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2289 /* Pop down everything. */
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2290 mw->menu.new_depth = 1;
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2291 remap_menubar (mw);
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2292
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2293 if (mw->menu.popped_up)
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2294 {
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2295 mw->menu.popped_up = False;
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2296 ungrab_all ((Widget)mw, ev->xmotion.time);
13899
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2297 if (XtIsShell (XtParent ((Widget) mw)))
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2298 XtPopdown (XtParent ((Widget) mw));
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2299 else
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2300 {
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2301 XtRemoveGrab ((Widget) mw);
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2302 display_menu (mw, 0, False, NULL, NULL, NULL, NULL, NULL);
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2303 }
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2304 }
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2305
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2306 /* callback */
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2307 XtCallCallbackList ((Widget)mw, mw->menu.select, (XtPointer)0);
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2308 }
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2309
3fbe9b840379 (xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents: 13560
diff changeset
2310 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2311 Select (w, ev, params, num_params)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2312 Widget w;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2313 XEvent *ev;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2314 String *params;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2315 Cardinal *num_params;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2316 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2317 XlwMenuWidget mw = (XlwMenuWidget)w;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2318 widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
31963
833428005bf6 * xlwmenu.c: Before including <X11/Xos.h> on SUN, define SUNOS41
Sam Steingold <sds@gnu.org>
parents: 31370
diff changeset
2319
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2320 /* If user releases the button quickly, without selecting anything,
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2321 after the initial down-click that brought the menu up,
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2322 do nothing. */
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2323 if ((selected_item == 0
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2324 || ((widget_value *) selected_item)->call_data == 0)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2325 && !next_release_must_exit
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2326 && (ev->xbutton.time - menu_post_event.xbutton.time
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2327 < XtGetMultiClickTime (XtDisplay (w))))
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2328 return;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2329
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2330 /* pop down everything. */
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2331 mw->menu.new_depth = 1;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2332 remap_menubar (mw);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2333
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2334 if (mw->menu.popped_up)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2335 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2336 mw->menu.popped_up = False;
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2337 ungrab_all ((Widget)mw, ev->xmotion.time);
9033
3c36c72db2bb *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 9027
diff changeset
2338 if (XtIsShell (XtParent ((Widget) mw)))
3c36c72db2bb *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 9027
diff changeset
2339 XtPopdown (XtParent ((Widget) mw));
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2340 else
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2341 {
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2342 XtRemoveGrab ((Widget) mw);
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2343 display_menu (mw, 0, False, NULL, NULL, NULL, NULL, NULL);
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2344 }
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2345 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2346
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2347 /* callback */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2348 XtCallCallbackList ((Widget)mw, mw->menu.select, (XtPointer)selected_item);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2349 }
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2350
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2351
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2352 /* Special code to pop-up a menu */
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2353 static void
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2354 pop_up_menu (mw, event)
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2355 XlwMenuWidget mw;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2356 XButtonPressedEvent* event;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2357 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2358 int x = event->x_root;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2359 int y = event->y_root;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2360 int w;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2361 int h;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2362 int borderwidth = mw->menu.shadow_thickness;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2363 Screen* screen = XtScreen (mw);
9700
d09dc2f44ecb (pop_up_menu): Pass a Display * to x_catch_errors, etc.
Richard M. Stallman <rms@gnu.org>
parents: 9395
diff changeset
2364 Display *display = XtDisplay (mw);
17622
742a57e66f7d (pop_up_menu): Update the call to x_catch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 16917
diff changeset
2365 int count;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2366
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2367 next_release_must_exit = 0;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2368
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2369 XtCallCallbackList ((Widget)mw, mw->menu.open, NULL);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2370
9033
3c36c72db2bb *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 9027
diff changeset
2371 if (XtIsShell (XtParent ((Widget)mw)))
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2372 size_menu (mw, 0);
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2373
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2374 w = mw->menu.windows [0].width;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2375 h = mw->menu.windows [0].height;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2376
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2377 x -= borderwidth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2378 y -= borderwidth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2379 if (x < borderwidth)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2380 x = borderwidth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2381 if (x + w + 2 * borderwidth > WidthOfScreen (screen))
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2382 x = WidthOfScreen (screen) - w - 2 * borderwidth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2383 if (y < borderwidth)
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2384 y = borderwidth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2385 if (y + h + 2 * borderwidth> HeightOfScreen (screen))
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2386 y = HeightOfScreen (screen) - h - 2 * borderwidth;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2387
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2388 mw->menu.popped_up = True;
9033
3c36c72db2bb *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 9027
diff changeset
2389 if (XtIsShell (XtParent ((Widget)mw)))
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2390 {
9033
3c36c72db2bb *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 9027
diff changeset
2391 XtConfigureWidget (XtParent ((Widget)mw), x, y, w, h,
3c36c72db2bb *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 9027
diff changeset
2392 XtParent ((Widget)mw)->core.border_width);
3c36c72db2bb *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 9027
diff changeset
2393 XtPopup (XtParent ((Widget)mw), XtGrabExclusive);
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2394 display_menu (mw, 0, False, NULL, NULL, NULL, NULL, NULL);
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2395 mw->menu.windows [0].x = x + borderwidth;
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2396 mw->menu.windows [0].y = y + borderwidth;
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2397 mw->menu.top_depth = 1; /* Popup menus don't have a bar so top is 1 */
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2398 }
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2399 else
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2400 {
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2401 XEvent *ev = (XEvent *) event;
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2402
9092
0033f98d2ffd Clean up of temporary changes used to try to find a workaround for the
Paul Reilly <pmr@pajato.com>
parents: 9086
diff changeset
2403 XtAddGrab ((Widget) mw, True, True);
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2404
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2405 /* notes the absolute position of the menubar window */
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2406 mw->menu.windows [0].x = ev->xmotion.x_root - ev->xmotion.x;
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2407 mw->menu.windows [0].y = ev->xmotion.y_root - ev->xmotion.y;
53564
609ef1718642 Changes for lucid popup menus (keyboard traversal enabled) and dialogs
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
2408 mw->menu.top_depth = 2;
9027
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2409 }
07d79cbdfbc9 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 8861
diff changeset
2410
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2411 #ifdef emacs
17622
742a57e66f7d (pop_up_menu): Update the call to x_catch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 16917
diff changeset
2412 count = x_catch_errors (display);
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2413 #endif
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2414 if (XtGrabPointer ((Widget)mw, False,
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2415 (PointerMotionMask
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2416 | PointerMotionHintMask
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2417 | ButtonReleaseMask
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2418 | ButtonPressMask),
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2419 GrabModeAsync, GrabModeAsync, None,
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2420 mw->menu.cursor_shape,
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2421 event->time) == Success)
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2422 {
44931
18616c930588 Do not grab keyboard if installation-directory is
Jan Djärv <jan.h.d@swipnet.se>
parents: 44750
diff changeset
2423 if (! GRAB_KEYBOARD
44750
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2424 || XtGrabKeyboard ((Widget)mw, False, GrabModeAsync,
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2425 GrabModeAsync, event->time) == Success)
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2426 {
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2427 XtSetKeyboardFocus((Widget)mw, None);
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2428 pointer_grabbed = 1;
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2429 }
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2430 else
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2431 XtUngrabPointer ((Widget)mw, event->time);
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2432 }
2e7603e0c455 Add calls to Grab/UngrabKeyboard to remove strange interactions with
Jan Djärv <jan.h.d@swipnet.se>
parents: 44713
diff changeset
2433
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2434 #ifdef emacs
9700
d09dc2f44ecb (pop_up_menu): Pass a Display * to x_catch_errors, etc.
Richard M. Stallman <rms@gnu.org>
parents: 9395
diff changeset
2435 if (x_had_errors_p (display))
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2436 {
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2437 pointer_grabbed = 0;
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2438 XtUngrabPointer ((Widget)mw, event->time);
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2439 }
17622
742a57e66f7d (pop_up_menu): Update the call to x_catch_errors.
Richard M. Stallman <rms@gnu.org>
parents: 16917
diff changeset
2440 x_uncatch_errors (display, count);
8860
8e5ef22c9438 *** empty log message ***
Paul Reilly <pmr@pajato.com>
parents: 5654
diff changeset
2441 #endif
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2442
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2443 handle_motion_event (mw, (XMotionEvent*)event);
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2444 }
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51143
diff changeset
2445
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51143
diff changeset
2446 /* arch-tag: 657f43dd-dfd0-4cc9-910c-52935f01176e
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51143
diff changeset
2447 (do not change this comment) */