Mercurial > emacs
annotate lwlib/xlwmenu.c @ 29601:9cbfd0ef31df
Changed __W32BDF_H__ to EMACS_W32BDF_H to comply with ISO C spec.
author | Jason Rumney <jasonr@gnu.org> |
---|---|
date | Mon, 12 Jun 2000 19:09:42 +0000 |
parents | f9b5fe053f7c |
children | d13e7c93d265 |
rev | line source |
---|---|
5626 | 1 /* Implements a lightweight menubar widget. |
2 Copyright (C) 1992 Lucid, Inc. | |
3 | |
4 This file is part of the Lucid Widget Library. | |
5 | |
6 The Lucid Widget Library is free software; you can redistribute it and/or | |
7 modify it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 2, or (at your option) | |
9 any later version. | |
10 | |
11 The Lucid Widget Library is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
15742 | 17 along with GNU Emacs; see the file COPYING. If not, write to the |
18 Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
19 Boston, MA 02111-1307, USA. */ | |
5626 | 20 |
21 /* Created by devin@lucid.com */ | |
22 | |
26087
e0d966fb548f
Add support for large files, plus some locale improvements.
Paul Eggert <eggert@twinsun.com>
parents:
25526
diff
changeset
|
23 #ifdef HAVE_CONFIG_H |
e0d966fb548f
Add support for large files, plus some locale improvements.
Paul Eggert <eggert@twinsun.com>
parents:
25526
diff
changeset
|
24 #include <config.h> |
e0d966fb548f
Add support for large files, plus some locale improvements.
Paul Eggert <eggert@twinsun.com>
parents:
25526
diff
changeset
|
25 #endif |
e0d966fb548f
Add support for large files, plus some locale improvements.
Paul Eggert <eggert@twinsun.com>
parents:
25526
diff
changeset
|
26 |
5626 | 27 #include <stdio.h> |
28 | |
29 #include <sys/types.h> | |
30 #include <X11/Xos.h> | |
31 #include <X11/IntrinsicP.h> | |
9033 | 32 #include <X11/ObjectP.h> |
5626 | 33 #include <X11/StringDefs.h> |
34 #include <X11/cursorfont.h> | |
35 #include <X11/bitmaps/gray> | |
36 #include "xlwmenuP.h" | |
29469
f9b5fe053f7c
(x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents:
27988
diff
changeset
|
37 #ifdef emacs |
f9b5fe053f7c
(x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents:
27988
diff
changeset
|
38 /* Defined in xterm.c. */ |
f9b5fe053f7c
(x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents:
27988
diff
changeset
|
39 extern int x_alloc_nearest_color_for_widget __P ((Widget, Colormap, XColor*)); |
f9b5fe053f7c
(x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents:
27988
diff
changeset
|
40 extern int x_catch_errors __P ((Display*)); |
f9b5fe053f7c
(x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents:
27988
diff
changeset
|
41 extern int x_uncatch_errors __P ((Display*, int)); |
f9b5fe053f7c
(x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents:
27988
diff
changeset
|
42 extern int x_had_errors_p __P ((Display*)); |
f9b5fe053f7c
(x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents:
27988
diff
changeset
|
43 extern int x_clear_errors __P ((Display*)); |
f9b5fe053f7c
(x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents:
27988
diff
changeset
|
44 #endif |
8860 | 45 |
46 static int pointer_grabbed; | |
47 static XEvent menu_post_event; | |
5626 | 48 |
9746
49e984bf6689
(xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents:
9700
diff
changeset
|
49 XFontStruct *xlwmenu_default_font; |
49e984bf6689
(xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents:
9700
diff
changeset
|
50 |
5626 | 51 static char |
52 xlwMenuTranslations [] = | |
13899
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
53 "<BtnDown>: start()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
54 <Motion>: drag()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
55 <BtnUp>: select()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
56 <Key>Shift_L: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
57 <Key>Shift_R: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
58 <Key>Meta_L: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
59 <Key>Meta_R: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
60 <Key>Control_L: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
61 <Key>Control_R: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
62 <Key>Hyper_L: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
63 <Key>Hyper_R: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
64 <Key>Super_L: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
65 <Key>Super_R: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
66 <Key>Alt_L: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
67 <Key>Alt_R: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
68 <Key>Caps_Lock: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
69 <Key>Shift_Lock: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
70 <KeyUp>Shift_L: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
71 <KeyUp>Shift_R: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
72 <KeyUp>Meta_L: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
73 <KeyUp>Meta_R: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
74 <KeyUp>Control_L: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
75 <KeyUp>Control_R: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
76 <KeyUp>Hyper_L: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
77 <KeyUp>Hyper_R: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
78 <KeyUp>Super_L: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
79 <KeyUp>Super_R: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
80 <KeyUp>Alt_L: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
81 <KeyUp>Alt_R: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
82 <KeyUp>Caps_Lock: nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
83 <KeyUp>Shift_Lock:nothing()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
84 <Key>: key()\n\ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
85 <KeyUp>: key()\n\ |
5626 | 86 "; |
87 | |
88 #define offset(field) XtOffset(XlwMenuWidget, field) | |
89 static XtResource | |
90 xlwMenuResources[] = | |
91 { | |
92 {XtNfont, XtCFont, XtRFontStruct, sizeof(XFontStruct *), | |
93 offset(menu.font),XtRString, "XtDefaultFont"}, | |
94 {XtNforeground, XtCForeground, XtRPixel, sizeof(Pixel), | |
95 offset(menu.foreground), XtRString, "XtDefaultForeground"}, | |
96 {XtNbuttonForeground, XtCButtonForeground, XtRPixel, sizeof(Pixel), | |
97 offset(menu.button_foreground), XtRString, "XtDefaultForeground"}, | |
98 {XtNmargin, XtCMargin, XtRDimension, sizeof(Dimension), | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
99 offset(menu.margin), XtRImmediate, (XtPointer) 4}, |
5626 | 100 {XtNhorizontalSpacing, XtCMargin, XtRDimension, sizeof(Dimension), |
101 offset(menu.horizontal_spacing), XtRImmediate, (XtPointer)3}, | |
102 {XtNverticalSpacing, XtCMargin, XtRDimension, sizeof(Dimension), | |
103 offset(menu.vertical_spacing), XtRImmediate, (XtPointer)1}, | |
104 {XtNarrowSpacing, XtCMargin, XtRDimension, sizeof(Dimension), | |
105 offset(menu.arrow_spacing), XtRImmediate, (XtPointer)10}, | |
106 | |
8860 | 107 {XmNshadowThickness, XmCShadowThickness, XtRDimension, |
5626 | 108 sizeof (Dimension), offset (menu.shadow_thickness), |
109 XtRImmediate, (XtPointer) 2}, | |
110 {XmNtopShadowColor, XmCTopShadowColor, XtRPixel, sizeof (Pixel), | |
111 offset (menu.top_shadow_color), XtRImmediate, (XtPointer)-1}, | |
112 {XmNbottomShadowColor, XmCBottomShadowColor, XtRPixel, sizeof (Pixel), | |
113 offset (menu.bottom_shadow_color), XtRImmediate, (XtPointer)-1}, | |
114 {XmNtopShadowPixmap, XmCTopShadowPixmap, XtRPixmap, sizeof (Pixmap), | |
115 offset (menu.top_shadow_pixmap), XtRImmediate, (XtPointer)None}, | |
116 {XmNbottomShadowPixmap, XmCBottomShadowPixmap, XtRPixmap, sizeof (Pixmap), | |
117 offset (menu.bottom_shadow_pixmap), XtRImmediate, (XtPointer)None}, | |
118 | |
119 {XtNopen, XtCCallback, XtRCallback, sizeof(XtPointer), | |
120 offset(menu.open), XtRCallback, (XtPointer)NULL}, | |
121 {XtNselect, XtCCallback, XtRCallback, sizeof(XtPointer), | |
122 offset(menu.select), XtRCallback, (XtPointer)NULL}, | |
27338
58f8eee82765
(xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
123 {XtNhighlightCallback, XtCCallback, XtRCallback, sizeof(XtPointer), |
58f8eee82765
(xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
124 offset(menu.highlight), XtRCallback, (XtPointer)NULL}, |
5626 | 125 {XtNmenu, XtCMenu, XtRPointer, sizeof(XtPointer), |
126 offset(menu.contents), XtRImmediate, (XtPointer)NULL}, | |
127 {XtNcursor, XtCCursor, XtRCursor, sizeof(Cursor), | |
128 offset(menu.cursor_shape), XtRString, (XtPointer)"right_ptr"}, | |
129 {XtNhorizontal, XtCHorizontal, XtRInt, sizeof(int), | |
130 offset(menu.horizontal), XtRImmediate, (XtPointer)True}, | |
131 }; | |
132 #undef offset | |
133 | |
134 static Boolean XlwMenuSetValues(); | |
135 static void XlwMenuRealize(); | |
136 static void XlwMenuRedisplay(); | |
137 static void XlwMenuResize(); | |
138 static void XlwMenuInitialize(); | |
139 static void XlwMenuRedisplay(); | |
140 static void XlwMenuDestroy(); | |
141 static void XlwMenuClassInitialize(); | |
142 static void Start(); | |
143 static void Drag(); | |
144 static void Select(); | |
13899
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
145 static void Key(); |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
146 static void Nothing(); |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
147 static int separator_height (); |
5626 | 148 |
149 static XtActionsRec | |
150 xlwMenuActionsList [] = | |
151 { | |
152 {"start", Start}, | |
153 {"drag", Drag}, | |
154 {"select", Select}, | |
13899
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
155 {"key", Key}, |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
156 {"nothing", Nothing}, |
5626 | 157 }; |
158 | |
159 #define SuperClass ((CoreWidgetClass)&coreClassRec) | |
160 | |
161 XlwMenuClassRec xlwMenuClassRec = | |
162 { | |
163 { /* CoreClass fields initialization */ | |
164 (WidgetClass) SuperClass, /* superclass */ | |
165 "XlwMenu", /* class_name */ | |
166 sizeof(XlwMenuRec), /* size */ | |
167 XlwMenuClassInitialize, /* class_initialize */ | |
168 NULL, /* class_part_initialize */ | |
169 FALSE, /* class_inited */ | |
170 XlwMenuInitialize, /* initialize */ | |
171 NULL, /* initialize_hook */ | |
172 XlwMenuRealize, /* realize */ | |
173 xlwMenuActionsList, /* actions */ | |
174 XtNumber(xlwMenuActionsList), /* num_actions */ | |
175 xlwMenuResources, /* resources */ | |
176 XtNumber(xlwMenuResources), /* resource_count */ | |
177 NULLQUARK, /* xrm_class */ | |
178 TRUE, /* compress_motion */ | |
179 TRUE, /* compress_exposure */ | |
180 TRUE, /* compress_enterleave */ | |
181 FALSE, /* visible_interest */ | |
182 XlwMenuDestroy, /* destroy */ | |
183 XlwMenuResize, /* resize */ | |
184 XlwMenuRedisplay, /* expose */ | |
185 XlwMenuSetValues, /* set_values */ | |
186 NULL, /* set_values_hook */ | |
187 XtInheritSetValuesAlmost, /* set_values_almost */ | |
188 NULL, /* get_values_hook */ | |
189 NULL, /* accept_focus */ | |
190 XtVersion, /* version */ | |
191 NULL, /* callback_private */ | |
192 xlwMenuTranslations, /* tm_table */ | |
193 XtInheritQueryGeometry, /* query_geometry */ | |
194 XtInheritDisplayAccelerator, /* display_accelerator */ | |
195 NULL /* extension */ | |
196 }, /* XlwMenuClass fields initialization */ | |
197 { | |
198 0 /* dummy */ | |
199 }, | |
200 }; | |
201 | |
202 WidgetClass xlwMenuWidgetClass = (WidgetClass) &xlwMenuClassRec; | |
203 | |
8860 | 204 int submenu_destroyed; |
205 | |
206 static int next_release_must_exit; | |
207 | |
5626 | 208 /* Utilities */ |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
209 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
210 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
211 /* 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
|
212 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
213 static void |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
214 abort_gracefully (w) |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
215 Widget w; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
216 { |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
217 if (XtIsShell (XtParent (w))) |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
218 XtRemoveGrab (w); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
219 XtUngrabPointer (w, CurrentTime); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
220 abort (); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
221 } |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
222 |
5626 | 223 static void |
8860 | 224 push_new_stack (mw, val) |
225 XlwMenuWidget mw; | |
226 widget_value* val; | |
5626 | 227 { |
228 if (!mw->menu.new_stack) | |
229 { | |
230 mw->menu.new_stack_length = 10; | |
231 mw->menu.new_stack = | |
232 (widget_value**)XtCalloc (mw->menu.new_stack_length, | |
233 sizeof (widget_value*)); | |
234 } | |
235 else if (mw->menu.new_depth == mw->menu.new_stack_length) | |
236 { | |
237 mw->menu.new_stack_length *= 2; | |
238 mw->menu.new_stack = | |
239 (widget_value**)XtRealloc ((char*)mw->menu.new_stack, | |
240 mw->menu.new_stack_length * sizeof (widget_value*)); | |
241 } | |
242 mw->menu.new_stack [mw->menu.new_depth++] = val; | |
243 } | |
244 | |
245 static void | |
8860 | 246 pop_new_stack_if_no_contents (mw) |
247 XlwMenuWidget mw; | |
5626 | 248 { |
249 if (mw->menu.new_depth) | |
250 { | |
251 if (!mw->menu.new_stack [mw->menu.new_depth - 1]->contents) | |
252 mw->menu.new_depth -= 1; | |
253 } | |
254 } | |
255 | |
256 static void | |
8860 | 257 make_old_stack_space (mw, n) |
258 XlwMenuWidget mw; | |
259 int n; | |
5626 | 260 { |
261 if (!mw->menu.old_stack) | |
262 { | |
263 mw->menu.old_stack_length = 10; | |
264 mw->menu.old_stack = | |
265 (widget_value**)XtCalloc (mw->menu.old_stack_length, | |
266 sizeof (widget_value*)); | |
267 } | |
268 else if (mw->menu.old_stack_length < n) | |
269 { | |
270 mw->menu.old_stack_length *= 2; | |
271 mw->menu.old_stack = | |
272 (widget_value**)XtRealloc ((char*)mw->menu.old_stack, | |
273 mw->menu.old_stack_length * sizeof (widget_value*)); | |
274 } | |
275 } | |
276 | |
277 /* Size code */ | |
8860 | 278 int |
279 string_width (mw, s) | |
280 XlwMenuWidget mw; | |
281 char *s; | |
5626 | 282 { |
283 XCharStruct xcs; | |
284 int drop; | |
285 | |
286 XTextExtents (mw->menu.font, s, strlen (s), &drop, &drop, &drop, &xcs); | |
287 return xcs.width; | |
288 } | |
289 | |
290 static int | |
8860 | 291 arrow_width (mw) |
292 XlwMenuWidget mw; | |
5626 | 293 { |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
294 return (mw->menu.font->ascent * 3/4) | 1; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
295 } |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
296 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
297 /* 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
|
298 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
299 static int |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
300 toggle_button_width (mw) |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
301 XlwMenuWidget mw; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
302 { |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
303 return ((mw->menu.font->ascent + mw->menu.font->descent) * 2 / 3) | 1; |
5626 | 304 } |
305 | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
306 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
307 /* 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
|
308 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
309 static int |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
310 radio_button_width (mw) |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
311 XlwMenuWidget mw; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
312 { |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
313 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
|
314 } |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
315 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
316 |
5626 | 317 static XtResource |
318 nameResource[] = | |
319 { | |
320 {"labelString", "LabelString", XtRString, sizeof(String), | |
321 0, XtRImmediate, 0}, | |
322 }; | |
323 | |
324 static char* | |
8860 | 325 resource_widget_value (mw, val) |
326 XlwMenuWidget mw; | |
327 widget_value *val; | |
5626 | 328 { |
329 if (!val->toolkit_data) | |
330 { | |
331 char* resourced_name = NULL; | |
332 char* complete_name; | |
333 XtGetSubresources ((Widget) mw, | |
334 (XtPointer) &resourced_name, | |
335 val->name, val->name, | |
336 nameResource, 1, NULL, 0); | |
337 if (!resourced_name) | |
338 resourced_name = val->name; | |
339 if (!val->value) | |
5654
f84dac6453db
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
340 { |
f84dac6453db
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
341 complete_name = (char *) XtMalloc (strlen (resourced_name) + 1); |
f84dac6453db
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
342 strcpy (complete_name, resourced_name); |
f84dac6453db
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
343 } |
5626 | 344 else |
345 { | |
346 int complete_length = | |
347 strlen (resourced_name) + strlen (val->value) + 2; | |
348 complete_name = XtMalloc (complete_length); | |
349 *complete_name = 0; | |
350 strcat (complete_name, resourced_name); | |
351 strcat (complete_name, " "); | |
352 strcat (complete_name, val->value); | |
353 } | |
354 | |
355 val->toolkit_data = complete_name; | |
356 val->free_toolkit_data = True; | |
357 } | |
358 return (char*)val->toolkit_data; | |
359 } | |
360 | |
361 /* Returns the sizes of an item */ | |
362 static void | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
363 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
|
364 height) |
8860 | 365 XlwMenuWidget mw; |
366 widget_value* val; | |
367 int horizontal_p; | |
368 int* label_width; | |
369 int* rest_width; | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
370 int* button_width; |
8860 | 371 int* height; |
5626 | 372 { |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
373 enum menu_separator separator; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
374 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
375 if (lw_separator_p (val->name, &separator, 0)) |
5626 | 376 { |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
377 *height = separator_height (separator); |
5626 | 378 *label_width = 1; |
379 *rest_width = 0; | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
380 *button_width = 0; |
5626 | 381 } |
382 else | |
383 { | |
384 *height = | |
385 mw->menu.font->ascent + mw->menu.font->descent | |
386 + 2 * mw->menu.vertical_spacing + 2 * mw->menu.shadow_thickness; | |
387 | |
388 *label_width = | |
389 string_width (mw, resource_widget_value (mw, val)) | |
390 + mw->menu.horizontal_spacing + mw->menu.shadow_thickness; | |
391 | |
392 *rest_width = mw->menu.horizontal_spacing + mw->menu.shadow_thickness; | |
393 if (!horizontal_p) | |
394 { | |
395 if (val->contents) | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
396 /* Add width of the arrow displayed for submenus. */ |
5626 | 397 *rest_width += arrow_width (mw) + mw->menu.arrow_spacing; |
398 else if (val->key) | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
399 /* 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
|
400 *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
|
401 + mw->menu.arrow_spacing); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
402 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
403 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
|
404 *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
|
405 + mw->menu.horizontal_spacing); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
406 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
|
407 *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
|
408 + mw->menu.horizontal_spacing); |
5626 | 409 } |
410 } | |
411 } | |
412 | |
413 static void | |
8860 | 414 size_menu (mw, level) |
415 XlwMenuWidget mw; | |
416 int level; | |
5626 | 417 { |
11461
65c12e57f119
(size_menu): Make height and label_width unsigned.
Richard M. Stallman <rms@gnu.org>
parents:
9746
diff
changeset
|
418 unsigned int label_width = 0; |
5626 | 419 int rest_width = 0; |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
420 int button_width = 0; |
5626 | 421 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
|
422 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
|
423 unsigned int height = 0; |
5626 | 424 int horizontal_p = mw->menu.horizontal && (level == 0); |
425 widget_value* val; | |
426 window_state* ws; | |
427 | |
428 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
|
429 abort_gracefully ((Widget) mw); |
5626 | 430 |
431 ws = &mw->menu.windows [level]; | |
432 ws->width = 0; | |
433 ws->height = 0; | |
434 ws->label_width = 0; | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
435 ws->button_width = 0; |
5626 | 436 |
437 for (val = mw->menu.old_stack [level]->contents; val; val = val->next) | |
438 { | |
439 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
|
440 &button_width, &height); |
5626 | 441 if (horizontal_p) |
442 { | |
443 ws->width += label_width + rest_width; | |
444 if (height > ws->height) | |
445 ws->height = height; | |
446 } | |
447 else | |
448 { | |
449 if (label_width > ws->label_width) | |
450 ws->label_width = label_width; | |
451 if (rest_width > max_rest_width) | |
452 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
|
453 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
|
454 max_button_width = button_width; |
5626 | 455 ws->height += height; |
456 } | |
457 } | |
458 | |
459 if (horizontal_p) | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
460 ws->label_width = ws->button_width = 0; |
5626 | 461 else |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
462 { |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
463 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
|
464 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
|
465 } |
5626 | 466 |
467 ws->width += 2 * mw->menu.shadow_thickness; | |
468 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
|
469 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
470 if (horizontal_p) |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
471 { |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
472 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
|
473 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
|
474 } |
5626 | 475 } |
476 | |
477 | |
478 /* Display code */ | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
479 |
5626 | 480 static void |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
481 draw_arrow (mw, window, gc, x, y, width, down_p) |
8860 | 482 XlwMenuWidget mw; |
483 Window window; | |
484 GC gc; | |
485 int x; | |
486 int y; | |
487 int width; | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
488 int down_p; |
5626 | 489 { |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
490 Display *dpy = XtDisplay (mw); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
491 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
|
492 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
|
493 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
|
494 int height = width; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
495 XPoint pt[10]; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
496 /* alpha = atan (0.5) |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
497 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
|
498 double factor = 1.62; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
499 int thickness2 = thickness * factor; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
500 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
501 y += (mw->menu.font->ascent + mw->menu.font->descent - height) / 2; |
5626 | 502 |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
503 if (down_p) |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
504 { |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
505 GC temp; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
506 temp = top_gc; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
507 top_gc = bottom_gc; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
508 bottom_gc = temp; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
509 } |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
510 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
511 pt[0].x = x; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
512 pt[0].y = y + height; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
513 pt[1].x = x + thickness; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
514 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
|
515 pt[2].x = x + thickness2; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
516 pt[2].y = y + thickness2; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
517 pt[3].x = x; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
518 pt[3].y = y; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
519 XFillPolygon (dpy, window, top_gc, pt, 4, Convex, CoordModeOrigin); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
520 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
521 pt[0].x = x; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
522 pt[0].y = y; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
523 pt[1].x = x + thickness; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
524 pt[1].y = y + thickness2; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
525 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
|
526 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
|
527 pt[3].x = x + width; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
528 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
|
529 XFillPolygon (dpy, window, top_gc, pt, 4, Convex, CoordModeOrigin); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
530 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
531 pt[0].x = x; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
532 pt[0].y = y + height; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
533 pt[1].x = x + thickness; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
534 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
|
535 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
|
536 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
|
537 pt[3].x = x + width; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
538 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
|
539 XFillPolygon (dpy, window, bottom_gc, pt, 4, Convex, CoordModeOrigin); |
5626 | 540 } |
541 | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
542 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
543 |
5626 | 544 static void |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
545 draw_shadow_rectangle (mw, window, x, y, width, height, erase_p, down_p) |
8860 | 546 XlwMenuWidget mw; |
547 Window window; | |
548 int x; | |
549 int y; | |
550 int width; | |
551 int height; | |
552 int erase_p; | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
553 int down_p; |
5626 | 554 { |
555 Display *dpy = XtDisplay (mw); | |
556 GC top_gc = !erase_p ? mw->menu.shadow_top_gc : mw->menu.background_gc; | |
557 GC bottom_gc = !erase_p ? mw->menu.shadow_bottom_gc : mw->menu.background_gc; | |
558 int thickness = mw->menu.shadow_thickness; | |
559 XPoint points [4]; | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
560 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
561 if (!erase_p && down_p) |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
562 { |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
563 GC temp; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
564 temp = top_gc; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
565 top_gc = bottom_gc; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
566 bottom_gc = temp; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
567 } |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
568 |
5626 | 569 points [0].x = x; |
570 points [0].y = y; | |
571 points [1].x = x + width; | |
572 points [1].y = y; | |
573 points [2].x = x + width - thickness; | |
574 points [2].y = y + thickness; | |
575 points [3].x = x; | |
576 points [3].y = y + thickness; | |
577 XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin); | |
578 points [0].x = x; | |
579 points [0].y = y + thickness; | |
580 points [1].x = x; | |
581 points [1].y = y + height; | |
582 points [2].x = x + thickness; | |
583 points [2].y = y + height - thickness; | |
584 points [3].x = x + thickness; | |
585 points [3].y = y + thickness; | |
586 XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin); | |
587 points [0].x = x + width; | |
588 points [0].y = y; | |
589 points [1].x = x + width - thickness; | |
590 points [1].y = y + thickness; | |
591 points [2].x = x + width - thickness; | |
592 points [2].y = y + height - thickness; | |
593 points [3].x = x + width; | |
594 points [3].y = y + height - thickness; | |
595 XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin); | |
596 points [0].x = x; | |
597 points [0].y = y + height; | |
598 points [1].x = x + width; | |
599 points [1].y = y + height; | |
600 points [2].x = x + width; | |
601 points [2].y = y + height - thickness; | |
602 points [3].x = x + thickness; | |
603 points [3].y = y + height - thickness; | |
604 XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin); | |
605 } | |
606 | |
607 | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
608 static void |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
609 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
|
610 XlwMenuWidget mw; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
611 Window window; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
612 int x; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
613 int y; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
614 int width; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
615 int height; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
616 int erase_p; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
617 int down_p; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
618 { |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
619 Display *dpy = XtDisplay (mw); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
620 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
|
621 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
|
622 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
|
623 XPoint points [4]; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
624 double sqrt2 = 1.4142; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
625 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
626 if (!erase_p && down_p) |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
627 { |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
628 GC temp; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
629 temp = top_gc; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
630 top_gc = bottom_gc; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
631 bottom_gc = temp; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
632 } |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
633 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
634 points [0].x = x; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
635 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
|
636 points [1].x = x + thickness; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
637 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
|
638 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
|
639 points [2].y = y + thickness; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
640 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
|
641 points [3].y = y; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
642 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
|
643 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
|
644 points [0].y = y; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
645 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
|
646 points [1].y = y + thickness; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
647 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
|
648 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
|
649 points [3].x = x + width; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
650 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
|
651 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
|
652 points [0].x = x; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
653 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
|
654 points [1].x = x + thickness; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
655 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
|
656 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
|
657 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
|
658 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
|
659 points [3].y = y + height; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
660 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
|
661 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
|
662 points [0].y = y + height; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
663 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
|
664 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
|
665 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
|
666 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
|
667 points [3].x = x + width; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
668 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
|
669 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
|
670 } |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
671 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
672 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
673 /* 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
|
674 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
|
675 toggle button is selected. */ |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
676 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
677 static void |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
678 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
|
679 XlwMenuWidget mw; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
680 Window window; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
681 int x, y, selected_p; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
682 { |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
683 int width, height; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
684 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
685 width = toggle_button_width (mw); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
686 height = width; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
687 x += mw->menu.horizontal_spacing; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
688 y += (mw->menu.font->ascent - height) / 2; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
689 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
|
690 } |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
691 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
692 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
693 /* 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
|
694 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
|
695 toggle button is selected. */ |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
696 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
697 static void |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
698 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
|
699 XlwMenuWidget mw; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
700 Window window; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
701 int x, y, selected_p; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
702 { |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
703 int width, height; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
704 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
705 width = radio_button_width (mw); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
706 height = width; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
707 x += mw->menu.horizontal_spacing; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
708 y += (mw->menu.font->ascent - height) / 2; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
709 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
|
710 } |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
711 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
712 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
713 /* 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
|
714 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
|
715 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
|
716 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
717 static void |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
718 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
|
719 XlwMenuWidget mw; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
720 Window window; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
721 int x, y, width; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
722 enum menu_separator type; |
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 Display *dpy = XtDisplay (mw); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
725 XGCValues xgcv; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
726 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
727 switch (type) |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
728 { |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
729 case SEPARATOR_NO_LINE: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
730 break; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
731 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
732 case SEPARATOR_SINGLE_LINE: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
733 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
|
734 x, y, x + width, y); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
735 break; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
736 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
737 case SEPARATOR_DOUBLE_LINE: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
738 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
|
739 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
|
740 break; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
741 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
742 case SEPARATOR_SINGLE_DASHED_LINE: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
743 xgcv.line_style = LineOnOffDash; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
744 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
|
745 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
|
746 x, y, x + width, y); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
747 xgcv.line_style = LineSolid; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
748 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
|
749 break; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
750 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
751 case SEPARATOR_DOUBLE_DASHED_LINE: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
752 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
|
753 SEPARATOR_SINGLE_DASHED_LINE); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
754 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
|
755 SEPARATOR_SINGLE_DASHED_LINE); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
756 break; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
757 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
758 case SEPARATOR_SHADOW_ETCHED_IN: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
759 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
|
760 x, y, x + width, y); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
761 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
|
762 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
|
763 break; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
764 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
765 case SEPARATOR_SHADOW_ETCHED_OUT: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
766 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
|
767 x, y, x + width, y); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
768 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
|
769 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
|
770 break; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
771 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
772 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
|
773 xgcv.line_style = LineOnOffDash; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
774 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
|
775 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
|
776 draw_separator (mw, window, x, y, SEPARATOR_SHADOW_ETCHED_IN); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
777 xgcv.line_style = LineSolid; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
778 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
|
779 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
|
780 break; |
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 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
|
783 xgcv.line_style = LineOnOffDash; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
784 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
|
785 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
|
786 draw_separator (mw, window, x, y, SEPARATOR_SHADOW_ETCHED_OUT); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
787 xgcv.line_style = LineSolid; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
788 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
|
789 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
|
790 break; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
791 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
792 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
|
793 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
|
794 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
|
795 break; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
796 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
797 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
|
798 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
|
799 SEPARATOR_SHADOW_ETCHED_OUT); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
800 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
|
801 SEPARATOR_SHADOW_ETCHED_OUT); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
802 break; |
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 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
|
805 xgcv.line_style = LineOnOffDash; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
806 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
|
807 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
|
808 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
|
809 SEPARATOR_SHADOW_DOUBLE_ETCHED_IN); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
810 xgcv.line_style = LineSolid; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
811 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
|
812 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
|
813 break; |
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 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
|
816 xgcv.line_style = LineOnOffDash; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
817 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
|
818 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
|
819 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
|
820 SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
821 xgcv.line_style = LineSolid; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
822 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
|
823 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
|
824 break; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
825 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
826 default: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
827 abort (); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
828 } |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
829 } |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
830 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
831 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
832 /* 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
|
833 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
834 static int |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
835 separator_height (separator) |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
836 enum menu_separator separator; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
837 { |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
838 switch (separator) |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
839 { |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
840 case SEPARATOR_NO_LINE: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
841 return 2; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
842 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
843 case SEPARATOR_SINGLE_LINE: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
844 case SEPARATOR_SINGLE_DASHED_LINE: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
845 return 1; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
846 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
847 case SEPARATOR_DOUBLE_LINE: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
848 case SEPARATOR_DOUBLE_DASHED_LINE: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
849 return 3; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
850 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
851 case SEPARATOR_SHADOW_ETCHED_IN: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
852 case SEPARATOR_SHADOW_ETCHED_OUT: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
853 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
|
854 case SEPARATOR_SHADOW_ETCHED_OUT_DASH: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
855 return 2; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
856 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
857 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
|
858 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
|
859 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
|
860 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
|
861 return 5; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
862 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
863 default: |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
864 abort (); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
865 } |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
866 } |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
867 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
868 |
5626 | 869 /* 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
|
870 the menu item was. */ |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
871 |
5626 | 872 static void |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
873 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
|
874 just_compute_p) |
8860 | 875 XlwMenuWidget mw; |
876 widget_value* val; | |
877 window_state* ws; | |
878 XPoint* where; | |
879 Boolean highlighted_p; | |
880 Boolean horizontal_p; | |
881 Boolean just_compute_p; | |
5626 | 882 { |
883 GC deco_gc; | |
884 GC text_gc; | |
885 int font_ascent = mw->menu.font->ascent; | |
886 int font_descent = mw->menu.font->descent; | |
887 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
|
888 int margin = mw->menu.margin; |
5626 | 889 int h_spacing = mw->menu.horizontal_spacing; |
890 int v_spacing = mw->menu.vertical_spacing; | |
891 int label_width; | |
892 int rest_width; | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
893 int button_width; |
5626 | 894 int height; |
895 int width; | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
896 enum menu_separator separator; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
897 int separator_p = lw_separator_p (val->name, &separator, 0); |
5626 | 898 |
899 /* 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
|
900 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
|
901 &button_width, &height); |
5626 | 902 |
903 if (horizontal_p) | |
904 width = label_width + rest_width; | |
905 else | |
906 { | |
907 label_width = ws->label_width; | |
908 width = ws->width - 2 * shadow; | |
909 } | |
910 | |
911 /* Only highlight an enabled item that has a callback. */ | |
912 if (highlighted_p) | |
913 if (!val->enabled || !(val->call_data || val->contents)) | |
914 highlighted_p = 0; | |
915 | |
916 /* do the drawing. */ | |
917 if (!just_compute_p) | |
918 { | |
919 /* Add the shadow border of the containing menu */ | |
920 int x = where->x + shadow; | |
921 int y = where->y + shadow; | |
922 | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
923 if (horizontal_p) |
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 x += margin; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
926 y += margin; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
927 } |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
928 |
5626 | 929 /* pick the foreground and background GC. */ |
930 if (val->enabled) | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
931 text_gc = mw->menu.foreground_gc; |
5626 | 932 else |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
933 text_gc = mw->menu.inactive_gc; |
5626 | 934 deco_gc = mw->menu.foreground_gc; |
935 | |
936 if (separator_p) | |
937 { | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
938 draw_separator (mw, ws->window, x, y, width, separator); |
5626 | 939 } |
940 else | |
941 { | |
9227
968bb25ec1af
(display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents:
9092
diff
changeset
|
942 int x_offset = x + h_spacing + shadow; |
5626 | 943 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
|
944 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
|
945 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
|
946 |
968bb25ec1af
(display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents:
9092
diff
changeset
|
947 /* 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
|
948 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
|
949 { |
968bb25ec1af
(display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents:
9092
diff
changeset
|
950 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
|
951 |
968bb25ec1af
(display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents:
9092
diff
changeset
|
952 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
|
953 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
|
954 } |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
955 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
|
956 x_offset += ws->button_width; |
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 |
9227
968bb25ec1af
(display_menu_item): Add support for displaying the title in pop up menus.
Paul Reilly <pmr@pajato.com>
parents:
9092
diff
changeset
|
959 XDrawString (XtDisplay (mw), ws->window, text_gc, x_offset, |
5626 | 960 y + v_spacing + shadow + font_ascent, |
961 display_string, strlen (display_string)); | |
962 | |
963 if (!horizontal_p) | |
964 { | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
965 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
|
966 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
|
967 val->selected); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
968 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
|
969 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
|
970 val->selected); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
971 |
5626 | 972 if (val->contents) |
973 { | |
974 int a_w = arrow_width (mw); | |
975 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
|
976 x + width - a_w |
8860 | 977 - mw->menu.horizontal_spacing |
978 - 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 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
|
980 highlighted_p); |
5626 | 981 } |
982 else if (val->key) | |
983 { | |
984 XDrawString (XtDisplay (mw), ws->window, text_gc, | |
985 x + label_width + mw->menu.arrow_spacing, | |
986 y + v_spacing + shadow + font_ascent, | |
987 val->key, strlen (val->key)); | |
988 } | |
989 } | |
8860 | 990 else |
991 { | |
992 XDrawRectangle (XtDisplay (mw), ws->window, | |
993 mw->menu.background_gc, | |
994 x + shadow, y + shadow, | |
995 label_width + h_spacing - 1, | |
996 font_ascent + font_descent + 2 * v_spacing - 1); | |
997 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
|
998 True, False); |
8860 | 999 } |
5626 | 1000 |
1001 if (highlighted_p) | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
1002 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
|
1003 False); |
5626 | 1004 } |
1005 } | |
1006 | |
1007 where->x += width; | |
1008 where->y += height; | |
1009 } | |
1010 | |
1011 static void | |
8860 | 1012 display_menu (mw, level, just_compute_p, highlighted_pos, hit, hit_return, |
1013 this, that) | |
1014 XlwMenuWidget mw; | |
1015 int level; | |
1016 Boolean just_compute_p; | |
1017 XPoint* highlighted_pos; | |
1018 XPoint* hit; | |
1019 widget_value** hit_return; | |
1020 widget_value* this; | |
1021 widget_value* that; | |
5626 | 1022 { |
1023 widget_value* val; | |
1024 widget_value* following_item; | |
1025 window_state* ws; | |
1026 XPoint where; | |
1027 int horizontal_p = mw->menu.horizontal && (level == 0); | |
1028 int highlighted_p; | |
1029 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
|
1030 /* 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
|
1031 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
|
1032 int no_return = 0; |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
1033 enum menu_separator separator; |
5626 | 1034 |
1035 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
|
1036 abort_gracefully ((Widget) mw); |
5626 | 1037 |
1038 if (level < mw->menu.old_depth - 1) | |
1039 following_item = mw->menu.old_stack [level + 1]; | |
1040 else | |
1041 following_item = NULL; | |
1042 | |
1043 if (hit) | |
1044 *hit_return = NULL; | |
1045 | |
1046 where.x = 0; | |
1047 where.y = 0; | |
1048 | |
1049 ws = &mw->menu.windows [level]; | |
1050 for (val = mw->menu.old_stack [level]->contents; val; val = val->next) | |
1051 { | |
1052 highlighted_p = val == following_item; | |
1053 if (highlighted_p && highlighted_pos) | |
1054 { | |
1055 if (horizontal_p) | |
1056 highlighted_pos->x = where.x; | |
1057 else | |
1058 highlighted_pos->y = where.y; | |
1059 } | |
1060 | |
1061 just_compute_this_one_p = | |
1062 just_compute_p || ((this || that) && val != this && val != that); | |
1063 | |
1064 display_menu_item (mw, val, ws, &where, highlighted_p, horizontal_p, | |
1065 just_compute_this_one_p); | |
1066 | |
1067 if (highlighted_p && highlighted_pos) | |
1068 { | |
1069 if (horizontal_p) | |
1070 highlighted_pos->y = where.y; | |
1071 else | |
1072 highlighted_pos->x = where.x; | |
1073 } | |
1074 | |
1075 if (hit | |
1076 && !*hit_return | |
1077 && (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
|
1078 && !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
|
1079 && !no_return) |
c3bfd473a4d3
(display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents:
17622
diff
changeset
|
1080 { |
c3bfd473a4d3
(display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents:
17622
diff
changeset
|
1081 if (val->enabled) |
c3bfd473a4d3
(display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents:
17622
diff
changeset
|
1082 *hit_return = val; |
c3bfd473a4d3
(display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents:
17622
diff
changeset
|
1083 else |
c3bfd473a4d3
(display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents:
17622
diff
changeset
|
1084 no_return = 1; |
c3bfd473a4d3
(display_menu): If an item is disabled,
Richard M. Stallman <rms@gnu.org>
parents:
17622
diff
changeset
|
1085 } |
5626 | 1086 |
1087 if (horizontal_p) | |
1088 where.y = 0; | |
1089 else | |
1090 where.x = 0; | |
1091 } | |
1092 | |
1093 if (!just_compute_p) | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
1094 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
|
1095 False, False); |
5626 | 1096 } |
1097 | |
1098 /* Motion code */ | |
1099 static void | |
8860 | 1100 set_new_state (mw, val, level) |
1101 XlwMenuWidget mw; | |
1102 widget_value* val; | |
1103 int level; | |
5626 | 1104 { |
1105 int i; | |
1106 | |
1107 mw->menu.new_depth = 0; | |
1108 for (i = 0; i < level; i++) | |
1109 push_new_stack (mw, mw->menu.old_stack [i]); | |
1110 push_new_stack (mw, val); | |
1111 } | |
1112 | |
1113 static void | |
8860 | 1114 make_windows_if_needed (mw, n) |
1115 XlwMenuWidget mw; | |
1116 int n; | |
5626 | 1117 { |
1118 int i; | |
1119 int start_at; | |
1120 XSetWindowAttributes xswa; | |
1121 int mask; | |
1122 Window root = RootWindowOfScreen (DefaultScreenOfDisplay (XtDisplay (mw))); | |
1123 window_state* windows; | |
1124 | |
1125 if (mw->menu.windows_length >= n) | |
1126 return; | |
1127 | |
1128 xswa.save_under = True; | |
1129 xswa.override_redirect = True; | |
1130 xswa.background_pixel = mw->core.background_pixel; | |
1131 xswa.border_pixel = mw->core.border_pixel; | |
1132 xswa.event_mask = | |
8860 | 1133 ExposureMask | PointerMotionMask | PointerMotionHintMask |
5626 | 1134 | ButtonReleaseMask | ButtonPressMask; |
1135 xswa.cursor = mw->menu.cursor_shape; | |
1136 mask = CWSaveUnder | CWOverrideRedirect | CWBackPixel | CWBorderPixel | |
1137 | CWEventMask | CWCursor; | |
1138 | |
1139 if (!mw->menu.windows) | |
1140 { | |
1141 mw->menu.windows = | |
1142 (window_state*)XtMalloc (n * sizeof (window_state)); | |
1143 start_at = 0; | |
1144 } | |
1145 else | |
1146 { | |
1147 mw->menu.windows = | |
1148 (window_state*)XtRealloc ((char*)mw->menu.windows, | |
1149 n * sizeof (window_state)); | |
1150 start_at = mw->menu.windows_length; | |
1151 } | |
1152 mw->menu.windows_length = n; | |
1153 | |
1154 windows = mw->menu.windows; | |
1155 | |
1156 for (i = start_at; i < n; i++) | |
1157 { | |
1158 windows [i].x = 0; | |
1159 windows [i].y = 0; | |
1160 windows [i].width = 1; | |
1161 windows [i].height = 1; | |
1162 windows [i].window = | |
1163 XCreateWindow (XtDisplay (mw), root, 0, 0, 1, 1, | |
1164 0, 0, CopyFromParent, CopyFromParent, mask, &xswa); | |
1165 } | |
1166 } | |
1167 | |
1168 /* Make the window fit in the screen */ | |
1169 static void | |
8860 | 1170 fit_to_screen (mw, ws, previous_ws, horizontal_p) |
1171 XlwMenuWidget mw; | |
1172 window_state* ws; | |
1173 window_state* previous_ws; | |
1174 Boolean horizontal_p; | |
5626 | 1175 { |
11461
65c12e57f119
(size_menu): Make height and label_width unsigned.
Richard M. Stallman <rms@gnu.org>
parents:
9746
diff
changeset
|
1176 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
|
1177 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
|
1178 /* 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
|
1179 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
|
1180 int horizontal_overlap = 0; |
5626 | 1181 |
1182 if (ws->x < 0) | |
1183 ws->x = 0; | |
1184 else if (ws->x + ws->width > screen_width) | |
1185 { | |
1186 if (!horizontal_p) | |
1187 ws->x = previous_ws->x - ws->width; | |
1188 else | |
1189 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
|
1190 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
|
1191 { |
5aabcff9fdd3
(enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents:
15742
diff
changeset
|
1192 ws->x = 0; |
5aabcff9fdd3
(enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents:
15742
diff
changeset
|
1193 horizontal_overlap = 1; |
5aabcff9fdd3
(enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents:
15742
diff
changeset
|
1194 } |
5626 | 1195 } |
16917
5aabcff9fdd3
(enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents:
15742
diff
changeset
|
1196 /* 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
|
1197 if (horizontal_overlap |
5aabcff9fdd3
(enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents:
15742
diff
changeset
|
1198 && 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
|
1199 && 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
|
1200 { |
5aabcff9fdd3
(enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents:
15742
diff
changeset
|
1201 /* 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
|
1202 if there's room. */ |
5aabcff9fdd3
(enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents:
15742
diff
changeset
|
1203 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
|
1204 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
|
1205 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
|
1206 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
|
1207 } |
5aabcff9fdd3
(enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents:
15742
diff
changeset
|
1208 |
5626 | 1209 if (ws->y < 0) |
1210 ws->y = 0; | |
1211 else if (ws->y + ws->height > screen_height) | |
1212 { | |
1213 if (horizontal_p) | |
1214 ws->y = previous_ws->y - ws->height; | |
1215 else | |
1216 ws->y = screen_height - ws->height; | |
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
|
1217 if (ws->y < 0) |
d954daf0a213
(fit_to_screen): Don't put the menu off the left or top.
Richard M. Stallman <rms@gnu.org>
parents:
9227
diff
changeset
|
1218 ws->y = 0; |
5626 | 1219 } |
1220 } | |
1221 | |
1222 /* Updates old_stack from new_stack and redisplays. */ | |
1223 static void | |
8860 | 1224 remap_menubar (mw) |
1225 XlwMenuWidget mw; | |
5626 | 1226 { |
1227 int i; | |
1228 int last_same; | |
1229 XPoint selection_position; | |
1230 int old_depth = mw->menu.old_depth; | |
1231 int new_depth = mw->menu.new_depth; | |
1232 widget_value** old_stack; | |
1233 widget_value** new_stack; | |
1234 window_state* windows; | |
1235 widget_value* old_selection; | |
1236 widget_value* new_selection; | |
1237 | |
1238 /* Check that enough windows and old_stack are ready. */ | |
1239 make_windows_if_needed (mw, new_depth); | |
1240 make_old_stack_space (mw, new_depth); | |
1241 windows = mw->menu.windows; | |
1242 old_stack = mw->menu.old_stack; | |
1243 new_stack = mw->menu.new_stack; | |
1244 | |
1245 /* compute the last identical different entry */ | |
1246 for (i = 1; i < old_depth && i < new_depth; i++) | |
1247 if (old_stack [i] != new_stack [i]) | |
1248 break; | |
1249 last_same = i - 1; | |
1250 | |
1251 /* Memorize the previously selected item to be able to refresh it */ | |
1252 old_selection = last_same + 1 < old_depth ? old_stack [last_same + 1] : NULL; | |
1253 if (old_selection && !old_selection->enabled) | |
1254 old_selection = NULL; | |
1255 new_selection = last_same + 1 < new_depth ? new_stack [last_same + 1] : NULL; | |
1256 if (new_selection && !new_selection->enabled) | |
1257 new_selection = NULL; | |
1258 | |
27338
58f8eee82765
(xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
1259 /* Call callback when the hightlighted item changes. */ |
58f8eee82765
(xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
1260 if (old_selection || new_selection) |
58f8eee82765
(xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
1261 XtCallCallbackList ((Widget)mw, mw->menu.highlight, |
58f8eee82765
(xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
1262 (XtPointer) new_selection); |
58f8eee82765
(xlwMenuResources): All XtNhighlightCallback.
Gerd Moellmann <gerd@gnu.org>
parents:
26087
diff
changeset
|
1263 |
5626 | 1264 /* updates old_state from new_state. It has to be done now because |
1265 display_menu (called below) uses the old_stack to know what to display. */ | |
1266 for (i = last_same + 1; i < new_depth; i++) | |
1267 old_stack [i] = new_stack [i]; | |
1268 mw->menu.old_depth = new_depth; | |
1269 | |
14018 | 1270 /* refresh the last selection */ |
5626 | 1271 selection_position.x = 0; |
1272 selection_position.y = 0; | |
1273 display_menu (mw, last_same, new_selection == old_selection, | |
1274 &selection_position, NULL, NULL, old_selection, new_selection); | |
1275 | |
16917
5aabcff9fdd3
(enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents:
15742
diff
changeset
|
1276 /* 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
|
1277 for (i = last_same + 1; i < new_depth && new_stack[i]->contents; i++) |
5626 | 1278 { |
16917
5aabcff9fdd3
(enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents:
15742
diff
changeset
|
1279 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
|
1280 window_state *ws = &windows[i]; |
5626 | 1281 |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
1282 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
|
1283 + mw->menu.shadow_thickness); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
1284 if (i == 1) |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
1285 ws->x += mw->menu.margin; |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
1286 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
1287 #if 0 |
5626 | 1288 if (!mw->menu.horizontal || i > 1) |
1289 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
|
1290 #endif |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
1291 |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
1292 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
|
1293 + mw->menu.shadow_thickness); |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
1294 if (i == 1) |
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
1295 ws->y += mw->menu.margin; |
5626 | 1296 |
1297 size_menu (mw, i); | |
1298 | |
1299 fit_to_screen (mw, ws, previous_ws, mw->menu.horizontal && i == 1); | |
1300 | |
1301 XClearWindow (XtDisplay (mw), ws->window); | |
1302 XMoveResizeWindow (XtDisplay (mw), ws->window, ws->x, ws->y, | |
1303 ws->width, ws->height); | |
1304 XMapRaised (XtDisplay (mw), ws->window); | |
1305 display_menu (mw, i, False, &selection_position, NULL, NULL, NULL, NULL); | |
1306 } | |
1307 | |
1308 /* unmap the menus that popped down */ | |
1309 for (i = new_depth - 1; i < old_depth; i++) | |
16917
5aabcff9fdd3
(enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents:
15742
diff
changeset
|
1310 if (i >= new_depth || !new_stack[i]->contents) |
5aabcff9fdd3
(enriched-translations): Add top' and choice' everywhere so that *
Richard M. Stallman <rms@gnu.org>
parents:
15742
diff
changeset
|
1311 XUnmapWindow (XtDisplay (mw), windows[i].window); |
5626 | 1312 } |
1313 | |
1314 static Boolean | |
8860 | 1315 motion_event_is_in_menu (mw, ev, level, relative_pos) |
1316 XlwMenuWidget mw; | |
1317 XMotionEvent* ev; | |
1318 int level; | |
1319 XPoint* relative_pos; | |
5626 | 1320 { |
1321 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
|
1322 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
|
1323 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
|
1324 int y = ws->y + shadow; |
5626 | 1325 relative_pos->x = ev->x_root - x; |
1326 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
|
1327 return (x - shadow < ev->x_root && ev->x_root < x + ws->width |
38172783650b
(motion_event_is_in_menu): Extend the left and
Richard M. Stallman <rms@gnu.org>
parents:
18993
diff
changeset
|
1328 && y - shadow < ev->y_root && ev->y_root < y + ws->height); |
5626 | 1329 } |
1330 | |
1331 static Boolean | |
8860 | 1332 map_event_to_widget_value (mw, ev, val, level) |
1333 XlwMenuWidget mw; | |
1334 XMotionEvent* ev; | |
1335 widget_value** val; | |
1336 int* level; | |
5626 | 1337 { |
1338 int i; | |
1339 XPoint relative_pos; | |
1340 window_state* ws; | |
1341 | |
1342 *val = NULL; | |
1343 | |
1344 /* Find the window */ | |
1345 for (i = mw->menu.old_depth - 1; i >= 0; i--) | |
1346 { | |
1347 ws = &mw->menu.windows [i]; | |
1348 if (ws && motion_event_is_in_menu (mw, ev, i, &relative_pos)) | |
1349 { | |
1350 display_menu (mw, i, True, NULL, &relative_pos, val, NULL, NULL); | |
1351 | |
1352 if (*val) | |
1353 { | |
1354 *level = i + 1; | |
1355 return True; | |
1356 } | |
1357 } | |
1358 } | |
1359 return False; | |
1360 } | |
1361 | |
1362 /* Procedures */ | |
1363 static void | |
8860 | 1364 make_drawing_gcs (mw) |
1365 XlwMenuWidget mw; | |
5626 | 1366 { |
1367 XGCValues xgcv; | |
1368 | |
1369 xgcv.font = mw->menu.font->fid; | |
1370 xgcv.foreground = mw->menu.foreground; | |
1371 xgcv.background = mw->core.background_pixel; | |
1372 mw->menu.foreground_gc = XtGetGC ((Widget)mw, | |
1373 GCFont | GCForeground | GCBackground, | |
1374 &xgcv); | |
1375 | |
1376 xgcv.font = mw->menu.font->fid; | |
1377 xgcv.foreground = mw->menu.button_foreground; | |
1378 xgcv.background = mw->core.background_pixel; | |
1379 mw->menu.button_gc = XtGetGC ((Widget)mw, | |
1380 GCFont | GCForeground | GCBackground, | |
1381 &xgcv); | |
1382 | |
1383 xgcv.font = mw->menu.font->fid; | |
1384 xgcv.foreground = mw->menu.foreground; | |
1385 xgcv.background = mw->core.background_pixel; | |
1386 xgcv.fill_style = FillStippled; | |
1387 xgcv.stipple = mw->menu.gray_pixmap; | |
1388 mw->menu.inactive_gc = XtGetGC ((Widget)mw, | |
1389 (GCFont | GCForeground | GCBackground | |
1390 | GCFillStyle | GCStipple), &xgcv); | |
1391 | |
1392 xgcv.font = mw->menu.font->fid; | |
1393 xgcv.foreground = mw->menu.button_foreground; | |
1394 xgcv.background = mw->core.background_pixel; | |
1395 xgcv.fill_style = FillStippled; | |
1396 xgcv.stipple = mw->menu.gray_pixmap; | |
1397 mw->menu.inactive_button_gc = XtGetGC ((Widget)mw, | |
1398 (GCFont | GCForeground | GCBackground | |
1399 | GCFillStyle | GCStipple), &xgcv); | |
1400 | |
1401 xgcv.font = mw->menu.font->fid; | |
1402 xgcv.foreground = mw->core.background_pixel; | |
1403 xgcv.background = mw->menu.foreground; | |
1404 mw->menu.background_gc = XtGetGC ((Widget)mw, | |
1405 GCFont | GCForeground | GCBackground, | |
1406 &xgcv); | |
1407 } | |
1408 | |
1409 static void | |
8860 | 1410 release_drawing_gcs (mw) |
1411 XlwMenuWidget mw; | |
5626 | 1412 { |
1413 XtReleaseGC ((Widget) mw, mw->menu.foreground_gc); | |
1414 XtReleaseGC ((Widget) mw, mw->menu.button_gc); | |
1415 XtReleaseGC ((Widget) mw, mw->menu.inactive_gc); | |
1416 XtReleaseGC ((Widget) mw, mw->menu.inactive_button_gc); | |
1417 XtReleaseGC ((Widget) mw, mw->menu.background_gc); | |
1418 /* let's get some segvs if we try to use these... */ | |
1419 mw->menu.foreground_gc = (GC) -1; | |
1420 mw->menu.button_gc = (GC) -1; | |
1421 mw->menu.inactive_gc = (GC) -1; | |
1422 mw->menu.inactive_button_gc = (GC) -1; | |
1423 mw->menu.background_gc = (GC) -1; | |
1424 } | |
1425 | |
1426 #define MINL(x,y) ((((unsigned long) (x)) < ((unsigned long) (y))) \ | |
1427 ? ((unsigned long) (x)) : ((unsigned long) (y))) | |
1428 | |
1429 static void | |
8860 | 1430 make_shadow_gcs (mw) |
1431 XlwMenuWidget mw; | |
5626 | 1432 { |
1433 XGCValues xgcv; | |
1434 unsigned long pm = 0; | |
1435 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
|
1436 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
|
1437 Colormap cmap = mw->core.colormap; |
5626 | 1438 XColor topc, botc; |
1439 int top_frobbed = 0, bottom_frobbed = 0; | |
1440 | |
1441 if (mw->menu.top_shadow_color == -1) | |
1442 mw->menu.top_shadow_color = mw->core.background_pixel; | |
1443 if (mw->menu.bottom_shadow_color == -1) | |
1444 mw->menu.bottom_shadow_color = mw->menu.foreground; | |
1445 | |
1446 if (mw->menu.top_shadow_color == mw->core.background_pixel || | |
1447 mw->menu.top_shadow_color == mw->menu.foreground) | |
1448 { | |
1449 topc.pixel = mw->core.background_pixel; | |
1450 XQueryColor (dpy, cmap, &topc); | |
1451 /* don't overflow/wrap! */ | |
1452 topc.red = MINL (65535, topc.red * 1.2); | |
1453 topc.green = MINL (65535, topc.green * 1.2); | |
1454 topc.blue = MINL (65535, topc.blue * 1.2); | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
1455 #ifdef emacs |
29469
f9b5fe053f7c
(x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents:
27988
diff
changeset
|
1456 if (x_alloc_nearest_color_for_widget ((Widget) mw, cmap, &topc)) |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
1457 #else |
5626 | 1458 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
|
1459 #endif |
5626 | 1460 { |
1461 mw->menu.top_shadow_color = topc.pixel; | |
1462 top_frobbed = 1; | |
1463 } | |
1464 } | |
1465 if (mw->menu.bottom_shadow_color == mw->menu.foreground || | |
1466 mw->menu.bottom_shadow_color == mw->core.background_pixel) | |
1467 { | |
1468 botc.pixel = mw->core.background_pixel; | |
1469 XQueryColor (dpy, cmap, &botc); | |
1470 botc.red *= 0.6; | |
1471 botc.green *= 0.6; | |
1472 botc.blue *= 0.6; | |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
1473 #ifdef emacs |
29469
f9b5fe053f7c
(x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents:
27988
diff
changeset
|
1474 if (x_alloc_nearest_color_for_widget ((Widget) mw, cmap, &botc)) |
25034
305d2ac394ae
(make_shadow_gcs) ]emacs]: Use x_alloc_nearest_color.
Gerd Moellmann <gerd@gnu.org>
parents:
19960
diff
changeset
|
1475 #else |
5626 | 1476 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
|
1477 #endif |
5626 | 1478 { |
1479 mw->menu.bottom_shadow_color = botc.pixel; | |
1480 bottom_frobbed = 1; | |
1481 } | |
1482 } | |
1483 | |
1484 if (top_frobbed && bottom_frobbed) | |
1485 { | |
1486 int top_avg = ((topc.red / 3) + (topc.green / 3) + (topc.blue / 3)); | |
1487 int bot_avg = ((botc.red / 3) + (botc.green / 3) + (botc.blue / 3)); | |
1488 if (bot_avg > top_avg) | |
1489 { | |
1490 Pixel tmp = mw->menu.top_shadow_color; | |
1491 mw->menu.top_shadow_color = mw->menu.bottom_shadow_color; | |
1492 mw->menu.bottom_shadow_color = tmp; | |
1493 } | |
1494 else if (topc.pixel == botc.pixel) | |
1495 { | |
1496 if (botc.pixel == mw->menu.foreground) | |
1497 mw->menu.top_shadow_color = mw->core.background_pixel; | |
1498 else | |
1499 mw->menu.bottom_shadow_color = mw->menu.foreground; | |
1500 } | |
1501 } | |
1502 | |
1503 if (!mw->menu.top_shadow_pixmap && | |
1504 mw->menu.top_shadow_color == mw->core.background_pixel) | |
1505 { | |
1506 mw->menu.top_shadow_pixmap = mw->menu.gray_pixmap; | |
1507 mw->menu.top_shadow_color = mw->menu.foreground; | |
1508 } | |
1509 if (!mw->menu.bottom_shadow_pixmap && | |
1510 mw->menu.bottom_shadow_color == mw->core.background_pixel) | |
1511 { | |
1512 mw->menu.bottom_shadow_pixmap = mw->menu.gray_pixmap; | |
1513 mw->menu.bottom_shadow_color = mw->menu.foreground; | |
1514 } | |
1515 | |
1516 xgcv.fill_style = FillStippled; | |
1517 xgcv.foreground = mw->menu.top_shadow_color; | |
1518 xgcv.stipple = mw->menu.top_shadow_pixmap; | |
1519 pm = (xgcv.stipple ? GCStipple|GCFillStyle : 0); | |
1520 mw->menu.shadow_top_gc = XtGetGC ((Widget)mw, GCForeground | pm, &xgcv); | |
1521 | |
1522 xgcv.foreground = mw->menu.bottom_shadow_color; | |
1523 xgcv.stipple = mw->menu.bottom_shadow_pixmap; | |
1524 pm = (xgcv.stipple ? GCStipple|GCFillStyle : 0); | |
1525 mw->menu.shadow_bottom_gc = XtGetGC ((Widget)mw, GCForeground | pm, &xgcv); | |
1526 } | |
1527 | |
1528 | |
1529 static void | |
8860 | 1530 release_shadow_gcs (mw) |
1531 XlwMenuWidget mw; | |
5626 | 1532 { |
1533 XtReleaseGC ((Widget) mw, mw->menu.shadow_top_gc); | |
1534 XtReleaseGC ((Widget) mw, mw->menu.shadow_bottom_gc); | |
1535 } | |
1536 | |
1537 static void | |
9746
49e984bf6689
(xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents:
9700
diff
changeset
|
1538 XlwMenuInitialize (request, mw, args, num_args) |
8860 | 1539 Widget request; |
9746
49e984bf6689
(xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents:
9700
diff
changeset
|
1540 XlwMenuWidget mw; |
8860 | 1541 ArgList args; |
1542 Cardinal *num_args; | |
5626 | 1543 { |
1544 /* Get the GCs and the widget size */ | |
1545 XSetWindowAttributes xswa; | |
1546 int mask; | |
1547 | |
1548 Window window = RootWindowOfScreen (DefaultScreenOfDisplay (XtDisplay (mw))); | |
1549 Display* display = XtDisplay (mw); | |
1550 | |
8860 | 1551 #if 0 |
1552 widget_value *tem = (widget_value *) XtMalloc (sizeof (widget_value)); | |
1553 | |
1554 /* _XtCreate is freeing the object that was passed to us, | |
1555 so make a copy that we will actually keep. */ | |
1556 lwlib_bcopy (mw->menu.contents, tem, sizeof (widget_value)); | |
1557 mw->menu.contents = tem; | |
1558 #endif | |
1559 | |
5626 | 1560 /* mw->menu.cursor = XCreateFontCursor (display, mw->menu.cursor_shape); */ |
1561 mw->menu.cursor = mw->menu.cursor_shape; | |
1562 | |
11885
c686f5539749
(XlwMenuInitialize): Cast XCreatePixmapFromBitmapData args.
Karl Heuer <kwzh@gnu.org>
parents:
11461
diff
changeset
|
1563 mw->menu.gray_pixmap |
c686f5539749
(XlwMenuInitialize): Cast XCreatePixmapFromBitmapData args.
Karl Heuer <kwzh@gnu.org>
parents:
11461
diff
changeset
|
1564 = XCreatePixmapFromBitmapData (display, window, gray_bits, |
c686f5539749
(XlwMenuInitialize): Cast XCreatePixmapFromBitmapData args.
Karl Heuer <kwzh@gnu.org>
parents:
11461
diff
changeset
|
1565 gray_width, gray_height, |
c686f5539749
(XlwMenuInitialize): Cast XCreatePixmapFromBitmapData args.
Karl Heuer <kwzh@gnu.org>
parents:
11461
diff
changeset
|
1566 (unsigned long)1, (unsigned long)0, 1); |
5626 | 1567 |
9746
49e984bf6689
(xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents:
9700
diff
changeset
|
1568 /* 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
|
1569 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
|
1570 Can anyone find a real fix? -- rms. */ |
49e984bf6689
(xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents:
9700
diff
changeset
|
1571 if (mw->menu.font == 0) |
49e984bf6689
(xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents:
9700
diff
changeset
|
1572 mw->menu.font = xlwmenu_default_font; |
49e984bf6689
(xlwmenu_default_font): New global variable.
Richard M. Stallman <rms@gnu.org>
parents:
9700
diff
changeset
|
1573 |
5626 | 1574 make_drawing_gcs (mw); |
1575 make_shadow_gcs (mw); | |
1576 | |
1577 xswa.background_pixel = mw->core.background_pixel; | |
1578 xswa.border_pixel = mw->core.border_pixel; | |
1579 mask = CWBackPixel | CWBorderPixel; | |
1580 | |
1581 mw->menu.popped_up = False; | |
1582 | |
1583 mw->menu.old_depth = 1; | |
1584 mw->menu.old_stack = (widget_value**)XtMalloc (sizeof (widget_value*)); | |
1585 mw->menu.old_stack_length = 1; | |
1586 mw->menu.old_stack [0] = mw->menu.contents; | |
1587 | |
1588 mw->menu.new_depth = 0; | |
1589 mw->menu.new_stack = 0; | |
1590 mw->menu.new_stack_length = 0; | |
1591 push_new_stack (mw, mw->menu.contents); | |
1592 | |
1593 mw->menu.windows = (window_state*)XtMalloc (sizeof (window_state)); | |
1594 mw->menu.windows_length = 1; | |
1595 mw->menu.windows [0].x = 0; | |
1596 mw->menu.windows [0].y = 0; | |
1597 mw->menu.windows [0].width = 0; | |
1598 mw->menu.windows [0].height = 0; | |
1599 size_menu (mw, 0); | |
1600 | |
1601 mw->core.width = mw->menu.windows [0].width; | |
1602 mw->core.height = mw->menu.windows [0].height; | |
1603 } | |
1604 | |
1605 static void | |
1606 XlwMenuClassInitialize () | |
1607 { | |
1608 } | |
1609 | |
1610 static void | |
8860 | 1611 XlwMenuRealize (w, valueMask, attributes) |
1612 Widget w; | |
1613 Mask *valueMask; | |
1614 XSetWindowAttributes *attributes; | |
5626 | 1615 { |
1616 XlwMenuWidget mw = (XlwMenuWidget)w; | |
1617 XSetWindowAttributes xswa; | |
1618 int mask; | |
1619 | |
1620 (*xlwMenuWidgetClass->core_class.superclass->core_class.realize) | |
1621 (w, valueMask, attributes); | |
1622 | |
1623 xswa.save_under = True; | |
1624 xswa.cursor = mw->menu.cursor_shape; | |
1625 mask = CWSaveUnder | CWCursor; | |
1626 XChangeWindowAttributes (XtDisplay (w), XtWindow (w), mask, &xswa); | |
1627 | |
1628 mw->menu.windows [0].window = XtWindow (w); | |
1629 mw->menu.windows [0].x = w->core.x; | |
1630 mw->menu.windows [0].y = w->core.y; | |
1631 mw->menu.windows [0].width = w->core.width; | |
1632 mw->menu.windows [0].height = w->core.height; | |
1633 } | |
1634 | |
1635 /* Only the toplevel menubar/popup is a widget so it's the only one that | |
1636 receives expose events through Xt. So we repaint all the other panes | |
1637 when receiving an Expose event. */ | |
1638 static void | |
8860 | 1639 XlwMenuRedisplay (w, ev, region) |
1640 Widget w; | |
1641 XEvent* ev; | |
1642 Region region; | |
5626 | 1643 { |
1644 XlwMenuWidget mw = (XlwMenuWidget)w; | |
1645 int i; | |
1646 | |
8860 | 1647 /* If we have a depth beyond 1, it's because a submenu was displayed. |
1648 If the submenu has been destroyed, set the depth back to 1. */ | |
1649 if (submenu_destroyed) | |
1650 { | |
1651 mw->menu.old_depth = 1; | |
1652 submenu_destroyed = 0; | |
1653 } | |
1654 | |
5626 | 1655 for (i = 0; i < mw->menu.old_depth; i++) |
1656 display_menu (mw, i, False, NULL, NULL, NULL, NULL, NULL); | |
1657 } | |
1658 | |
1659 static void | |
8860 | 1660 XlwMenuDestroy (w) |
1661 Widget w; | |
5626 | 1662 { |
1663 int i; | |
1664 XlwMenuWidget mw = (XlwMenuWidget) w; | |
1665 | |
8860 | 1666 if (pointer_grabbed) |
1667 XtUngrabPointer ((Widget)w, CurrentTime); | |
1668 pointer_grabbed = 0; | |
1669 | |
1670 submenu_destroyed = 1; | |
1671 | |
5626 | 1672 release_drawing_gcs (mw); |
1673 release_shadow_gcs (mw); | |
1674 | |
1675 /* this doesn't come from the resource db but is created explicitly | |
1676 so we must free it ourselves. */ | |
1677 XFreePixmap (XtDisplay (mw), mw->menu.gray_pixmap); | |
1678 mw->menu.gray_pixmap = (Pixmap) -1; | |
1679 | |
8860 | 1680 #if 0 |
1681 /* Do free mw->menu.contents because nowadays we copy it | |
1682 during initialization. */ | |
1683 XtFree (mw->menu.contents); | |
1684 #endif | |
1685 | |
5626 | 1686 /* Don't free mw->menu.contents because that comes from our creator. |
1687 The `*_stack' elements are just pointers into `contents' so leave | |
1688 that alone too. But free the stacks themselves. */ | |
1689 if (mw->menu.old_stack) XtFree ((char *) mw->menu.old_stack); | |
1690 if (mw->menu.new_stack) XtFree ((char *) mw->menu.new_stack); | |
1691 | |
1692 /* Remember, you can't free anything that came from the resource | |
1693 database. This includes: | |
1694 mw->menu.cursor | |
1695 mw->menu.top_shadow_pixmap | |
1696 mw->menu.bottom_shadow_pixmap | |
1697 mw->menu.font | |
1698 Also the color cells of top_shadow_color, bottom_shadow_color, | |
1699 foreground, and button_foreground will never be freed until this | |
1700 client exits. Nice, eh? | |
1701 */ | |
1702 | |
1703 /* start from 1 because the one in slot 0 is w->core.window */ | |
1704 for (i = 1; i < mw->menu.windows_length; i++) | |
1705 XDestroyWindow (XtDisplay (mw), mw->menu.windows [i].window); | |
1706 if (mw->menu.windows) | |
1707 XtFree ((char *) mw->menu.windows); | |
1708 } | |
1709 | |
1710 static Boolean | |
8860 | 1711 XlwMenuSetValues (current, request, new) |
1712 Widget current; | |
1713 Widget request; | |
1714 Widget new; | |
5626 | 1715 { |
1716 XlwMenuWidget oldmw = (XlwMenuWidget)current; | |
1717 XlwMenuWidget newmw = (XlwMenuWidget)new; | |
1718 Boolean redisplay = False; | |
1719 int i; | |
1720 | |
1721 if (newmw->menu.contents | |
1722 && newmw->menu.contents->contents | |
1723 && newmw->menu.contents->contents->change >= VISIBLE_CHANGE) | |
1724 redisplay = True; | |
13899
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1725 /* Do redisplay if the contents are entirely eliminated. */ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1726 if (newmw->menu.contents |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1727 && newmw->menu.contents->contents == 0 |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1728 && newmw->menu.contents->change >= VISIBLE_CHANGE) |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1729 redisplay = True; |
5626 | 1730 |
1731 if (newmw->core.background_pixel != oldmw->core.background_pixel | |
8860 | 1732 || newmw->menu.foreground != oldmw->menu.foreground |
1733 || newmw->menu.font != oldmw->menu.font) | |
5626 | 1734 { |
1735 release_drawing_gcs (newmw); | |
1736 make_drawing_gcs (newmw); | |
1737 redisplay = True; | |
1738 | |
1739 for (i = 0; i < oldmw->menu.windows_length; i++) | |
1740 { | |
1741 XSetWindowBackground (XtDisplay (oldmw), | |
1742 oldmw->menu.windows [i].window, | |
1743 newmw->core.background_pixel); | |
1744 /* clear windows and generate expose events */ | |
1745 XClearArea (XtDisplay (oldmw), oldmw->menu.windows[i].window, | |
1746 0, 0, 0, 0, True); | |
1747 } | |
1748 } | |
1749 | |
1750 return redisplay; | |
1751 } | |
1752 | |
1753 static void | |
8860 | 1754 XlwMenuResize (w) |
1755 Widget w; | |
5626 | 1756 { |
1757 XlwMenuWidget mw = (XlwMenuWidget)w; | |
1758 | |
8860 | 1759 if (mw->menu.popped_up) |
1760 { | |
1761 /* Don't allow the popup menu to resize itself. */ | |
1762 mw->core.width = mw->menu.windows [0].width; | |
1763 mw->core.height = mw->menu.windows [0].height; | |
1764 mw->core.parent->core.width = mw->core.width ; | |
1765 mw->core.parent->core.height = mw->core.height ; | |
1766 } | |
1767 else | |
1768 { | |
1769 mw->menu.windows [0].width = mw->core.width; | |
1770 mw->menu.windows [0].height = mw->core.height; | |
1771 } | |
5626 | 1772 } |
1773 | |
1774 /* Action procedures */ | |
1775 static void | |
8860 | 1776 handle_single_motion_event (mw, ev) |
1777 XlwMenuWidget mw; | |
1778 XMotionEvent* ev; | |
5626 | 1779 { |
1780 widget_value* val; | |
1781 int level; | |
1782 | |
1783 if (!map_event_to_widget_value (mw, ev, &val, &level)) | |
1784 pop_new_stack_if_no_contents (mw); | |
1785 else | |
1786 set_new_state (mw, val, level); | |
1787 remap_menubar (mw); | |
1788 | |
1789 /* Sync with the display. Makes it feel better on X terms. */ | |
1790 XSync (XtDisplay (mw), False); | |
1791 } | |
1792 | |
1793 static void | |
8860 | 1794 handle_motion_event (mw, ev) |
1795 XlwMenuWidget mw; | |
1796 XMotionEvent* ev; | |
5626 | 1797 { |
1798 int x = ev->x_root; | |
1799 int y = ev->y_root; | |
1800 int state = ev->state; | |
1801 | |
1802 handle_single_motion_event (mw, ev); | |
1803 | |
1804 /* allow motion events to be generated again */ | |
1805 if (ev->is_hint | |
1806 && XQueryPointer (XtDisplay (mw), ev->window, | |
1807 &ev->root, &ev->subwindow, | |
1808 &ev->x_root, &ev->y_root, | |
1809 &ev->x, &ev->y, | |
1810 &ev->state) | |
1811 && ev->state == state | |
1812 && (ev->x_root != x || ev->y_root != y)) | |
1813 handle_single_motion_event (mw, ev); | |
1814 } | |
1815 | |
1816 static void | |
8860 | 1817 Start (w, ev, params, num_params) |
1818 Widget w; | |
1819 XEvent *ev; | |
1820 String *params; | |
1821 Cardinal *num_params; | |
5626 | 1822 { |
1823 XlwMenuWidget mw = (XlwMenuWidget)w; | |
1824 | |
8860 | 1825 if (!mw->menu.popped_up) |
1826 { | |
1827 menu_post_event = *ev; | |
29469
f9b5fe053f7c
(x_alloc_nearest_color_for_widget, x_catch_errors, x_uncatch_errors)
Dave Love <fx@gnu.org>
parents:
27988
diff
changeset
|
1828 pop_up_menu (mw, (XButtonPressedEvent*) ev); |
8860 | 1829 } |
1830 else | |
9027 | 1831 { |
1832 /* If we push a button while the menu is posted semipermanently, | |
1833 releasing the button should always pop the menu down. */ | |
1834 next_release_must_exit = 1; | |
5626 | 1835 |
9027 | 1836 /* notes the absolute position of the menubar window */ |
1837 mw->menu.windows [0].x = ev->xmotion.x_root - ev->xmotion.x; | |
1838 mw->menu.windows [0].y = ev->xmotion.y_root - ev->xmotion.y; | |
1839 | |
1840 /* handles the down like a move, slots are compatible */ | |
1841 handle_motion_event (mw, &ev->xmotion); | |
1842 } | |
5626 | 1843 } |
1844 | |
1845 static void | |
8860 | 1846 Drag (w, ev, params, num_params) |
1847 Widget w; | |
1848 XEvent *ev; | |
1849 String *params; | |
1850 Cardinal *num_params; | |
5626 | 1851 { |
1852 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
|
1853 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
|
1854 handle_motion_event (mw, &ev->xmotion); |
5626 | 1855 } |
1856 | |
13899
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1857 /* Do nothing. |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1858 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
|
1859 static void |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1860 Nothing (w, ev, params, num_params) |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1861 Widget w; |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1862 XEvent *ev; |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1863 String *params; |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1864 Cardinal *num_params; |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1865 { |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1866 } |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1867 |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1868 /* 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
|
1869 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
|
1870 static void |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1871 Key (w, ev, params, num_params) |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1872 Widget w; |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1873 XEvent *ev; |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1874 String *params; |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1875 Cardinal *num_params; |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1876 { |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1877 XlwMenuWidget mw = (XlwMenuWidget)w; |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1878 |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1879 /* Pop down everything. */ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1880 mw->menu.new_depth = 1; |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1881 remap_menubar (mw); |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1882 |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1883 if (mw->menu.popped_up) |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1884 { |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1885 mw->menu.popped_up = False; |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1886 XtUngrabPointer ((Widget)mw, ev->xmotion.time); |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1887 if (XtIsShell (XtParent ((Widget) mw))) |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1888 XtPopdown (XtParent ((Widget) mw)); |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1889 else |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1890 { |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1891 XtRemoveGrab ((Widget) mw); |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1892 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
|
1893 } |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1894 } |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1895 |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1896 /* callback */ |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1897 XtCallCallbackList ((Widget)mw, mw->menu.select, (XtPointer)0); |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1898 } |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1899 |
3fbe9b840379
(xlwMenuActionsList): Add "key" and "nothing".
Richard M. Stallman <rms@gnu.org>
parents:
13560
diff
changeset
|
1900 static void |
8860 | 1901 Select (w, ev, params, num_params) |
1902 Widget w; | |
1903 XEvent *ev; | |
1904 String *params; | |
1905 Cardinal *num_params; | |
5626 | 1906 { |
1907 XlwMenuWidget mw = (XlwMenuWidget)w; | |
1908 widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1]; | |
1909 | |
8860 | 1910 /* If user releases the button quickly, without selecting anything, |
1911 after the initial down-click that brought the menu up, | |
1912 do nothing. */ | |
1913 if ((selected_item == 0 | |
1914 || ((widget_value *) selected_item)->call_data == 0) | |
1915 && !next_release_must_exit | |
1916 && (ev->xbutton.time - menu_post_event.xbutton.time | |
1917 < XtGetMultiClickTime (XtDisplay (w)))) | |
1918 return; | |
1919 | |
1920 /* pop down everything. */ | |
5626 | 1921 mw->menu.new_depth = 1; |
1922 remap_menubar (mw); | |
1923 | |
1924 if (mw->menu.popped_up) | |
1925 { | |
1926 mw->menu.popped_up = False; | |
1927 XtUngrabPointer ((Widget)mw, ev->xmotion.time); | |
9033 | 1928 if (XtIsShell (XtParent ((Widget) mw))) |
1929 XtPopdown (XtParent ((Widget) mw)); | |
9027 | 1930 else |
1931 { | |
1932 XtRemoveGrab ((Widget) mw); | |
1933 display_menu (mw, 0, False, NULL, NULL, NULL, NULL, NULL); | |
1934 } | |
5626 | 1935 } |
1936 | |
1937 /* callback */ | |
1938 XtCallCallbackList ((Widget)mw, mw->menu.select, (XtPointer)selected_item); | |
1939 } | |
1940 | |
1941 | |
1942 /* Special code to pop-up a menu */ | |
1943 void | |
8860 | 1944 pop_up_menu (mw, event) |
1945 XlwMenuWidget mw; | |
1946 XButtonPressedEvent* event; | |
5626 | 1947 { |
1948 int x = event->x_root; | |
1949 int y = event->y_root; | |
1950 int w; | |
1951 int h; | |
1952 int borderwidth = mw->menu.shadow_thickness; | |
1953 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
|
1954 Display *display = XtDisplay (mw); |
17622
742a57e66f7d
(pop_up_menu): Update the call to x_catch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
16917
diff
changeset
|
1955 int count; |
5626 | 1956 |
8860 | 1957 next_release_must_exit = 0; |
1958 | |
5626 | 1959 XtCallCallbackList ((Widget)mw, mw->menu.open, NULL); |
1960 | |
9033 | 1961 if (XtIsShell (XtParent ((Widget)mw))) |
9027 | 1962 size_menu (mw, 0); |
5626 | 1963 |
1964 w = mw->menu.windows [0].width; | |
1965 h = mw->menu.windows [0].height; | |
1966 | |
1967 x -= borderwidth; | |
1968 y -= borderwidth; | |
1969 if (x < borderwidth) | |
1970 x = borderwidth; | |
1971 if (x + w + 2 * borderwidth > WidthOfScreen (screen)) | |
1972 x = WidthOfScreen (screen) - w - 2 * borderwidth; | |
1973 if (y < borderwidth) | |
1974 y = borderwidth; | |
1975 if (y + h + 2 * borderwidth> HeightOfScreen (screen)) | |
1976 y = HeightOfScreen (screen) - h - 2 * borderwidth; | |
1977 | |
1978 mw->menu.popped_up = True; | |
9033 | 1979 if (XtIsShell (XtParent ((Widget)mw))) |
9027 | 1980 { |
9033 | 1981 XtConfigureWidget (XtParent ((Widget)mw), x, y, w, h, |
1982 XtParent ((Widget)mw)->core.border_width); | |
1983 XtPopup (XtParent ((Widget)mw), XtGrabExclusive); | |
9027 | 1984 display_menu (mw, 0, False, NULL, NULL, NULL, NULL, NULL); |
1985 mw->menu.windows [0].x = x + borderwidth; | |
1986 mw->menu.windows [0].y = y + borderwidth; | |
1987 } | |
1988 else | |
1989 { | |
1990 XEvent *ev = (XEvent *) event; | |
1991 | |
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
|
1992 XtAddGrab ((Widget) mw, True, True); |
9027 | 1993 |
1994 /* notes the absolute position of the menubar window */ | |
1995 mw->menu.windows [0].x = ev->xmotion.x_root - ev->xmotion.x; | |
1996 mw->menu.windows [0].y = ev->xmotion.y_root - ev->xmotion.y; | |
1997 } | |
1998 | |
8860 | 1999 #ifdef emacs |
17622
742a57e66f7d
(pop_up_menu): Update the call to x_catch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
16917
diff
changeset
|
2000 count = x_catch_errors (display); |
8860 | 2001 #endif |
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
|
2002 XtGrabPointer ((Widget)mw, False, |
0033f98d2ffd
Clean up of temporary changes used to try to find a workaround for the
Paul Reilly <pmr@pajato.com>
parents:
9086
diff
changeset
|
2003 (PointerMotionMask |
0033f98d2ffd
Clean up of temporary changes used to try to find a workaround for the
Paul Reilly <pmr@pajato.com>
parents:
9086
diff
changeset
|
2004 | PointerMotionHintMask |
0033f98d2ffd
Clean up of temporary changes used to try to find a workaround for the
Paul Reilly <pmr@pajato.com>
parents:
9086
diff
changeset
|
2005 | ButtonReleaseMask |
0033f98d2ffd
Clean up of temporary changes used to try to find a workaround for the
Paul Reilly <pmr@pajato.com>
parents:
9086
diff
changeset
|
2006 | ButtonPressMask), |
0033f98d2ffd
Clean up of temporary changes used to try to find a workaround for the
Paul Reilly <pmr@pajato.com>
parents:
9086
diff
changeset
|
2007 GrabModeAsync, GrabModeAsync, None, |
0033f98d2ffd
Clean up of temporary changes used to try to find a workaround for the
Paul Reilly <pmr@pajato.com>
parents:
9086
diff
changeset
|
2008 mw->menu.cursor_shape, |
0033f98d2ffd
Clean up of temporary changes used to try to find a workaround for the
Paul Reilly <pmr@pajato.com>
parents:
9086
diff
changeset
|
2009 event->time); |
0033f98d2ffd
Clean up of temporary changes used to try to find a workaround for the
Paul Reilly <pmr@pajato.com>
parents:
9086
diff
changeset
|
2010 pointer_grabbed = 1; |
8860 | 2011 #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
|
2012 if (x_had_errors_p (display)) |
8860 | 2013 { |
2014 pointer_grabbed = 0; | |
2015 XtUngrabPointer ((Widget)mw, event->time); | |
2016 } | |
17622
742a57e66f7d
(pop_up_menu): Update the call to x_catch_errors.
Richard M. Stallman <rms@gnu.org>
parents:
16917
diff
changeset
|
2017 x_uncatch_errors (display, count); |
8860 | 2018 #endif |
5626 | 2019 |
2020 handle_motion_event (mw, (XMotionEvent*)event); | |
2021 } |