Mercurial > emacs
annotate lwlib/xlwmenu.c @ 9064:d716ea8937e2
entered into RCS
author | Paul Reilly <pmr@pajato.com> |
---|---|
date | Sat, 24 Sep 1994 04:37:40 +0000 |
parents | 3c36c72db2bb |
children | ac51b5072431 |
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 | |
9033 | 17 Alongalong with GNU Emacs; see the file COPYING. If not, write to |
5626 | 18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ |
19 | |
20 /* Created by devin@lucid.com */ | |
21 | |
22 #include <stdio.h> | |
23 | |
24 #include <sys/types.h> | |
25 #include <X11/Xos.h> | |
26 #include <X11/IntrinsicP.h> | |
9033 | 27 #include <X11/ObjectP.h> |
5626 | 28 #include <X11/StringDefs.h> |
29 #include <X11/cursorfont.h> | |
30 #include <X11/bitmaps/gray> | |
31 #include "xlwmenuP.h" | |
8860 | 32 |
33 static int pointer_grabbed; | |
34 static XEvent menu_post_event; | |
5626 | 35 |
36 static char | |
37 xlwMenuTranslations [] = | |
38 "<BtnDown>: start()\n\ | |
8860 | 39 <Motion>: drag()\n\ |
5626 | 40 <BtnUp>: select()\n\ |
41 "; | |
42 | |
43 #define offset(field) XtOffset(XlwMenuWidget, field) | |
44 static XtResource | |
45 xlwMenuResources[] = | |
46 { | |
47 {XtNfont, XtCFont, XtRFontStruct, sizeof(XFontStruct *), | |
48 offset(menu.font),XtRString, "XtDefaultFont"}, | |
49 {XtNforeground, XtCForeground, XtRPixel, sizeof(Pixel), | |
50 offset(menu.foreground), XtRString, "XtDefaultForeground"}, | |
51 {XtNbuttonForeground, XtCButtonForeground, XtRPixel, sizeof(Pixel), | |
52 offset(menu.button_foreground), XtRString, "XtDefaultForeground"}, | |
53 {XtNmargin, XtCMargin, XtRDimension, sizeof(Dimension), | |
54 offset(menu.margin), XtRImmediate, (XtPointer)0}, | |
55 {XtNhorizontalSpacing, XtCMargin, XtRDimension, sizeof(Dimension), | |
56 offset(menu.horizontal_spacing), XtRImmediate, (XtPointer)3}, | |
57 {XtNverticalSpacing, XtCMargin, XtRDimension, sizeof(Dimension), | |
58 offset(menu.vertical_spacing), XtRImmediate, (XtPointer)1}, | |
59 {XtNarrowSpacing, XtCMargin, XtRDimension, sizeof(Dimension), | |
60 offset(menu.arrow_spacing), XtRImmediate, (XtPointer)10}, | |
61 | |
8860 | 62 {XmNshadowThickness, XmCShadowThickness, XtRDimension, |
5626 | 63 sizeof (Dimension), offset (menu.shadow_thickness), |
64 XtRImmediate, (XtPointer) 2}, | |
65 {XmNtopShadowColor, XmCTopShadowColor, XtRPixel, sizeof (Pixel), | |
66 offset (menu.top_shadow_color), XtRImmediate, (XtPointer)-1}, | |
67 {XmNbottomShadowColor, XmCBottomShadowColor, XtRPixel, sizeof (Pixel), | |
68 offset (menu.bottom_shadow_color), XtRImmediate, (XtPointer)-1}, | |
69 {XmNtopShadowPixmap, XmCTopShadowPixmap, XtRPixmap, sizeof (Pixmap), | |
70 offset (menu.top_shadow_pixmap), XtRImmediate, (XtPointer)None}, | |
71 {XmNbottomShadowPixmap, XmCBottomShadowPixmap, XtRPixmap, sizeof (Pixmap), | |
72 offset (menu.bottom_shadow_pixmap), XtRImmediate, (XtPointer)None}, | |
73 | |
74 {XtNopen, XtCCallback, XtRCallback, sizeof(XtPointer), | |
75 offset(menu.open), XtRCallback, (XtPointer)NULL}, | |
76 {XtNselect, XtCCallback, XtRCallback, sizeof(XtPointer), | |
77 offset(menu.select), XtRCallback, (XtPointer)NULL}, | |
78 {XtNmenu, XtCMenu, XtRPointer, sizeof(XtPointer), | |
79 offset(menu.contents), XtRImmediate, (XtPointer)NULL}, | |
80 {XtNcursor, XtCCursor, XtRCursor, sizeof(Cursor), | |
81 offset(menu.cursor_shape), XtRString, (XtPointer)"right_ptr"}, | |
82 {XtNhorizontal, XtCHorizontal, XtRInt, sizeof(int), | |
83 offset(menu.horizontal), XtRImmediate, (XtPointer)True}, | |
84 }; | |
85 #undef offset | |
86 | |
87 static Boolean XlwMenuSetValues(); | |
88 static void XlwMenuRealize(); | |
89 static void XlwMenuRedisplay(); | |
90 static void XlwMenuResize(); | |
91 static void XlwMenuInitialize(); | |
92 static void XlwMenuRedisplay(); | |
93 static void XlwMenuDestroy(); | |
94 static void XlwMenuClassInitialize(); | |
95 static void Start(); | |
96 static void Drag(); | |
97 static void Select(); | |
98 | |
99 static XtActionsRec | |
100 xlwMenuActionsList [] = | |
101 { | |
102 {"start", Start}, | |
103 {"drag", Drag}, | |
104 {"select", Select}, | |
105 }; | |
106 | |
107 #define SuperClass ((CoreWidgetClass)&coreClassRec) | |
108 | |
109 XlwMenuClassRec xlwMenuClassRec = | |
110 { | |
111 { /* CoreClass fields initialization */ | |
112 (WidgetClass) SuperClass, /* superclass */ | |
113 "XlwMenu", /* class_name */ | |
114 sizeof(XlwMenuRec), /* size */ | |
115 XlwMenuClassInitialize, /* class_initialize */ | |
116 NULL, /* class_part_initialize */ | |
117 FALSE, /* class_inited */ | |
118 XlwMenuInitialize, /* initialize */ | |
119 NULL, /* initialize_hook */ | |
120 XlwMenuRealize, /* realize */ | |
121 xlwMenuActionsList, /* actions */ | |
122 XtNumber(xlwMenuActionsList), /* num_actions */ | |
123 xlwMenuResources, /* resources */ | |
124 XtNumber(xlwMenuResources), /* resource_count */ | |
125 NULLQUARK, /* xrm_class */ | |
126 TRUE, /* compress_motion */ | |
127 TRUE, /* compress_exposure */ | |
128 TRUE, /* compress_enterleave */ | |
129 FALSE, /* visible_interest */ | |
130 XlwMenuDestroy, /* destroy */ | |
131 XlwMenuResize, /* resize */ | |
132 XlwMenuRedisplay, /* expose */ | |
133 XlwMenuSetValues, /* set_values */ | |
134 NULL, /* set_values_hook */ | |
135 XtInheritSetValuesAlmost, /* set_values_almost */ | |
136 NULL, /* get_values_hook */ | |
137 NULL, /* accept_focus */ | |
138 XtVersion, /* version */ | |
139 NULL, /* callback_private */ | |
140 xlwMenuTranslations, /* tm_table */ | |
141 XtInheritQueryGeometry, /* query_geometry */ | |
142 XtInheritDisplayAccelerator, /* display_accelerator */ | |
143 NULL /* extension */ | |
144 }, /* XlwMenuClass fields initialization */ | |
145 { | |
146 0 /* dummy */ | |
147 }, | |
148 }; | |
149 | |
150 WidgetClass xlwMenuWidgetClass = (WidgetClass) &xlwMenuClassRec; | |
151 | |
8860 | 152 int submenu_destroyed; |
153 | |
154 static int next_release_must_exit; | |
155 | |
5626 | 156 /* Utilities */ |
157 static void | |
8860 | 158 push_new_stack (mw, val) |
159 XlwMenuWidget mw; | |
160 widget_value* val; | |
5626 | 161 { |
162 if (!mw->menu.new_stack) | |
163 { | |
164 mw->menu.new_stack_length = 10; | |
165 mw->menu.new_stack = | |
166 (widget_value**)XtCalloc (mw->menu.new_stack_length, | |
167 sizeof (widget_value*)); | |
168 } | |
169 else if (mw->menu.new_depth == mw->menu.new_stack_length) | |
170 { | |
171 mw->menu.new_stack_length *= 2; | |
172 mw->menu.new_stack = | |
173 (widget_value**)XtRealloc ((char*)mw->menu.new_stack, | |
174 mw->menu.new_stack_length * sizeof (widget_value*)); | |
175 } | |
176 mw->menu.new_stack [mw->menu.new_depth++] = val; | |
177 } | |
178 | |
179 static void | |
8860 | 180 pop_new_stack_if_no_contents (mw) |
181 XlwMenuWidget mw; | |
5626 | 182 { |
183 if (mw->menu.new_depth) | |
184 { | |
185 if (!mw->menu.new_stack [mw->menu.new_depth - 1]->contents) | |
186 mw->menu.new_depth -= 1; | |
187 } | |
188 } | |
189 | |
190 static void | |
8860 | 191 make_old_stack_space (mw, n) |
192 XlwMenuWidget mw; | |
193 int n; | |
5626 | 194 { |
195 if (!mw->menu.old_stack) | |
196 { | |
197 mw->menu.old_stack_length = 10; | |
198 mw->menu.old_stack = | |
199 (widget_value**)XtCalloc (mw->menu.old_stack_length, | |
200 sizeof (widget_value*)); | |
201 } | |
202 else if (mw->menu.old_stack_length < n) | |
203 { | |
204 mw->menu.old_stack_length *= 2; | |
205 mw->menu.old_stack = | |
206 (widget_value**)XtRealloc ((char*)mw->menu.old_stack, | |
207 mw->menu.old_stack_length * sizeof (widget_value*)); | |
208 } | |
209 } | |
210 | |
211 /* Size code */ | |
212 static Boolean | |
8860 | 213 all_dashes_p (s) |
214 char *s; | |
5626 | 215 { |
216 char* p; | |
217 for (p = s; *p == '-'; p++); | |
218 return !*p; | |
219 } | |
220 | |
8860 | 221 int |
222 string_width (mw, s) | |
223 XlwMenuWidget mw; | |
224 char *s; | |
5626 | 225 { |
226 XCharStruct xcs; | |
227 int drop; | |
228 | |
229 XTextExtents (mw->menu.font, s, strlen (s), &drop, &drop, &drop, &xcs); | |
230 return xcs.width; | |
231 } | |
232 | |
233 static int | |
8860 | 234 arrow_width (mw) |
235 XlwMenuWidget mw; | |
5626 | 236 { |
237 return mw->menu.font->ascent / 2 | 1; | |
238 } | |
239 | |
240 static XtResource | |
241 nameResource[] = | |
242 { | |
243 {"labelString", "LabelString", XtRString, sizeof(String), | |
244 0, XtRImmediate, 0}, | |
245 }; | |
246 | |
247 static char* | |
8860 | 248 resource_widget_value (mw, val) |
249 XlwMenuWidget mw; | |
250 widget_value *val; | |
5626 | 251 { |
252 if (!val->toolkit_data) | |
253 { | |
254 char* resourced_name = NULL; | |
255 char* complete_name; | |
256 XtGetSubresources ((Widget) mw, | |
257 (XtPointer) &resourced_name, | |
258 val->name, val->name, | |
259 nameResource, 1, NULL, 0); | |
260 if (!resourced_name) | |
261 resourced_name = val->name; | |
262 if (!val->value) | |
5654
f84dac6453db
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
263 { |
f84dac6453db
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
264 complete_name = (char *) XtMalloc (strlen (resourced_name) + 1); |
f84dac6453db
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
265 strcpy (complete_name, resourced_name); |
f84dac6453db
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
5626
diff
changeset
|
266 } |
5626 | 267 else |
268 { | |
269 int complete_length = | |
270 strlen (resourced_name) + strlen (val->value) + 2; | |
271 complete_name = XtMalloc (complete_length); | |
272 *complete_name = 0; | |
273 strcat (complete_name, resourced_name); | |
274 strcat (complete_name, " "); | |
275 strcat (complete_name, val->value); | |
276 } | |
277 | |
278 val->toolkit_data = complete_name; | |
279 val->free_toolkit_data = True; | |
280 } | |
281 return (char*)val->toolkit_data; | |
282 } | |
283 | |
284 /* Returns the sizes of an item */ | |
285 static void | |
8860 | 286 size_menu_item (mw, val, horizontal_p, label_width, rest_width, height) |
287 XlwMenuWidget mw; | |
288 widget_value* val; | |
289 int horizontal_p; | |
290 int* label_width; | |
291 int* rest_width; | |
292 int* height; | |
5626 | 293 { |
294 if (all_dashes_p (val->name)) | |
295 { | |
296 *height = 2; | |
297 *label_width = 1; | |
298 *rest_width = 0; | |
299 } | |
300 else | |
301 { | |
302 *height = | |
303 mw->menu.font->ascent + mw->menu.font->descent | |
304 + 2 * mw->menu.vertical_spacing + 2 * mw->menu.shadow_thickness; | |
305 | |
306 *label_width = | |
307 string_width (mw, resource_widget_value (mw, val)) | |
308 + mw->menu.horizontal_spacing + mw->menu.shadow_thickness; | |
309 | |
310 *rest_width = mw->menu.horizontal_spacing + mw->menu.shadow_thickness; | |
311 if (!horizontal_p) | |
312 { | |
313 if (val->contents) | |
314 *rest_width += arrow_width (mw) + mw->menu.arrow_spacing; | |
315 else if (val->key) | |
316 *rest_width += | |
317 string_width (mw, val->key) + mw->menu.arrow_spacing; | |
318 } | |
319 } | |
320 } | |
321 | |
322 static void | |
8860 | 323 size_menu (mw, level) |
324 XlwMenuWidget mw; | |
325 int level; | |
5626 | 326 { |
327 int label_width = 0; | |
328 int rest_width = 0; | |
329 int max_rest_width = 0; | |
330 int height = 0; | |
331 int horizontal_p = mw->menu.horizontal && (level == 0); | |
332 widget_value* val; | |
333 window_state* ws; | |
334 | |
335 if (level >= mw->menu.old_depth) | |
336 abort (); | |
337 | |
338 ws = &mw->menu.windows [level]; | |
339 ws->width = 0; | |
340 ws->height = 0; | |
341 ws->label_width = 0; | |
342 | |
343 for (val = mw->menu.old_stack [level]->contents; val; val = val->next) | |
344 { | |
345 size_menu_item (mw, val, horizontal_p, &label_width, &rest_width, | |
346 &height); | |
347 if (horizontal_p) | |
348 { | |
349 ws->width += label_width + rest_width; | |
350 if (height > ws->height) | |
351 ws->height = height; | |
352 } | |
353 else | |
354 { | |
355 if (label_width > ws->label_width) | |
356 ws->label_width = label_width; | |
357 if (rest_width > max_rest_width) | |
358 max_rest_width = rest_width; | |
359 ws->height += height; | |
360 } | |
361 } | |
362 | |
363 if (horizontal_p) | |
364 ws->label_width = 0; | |
365 else | |
366 ws->width = ws->label_width + max_rest_width; | |
367 | |
368 ws->width += 2 * mw->menu.shadow_thickness; | |
369 ws->height += 2 * mw->menu.shadow_thickness; | |
370 } | |
371 | |
372 | |
373 /* Display code */ | |
374 static void | |
8860 | 375 draw_arrow (mw, window, gc, x, y, width) |
376 XlwMenuWidget mw; | |
377 Window window; | |
378 GC gc; | |
379 int x; | |
380 int y; | |
381 int width; | |
5626 | 382 { |
383 XPoint points [3]; | |
384 points [0].x = x; | |
385 points [0].y = y + mw->menu.font->ascent; | |
386 points [1].x = x; | |
387 points [1].y = y; | |
388 points [2].x = x + width; | |
389 points [2].y = y + mw->menu.font->ascent / 2; | |
390 | |
391 XFillPolygon (XtDisplay (mw), window, gc, points, 3, Convex, | |
392 CoordModeOrigin); | |
393 } | |
394 | |
395 static void | |
8860 | 396 draw_shadow_rectangle (mw, window, x, y, width, height, erase_p) |
397 XlwMenuWidget mw; | |
398 Window window; | |
399 int x; | |
400 int y; | |
401 int width; | |
402 int height; | |
403 int erase_p; | |
5626 | 404 { |
405 Display *dpy = XtDisplay (mw); | |
406 GC top_gc = !erase_p ? mw->menu.shadow_top_gc : mw->menu.background_gc; | |
407 GC bottom_gc = !erase_p ? mw->menu.shadow_bottom_gc : mw->menu.background_gc; | |
408 int thickness = mw->menu.shadow_thickness; | |
409 XPoint points [4]; | |
410 points [0].x = x; | |
411 points [0].y = y; | |
412 points [1].x = x + width; | |
413 points [1].y = y; | |
414 points [2].x = x + width - thickness; | |
415 points [2].y = y + thickness; | |
416 points [3].x = x; | |
417 points [3].y = y + thickness; | |
418 XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin); | |
419 points [0].x = x; | |
420 points [0].y = y + thickness; | |
421 points [1].x = x; | |
422 points [1].y = y + height; | |
423 points [2].x = x + thickness; | |
424 points [2].y = y + height - thickness; | |
425 points [3].x = x + thickness; | |
426 points [3].y = y + thickness; | |
427 XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin); | |
428 points [0].x = x + width; | |
429 points [0].y = y; | |
430 points [1].x = x + width - thickness; | |
431 points [1].y = y + thickness; | |
432 points [2].x = x + width - thickness; | |
433 points [2].y = y + height - thickness; | |
434 points [3].x = x + width; | |
435 points [3].y = y + height - thickness; | |
436 XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin); | |
437 points [0].x = x; | |
438 points [0].y = y + height; | |
439 points [1].x = x + width; | |
440 points [1].y = y + height; | |
441 points [2].x = x + width; | |
442 points [2].y = y + height - thickness; | |
443 points [3].x = x + thickness; | |
444 points [3].y = y + height - thickness; | |
445 XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin); | |
446 } | |
447 | |
448 | |
449 /* Display the menu item and increment where.x and where.y to show how large | |
450 ** the menu item was. | |
451 */ | |
452 static void | |
8860 | 453 display_menu_item (mw, val, ws, where, highlighted_p, horizontal_p, just_compute_p) |
454 XlwMenuWidget mw; | |
455 widget_value* val; | |
456 window_state* ws; | |
457 XPoint* where; | |
458 Boolean highlighted_p; | |
459 Boolean horizontal_p; | |
460 Boolean just_compute_p; | |
5626 | 461 { |
462 GC deco_gc; | |
463 GC text_gc; | |
464 int font_ascent = mw->menu.font->ascent; | |
465 int font_descent = mw->menu.font->descent; | |
466 int shadow = mw->menu.shadow_thickness; | |
467 int separator_p = all_dashes_p (val->name); | |
468 int h_spacing = mw->menu.horizontal_spacing; | |
469 int v_spacing = mw->menu.vertical_spacing; | |
470 int label_width; | |
471 int rest_width; | |
472 int height; | |
473 int width; | |
474 int button_p; | |
475 | |
476 /* compute the sizes of the item */ | |
477 size_menu_item (mw, val, horizontal_p, &label_width, &rest_width, &height); | |
478 | |
479 if (horizontal_p) | |
480 width = label_width + rest_width; | |
481 else | |
482 { | |
483 label_width = ws->label_width; | |
484 width = ws->width - 2 * shadow; | |
485 } | |
486 | |
487 /* see if it should be a button in the menubar */ | |
488 button_p = horizontal_p && val->call_data; | |
489 | |
490 /* Only highlight an enabled item that has a callback. */ | |
491 if (highlighted_p) | |
492 if (!val->enabled || !(val->call_data || val->contents)) | |
493 highlighted_p = 0; | |
494 | |
495 /* do the drawing. */ | |
496 if (!just_compute_p) | |
497 { | |
498 /* Add the shadow border of the containing menu */ | |
499 int x = where->x + shadow; | |
500 int y = where->y + shadow; | |
501 | |
502 /* pick the foreground and background GC. */ | |
503 if (val->enabled) | |
504 text_gc = button_p ? mw->menu.button_gc : mw->menu.foreground_gc; | |
505 else | |
506 text_gc = | |
507 button_p ? mw->menu.inactive_button_gc : mw->menu.inactive_gc; | |
508 deco_gc = mw->menu.foreground_gc; | |
509 | |
510 if (separator_p) | |
511 { | |
512 XDrawLine (XtDisplay (mw), ws->window, mw->menu.shadow_bottom_gc, | |
513 x, y, x + width, y); | |
514 XDrawLine (XtDisplay (mw), ws->window, mw->menu.shadow_top_gc, | |
515 x, y + 1, x + width, y + 1); | |
516 } | |
517 else | |
518 { | |
519 char* display_string = resource_widget_value (mw, val); | |
520 draw_shadow_rectangle (mw, ws->window, x, y, width, height, True); | |
521 XDrawString (XtDisplay (mw), ws->window, text_gc, | |
522 x + h_spacing + shadow, | |
523 y + v_spacing + shadow + font_ascent, | |
524 display_string, strlen (display_string)); | |
525 | |
526 if (!horizontal_p) | |
527 { | |
528 if (val->contents) | |
529 { | |
530 int a_w = arrow_width (mw); | |
531 draw_arrow (mw, ws->window, deco_gc, | |
8860 | 532 x + width - arrow_width (mw) |
533 - mw->menu.horizontal_spacing | |
534 - mw->menu.shadow_thickness, | |
5626 | 535 y + v_spacing + shadow, a_w); |
536 } | |
537 else if (val->key) | |
538 { | |
539 XDrawString (XtDisplay (mw), ws->window, text_gc, | |
540 x + label_width + mw->menu.arrow_spacing, | |
541 y + v_spacing + shadow + font_ascent, | |
542 val->key, strlen (val->key)); | |
543 } | |
544 } | |
545 | |
546 else if (button_p) | |
547 { | |
548 #if 1 | |
549 XDrawRectangle (XtDisplay (mw), ws->window, deco_gc, | |
550 x + shadow, y + shadow, | |
551 label_width + h_spacing - 1, | |
552 font_ascent + font_descent + 2 * v_spacing - 1); | |
8860 | 553 draw_shadow_rectangle (mw, ws->window, x, y, width, height, |
554 False); | |
5626 | 555 #else |
556 highlighted_p = True; | |
557 #endif | |
558 } | |
8860 | 559 else |
560 { | |
561 XDrawRectangle (XtDisplay (mw), ws->window, | |
562 mw->menu.background_gc, | |
563 x + shadow, y + shadow, | |
564 label_width + h_spacing - 1, | |
565 font_ascent + font_descent + 2 * v_spacing - 1); | |
566 draw_shadow_rectangle (mw, ws->window, x, y, width, height, | |
567 True); | |
568 } | |
5626 | 569 |
570 if (highlighted_p) | |
571 draw_shadow_rectangle (mw, ws->window, x, y, width, height, False); | |
572 } | |
573 } | |
574 | |
575 where->x += width; | |
576 where->y += height; | |
577 } | |
578 | |
579 static void | |
8860 | 580 display_menu (mw, level, just_compute_p, highlighted_pos, hit, hit_return, |
581 this, that) | |
582 XlwMenuWidget mw; | |
583 int level; | |
584 Boolean just_compute_p; | |
585 XPoint* highlighted_pos; | |
586 XPoint* hit; | |
587 widget_value** hit_return; | |
588 widget_value* this; | |
589 widget_value* that; | |
5626 | 590 { |
591 widget_value* val; | |
592 widget_value* following_item; | |
593 window_state* ws; | |
594 XPoint where; | |
595 int horizontal_p = mw->menu.horizontal && (level == 0); | |
596 int highlighted_p; | |
597 int just_compute_this_one_p; | |
598 | |
599 if (level >= mw->menu.old_depth) | |
600 abort (); | |
601 | |
602 if (level < mw->menu.old_depth - 1) | |
603 following_item = mw->menu.old_stack [level + 1]; | |
604 else | |
605 following_item = NULL; | |
606 | |
607 if (hit) | |
608 *hit_return = NULL; | |
609 | |
610 where.x = 0; | |
611 where.y = 0; | |
612 | |
613 ws = &mw->menu.windows [level]; | |
614 for (val = mw->menu.old_stack [level]->contents; val; val = val->next) | |
615 { | |
616 highlighted_p = val == following_item; | |
617 if (highlighted_p && highlighted_pos) | |
618 { | |
619 if (horizontal_p) | |
620 highlighted_pos->x = where.x; | |
621 else | |
622 highlighted_pos->y = where.y; | |
623 } | |
624 | |
625 just_compute_this_one_p = | |
626 just_compute_p || ((this || that) && val != this && val != that); | |
627 | |
628 display_menu_item (mw, val, ws, &where, highlighted_p, horizontal_p, | |
629 just_compute_this_one_p); | |
630 | |
631 if (highlighted_p && highlighted_pos) | |
632 { | |
633 if (horizontal_p) | |
634 highlighted_pos->y = where.y; | |
635 else | |
636 highlighted_pos->x = where.x; | |
637 } | |
638 | |
639 if (hit | |
640 && !*hit_return | |
641 && (horizontal_p ? hit->x < where.x : hit->y < where.y) | |
642 && !all_dashes_p (val->name)) | |
643 *hit_return = val; | |
644 | |
645 if (horizontal_p) | |
646 where.y = 0; | |
647 else | |
648 where.x = 0; | |
649 } | |
650 | |
651 if (!just_compute_p) | |
652 draw_shadow_rectangle (mw, ws->window, 0, 0, ws->width, ws->height, False); | |
653 } | |
654 | |
655 /* Motion code */ | |
656 static void | |
8860 | 657 set_new_state (mw, val, level) |
658 XlwMenuWidget mw; | |
659 widget_value* val; | |
660 int level; | |
5626 | 661 { |
662 int i; | |
663 | |
664 mw->menu.new_depth = 0; | |
665 for (i = 0; i < level; i++) | |
666 push_new_stack (mw, mw->menu.old_stack [i]); | |
667 push_new_stack (mw, val); | |
668 } | |
669 | |
670 static void | |
8860 | 671 make_windows_if_needed (mw, n) |
672 XlwMenuWidget mw; | |
673 int n; | |
5626 | 674 { |
675 int i; | |
676 int start_at; | |
677 XSetWindowAttributes xswa; | |
678 int mask; | |
679 Window root = RootWindowOfScreen (DefaultScreenOfDisplay (XtDisplay (mw))); | |
680 window_state* windows; | |
681 | |
682 if (mw->menu.windows_length >= n) | |
683 return; | |
684 | |
685 xswa.save_under = True; | |
686 xswa.override_redirect = True; | |
687 xswa.background_pixel = mw->core.background_pixel; | |
688 xswa.border_pixel = mw->core.border_pixel; | |
689 xswa.event_mask = | |
8860 | 690 ExposureMask | PointerMotionMask | PointerMotionHintMask |
5626 | 691 | ButtonReleaseMask | ButtonPressMask; |
692 xswa.cursor = mw->menu.cursor_shape; | |
693 mask = CWSaveUnder | CWOverrideRedirect | CWBackPixel | CWBorderPixel | |
694 | CWEventMask | CWCursor; | |
695 | |
696 if (!mw->menu.windows) | |
697 { | |
698 mw->menu.windows = | |
699 (window_state*)XtMalloc (n * sizeof (window_state)); | |
700 start_at = 0; | |
701 } | |
702 else | |
703 { | |
704 mw->menu.windows = | |
705 (window_state*)XtRealloc ((char*)mw->menu.windows, | |
706 n * sizeof (window_state)); | |
707 start_at = mw->menu.windows_length; | |
708 } | |
709 mw->menu.windows_length = n; | |
710 | |
711 windows = mw->menu.windows; | |
712 | |
713 for (i = start_at; i < n; i++) | |
714 { | |
715 windows [i].x = 0; | |
716 windows [i].y = 0; | |
717 windows [i].width = 1; | |
718 windows [i].height = 1; | |
719 windows [i].window = | |
720 XCreateWindow (XtDisplay (mw), root, 0, 0, 1, 1, | |
721 0, 0, CopyFromParent, CopyFromParent, mask, &xswa); | |
722 } | |
723 } | |
724 | |
725 /* Make the window fit in the screen */ | |
726 static void | |
8860 | 727 fit_to_screen (mw, ws, previous_ws, horizontal_p) |
728 XlwMenuWidget mw; | |
729 window_state* ws; | |
730 window_state* previous_ws; | |
731 Boolean horizontal_p; | |
5626 | 732 { |
733 int screen_width = WidthOfScreen (XtScreen (mw)); | |
734 int screen_height = HeightOfScreen (XtScreen (mw)); | |
735 | |
736 if (ws->x < 0) | |
737 ws->x = 0; | |
738 else if (ws->x + ws->width > screen_width) | |
739 { | |
740 if (!horizontal_p) | |
741 ws->x = previous_ws->x - ws->width; | |
742 else | |
743 ws->x = screen_width - ws->width; | |
744 } | |
745 if (ws->y < 0) | |
746 ws->y = 0; | |
747 else if (ws->y + ws->height > screen_height) | |
748 { | |
749 if (horizontal_p) | |
750 ws->y = previous_ws->y - ws->height; | |
751 else | |
752 ws->y = screen_height - ws->height; | |
753 } | |
754 } | |
755 | |
756 /* Updates old_stack from new_stack and redisplays. */ | |
757 static void | |
8860 | 758 remap_menubar (mw) |
759 XlwMenuWidget mw; | |
5626 | 760 { |
761 int i; | |
762 int last_same; | |
763 XPoint selection_position; | |
764 int old_depth = mw->menu.old_depth; | |
765 int new_depth = mw->menu.new_depth; | |
766 widget_value** old_stack; | |
767 widget_value** new_stack; | |
768 window_state* windows; | |
769 widget_value* old_selection; | |
770 widget_value* new_selection; | |
771 | |
772 /* Check that enough windows and old_stack are ready. */ | |
773 make_windows_if_needed (mw, new_depth); | |
774 make_old_stack_space (mw, new_depth); | |
775 windows = mw->menu.windows; | |
776 old_stack = mw->menu.old_stack; | |
777 new_stack = mw->menu.new_stack; | |
778 | |
779 /* compute the last identical different entry */ | |
780 for (i = 1; i < old_depth && i < new_depth; i++) | |
781 if (old_stack [i] != new_stack [i]) | |
782 break; | |
783 last_same = i - 1; | |
784 | |
785 /* Memorize the previously selected item to be able to refresh it */ | |
786 old_selection = last_same + 1 < old_depth ? old_stack [last_same + 1] : NULL; | |
787 if (old_selection && !old_selection->enabled) | |
788 old_selection = NULL; | |
789 new_selection = last_same + 1 < new_depth ? new_stack [last_same + 1] : NULL; | |
790 if (new_selection && !new_selection->enabled) | |
791 new_selection = NULL; | |
792 | |
793 /* updates old_state from new_state. It has to be done now because | |
794 display_menu (called below) uses the old_stack to know what to display. */ | |
795 for (i = last_same + 1; i < new_depth; i++) | |
796 old_stack [i] = new_stack [i]; | |
797 mw->menu.old_depth = new_depth; | |
798 | |
799 /* refresh the last seletion */ | |
800 selection_position.x = 0; | |
801 selection_position.y = 0; | |
802 display_menu (mw, last_same, new_selection == old_selection, | |
803 &selection_position, NULL, NULL, old_selection, new_selection); | |
804 | |
805 /* Now popup the new menus */ | |
806 for (i = last_same + 1; i < new_depth && new_stack [i]->contents; i++) | |
807 { | |
808 window_state* previous_ws = &windows [i - 1]; | |
809 window_state* ws = &windows [i]; | |
810 | |
811 ws->x = | |
812 previous_ws->x + selection_position.x + mw->menu.shadow_thickness; | |
813 if (!mw->menu.horizontal || i > 1) | |
814 ws->x += mw->menu.shadow_thickness; | |
815 ws->y = | |
816 previous_ws->y + selection_position.y + mw->menu.shadow_thickness; | |
817 | |
818 size_menu (mw, i); | |
819 | |
820 fit_to_screen (mw, ws, previous_ws, mw->menu.horizontal && i == 1); | |
821 | |
822 XClearWindow (XtDisplay (mw), ws->window); | |
823 XMoveResizeWindow (XtDisplay (mw), ws->window, ws->x, ws->y, | |
824 ws->width, ws->height); | |
825 XMapRaised (XtDisplay (mw), ws->window); | |
826 display_menu (mw, i, False, &selection_position, NULL, NULL, NULL, NULL); | |
827 } | |
828 | |
829 /* unmap the menus that popped down */ | |
830 for (i = new_depth - 1; i < old_depth; i++) | |
831 if (i >= new_depth || !new_stack [i]->contents) | |
832 XUnmapWindow (XtDisplay (mw), windows [i].window); | |
833 } | |
834 | |
835 static Boolean | |
8860 | 836 motion_event_is_in_menu (mw, ev, level, relative_pos) |
837 XlwMenuWidget mw; | |
838 XMotionEvent* ev; | |
839 int level; | |
840 XPoint* relative_pos; | |
5626 | 841 { |
842 window_state* ws = &mw->menu.windows [level]; | |
843 int x = level == 0 ? ws->x : ws->x + mw->menu.shadow_thickness; | |
844 int y = level == 0 ? ws->y : ws->y + mw->menu.shadow_thickness; | |
845 relative_pos->x = ev->x_root - x; | |
846 relative_pos->y = ev->y_root - y; | |
847 return (x < ev->x_root && ev->x_root < x + ws->width | |
848 && y < ev->y_root && ev->y_root < y + ws->height); | |
849 } | |
850 | |
851 static Boolean | |
8860 | 852 map_event_to_widget_value (mw, ev, val, level) |
853 XlwMenuWidget mw; | |
854 XMotionEvent* ev; | |
855 widget_value** val; | |
856 int* level; | |
5626 | 857 { |
858 int i; | |
859 XPoint relative_pos; | |
860 window_state* ws; | |
861 | |
862 *val = NULL; | |
863 | |
864 /* Find the window */ | |
865 for (i = mw->menu.old_depth - 1; i >= 0; i--) | |
866 { | |
867 ws = &mw->menu.windows [i]; | |
868 if (ws && motion_event_is_in_menu (mw, ev, i, &relative_pos)) | |
869 { | |
870 display_menu (mw, i, True, NULL, &relative_pos, val, NULL, NULL); | |
871 | |
872 if (*val) | |
873 { | |
874 *level = i + 1; | |
875 return True; | |
876 } | |
877 } | |
878 } | |
879 return False; | |
880 } | |
881 | |
882 /* Procedures */ | |
883 static void | |
8860 | 884 make_drawing_gcs (mw) |
885 XlwMenuWidget mw; | |
5626 | 886 { |
887 XGCValues xgcv; | |
888 | |
889 xgcv.font = mw->menu.font->fid; | |
890 xgcv.foreground = mw->menu.foreground; | |
891 xgcv.background = mw->core.background_pixel; | |
892 mw->menu.foreground_gc = XtGetGC ((Widget)mw, | |
893 GCFont | GCForeground | GCBackground, | |
894 &xgcv); | |
895 | |
896 xgcv.font = mw->menu.font->fid; | |
897 xgcv.foreground = mw->menu.button_foreground; | |
898 xgcv.background = mw->core.background_pixel; | |
899 mw->menu.button_gc = XtGetGC ((Widget)mw, | |
900 GCFont | GCForeground | GCBackground, | |
901 &xgcv); | |
902 | |
903 xgcv.font = mw->menu.font->fid; | |
904 xgcv.foreground = mw->menu.foreground; | |
905 xgcv.background = mw->core.background_pixel; | |
906 xgcv.fill_style = FillStippled; | |
907 xgcv.stipple = mw->menu.gray_pixmap; | |
908 mw->menu.inactive_gc = XtGetGC ((Widget)mw, | |
909 (GCFont | GCForeground | GCBackground | |
910 | GCFillStyle | GCStipple), &xgcv); | |
911 | |
912 xgcv.font = mw->menu.font->fid; | |
913 xgcv.foreground = mw->menu.button_foreground; | |
914 xgcv.background = mw->core.background_pixel; | |
915 xgcv.fill_style = FillStippled; | |
916 xgcv.stipple = mw->menu.gray_pixmap; | |
917 mw->menu.inactive_button_gc = XtGetGC ((Widget)mw, | |
918 (GCFont | GCForeground | GCBackground | |
919 | GCFillStyle | GCStipple), &xgcv); | |
920 | |
921 xgcv.font = mw->menu.font->fid; | |
922 xgcv.foreground = mw->core.background_pixel; | |
923 xgcv.background = mw->menu.foreground; | |
924 mw->menu.background_gc = XtGetGC ((Widget)mw, | |
925 GCFont | GCForeground | GCBackground, | |
926 &xgcv); | |
927 } | |
928 | |
929 static void | |
8860 | 930 release_drawing_gcs (mw) |
931 XlwMenuWidget mw; | |
5626 | 932 { |
933 XtReleaseGC ((Widget) mw, mw->menu.foreground_gc); | |
934 XtReleaseGC ((Widget) mw, mw->menu.button_gc); | |
935 XtReleaseGC ((Widget) mw, mw->menu.inactive_gc); | |
936 XtReleaseGC ((Widget) mw, mw->menu.inactive_button_gc); | |
937 XtReleaseGC ((Widget) mw, mw->menu.background_gc); | |
938 /* let's get some segvs if we try to use these... */ | |
939 mw->menu.foreground_gc = (GC) -1; | |
940 mw->menu.button_gc = (GC) -1; | |
941 mw->menu.inactive_gc = (GC) -1; | |
942 mw->menu.inactive_button_gc = (GC) -1; | |
943 mw->menu.background_gc = (GC) -1; | |
944 } | |
945 | |
946 #define MINL(x,y) ((((unsigned long) (x)) < ((unsigned long) (y))) \ | |
947 ? ((unsigned long) (x)) : ((unsigned long) (y))) | |
948 | |
949 static void | |
8860 | 950 make_shadow_gcs (mw) |
951 XlwMenuWidget mw; | |
5626 | 952 { |
953 XGCValues xgcv; | |
954 unsigned long pm = 0; | |
955 Display *dpy = XtDisplay ((Widget) mw); | |
956 Colormap cmap = DefaultColormapOfScreen (XtScreen ((Widget) mw)); | |
957 XColor topc, botc; | |
958 int top_frobbed = 0, bottom_frobbed = 0; | |
959 | |
960 if (mw->menu.top_shadow_color == -1) | |
961 mw->menu.top_shadow_color = mw->core.background_pixel; | |
962 if (mw->menu.bottom_shadow_color == -1) | |
963 mw->menu.bottom_shadow_color = mw->menu.foreground; | |
964 | |
965 if (mw->menu.top_shadow_color == mw->core.background_pixel || | |
966 mw->menu.top_shadow_color == mw->menu.foreground) | |
967 { | |
968 topc.pixel = mw->core.background_pixel; | |
969 XQueryColor (dpy, cmap, &topc); | |
970 /* don't overflow/wrap! */ | |
971 topc.red = MINL (65535, topc.red * 1.2); | |
972 topc.green = MINL (65535, topc.green * 1.2); | |
973 topc.blue = MINL (65535, topc.blue * 1.2); | |
974 if (XAllocColor (dpy, cmap, &topc)) | |
975 { | |
976 mw->menu.top_shadow_color = topc.pixel; | |
977 top_frobbed = 1; | |
978 } | |
979 } | |
980 if (mw->menu.bottom_shadow_color == mw->menu.foreground || | |
981 mw->menu.bottom_shadow_color == mw->core.background_pixel) | |
982 { | |
983 botc.pixel = mw->core.background_pixel; | |
984 XQueryColor (dpy, cmap, &botc); | |
985 botc.red *= 0.6; | |
986 botc.green *= 0.6; | |
987 botc.blue *= 0.6; | |
988 if (XAllocColor (dpy, cmap, &botc)) | |
989 { | |
990 mw->menu.bottom_shadow_color = botc.pixel; | |
991 bottom_frobbed = 1; | |
992 } | |
993 } | |
994 | |
995 if (top_frobbed && bottom_frobbed) | |
996 { | |
997 int top_avg = ((topc.red / 3) + (topc.green / 3) + (topc.blue / 3)); | |
998 int bot_avg = ((botc.red / 3) + (botc.green / 3) + (botc.blue / 3)); | |
999 if (bot_avg > top_avg) | |
1000 { | |
1001 Pixel tmp = mw->menu.top_shadow_color; | |
1002 mw->menu.top_shadow_color = mw->menu.bottom_shadow_color; | |
1003 mw->menu.bottom_shadow_color = tmp; | |
1004 } | |
1005 else if (topc.pixel == botc.pixel) | |
1006 { | |
1007 if (botc.pixel == mw->menu.foreground) | |
1008 mw->menu.top_shadow_color = mw->core.background_pixel; | |
1009 else | |
1010 mw->menu.bottom_shadow_color = mw->menu.foreground; | |
1011 } | |
1012 } | |
1013 | |
1014 if (!mw->menu.top_shadow_pixmap && | |
1015 mw->menu.top_shadow_color == mw->core.background_pixel) | |
1016 { | |
1017 mw->menu.top_shadow_pixmap = mw->menu.gray_pixmap; | |
1018 mw->menu.top_shadow_color = mw->menu.foreground; | |
1019 } | |
1020 if (!mw->menu.bottom_shadow_pixmap && | |
1021 mw->menu.bottom_shadow_color == mw->core.background_pixel) | |
1022 { | |
1023 mw->menu.bottom_shadow_pixmap = mw->menu.gray_pixmap; | |
1024 mw->menu.bottom_shadow_color = mw->menu.foreground; | |
1025 } | |
1026 | |
1027 xgcv.fill_style = FillStippled; | |
1028 xgcv.foreground = mw->menu.top_shadow_color; | |
1029 xgcv.stipple = mw->menu.top_shadow_pixmap; | |
1030 pm = (xgcv.stipple ? GCStipple|GCFillStyle : 0); | |
1031 mw->menu.shadow_top_gc = XtGetGC ((Widget)mw, GCForeground | pm, &xgcv); | |
1032 | |
1033 xgcv.foreground = mw->menu.bottom_shadow_color; | |
1034 xgcv.stipple = mw->menu.bottom_shadow_pixmap; | |
1035 pm = (xgcv.stipple ? GCStipple|GCFillStyle : 0); | |
1036 mw->menu.shadow_bottom_gc = XtGetGC ((Widget)mw, GCForeground | pm, &xgcv); | |
1037 } | |
1038 | |
1039 | |
1040 static void | |
8860 | 1041 release_shadow_gcs (mw) |
1042 XlwMenuWidget mw; | |
5626 | 1043 { |
1044 XtReleaseGC ((Widget) mw, mw->menu.shadow_top_gc); | |
1045 XtReleaseGC ((Widget) mw, mw->menu.shadow_bottom_gc); | |
1046 } | |
1047 | |
1048 static void | |
8860 | 1049 XlwMenuInitialize (request, new, args, num_args) |
1050 Widget request; | |
1051 Widget new; | |
1052 ArgList args; | |
1053 Cardinal *num_args; | |
5626 | 1054 { |
1055 /* Get the GCs and the widget size */ | |
1056 XlwMenuWidget mw = (XlwMenuWidget)new; | |
1057 | |
1058 XSetWindowAttributes xswa; | |
1059 int mask; | |
1060 | |
1061 Window window = RootWindowOfScreen (DefaultScreenOfDisplay (XtDisplay (mw))); | |
1062 Display* display = XtDisplay (mw); | |
1063 | |
8860 | 1064 #if 0 |
1065 widget_value *tem = (widget_value *) XtMalloc (sizeof (widget_value)); | |
1066 | |
1067 /* _XtCreate is freeing the object that was passed to us, | |
1068 so make a copy that we will actually keep. */ | |
1069 lwlib_bcopy (mw->menu.contents, tem, sizeof (widget_value)); | |
1070 mw->menu.contents = tem; | |
1071 #endif | |
1072 | |
5626 | 1073 /* mw->menu.cursor = XCreateFontCursor (display, mw->menu.cursor_shape); */ |
1074 mw->menu.cursor = mw->menu.cursor_shape; | |
1075 | |
1076 mw->menu.gray_pixmap = XCreatePixmapFromBitmapData (display, window, | |
1077 gray_bits, gray_width, | |
1078 gray_height, 1, 0, 1); | |
1079 | |
1080 make_drawing_gcs (mw); | |
1081 make_shadow_gcs (mw); | |
1082 | |
1083 xswa.background_pixel = mw->core.background_pixel; | |
1084 xswa.border_pixel = mw->core.border_pixel; | |
1085 mask = CWBackPixel | CWBorderPixel; | |
1086 | |
1087 mw->menu.popped_up = False; | |
1088 | |
1089 mw->menu.old_depth = 1; | |
1090 mw->menu.old_stack = (widget_value**)XtMalloc (sizeof (widget_value*)); | |
1091 mw->menu.old_stack_length = 1; | |
1092 mw->menu.old_stack [0] = mw->menu.contents; | |
1093 | |
1094 mw->menu.new_depth = 0; | |
1095 mw->menu.new_stack = 0; | |
1096 mw->menu.new_stack_length = 0; | |
1097 push_new_stack (mw, mw->menu.contents); | |
1098 | |
1099 mw->menu.windows = (window_state*)XtMalloc (sizeof (window_state)); | |
1100 mw->menu.windows_length = 1; | |
1101 mw->menu.windows [0].x = 0; | |
1102 mw->menu.windows [0].y = 0; | |
1103 mw->menu.windows [0].width = 0; | |
1104 mw->menu.windows [0].height = 0; | |
1105 size_menu (mw, 0); | |
1106 | |
1107 mw->core.width = mw->menu.windows [0].width; | |
1108 mw->core.height = mw->menu.windows [0].height; | |
1109 } | |
1110 | |
1111 static void | |
1112 XlwMenuClassInitialize () | |
1113 { | |
1114 } | |
1115 | |
1116 static void | |
8860 | 1117 XlwMenuRealize (w, valueMask, attributes) |
1118 Widget w; | |
1119 Mask *valueMask; | |
1120 XSetWindowAttributes *attributes; | |
5626 | 1121 { |
1122 XlwMenuWidget mw = (XlwMenuWidget)w; | |
1123 XSetWindowAttributes xswa; | |
1124 int mask; | |
1125 | |
1126 (*xlwMenuWidgetClass->core_class.superclass->core_class.realize) | |
1127 (w, valueMask, attributes); | |
1128 | |
1129 xswa.save_under = True; | |
1130 xswa.cursor = mw->menu.cursor_shape; | |
1131 mask = CWSaveUnder | CWCursor; | |
1132 XChangeWindowAttributes (XtDisplay (w), XtWindow (w), mask, &xswa); | |
1133 | |
1134 mw->menu.windows [0].window = XtWindow (w); | |
1135 mw->menu.windows [0].x = w->core.x; | |
1136 mw->menu.windows [0].y = w->core.y; | |
1137 mw->menu.windows [0].width = w->core.width; | |
1138 mw->menu.windows [0].height = w->core.height; | |
1139 } | |
1140 | |
1141 /* Only the toplevel menubar/popup is a widget so it's the only one that | |
1142 receives expose events through Xt. So we repaint all the other panes | |
1143 when receiving an Expose event. */ | |
1144 static void | |
8860 | 1145 XlwMenuRedisplay (w, ev, region) |
1146 Widget w; | |
1147 XEvent* ev; | |
1148 Region region; | |
5626 | 1149 { |
1150 XlwMenuWidget mw = (XlwMenuWidget)w; | |
1151 int i; | |
1152 | |
8860 | 1153 /* If we have a depth beyond 1, it's because a submenu was displayed. |
1154 If the submenu has been destroyed, set the depth back to 1. */ | |
1155 if (submenu_destroyed) | |
1156 { | |
1157 mw->menu.old_depth = 1; | |
1158 submenu_destroyed = 0; | |
1159 } | |
1160 | |
5626 | 1161 for (i = 0; i < mw->menu.old_depth; i++) |
1162 display_menu (mw, i, False, NULL, NULL, NULL, NULL, NULL); | |
1163 } | |
1164 | |
1165 static void | |
8860 | 1166 XlwMenuDestroy (w) |
1167 Widget w; | |
5626 | 1168 { |
1169 int i; | |
1170 XlwMenuWidget mw = (XlwMenuWidget) w; | |
1171 | |
8860 | 1172 if (pointer_grabbed) |
1173 XtUngrabPointer ((Widget)w, CurrentTime); | |
1174 pointer_grabbed = 0; | |
1175 | |
1176 submenu_destroyed = 1; | |
1177 | |
5626 | 1178 release_drawing_gcs (mw); |
1179 release_shadow_gcs (mw); | |
1180 | |
1181 /* this doesn't come from the resource db but is created explicitly | |
1182 so we must free it ourselves. */ | |
1183 XFreePixmap (XtDisplay (mw), mw->menu.gray_pixmap); | |
1184 mw->menu.gray_pixmap = (Pixmap) -1; | |
1185 | |
8860 | 1186 #if 0 |
1187 /* Do free mw->menu.contents because nowadays we copy it | |
1188 during initialization. */ | |
1189 XtFree (mw->menu.contents); | |
1190 #endif | |
1191 | |
5626 | 1192 /* Don't free mw->menu.contents because that comes from our creator. |
1193 The `*_stack' elements are just pointers into `contents' so leave | |
1194 that alone too. But free the stacks themselves. */ | |
1195 if (mw->menu.old_stack) XtFree ((char *) mw->menu.old_stack); | |
1196 if (mw->menu.new_stack) XtFree ((char *) mw->menu.new_stack); | |
1197 | |
1198 /* Remember, you can't free anything that came from the resource | |
1199 database. This includes: | |
1200 mw->menu.cursor | |
1201 mw->menu.top_shadow_pixmap | |
1202 mw->menu.bottom_shadow_pixmap | |
1203 mw->menu.font | |
1204 Also the color cells of top_shadow_color, bottom_shadow_color, | |
1205 foreground, and button_foreground will never be freed until this | |
1206 client exits. Nice, eh? | |
1207 */ | |
1208 | |
1209 /* start from 1 because the one in slot 0 is w->core.window */ | |
1210 for (i = 1; i < mw->menu.windows_length; i++) | |
1211 XDestroyWindow (XtDisplay (mw), mw->menu.windows [i].window); | |
1212 if (mw->menu.windows) | |
1213 XtFree ((char *) mw->menu.windows); | |
1214 } | |
1215 | |
1216 static Boolean | |
8860 | 1217 XlwMenuSetValues (current, request, new) |
1218 Widget current; | |
1219 Widget request; | |
1220 Widget new; | |
5626 | 1221 { |
1222 XlwMenuWidget oldmw = (XlwMenuWidget)current; | |
1223 XlwMenuWidget newmw = (XlwMenuWidget)new; | |
1224 Boolean redisplay = False; | |
1225 int i; | |
1226 | |
1227 if (newmw->menu.contents | |
1228 && newmw->menu.contents->contents | |
1229 && newmw->menu.contents->contents->change >= VISIBLE_CHANGE) | |
1230 redisplay = True; | |
1231 | |
1232 if (newmw->core.background_pixel != oldmw->core.background_pixel | |
8860 | 1233 || newmw->menu.foreground != oldmw->menu.foreground |
1234 || newmw->menu.font != oldmw->menu.font) | |
5626 | 1235 { |
1236 release_drawing_gcs (newmw); | |
1237 make_drawing_gcs (newmw); | |
1238 redisplay = True; | |
1239 | |
1240 for (i = 0; i < oldmw->menu.windows_length; i++) | |
1241 { | |
1242 XSetWindowBackground (XtDisplay (oldmw), | |
1243 oldmw->menu.windows [i].window, | |
1244 newmw->core.background_pixel); | |
1245 /* clear windows and generate expose events */ | |
1246 XClearArea (XtDisplay (oldmw), oldmw->menu.windows[i].window, | |
1247 0, 0, 0, 0, True); | |
1248 } | |
1249 } | |
1250 | |
1251 return redisplay; | |
1252 } | |
1253 | |
1254 static void | |
8860 | 1255 XlwMenuResize (w) |
1256 Widget w; | |
5626 | 1257 { |
1258 XlwMenuWidget mw = (XlwMenuWidget)w; | |
1259 | |
8860 | 1260 if (mw->menu.popped_up) |
1261 { | |
1262 /* Don't allow the popup menu to resize itself. */ | |
1263 mw->core.width = mw->menu.windows [0].width; | |
1264 mw->core.height = mw->menu.windows [0].height; | |
1265 mw->core.parent->core.width = mw->core.width ; | |
1266 mw->core.parent->core.height = mw->core.height ; | |
1267 } | |
1268 else | |
1269 { | |
1270 mw->menu.windows [0].width = mw->core.width; | |
1271 mw->menu.windows [0].height = mw->core.height; | |
1272 } | |
5626 | 1273 } |
1274 | |
1275 /* Action procedures */ | |
1276 static void | |
8860 | 1277 handle_single_motion_event (mw, ev) |
1278 XlwMenuWidget mw; | |
1279 XMotionEvent* ev; | |
5626 | 1280 { |
1281 widget_value* val; | |
1282 int level; | |
1283 | |
1284 if (!map_event_to_widget_value (mw, ev, &val, &level)) | |
1285 pop_new_stack_if_no_contents (mw); | |
1286 else | |
1287 set_new_state (mw, val, level); | |
1288 remap_menubar (mw); | |
1289 | |
8860 | 1290 #if 0 |
5626 | 1291 /* Sync with the display. Makes it feel better on X terms. */ |
1292 XSync (XtDisplay (mw), False); | |
8860 | 1293 #endif |
5626 | 1294 } |
1295 | |
1296 static void | |
8860 | 1297 handle_motion_event (mw, ev) |
1298 XlwMenuWidget mw; | |
1299 XMotionEvent* ev; | |
5626 | 1300 { |
1301 int x = ev->x_root; | |
1302 int y = ev->y_root; | |
1303 int state = ev->state; | |
1304 | |
1305 handle_single_motion_event (mw, ev); | |
1306 | |
1307 /* allow motion events to be generated again */ | |
1308 if (ev->is_hint | |
1309 && XQueryPointer (XtDisplay (mw), ev->window, | |
1310 &ev->root, &ev->subwindow, | |
1311 &ev->x_root, &ev->y_root, | |
1312 &ev->x, &ev->y, | |
1313 &ev->state) | |
1314 && ev->state == state | |
1315 && (ev->x_root != x || ev->y_root != y)) | |
1316 handle_single_motion_event (mw, ev); | |
1317 } | |
1318 | |
1319 static void | |
8860 | 1320 Start (w, ev, params, num_params) |
1321 Widget w; | |
1322 XEvent *ev; | |
1323 String *params; | |
1324 Cardinal *num_params; | |
5626 | 1325 { |
1326 XlwMenuWidget mw = (XlwMenuWidget)w; | |
1327 | |
8860 | 1328 if (!mw->menu.popped_up) |
1329 { | |
1330 menu_post_event = *ev; | |
9027 | 1331 pop_up_menu (mw, ev); |
8860 | 1332 } |
1333 else | |
9027 | 1334 { |
1335 /* If we push a button while the menu is posted semipermanently, | |
1336 releasing the button should always pop the menu down. */ | |
1337 next_release_must_exit = 1; | |
5626 | 1338 |
9027 | 1339 /* notes the absolute position of the menubar window */ |
1340 mw->menu.windows [0].x = ev->xmotion.x_root - ev->xmotion.x; | |
1341 mw->menu.windows [0].y = ev->xmotion.y_root - ev->xmotion.y; | |
1342 | |
1343 /* handles the down like a move, slots are compatible */ | |
1344 handle_motion_event (mw, &ev->xmotion); | |
1345 } | |
5626 | 1346 } |
1347 | |
1348 static void | |
8860 | 1349 Drag (w, ev, params, num_params) |
1350 Widget w; | |
1351 XEvent *ev; | |
1352 String *params; | |
1353 Cardinal *num_params; | |
5626 | 1354 { |
1355 XlwMenuWidget mw = (XlwMenuWidget)w; | |
1356 handle_motion_event (mw, &ev->xmotion); | |
1357 } | |
1358 | |
1359 static void | |
8860 | 1360 Select (w, ev, params, num_params) |
1361 Widget w; | |
1362 XEvent *ev; | |
1363 String *params; | |
1364 Cardinal *num_params; | |
5626 | 1365 { |
1366 XlwMenuWidget mw = (XlwMenuWidget)w; | |
1367 widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1]; | |
1368 | |
8860 | 1369 /* If user releases the button quickly, without selecting anything, |
1370 after the initial down-click that brought the menu up, | |
1371 do nothing. */ | |
1372 if ((selected_item == 0 | |
1373 || ((widget_value *) selected_item)->call_data == 0) | |
1374 && !next_release_must_exit | |
1375 && (ev->xbutton.time - menu_post_event.xbutton.time | |
1376 < XtGetMultiClickTime (XtDisplay (w)))) | |
1377 return; | |
1378 | |
1379 /* pop down everything. */ | |
5626 | 1380 mw->menu.new_depth = 1; |
1381 remap_menubar (mw); | |
1382 | |
1383 if (mw->menu.popped_up) | |
1384 { | |
1385 mw->menu.popped_up = False; | |
1386 XtUngrabPointer ((Widget)mw, ev->xmotion.time); | |
9033 | 1387 if (XtIsShell (XtParent ((Widget) mw))) |
1388 XtPopdown (XtParent ((Widget) mw)); | |
9027 | 1389 else |
1390 { | |
1391 XtRemoveGrab ((Widget) mw); | |
1392 display_menu (mw, 0, False, NULL, NULL, NULL, NULL, NULL); | |
1393 } | |
5626 | 1394 } |
1395 | |
1396 /* callback */ | |
1397 XtCallCallbackList ((Widget)mw, mw->menu.select, (XtPointer)selected_item); | |
1398 } | |
1399 | |
1400 | |
1401 /* Special code to pop-up a menu */ | |
1402 void | |
8860 | 1403 pop_up_menu (mw, event) |
1404 XlwMenuWidget mw; | |
1405 XButtonPressedEvent* event; | |
5626 | 1406 { |
1407 int x = event->x_root; | |
1408 int y = event->y_root; | |
1409 int w; | |
1410 int h; | |
1411 int borderwidth = mw->menu.shadow_thickness; | |
1412 Screen* screen = XtScreen (mw); | |
1413 | |
8860 | 1414 next_release_must_exit = 0; |
1415 | |
5626 | 1416 XtCallCallbackList ((Widget)mw, mw->menu.open, NULL); |
1417 | |
9033 | 1418 if (XtIsShell (XtParent ((Widget)mw))) |
9027 | 1419 size_menu (mw, 0); |
5626 | 1420 |
1421 w = mw->menu.windows [0].width; | |
1422 h = mw->menu.windows [0].height; | |
1423 | |
1424 x -= borderwidth; | |
1425 y -= borderwidth; | |
1426 if (x < borderwidth) | |
1427 x = borderwidth; | |
1428 if (x + w + 2 * borderwidth > WidthOfScreen (screen)) | |
1429 x = WidthOfScreen (screen) - w - 2 * borderwidth; | |
1430 if (y < borderwidth) | |
1431 y = borderwidth; | |
1432 if (y + h + 2 * borderwidth> HeightOfScreen (screen)) | |
1433 y = HeightOfScreen (screen) - h - 2 * borderwidth; | |
1434 | |
1435 mw->menu.popped_up = True; | |
9033 | 1436 if (XtIsShell (XtParent ((Widget)mw))) |
9027 | 1437 { |
9033 | 1438 XtConfigureWidget (XtParent ((Widget)mw), x, y, w, h, |
1439 XtParent ((Widget)mw)->core.border_width); | |
1440 XtPopup (XtParent ((Widget)mw), XtGrabExclusive); | |
9027 | 1441 display_menu (mw, 0, False, NULL, NULL, NULL, NULL, NULL); |
1442 mw->menu.windows [0].x = x + borderwidth; | |
1443 mw->menu.windows [0].y = y + borderwidth; | |
1444 } | |
1445 else | |
1446 { | |
1447 XEvent *ev = (XEvent *) event; | |
1448 | |
1449 XtAddGrab ((Widget) mw, True, True); | |
1450 | |
1451 /* notes the absolute position of the menubar window */ | |
1452 mw->menu.windows [0].x = ev->xmotion.x_root - ev->xmotion.x; | |
1453 mw->menu.windows [0].y = ev->xmotion.y_root - ev->xmotion.y; | |
1454 } | |
1455 | |
8860 | 1456 #ifdef emacs |
1457 x_catch_errors (); | |
1458 #endif | |
5626 | 1459 XtGrabPointer ((Widget)mw, False, |
8860 | 1460 (PointerMotionMask | PointerMotionHintMask | ButtonReleaseMask |
5626 | 1461 | ButtonPressMask), |
1462 GrabModeAsync, GrabModeAsync, None, mw->menu.cursor_shape, | |
1463 event->time); | |
8860 | 1464 pointer_grabbed = 1; |
1465 #ifdef emacs | |
1466 if (x_had_errors_p ()) | |
1467 { | |
1468 pointer_grabbed = 0; | |
1469 XtUngrabPointer ((Widget)mw, event->time); | |
1470 } | |
1471 x_uncatch_errors (); | |
1472 #endif | |
5626 | 1473 |
1474 handle_motion_event (mw, (XMotionEvent*)event); | |
1475 } |