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