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