Trailing whitespace deleted.
[bpt/emacs.git] / src / xmenu.c
1 /* X Communication module for terminals which understand the X protocol.
2 Copyright (C) 1986, 88, 93, 94, 96, 99, 2000, 2001
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22 /* X pop-up deck-of-cards menu facility for GNU Emacs.
23 *
24 * Written by Jon Arnold and Roman Budzianowski
25 * Mods and rewrite by Robert Krawitz
26 *
27 */
28
29 /* Modified by Fred Pierresteguy on December 93
30 to make the popup menus and menubar use the Xt. */
31
32 /* Rewritten for clarity and GC protection by rms in Feb 94. */
33
34 #include <config.h>
35
36 /* On 4.3 this loses if it comes after xterm.h. */
37 #include <signal.h>
38
39 #include <stdio.h>
40
41 #include "lisp.h"
42 #include "termhooks.h"
43 #include "keyboard.h"
44 #include "keymap.h"
45 #include "frame.h"
46 #include "window.h"
47 #include "blockinput.h"
48 #include "buffer.h"
49 #include "charset.h"
50 #include "coding.h"
51
52 #ifdef MSDOS
53 #include "msdos.h"
54 #endif
55
56 #ifdef HAVE_X_WINDOWS
57 /* This may include sys/types.h, and that somehow loses
58 if this is not done before the other system files. */
59 #include "xterm.h"
60 #endif
61
62 /* Load sys/types.h if not already loaded.
63 In some systems loading it twice is suicidal. */
64 #ifndef makedev
65 #include <sys/types.h>
66 #endif
67
68 #include "dispextern.h"
69
70 #ifdef HAVE_X_WINDOWS
71 #undef HAVE_MULTILINGUAL_MENU
72 #ifdef USE_X_TOOLKIT
73 #include "widget.h"
74 #include <X11/Xlib.h>
75 #include <X11/IntrinsicP.h>
76 #include <X11/CoreP.h>
77 #include <X11/StringDefs.h>
78 #include <X11/Shell.h>
79 #ifdef USE_LUCID
80 #include <X11/Xaw/Paned.h>
81 #endif /* USE_LUCID */
82 #include "../lwlib/lwlib.h"
83 #else /* not USE_X_TOOLKIT */
84 #ifndef USE_GTK
85 #include "../oldXMenu/XMenu.h"
86 #endif
87 #endif /* not USE_X_TOOLKIT */
88 #endif /* HAVE_X_WINDOWS */
89
90 #ifndef TRUE
91 #define TRUE 1
92 #define FALSE 0
93 #endif /* no TRUE */
94
95 Lisp_Object Vmenu_updating_frame;
96
97 Lisp_Object Qdebug_on_next_call;
98
99 extern Lisp_Object Qmenu_bar;
100 extern Lisp_Object Qmouse_click, Qevent_kind;
101
102 extern Lisp_Object QCtoggle, QCradio;
103
104 extern Lisp_Object Voverriding_local_map;
105 extern Lisp_Object Voverriding_local_map_menu_flag;
106
107 extern Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
108
109 extern Lisp_Object Qmenu_bar_update_hook;
110
111 #ifdef USE_X_TOOLKIT
112 extern void set_frame_menubar ();
113 extern XtAppContext Xt_app_con;
114
115 static Lisp_Object xdialog_show ();
116 static void popup_get_selection ();
117
118 /* Define HAVE_BOXES if menus can handle radio and toggle buttons. */
119
120 #define HAVE_BOXES 1
121 #endif /* USE_X_TOOLKIT */
122
123 #ifdef USE_GTK
124 #include "gtkutil.h"
125 #define HAVE_BOXES 1
126 extern void set_frame_menubar ();
127 static Lisp_Object xdialog_show ();
128 #endif
129
130 static void push_menu_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
131 Lisp_Object, Lisp_Object, Lisp_Object,
132 Lisp_Object, Lisp_Object));
133 static int update_frame_menubar P_ ((struct frame *));
134 static Lisp_Object xmenu_show P_ ((struct frame *, int, int, int, int,
135 Lisp_Object, char **));
136 static void keymap_panes P_ ((Lisp_Object *, int, int));
137 static void single_keymap_panes P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
138 int, int));
139 static void single_menu_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object *,
140 int, int, int *));
141 static void list_of_panes P_ ((Lisp_Object));
142 static void list_of_items P_ ((Lisp_Object));
143
144 extern EMACS_TIME timer_check P_ ((int));
145 \f
146 /* This holds a Lisp vector that holds the results of decoding
147 the keymaps or alist-of-alists that specify a menu.
148
149 It describes the panes and items within the panes.
150
151 Each pane is described by 3 elements in the vector:
152 t, the pane name, the pane's prefix key.
153 Then follow the pane's items, with 5 elements per item:
154 the item string, the enable flag, the item's value,
155 the definition, and the equivalent keyboard key's description string.
156
157 In some cases, multiple levels of menus may be described.
158 A single vector slot containing nil indicates the start of a submenu.
159 A single vector slot containing lambda indicates the end of a submenu.
160 The submenu follows a menu item which is the way to reach the submenu.
161
162 A single vector slot containing quote indicates that the
163 following items should appear on the right of a dialog box.
164
165 Using a Lisp vector to hold this information while we decode it
166 takes care of protecting all the data from GC. */
167
168 #define MENU_ITEMS_PANE_NAME 1
169 #define MENU_ITEMS_PANE_PREFIX 2
170 #define MENU_ITEMS_PANE_LENGTH 3
171
172 enum menu_item_idx
173 {
174 MENU_ITEMS_ITEM_NAME = 0,
175 MENU_ITEMS_ITEM_ENABLE,
176 MENU_ITEMS_ITEM_VALUE,
177 MENU_ITEMS_ITEM_EQUIV_KEY,
178 MENU_ITEMS_ITEM_DEFINITION,
179 MENU_ITEMS_ITEM_TYPE,
180 MENU_ITEMS_ITEM_SELECTED,
181 MENU_ITEMS_ITEM_HELP,
182 MENU_ITEMS_ITEM_LENGTH
183 };
184
185 static Lisp_Object menu_items;
186
187 /* If non-nil, means that the global vars defined here are already in use.
188 Used to detect cases where we try to re-enter this non-reentrant code. */
189 static Lisp_Object menu_items_inuse;
190
191 /* Number of slots currently allocated in menu_items. */
192 static int menu_items_allocated;
193
194 /* This is the index in menu_items of the first empty slot. */
195 static int menu_items_used;
196
197 /* The number of panes currently recorded in menu_items,
198 excluding those within submenus. */
199 static int menu_items_n_panes;
200
201 /* Current depth within submenus. */
202 static int menu_items_submenu_depth;
203
204 /* Flag which when set indicates a dialog or menu has been posted by
205 Xt on behalf of one of the widget sets. */
206 static int popup_activated_flag;
207
208 static int next_menubar_widget_id;
209
210 /* This is set nonzero after the user activates the menu bar, and set
211 to zero again after the menu bars are redisplayed by prepare_menu_bar.
212 While it is nonzero, all calls to set_frame_menubar go deep.
213
214 I don't understand why this is needed, but it does seem to be
215 needed on Motif, according to Marcus Daniels <marcus@sysc.pdx.edu>. */
216
217 int pending_menu_activation;
218 \f
219 #ifdef USE_X_TOOLKIT
220
221 /* Return the frame whose ->output_data.x->id equals ID, or 0 if none. */
222
223 static struct frame *
224 menubar_id_to_frame (id)
225 LWLIB_ID id;
226 {
227 Lisp_Object tail, frame;
228 FRAME_PTR f;
229
230 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
231 {
232 frame = XCAR (tail);
233 if (!GC_FRAMEP (frame))
234 continue;
235 f = XFRAME (frame);
236 if (!FRAME_WINDOW_P (f))
237 continue;
238 if (f->output_data.x->id == id)
239 return f;
240 }
241 return 0;
242 }
243
244 #endif
245 \f
246 /* Initialize the menu_items structure if we haven't already done so.
247 Also mark it as currently empty. */
248
249 static void
250 init_menu_items ()
251 {
252 if (NILP (menu_items))
253 {
254 menu_items_allocated = 60;
255 menu_items = Fmake_vector (make_number (menu_items_allocated), Qnil);
256 }
257
258 if (!NILP (menu_items_inuse))
259 error ("Trying to use a menu from within a menu-entry");
260 menu_items_inuse = Qt;
261 menu_items_used = 0;
262 menu_items_n_panes = 0;
263 menu_items_submenu_depth = 0;
264 }
265
266 /* Call at the end of generating the data in menu_items. */
267
268 static void
269 finish_menu_items ()
270 {
271 }
272
273 static Lisp_Object
274 unuse_menu_items (dummy)
275 int dummy;
276 {
277 return menu_items_inuse = Qnil;
278 }
279
280 /* Call when finished using the data for the current menu
281 in menu_items. */
282
283 static void
284 discard_menu_items ()
285 {
286 /* Free the structure if it is especially large.
287 Otherwise, hold on to it, to save time. */
288 if (menu_items_allocated > 200)
289 {
290 menu_items = Qnil;
291 menu_items_allocated = 0;
292 }
293 xassert (NILP (menu_items_inuse));
294 }
295
296 /* Make the menu_items vector twice as large. */
297
298 static void
299 grow_menu_items ()
300 {
301 Lisp_Object old;
302 int old_size = menu_items_allocated;
303 old = menu_items;
304
305 menu_items_allocated *= 2;
306 menu_items = Fmake_vector (make_number (menu_items_allocated), Qnil);
307 bcopy (XVECTOR (old)->contents, XVECTOR (menu_items)->contents,
308 old_size * sizeof (Lisp_Object));
309 }
310
311 /* Begin a submenu. */
312
313 static void
314 push_submenu_start ()
315 {
316 if (menu_items_used + 1 > menu_items_allocated)
317 grow_menu_items ();
318
319 XVECTOR (menu_items)->contents[menu_items_used++] = Qnil;
320 menu_items_submenu_depth++;
321 }
322
323 /* End a submenu. */
324
325 static void
326 push_submenu_end ()
327 {
328 if (menu_items_used + 1 > menu_items_allocated)
329 grow_menu_items ();
330
331 XVECTOR (menu_items)->contents[menu_items_used++] = Qlambda;
332 menu_items_submenu_depth--;
333 }
334
335 /* Indicate boundary between left and right. */
336
337 static void
338 push_left_right_boundary ()
339 {
340 if (menu_items_used + 1 > menu_items_allocated)
341 grow_menu_items ();
342
343 XVECTOR (menu_items)->contents[menu_items_used++] = Qquote;
344 }
345
346 /* Start a new menu pane in menu_items.
347 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */
348
349 static void
350 push_menu_pane (name, prefix_vec)
351 Lisp_Object name, prefix_vec;
352 {
353 if (menu_items_used + MENU_ITEMS_PANE_LENGTH > menu_items_allocated)
354 grow_menu_items ();
355
356 if (menu_items_submenu_depth == 0)
357 menu_items_n_panes++;
358 XVECTOR (menu_items)->contents[menu_items_used++] = Qt;
359 XVECTOR (menu_items)->contents[menu_items_used++] = name;
360 XVECTOR (menu_items)->contents[menu_items_used++] = prefix_vec;
361 }
362
363 /* Push one menu item into the current pane. NAME is the string to
364 display. ENABLE if non-nil means this item can be selected. KEY
365 is the key generated by choosing this item, or nil if this item
366 doesn't really have a definition. DEF is the definition of this
367 item. EQUIV is the textual description of the keyboard equivalent
368 for this item (or nil if none). TYPE is the type of this menu
369 item, one of nil, `toggle' or `radio'. */
370
371 static void
372 push_menu_item (name, enable, key, def, equiv, type, selected, help)
373 Lisp_Object name, enable, key, def, equiv, type, selected, help;
374 {
375 if (menu_items_used + MENU_ITEMS_ITEM_LENGTH > menu_items_allocated)
376 grow_menu_items ();
377
378 XVECTOR (menu_items)->contents[menu_items_used++] = name;
379 XVECTOR (menu_items)->contents[menu_items_used++] = enable;
380 XVECTOR (menu_items)->contents[menu_items_used++] = key;
381 XVECTOR (menu_items)->contents[menu_items_used++] = equiv;
382 XVECTOR (menu_items)->contents[menu_items_used++] = def;
383 XVECTOR (menu_items)->contents[menu_items_used++] = type;
384 XVECTOR (menu_items)->contents[menu_items_used++] = selected;
385 XVECTOR (menu_items)->contents[menu_items_used++] = help;
386 }
387 \f
388 /* Look through KEYMAPS, a vector of keymaps that is NMAPS long,
389 and generate menu panes for them in menu_items.
390 If NOTREAL is nonzero,
391 don't bother really computing whether an item is enabled. */
392
393 static void
394 keymap_panes (keymaps, nmaps, notreal)
395 Lisp_Object *keymaps;
396 int nmaps;
397 int notreal;
398 {
399 int mapno;
400
401 init_menu_items ();
402
403 /* Loop over the given keymaps, making a pane for each map.
404 But don't make a pane that is empty--ignore that map instead.
405 P is the number of panes we have made so far. */
406 for (mapno = 0; mapno < nmaps; mapno++)
407 single_keymap_panes (keymaps[mapno],
408 Fkeymap_prompt (keymaps[mapno]), Qnil, notreal, 10);
409
410 finish_menu_items ();
411 }
412
413 /* This is a recursive subroutine of keymap_panes.
414 It handles one keymap, KEYMAP.
415 The other arguments are passed along
416 or point to local variables of the previous function.
417 If NOTREAL is nonzero, only check for equivalent key bindings, don't
418 evaluate expressions in menu items and don't make any menu.
419
420 If we encounter submenus deeper than MAXDEPTH levels, ignore them. */
421
422 static void
423 single_keymap_panes (keymap, pane_name, prefix, notreal, maxdepth)
424 Lisp_Object keymap;
425 Lisp_Object pane_name;
426 Lisp_Object prefix;
427 int notreal;
428 int maxdepth;
429 {
430 Lisp_Object pending_maps = Qnil;
431 Lisp_Object tail, item;
432 struct gcpro gcpro1, gcpro2;
433 int notbuttons = 0;
434
435 if (maxdepth <= 0)
436 return;
437
438 push_menu_pane (pane_name, prefix);
439
440 #ifndef HAVE_BOXES
441 /* Remember index for first item in this pane so we can go back and
442 add a prefix when (if) we see the first button. After that, notbuttons
443 is set to 0, to mark that we have seen a button and all non button
444 items need a prefix. */
445 notbuttons = menu_items_used;
446 #endif
447
448 for (tail = keymap; CONSP (tail); tail = XCDR (tail))
449 {
450 GCPRO2 (keymap, pending_maps);
451 /* Look at each key binding, and if it is a menu item add it
452 to this menu. */
453 item = XCAR (tail);
454 if (CONSP (item))
455 single_menu_item (XCAR (item), XCDR (item),
456 &pending_maps, notreal, maxdepth, &notbuttons);
457 else if (VECTORP (item))
458 {
459 /* Loop over the char values represented in the vector. */
460 int len = XVECTOR (item)->size;
461 int c;
462 for (c = 0; c < len; c++)
463 {
464 Lisp_Object character;
465 XSETFASTINT (character, c);
466 single_menu_item (character, XVECTOR (item)->contents[c],
467 &pending_maps, notreal, maxdepth, &notbuttons);
468 }
469 }
470 UNGCPRO;
471 }
472
473 /* Process now any submenus which want to be panes at this level. */
474 while (!NILP (pending_maps))
475 {
476 Lisp_Object elt, eltcdr, string;
477 elt = Fcar (pending_maps);
478 eltcdr = XCDR (elt);
479 string = XCAR (eltcdr);
480 /* We no longer discard the @ from the beginning of the string here.
481 Instead, we do this in xmenu_show. */
482 single_keymap_panes (Fcar (elt), string,
483 XCDR (eltcdr), notreal, maxdepth - 1);
484 pending_maps = Fcdr (pending_maps);
485 }
486 }
487 \f
488 /* This is a subroutine of single_keymap_panes that handles one
489 keymap entry.
490 KEY is a key in a keymap and ITEM is its binding.
491 PENDING_MAPS_PTR points to a list of keymaps waiting to be made into
492 separate panes.
493 If NOTREAL is nonzero, only check for equivalent key bindings, don't
494 evaluate expressions in menu items and don't make any menu.
495 If we encounter submenus deeper than MAXDEPTH levels, ignore them.
496 NOTBUTTONS_PTR is only used when simulating toggle boxes and radio
497 buttons. It points to variable notbuttons in single_keymap_panes,
498 which keeps track of if we have seen a button in this menu or not. */
499
500 static void
501 single_menu_item (key, item, pending_maps_ptr, notreal, maxdepth,
502 notbuttons_ptr)
503 Lisp_Object key, item;
504 Lisp_Object *pending_maps_ptr;
505 int maxdepth, notreal;
506 int *notbuttons_ptr;
507 {
508 Lisp_Object map, item_string, enabled;
509 struct gcpro gcpro1, gcpro2;
510 int res;
511
512 /* Parse the menu item and leave the result in item_properties. */
513 GCPRO2 (key, item);
514 res = parse_menu_item (item, notreal, 0);
515 UNGCPRO;
516 if (!res)
517 return; /* Not a menu item. */
518
519 map = XVECTOR (item_properties)->contents[ITEM_PROPERTY_MAP];
520
521 if (notreal)
522 {
523 /* We don't want to make a menu, just traverse the keymaps to
524 precompute equivalent key bindings. */
525 if (!NILP (map))
526 single_keymap_panes (map, Qnil, key, 1, maxdepth - 1);
527 return;
528 }
529
530 enabled = XVECTOR (item_properties)->contents[ITEM_PROPERTY_ENABLE];
531 item_string = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
532
533 if (!NILP (map) && SREF (item_string, 0) == '@')
534 {
535 if (!NILP (enabled))
536 /* An enabled separate pane. Remember this to handle it later. */
537 *pending_maps_ptr = Fcons (Fcons (map, Fcons (item_string, key)),
538 *pending_maps_ptr);
539 return;
540 }
541
542 #ifndef HAVE_BOXES
543 /* Simulate radio buttons and toggle boxes by putting a prefix in
544 front of them. */
545 {
546 Lisp_Object prefix = Qnil;
547 Lisp_Object type = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE];
548 if (!NILP (type))
549 {
550 Lisp_Object selected
551 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED];
552
553 if (*notbuttons_ptr)
554 /* The first button. Line up previous items in this menu. */
555 {
556 int index = *notbuttons_ptr; /* Index for first item this menu. */
557 int submenu = 0;
558 Lisp_Object tem;
559 while (index < menu_items_used)
560 {
561 tem
562 = XVECTOR (menu_items)->contents[index + MENU_ITEMS_ITEM_NAME];
563 if (NILP (tem))
564 {
565 index++;
566 submenu++; /* Skip sub menu. */
567 }
568 else if (EQ (tem, Qlambda))
569 {
570 index++;
571 submenu--; /* End sub menu. */
572 }
573 else if (EQ (tem, Qt))
574 index += 3; /* Skip new pane marker. */
575 else if (EQ (tem, Qquote))
576 index++; /* Skip a left, right divider. */
577 else
578 {
579 if (!submenu && SREF (tem, 0) != '\0'
580 && SREF (tem, 0) != '-')
581 XVECTOR (menu_items)->contents[index + MENU_ITEMS_ITEM_NAME]
582 = concat2 (build_string (" "), tem);
583 index += MENU_ITEMS_ITEM_LENGTH;
584 }
585 }
586 *notbuttons_ptr = 0;
587 }
588
589 /* Calculate prefix, if any, for this item. */
590 if (EQ (type, QCtoggle))
591 prefix = build_string (NILP (selected) ? "[ ] " : "[X] ");
592 else if (EQ (type, QCradio))
593 prefix = build_string (NILP (selected) ? "( ) " : "(*) ");
594 }
595 /* Not a button. If we have earlier buttons, then we need a prefix. */
596 else if (!*notbuttons_ptr && SREF (item_string, 0) != '\0'
597 && SREF (item_string, 0) != '-')
598 prefix = build_string (" ");
599
600 if (!NILP (prefix))
601 item_string = concat2 (prefix, item_string);
602 }
603 #endif /* not HAVE_BOXES */
604
605 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
606 if (!NILP(map))
607 /* Indicate visually that this is a submenu. */
608 item_string = concat2 (item_string, build_string (" >"));
609 #endif
610
611 push_menu_item (item_string, enabled, key,
612 XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF],
613 XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ],
614 XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE],
615 XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED],
616 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP]);
617
618 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
619 /* Display a submenu using the toolkit. */
620 if (! (NILP (map) || NILP (enabled)))
621 {
622 push_submenu_start ();
623 single_keymap_panes (map, Qnil, key, 0, maxdepth - 1);
624 push_submenu_end ();
625 }
626 #endif
627 }
628 \f
629 /* Push all the panes and items of a menu described by the
630 alist-of-alists MENU.
631 This handles old-fashioned calls to x-popup-menu. */
632
633 static void
634 list_of_panes (menu)
635 Lisp_Object menu;
636 {
637 Lisp_Object tail;
638
639 init_menu_items ();
640
641 for (tail = menu; !NILP (tail); tail = Fcdr (tail))
642 {
643 Lisp_Object elt, pane_name, pane_data;
644 elt = Fcar (tail);
645 pane_name = Fcar (elt);
646 CHECK_STRING (pane_name);
647 push_menu_pane (pane_name, Qnil);
648 pane_data = Fcdr (elt);
649 CHECK_CONS (pane_data);
650 list_of_items (pane_data);
651 }
652
653 finish_menu_items ();
654 }
655
656 /* Push the items in a single pane defined by the alist PANE. */
657
658 static void
659 list_of_items (pane)
660 Lisp_Object pane;
661 {
662 Lisp_Object tail, item, item1;
663
664 for (tail = pane; !NILP (tail); tail = Fcdr (tail))
665 {
666 item = Fcar (tail);
667 if (STRINGP (item))
668 push_menu_item (item, Qnil, Qnil, Qt, Qnil, Qnil, Qnil, Qnil);
669 else if (NILP (item))
670 push_left_right_boundary ();
671 else
672 {
673 CHECK_CONS (item);
674 item1 = Fcar (item);
675 CHECK_STRING (item1);
676 push_menu_item (item1, Qt, Fcdr (item), Qt, Qnil, Qnil, Qnil, Qnil);
677 }
678 }
679 }
680 \f
681 #ifdef HAVE_X_WINDOWS
682 /* Return the mouse position in *X and *Y. The coordinates are window
683 relative for the edit window in frame F.
684 This is for Fx_popup_menu. The mouse_position_hook can not
685 be used for X, as it returns window relative coordinates
686 for the window where the mouse is in. This could be the menu bar,
687 the scroll bar or the edit window. Fx_popup_menu needs to be
688 sure it is the edit window. */
689 static void
690 mouse_position_for_popup(f, x, y)
691 FRAME_PTR f;
692 int *x;
693 int *y;
694 {
695 Window root, dummy_window;
696 int dummy;
697
698 BLOCK_INPUT;
699
700 XQueryPointer (FRAME_X_DISPLAY (f),
701 DefaultRootWindow (FRAME_X_DISPLAY (f)),
702
703 /* The root window which contains the pointer. */
704 &root,
705
706 /* Window pointer is on, not used */
707 &dummy_window,
708
709 /* The position on that root window. */
710 x, y,
711
712 /* x/y in dummy_window coordinates, not used. */
713 &dummy, &dummy,
714
715 /* Modifier keys and pointer buttons, about which
716 we don't care. */
717 (unsigned int *) &dummy);
718
719 UNBLOCK_INPUT;
720
721 /* xmenu_show expects window coordinates, not root window
722 coordinates. Translate. */
723 *x -= f->output_data.x->left_pos
724 + FRAME_OUTER_TO_INNER_DIFF_X (f);
725 *y -= f->output_data.x->top_pos
726 + FRAME_OUTER_TO_INNER_DIFF_Y (f);
727 }
728
729 #endif /* HAVE_X_WINDOWS */
730
731 DEFUN ("x-popup-menu", Fx_popup_menu, Sx_popup_menu, 2, 2, 0,
732 doc: /* Pop up a deck-of-cards menu and return user's selection.
733 POSITION is a position specification. This is either a mouse button event
734 or a list ((XOFFSET YOFFSET) WINDOW)
735 where XOFFSET and YOFFSET are positions in pixels from the top left
736 corner of WINDOW's frame. (WINDOW may be a frame object instead of a window.)
737 This controls the position of the center of the first line
738 in the first pane of the menu, not the top left of the menu as a whole.
739 If POSITION is t, it means to use the current mouse position.
740
741 MENU is a specifier for a menu. For the simplest case, MENU is a keymap.
742 The menu items come from key bindings that have a menu string as well as
743 a definition; actually, the "definition" in such a key binding looks like
744 \(STRING . REAL-DEFINITION). To give the menu a title, put a string into
745 the keymap as a top-level element.
746
747 If REAL-DEFINITION is nil, that puts a nonselectable string in the menu.
748 Otherwise, REAL-DEFINITION should be a valid key binding definition.
749
750 You can also use a list of keymaps as MENU.
751 Then each keymap makes a separate pane.
752 When MENU is a keymap or a list of keymaps, the return value
753 is a list of events.
754
755 Alternatively, you can specify a menu of multiple panes
756 with a list of the form (TITLE PANE1 PANE2...),
757 where each pane is a list of form (TITLE ITEM1 ITEM2...).
758 Each ITEM is normally a cons cell (STRING . VALUE);
759 but a string can appear as an item--that makes a nonselectable line
760 in the menu.
761 With this form of menu, the return value is VALUE from the chosen item.
762
763 If POSITION is nil, don't display the menu at all, just precalculate the
764 cached information about equivalent key sequences. */)
765 (position, menu)
766 Lisp_Object position, menu;
767 {
768 Lisp_Object keymap, tem;
769 int xpos = 0, ypos = 0;
770 Lisp_Object title;
771 char *error_name;
772 Lisp_Object selection;
773 FRAME_PTR f = NULL;
774 Lisp_Object x, y, window;
775 int keymaps = 0;
776 int for_click = 0;
777 int specpdl_count = SPECPDL_INDEX ();
778 struct gcpro gcpro1;
779
780 #ifdef HAVE_MENUS
781 if (! NILP (position))
782 {
783 int get_current_pos_p = 0;
784 check_x ();
785
786 /* Decode the first argument: find the window and the coordinates. */
787 if (EQ (position, Qt)
788 || (CONSP (position) && (EQ (XCAR (position), Qmenu_bar)
789 || EQ (XCAR (position), Qtool_bar))))
790 {
791 get_current_pos_p = 1;
792 }
793 else
794 {
795 tem = Fcar (position);
796 if (CONSP (tem))
797 {
798 window = Fcar (Fcdr (position));
799 x = Fcar (tem);
800 y = Fcar (Fcdr (tem));
801 }
802 else
803 {
804 for_click = 1;
805 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
806 window = Fcar (tem); /* POSN_WINDOW (tem) */
807 tem = Fcar (Fcdr (Fcdr (tem))); /* POSN_WINDOW_POSN (tem) */
808 x = Fcar (tem);
809 y = Fcdr (tem);
810 }
811
812 /* If a click happens in an external tool bar or a detached
813 tool bar, x and y is NIL. In that case, use the current
814 mouse position. This happens for the help button in the
815 tool bar. Ideally popup-menu should pass NIL to
816 this function, but it doesn't. */
817 if (NILP (x) && NILP (y))
818 get_current_pos_p = 1;
819 }
820
821 if (get_current_pos_p)
822 {
823 /* Use the mouse's current position. */
824 FRAME_PTR new_f = SELECTED_FRAME ();
825 #ifdef HAVE_X_WINDOWS
826 /* Can't use mouse_position_hook for X since it returns
827 coordinates relative to the window the mouse is in,
828 we need coordinates relative to the edit widget always. */
829 if (new_f != 0)
830 {
831 int cur_x, cur_y;
832
833 mouse_position_for_popup (new_f, &cur_x, &cur_y);
834 /* cur_x/y may be negative, so use make_number. */
835 x = make_number (cur_x);
836 y = make_number (cur_y);
837 }
838
839 #else /* not HAVE_X_WINDOWS */
840 Lisp_Object bar_window;
841 enum scroll_bar_part part;
842 unsigned long time;
843
844 if (mouse_position_hook)
845 (*mouse_position_hook) (&new_f, 1, &bar_window,
846 &part, &x, &y, &time);
847 #endif /* not HAVE_X_WINDOWS */
848
849 if (new_f != 0)
850 XSETFRAME (window, new_f);
851 else
852 {
853 window = selected_window;
854 XSETFASTINT (x, 0);
855 XSETFASTINT (y, 0);
856 }
857 }
858
859 CHECK_NUMBER (x);
860 CHECK_NUMBER (y);
861
862 /* Decode where to put the menu. */
863
864 if (FRAMEP (window))
865 {
866 f = XFRAME (window);
867 xpos = 0;
868 ypos = 0;
869 }
870 else if (WINDOWP (window))
871 {
872 CHECK_LIVE_WINDOW (window);
873 f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
874
875 xpos = (FONT_WIDTH (FRAME_FONT (f))
876 * XFASTINT (XWINDOW (window)->left));
877 ypos = (FRAME_LINE_HEIGHT (f)
878 * XFASTINT (XWINDOW (window)->top));
879 }
880 else
881 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
882 but I don't want to make one now. */
883 CHECK_WINDOW (window);
884
885 xpos += XINT (x);
886 ypos += XINT (y);
887 }
888 Vmenu_updating_frame = Qnil;
889 #endif /* HAVE_MENUS */
890
891 record_unwind_protect (unuse_menu_items, Qnil);
892 title = Qnil;
893 GCPRO1 (title);
894
895 /* Decode the menu items from what was specified. */
896
897 keymap = get_keymap (menu, 0, 0);
898 if (CONSP (keymap))
899 {
900 /* We were given a keymap. Extract menu info from the keymap. */
901 Lisp_Object prompt;
902
903 /* Extract the detailed info to make one pane. */
904 keymap_panes (&menu, 1, NILP (position));
905
906 /* Search for a string appearing directly as an element of the keymap.
907 That string is the title of the menu. */
908 prompt = Fkeymap_prompt (keymap);
909 if (NILP (title) && !NILP (prompt))
910 title = prompt;
911
912 /* Make that be the pane title of the first pane. */
913 if (!NILP (prompt) && menu_items_n_panes >= 0)
914 XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME] = prompt;
915
916 keymaps = 1;
917 }
918 else if (CONSP (menu) && KEYMAPP (XCAR (menu)))
919 {
920 /* We were given a list of keymaps. */
921 int nmaps = XFASTINT (Flength (menu));
922 Lisp_Object *maps
923 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
924 int i;
925
926 title = Qnil;
927
928 /* The first keymap that has a prompt string
929 supplies the menu title. */
930 for (tem = menu, i = 0; CONSP (tem); tem = Fcdr (tem))
931 {
932 Lisp_Object prompt;
933
934 maps[i++] = keymap = get_keymap (Fcar (tem), 1, 0);
935
936 prompt = Fkeymap_prompt (keymap);
937 if (NILP (title) && !NILP (prompt))
938 title = prompt;
939 }
940
941 /* Extract the detailed info to make one pane. */
942 keymap_panes (maps, nmaps, NILP (position));
943
944 /* Make the title be the pane title of the first pane. */
945 if (!NILP (title) && menu_items_n_panes >= 0)
946 XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME] = title;
947
948 keymaps = 1;
949 }
950 else
951 {
952 /* We were given an old-fashioned menu. */
953 title = Fcar (menu);
954 CHECK_STRING (title);
955
956 list_of_panes (Fcdr (menu));
957
958 keymaps = 0;
959 }
960
961 unbind_to (specpdl_count, Qnil);
962
963 if (NILP (position))
964 {
965 discard_menu_items ();
966 UNGCPRO;
967 return Qnil;
968 }
969
970 #ifdef HAVE_MENUS
971 /* Display them in a menu. */
972 BLOCK_INPUT;
973
974 selection = xmenu_show (f, xpos, ypos, for_click,
975 keymaps, title, &error_name);
976 UNBLOCK_INPUT;
977
978 discard_menu_items ();
979
980 UNGCPRO;
981 #endif /* HAVE_MENUS */
982
983 if (error_name) error (error_name);
984 return selection;
985 }
986
987 #ifdef HAVE_MENUS
988
989 DEFUN ("x-popup-dialog", Fx_popup_dialog, Sx_popup_dialog, 2, 2, 0,
990 doc: /* Pop up a dialog box and return user's selection.
991 POSITION specifies which frame to use.
992 This is normally a mouse button event or a window or frame.
993 If POSITION is t, it means to use the frame the mouse is on.
994 The dialog box appears in the middle of the specified frame.
995
996 CONTENTS specifies the alternatives to display in the dialog box.
997 It is a list of the form (TITLE ITEM1 ITEM2...).
998 Each ITEM is a cons cell (STRING . VALUE).
999 The return value is VALUE from the chosen item.
1000
1001 An ITEM may also be just a string--that makes a nonselectable item.
1002 An ITEM may also be nil--that means to put all preceding items
1003 on the left of the dialog box and all following items on the right.
1004 \(By default, approximately half appear on each side.) */)
1005 (position, contents)
1006 Lisp_Object position, contents;
1007 {
1008 FRAME_PTR f = NULL;
1009 Lisp_Object window;
1010
1011 check_x ();
1012
1013 /* Decode the first argument: find the window or frame to use. */
1014 if (EQ (position, Qt)
1015 || (CONSP (position) && (EQ (XCAR (position), Qmenu_bar)
1016 || EQ (XCAR (position), Qtool_bar))))
1017 {
1018 #if 0 /* Using the frame the mouse is on may not be right. */
1019 /* Use the mouse's current position. */
1020 FRAME_PTR new_f = SELECTED_FRAME ();
1021 Lisp_Object bar_window;
1022 enum scroll_bar_part part;
1023 unsigned long time;
1024 Lisp_Object x, y;
1025
1026 (*mouse_position_hook) (&new_f, 1, &bar_window, &part, &x, &y, &time);
1027
1028 if (new_f != 0)
1029 XSETFRAME (window, new_f);
1030 else
1031 window = selected_window;
1032 #endif
1033 window = selected_window;
1034 }
1035 else if (CONSP (position))
1036 {
1037 Lisp_Object tem;
1038 tem = Fcar (position);
1039 if (CONSP (tem))
1040 window = Fcar (Fcdr (position));
1041 else
1042 {
1043 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
1044 window = Fcar (tem); /* POSN_WINDOW (tem) */
1045 }
1046 }
1047 else if (WINDOWP (position) || FRAMEP (position))
1048 window = position;
1049 else
1050 window = Qnil;
1051
1052 /* Decode where to put the menu. */
1053
1054 if (FRAMEP (window))
1055 f = XFRAME (window);
1056 else if (WINDOWP (window))
1057 {
1058 CHECK_LIVE_WINDOW (window);
1059 f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
1060 }
1061 else
1062 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
1063 but I don't want to make one now. */
1064 CHECK_WINDOW (window);
1065
1066 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
1067 /* Display a menu with these alternatives
1068 in the middle of frame F. */
1069 {
1070 Lisp_Object x, y, frame, newpos;
1071 XSETFRAME (frame, f);
1072 XSETINT (x, x_pixel_width (f) / 2);
1073 XSETINT (y, x_pixel_height (f) / 2);
1074 newpos = Fcons (Fcons (x, Fcons (y, Qnil)), Fcons (frame, Qnil));
1075
1076 return Fx_popup_menu (newpos,
1077 Fcons (Fcar (contents), Fcons (contents, Qnil)));
1078 }
1079 #else
1080 {
1081 Lisp_Object title;
1082 char *error_name;
1083 Lisp_Object selection;
1084 int specpdl_count = SPECPDL_INDEX ();
1085
1086 /* Decode the dialog items from what was specified. */
1087 title = Fcar (contents);
1088 CHECK_STRING (title);
1089 record_unwind_protect (unuse_menu_items, Qnil);
1090
1091 list_of_panes (Fcons (contents, Qnil));
1092
1093 /* Display them in a dialog box. */
1094 BLOCK_INPUT;
1095 selection = xdialog_show (f, 0, title, &error_name);
1096 UNBLOCK_INPUT;
1097
1098 unbind_to (specpdl_count, Qnil);
1099 discard_menu_items ();
1100
1101 if (error_name) error (error_name);
1102 return selection;
1103 }
1104 #endif
1105 }
1106 \f
1107 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
1108
1109 /* Loop in Xt until the menu pulldown or dialog popup has been
1110 popped down (deactivated). This is used for x-popup-menu
1111 and x-popup-dialog; it is not used for the menu bar.
1112
1113 If DO_TIMERS is nonzero, run timers.
1114
1115 NOTE: All calls to popup_get_selection should be protected
1116 with BLOCK_INPUT, UNBLOCK_INPUT wrappers. */
1117
1118 #ifdef USE_X_TOOLKIT
1119 static void
1120 popup_get_selection (initial_event, dpyinfo, id, do_timers)
1121 XEvent *initial_event;
1122 struct x_display_info *dpyinfo;
1123 LWLIB_ID id;
1124 int do_timers;
1125 {
1126 XEvent event;
1127
1128 while (popup_activated_flag)
1129 {
1130 /* If we have no events to run, consider timers. */
1131 if (do_timers && !XtAppPending (Xt_app_con))
1132 timer_check (1);
1133
1134 if (initial_event)
1135 {
1136 event = *initial_event;
1137 initial_event = 0;
1138 }
1139 else
1140 XtAppNextEvent (Xt_app_con, &event);
1141
1142 /* Make sure we don't consider buttons grabbed after menu goes.
1143 And make sure to deactivate for any ButtonRelease,
1144 even if XtDispatchEvent doesn't do that. */
1145 if (event.type == ButtonRelease
1146 && dpyinfo->display == event.xbutton.display)
1147 {
1148 dpyinfo->grabbed &= ~(1 << event.xbutton.button);
1149 #ifdef USE_MOTIF /* Pretending that the event came from a
1150 Btn1Down seems the only way to convince Motif to
1151 activate its callbacks; setting the XmNmenuPost
1152 isn't working. --marcus@sysc.pdx.edu. */
1153 event.xbutton.button = 1;
1154 /* Motif only pops down menus when no Ctrl, Alt or Mod
1155 key is pressed and the button is released. So reset key state
1156 so Motif thinks this is the case. */
1157 event.xbutton.state = 0;
1158 #endif
1159 }
1160 /* If the user presses a key, deactivate the menu.
1161 The user is likely to do that if we get wedged.
1162 This is mostly for Lucid, Motif pops down the menu on ESC. */
1163 else if (event.type == KeyPress
1164 && dpyinfo->display == event.xbutton.display)
1165 {
1166 KeySym keysym = XLookupKeysym (&event.xkey, 0);
1167 if (!IsModifierKey (keysym))
1168 popup_activated_flag = 0;
1169 }
1170
1171 x_dispatch_event (&event, event.xany.display);
1172 }
1173 }
1174
1175 #endif /* USE_X_TOOLKIT */
1176
1177 #ifdef USE_GTK
1178 /* Loop util popup_activated_flag is set to zero in a callback.
1179 Used for popup menus and dialogs. */
1180 static void
1181 popup_widget_loop ()
1182 {
1183 ++popup_activated_flag;
1184
1185 /* Process events in the Gtk event loop until done. */
1186 while (popup_activated_flag)
1187 {
1188 gtk_main_iteration ();
1189 }
1190 }
1191 #endif
1192
1193 /* Activate the menu bar of frame F.
1194 This is called from keyboard.c when it gets the
1195 MENU_BAR_ACTIVATE_EVENT out of the Emacs event queue.
1196
1197 To activate the menu bar, we use the X button-press event
1198 that was saved in saved_menu_event.
1199 That makes the toolkit do its thing.
1200
1201 But first we recompute the menu bar contents (the whole tree).
1202
1203 The reason for saving the button event until here, instead of
1204 passing it to the toolkit right away, is that we can safely
1205 execute Lisp code. */
1206
1207 void
1208 x_activate_menubar (f)
1209 FRAME_PTR f;
1210 {
1211 if (!f->output_data.x->saved_menu_event->type)
1212 return;
1213
1214 #ifdef USE_GTK
1215 if (! xg_win_to_widget (f->output_data.x->saved_menu_event->xany.window))
1216 return;
1217 #endif
1218
1219 set_frame_menubar (f, 0, 1);
1220 BLOCK_INPUT;
1221 #ifdef USE_GTK
1222 XPutBackEvent (f->output_data.x->display_info->display,
1223 f->output_data.x->saved_menu_event);
1224 popup_activated_flag = 1;
1225 #else
1226 XtDispatchEvent (f->output_data.x->saved_menu_event);
1227 #endif
1228 UNBLOCK_INPUT;
1229 #ifdef USE_MOTIF
1230 if (f->output_data.x->saved_menu_event->type == ButtonRelease)
1231 pending_menu_activation = 1;
1232 #endif
1233
1234 /* Ignore this if we get it a second time. */
1235 f->output_data.x->saved_menu_event->type = 0;
1236 }
1237
1238 /* Detect if a dialog or menu has been posted. */
1239
1240 int
1241 popup_activated ()
1242 {
1243 return popup_activated_flag;
1244 }
1245
1246 /* This callback is invoked when the user selects a menubar cascade
1247 pushbutton, but before the pulldown menu is posted. */
1248
1249 #ifndef USE_GTK
1250 static void
1251 popup_activate_callback (widget, id, client_data)
1252 Widget widget;
1253 LWLIB_ID id;
1254 XtPointer client_data;
1255 {
1256 popup_activated_flag = 1;
1257 }
1258 #endif
1259
1260 /* This callback is invoked when a dialog or menu is finished being
1261 used and has been unposted. */
1262
1263 #ifdef USE_GTK
1264 static void
1265 popup_deactivate_callback (widget, client_data)
1266 GtkWidget *widget;
1267 gpointer client_data;
1268 {
1269 popup_activated_flag = 0;
1270 }
1271 #else
1272 static void
1273 popup_deactivate_callback (widget, id, client_data)
1274 Widget widget;
1275 LWLIB_ID id;
1276 XtPointer client_data;
1277 {
1278 popup_activated_flag = 0;
1279 }
1280 #endif
1281
1282
1283 /* Function that finds the frame for WIDGET and shows the HELP text
1284 for that widget.
1285 F is the frame if known, or NULL if not known. */
1286 static void
1287 show_help_event (f, widget, help)
1288 FRAME_PTR f;
1289 xt_or_gtk_widget widget;
1290 Lisp_Object help;
1291 {
1292 Lisp_Object frame;
1293
1294 if (f)
1295 {
1296 XSETFRAME (frame, f);
1297 kbd_buffer_store_help_event (frame, help);
1298 }
1299 else
1300 {
1301 /* WIDGET is the popup menu. It's parent is the frame's
1302 widget. See which frame that is. */
1303 xt_or_gtk_widget frame_widget = XtParent (widget);
1304 Lisp_Object tail;
1305
1306 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
1307 {
1308 frame = XCAR (tail);
1309 if (GC_FRAMEP (frame)
1310 && (f = XFRAME (frame),
1311 FRAME_X_P (f) && f->output_data.x->widget == frame_widget))
1312 break;
1313 }
1314
1315 show_help_echo (help, Qnil, Qnil, Qnil, 1);
1316 }
1317 }
1318
1319 /* Callback called when menu items are highlighted/unhighlighted
1320 while moving the mouse over them. WIDGET is the menu bar or menu
1321 popup widget. ID is its LWLIB_ID. CALL_DATA contains a pointer to
1322 the data structure for the menu item, or null in case of
1323 unhighlighting. */
1324
1325 #ifdef USE_GTK
1326 void
1327 menu_highlight_callback (widget, call_data)
1328 GtkWidget *widget;
1329 gpointer call_data;
1330 {
1331 xg_menu_item_cb_data *cb_data;
1332 Lisp_Object help;
1333
1334 cb_data = (xg_menu_item_cb_data*) g_object_get_data (G_OBJECT (widget),
1335 XG_ITEM_DATA);
1336 if (! cb_data) return;
1337
1338 help = call_data ? cb_data->help : Qnil;
1339
1340 /* If popup_activated_flag is greater than 1 we are in a popup menu.
1341 Don't show help for them, they won't appear before the
1342 popup is popped down. */
1343 if (popup_activated_flag <= 1)
1344 show_help_event (cb_data->cl_data->f, widget, help);
1345 }
1346 #else
1347 void
1348 menu_highlight_callback (widget, id, call_data)
1349 Widget widget;
1350 LWLIB_ID id;
1351 void *call_data;
1352 {
1353 struct frame *f;
1354 Lisp_Object help;
1355
1356 widget_value *wv = (widget_value *) call_data;
1357
1358 help = wv ? wv->help : Qnil;
1359
1360 /* Determine the frame for the help event. */
1361 f = menubar_id_to_frame (id);
1362
1363 show_help_event (f, widget, help);
1364 }
1365 #endif
1366
1367 /* Find the menu selection and store it in the keyboard buffer.
1368 F is the frame the menu is on.
1369 MENU_BAR_ITEMS_USED is the length of VECTOR.
1370 VECTOR is an array of menu events for the whole menu.
1371 */
1372 void
1373 find_and_call_menu_selection (f, menu_bar_items_used, vector, client_data)
1374 FRAME_PTR f;
1375 int menu_bar_items_used;
1376 Lisp_Object vector;
1377 void *client_data;
1378 {
1379 Lisp_Object prefix, entry;
1380 Lisp_Object *subprefix_stack;
1381 int submenu_depth = 0;
1382 int i;
1383
1384 entry = Qnil;
1385 subprefix_stack = (Lisp_Object *) alloca (menu_bar_items_used * sizeof (Lisp_Object));
1386 prefix = Qnil;
1387 i = 0;
1388
1389 while (i < menu_bar_items_used)
1390 {
1391 if (EQ (XVECTOR (vector)->contents[i], Qnil))
1392 {
1393 subprefix_stack[submenu_depth++] = prefix;
1394 prefix = entry;
1395 i++;
1396 }
1397 else if (EQ (XVECTOR (vector)->contents[i], Qlambda))
1398 {
1399 prefix = subprefix_stack[--submenu_depth];
1400 i++;
1401 }
1402 else if (EQ (XVECTOR (vector)->contents[i], Qt))
1403 {
1404 prefix = XVECTOR (vector)->contents[i + MENU_ITEMS_PANE_PREFIX];
1405 i += MENU_ITEMS_PANE_LENGTH;
1406 }
1407 else
1408 {
1409 entry = XVECTOR (vector)->contents[i + MENU_ITEMS_ITEM_VALUE];
1410 /* The EMACS_INT cast avoids a warning. There's no problem
1411 as long as pointers have enough bits to hold small integers. */
1412 if ((int) (EMACS_INT) client_data == i)
1413 {
1414 int j;
1415 struct input_event buf;
1416 Lisp_Object frame;
1417
1418 XSETFRAME (frame, f);
1419 buf.kind = MENU_BAR_EVENT;
1420 buf.frame_or_window = frame;
1421 buf.arg = frame;
1422 kbd_buffer_store_event (&buf);
1423
1424 for (j = 0; j < submenu_depth; j++)
1425 if (!NILP (subprefix_stack[j]))
1426 {
1427 buf.kind = MENU_BAR_EVENT;
1428 buf.frame_or_window = frame;
1429 buf.arg = subprefix_stack[j];
1430 kbd_buffer_store_event (&buf);
1431 }
1432
1433 if (!NILP (prefix))
1434 {
1435 buf.kind = MENU_BAR_EVENT;
1436 buf.frame_or_window = frame;
1437 buf.arg = prefix;
1438 kbd_buffer_store_event (&buf);
1439 }
1440
1441 buf.kind = MENU_BAR_EVENT;
1442 buf.frame_or_window = frame;
1443 buf.arg = entry;
1444 kbd_buffer_store_event (&buf);
1445
1446 return;
1447 }
1448 i += MENU_ITEMS_ITEM_LENGTH;
1449 }
1450 }
1451 }
1452
1453
1454 #ifdef USE_GTK
1455 /* Gtk calls callbacks just because we tell it what item should be
1456 selected in a radio group. If this variable is set to a non-zero
1457 value, we are creating menus and don't want callbacks right now.
1458 */
1459 static int xg_crazy_callback_abort;
1460
1461 /* This callback is called from the menu bar pulldown menu
1462 when the user makes a selection.
1463 Figure out what the user chose
1464 and put the appropriate events into the keyboard buffer. */
1465 static void
1466 menubar_selection_callback (widget, client_data)
1467 GtkWidget *widget;
1468 gpointer client_data;
1469 {
1470 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data*) client_data;
1471
1472 if (xg_crazy_callback_abort)
1473 return;
1474
1475 if (! cb_data || ! cb_data->cl_data || ! cb_data->cl_data->f)
1476 return;
1477
1478 find_and_call_menu_selection (cb_data->cl_data->f,
1479 cb_data->cl_data->menu_bar_items_used,
1480 cb_data->cl_data->menu_bar_vector,
1481 cb_data->call_data);
1482 }
1483
1484 #else /* not USE_GTK */
1485
1486 /* This callback is called from the menu bar pulldown menu
1487 when the user makes a selection.
1488 Figure out what the user chose
1489 and put the appropriate events into the keyboard buffer. */
1490 static void
1491 menubar_selection_callback (widget, id, client_data)
1492 Widget widget;
1493 LWLIB_ID id;
1494 XtPointer client_data;
1495 {
1496 FRAME_PTR f;
1497
1498 f = menubar_id_to_frame (id);
1499 if (!f)
1500 return;
1501 find_and_call_menu_selection (f, f->menu_bar_items_used,
1502 f->menu_bar_vector, client_data);
1503 }
1504 #endif /* not USE_GTK */
1505
1506 /* Allocate a widget_value, blocking input. */
1507
1508 widget_value *
1509 xmalloc_widget_value ()
1510 {
1511 widget_value *value;
1512
1513 BLOCK_INPUT;
1514 value = malloc_widget_value ();
1515 UNBLOCK_INPUT;
1516
1517 return value;
1518 }
1519
1520 /* This recursively calls free_widget_value on the tree of widgets.
1521 It must free all data that was malloc'ed for these widget_values.
1522 In Emacs, many slots are pointers into the data of Lisp_Strings, and
1523 must be left alone. */
1524
1525 void
1526 free_menubar_widget_value_tree (wv)
1527 widget_value *wv;
1528 {
1529 if (! wv) return;
1530
1531 wv->name = wv->value = wv->key = (char *) 0xDEADBEEF;
1532
1533 if (wv->contents && (wv->contents != (widget_value*)1))
1534 {
1535 free_menubar_widget_value_tree (wv->contents);
1536 wv->contents = (widget_value *) 0xDEADBEEF;
1537 }
1538 if (wv->next)
1539 {
1540 free_menubar_widget_value_tree (wv->next);
1541 wv->next = (widget_value *) 0xDEADBEEF;
1542 }
1543 BLOCK_INPUT;
1544 free_widget_value (wv);
1545 UNBLOCK_INPUT;
1546 }
1547 \f
1548 /* Set up data in menu_items for a menu bar item
1549 whose event type is ITEM_KEY (with string ITEM_NAME)
1550 and whose contents come from the list of keymaps MAPS. */
1551
1552 static int
1553 parse_single_submenu (item_key, item_name, maps)
1554 Lisp_Object item_key, item_name, maps;
1555 {
1556 Lisp_Object length;
1557 int len;
1558 Lisp_Object *mapvec;
1559 int i;
1560 int top_level_items = 0;
1561
1562 length = Flength (maps);
1563 len = XINT (length);
1564
1565 /* Convert the list MAPS into a vector MAPVEC. */
1566 mapvec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
1567 for (i = 0; i < len; i++)
1568 {
1569 mapvec[i] = Fcar (maps);
1570 maps = Fcdr (maps);
1571 }
1572
1573 /* Loop over the given keymaps, making a pane for each map.
1574 But don't make a pane that is empty--ignore that map instead. */
1575 for (i = 0; i < len; i++)
1576 {
1577 if (!KEYMAPP (mapvec[i]))
1578 {
1579 /* Here we have a command at top level in the menu bar
1580 as opposed to a submenu. */
1581 top_level_items = 1;
1582 push_menu_pane (Qnil, Qnil);
1583 push_menu_item (item_name, Qt, item_key, mapvec[i],
1584 Qnil, Qnil, Qnil, Qnil);
1585 }
1586 else
1587 {
1588 Lisp_Object prompt;
1589 prompt = Fkeymap_prompt (mapvec[i]);
1590 single_keymap_panes (mapvec[i],
1591 !NILP (prompt) ? prompt : item_name,
1592 item_key, 0, 10);
1593 }
1594 }
1595
1596 return top_level_items;
1597 }
1598
1599 /* Create a tree of widget_value objects
1600 representing the panes and items
1601 in menu_items starting at index START, up to index END. */
1602
1603 static widget_value *
1604 digest_single_submenu (start, end, top_level_items)
1605 int start, end, top_level_items;
1606 {
1607 widget_value *wv, *prev_wv, *save_wv, *first_wv;
1608 int i;
1609 int submenu_depth = 0;
1610 widget_value **submenu_stack;
1611
1612 submenu_stack
1613 = (widget_value **) alloca (menu_items_used * sizeof (widget_value *));
1614 wv = xmalloc_widget_value ();
1615 wv->name = "menu";
1616 wv->value = 0;
1617 wv->enabled = 1;
1618 wv->button_type = BUTTON_TYPE_NONE;
1619 wv->help = Qnil;
1620 first_wv = wv;
1621 save_wv = 0;
1622 prev_wv = 0;
1623
1624 /* Loop over all panes and items made by the preceding call
1625 to parse_single_submenu and construct a tree of widget_value objects.
1626 Ignore the panes and items used by previous calls to
1627 digest_single_submenu, even though those are also in menu_items. */
1628 i = start;
1629 while (i < end)
1630 {
1631 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
1632 {
1633 submenu_stack[submenu_depth++] = save_wv;
1634 save_wv = prev_wv;
1635 prev_wv = 0;
1636 i++;
1637 }
1638 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
1639 {
1640 prev_wv = save_wv;
1641 save_wv = submenu_stack[--submenu_depth];
1642 i++;
1643 }
1644 else if (EQ (XVECTOR (menu_items)->contents[i], Qt)
1645 && submenu_depth != 0)
1646 i += MENU_ITEMS_PANE_LENGTH;
1647 /* Ignore a nil in the item list.
1648 It's meaningful only for dialog boxes. */
1649 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
1650 i += 1;
1651 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
1652 {
1653 /* Create a new pane. */
1654 Lisp_Object pane_name, prefix;
1655 char *pane_string;
1656
1657 pane_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_NAME];
1658 prefix = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
1659
1660 #ifndef HAVE_MULTILINGUAL_MENU
1661 if (STRINGP (pane_name) && STRING_MULTIBYTE (pane_name))
1662 {
1663 pane_name = ENCODE_SYSTEM (pane_name);
1664 AREF (menu_items, i + MENU_ITEMS_PANE_NAME) = pane_name;
1665 }
1666 #endif
1667 pane_string = (NILP (pane_name)
1668 ? "" : (char *) SDATA (pane_name));
1669 /* If there is just one top-level pane, put all its items directly
1670 under the top-level menu. */
1671 if (menu_items_n_panes == 1)
1672 pane_string = "";
1673
1674 /* If the pane has a meaningful name,
1675 make the pane a top-level menu item
1676 with its items as a submenu beneath it. */
1677 if (strcmp (pane_string, ""))
1678 {
1679 wv = xmalloc_widget_value ();
1680 if (save_wv)
1681 save_wv->next = wv;
1682 else
1683 first_wv->contents = wv;
1684 wv->name = pane_string;
1685 /* Ignore the @ that means "separate pane".
1686 This is a kludge, but this isn't worth more time. */
1687 if (!NILP (prefix) && wv->name[0] == '@')
1688 wv->name++;
1689 wv->value = 0;
1690 wv->enabled = 1;
1691 wv->button_type = BUTTON_TYPE_NONE;
1692 wv->help = Qnil;
1693 }
1694 save_wv = wv;
1695 prev_wv = 0;
1696 i += MENU_ITEMS_PANE_LENGTH;
1697 }
1698 else
1699 {
1700 /* Create a new item within current pane. */
1701 Lisp_Object item_name, enable, descrip, def, type, selected;
1702 Lisp_Object help;
1703
1704 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
1705 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
1706 descrip = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
1707 def = AREF (menu_items, i + MENU_ITEMS_ITEM_DEFINITION);
1708 type = AREF (menu_items, i + MENU_ITEMS_ITEM_TYPE);
1709 selected = AREF (menu_items, i + MENU_ITEMS_ITEM_SELECTED);
1710 help = AREF (menu_items, i + MENU_ITEMS_ITEM_HELP);
1711
1712 #ifndef HAVE_MULTILINGUAL_MENU
1713 if (STRING_MULTIBYTE (item_name))
1714 {
1715 item_name = ENCODE_SYSTEM (item_name);
1716 AREF (menu_items, i + MENU_ITEMS_ITEM_NAME) = item_name;
1717 }
1718
1719 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
1720 {
1721 descrip = ENCODE_SYSTEM (descrip);
1722 AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY) = descrip;
1723 }
1724 #endif /* not HAVE_MULTILINGUAL_MENU */
1725
1726 wv = xmalloc_widget_value ();
1727 if (prev_wv)
1728 prev_wv->next = wv;
1729 else
1730 save_wv->contents = wv;
1731
1732 wv->name = (char *) SDATA (item_name);
1733 if (!NILP (descrip))
1734 wv->key = (char *) SDATA (descrip);
1735 wv->value = 0;
1736 /* The EMACS_INT cast avoids a warning. There's no problem
1737 as long as pointers have enough bits to hold small integers. */
1738 wv->call_data = (!NILP (def) ? (void *) (EMACS_INT) i : 0);
1739 wv->enabled = !NILP (enable);
1740
1741 if (NILP (type))
1742 wv->button_type = BUTTON_TYPE_NONE;
1743 else if (EQ (type, QCradio))
1744 wv->button_type = BUTTON_TYPE_RADIO;
1745 else if (EQ (type, QCtoggle))
1746 wv->button_type = BUTTON_TYPE_TOGGLE;
1747 else
1748 abort ();
1749
1750 wv->selected = !NILP (selected);
1751 if (! STRINGP (help))
1752 help = Qnil;
1753
1754 wv->help = help;
1755
1756 prev_wv = wv;
1757
1758 i += MENU_ITEMS_ITEM_LENGTH;
1759 }
1760 }
1761
1762 /* If we have just one "menu item"
1763 that was originally a button, return it by itself. */
1764 if (top_level_items && first_wv->contents && first_wv->contents->next == 0)
1765 {
1766 wv = first_wv->contents;
1767 free_widget_value (first_wv);
1768 return wv;
1769 }
1770
1771 return first_wv;
1772 }
1773 \f
1774 /* Recompute all the widgets of frame F, when the menu bar has been
1775 changed. Value is non-zero if widgets were updated. */
1776
1777 static int
1778 update_frame_menubar (f)
1779 FRAME_PTR f;
1780 {
1781 #ifdef USE_GTK
1782 return xg_update_frame_menubar (f);
1783 #else
1784 struct x_output *x = f->output_data.x;
1785 int columns, rows;
1786
1787 if (!x->menubar_widget || XtIsManaged (x->menubar_widget))
1788 return 0;
1789
1790 BLOCK_INPUT;
1791 /* Save the size of the frame because the pane widget doesn't accept
1792 to resize itself. So force it. */
1793 columns = f->width;
1794 rows = f->height;
1795
1796 /* Do the voodoo which means "I'm changing lots of things, don't try
1797 to refigure sizes until I'm done." */
1798 lw_refigure_widget (x->column_widget, False);
1799
1800 /* The order in which children are managed is the top to bottom
1801 order in which they are displayed in the paned window. First,
1802 remove the text-area widget. */
1803 XtUnmanageChild (x->edit_widget);
1804
1805 /* Remove the menubar that is there now, and put up the menubar that
1806 should be there. */
1807 XtManageChild (x->menubar_widget);
1808 XtMapWidget (x->menubar_widget);
1809 XtVaSetValues (x->menubar_widget, XtNmappedWhenManaged, 1, NULL);
1810
1811 /* Re-manage the text-area widget, and then thrash the sizes. */
1812 XtManageChild (x->edit_widget);
1813 lw_refigure_widget (x->column_widget, True);
1814
1815 /* Force the pane widget to resize itself with the right values. */
1816 EmacsFrameSetCharSize (x->edit_widget, columns, rows);
1817 UNBLOCK_INPUT;
1818 #endif
1819 return 1;
1820 }
1821
1822 /* Set the contents of the menubar widgets of frame F.
1823 The argument FIRST_TIME is currently ignored;
1824 it is set the first time this is called, from initialize_frame_menubar. */
1825
1826 void
1827 set_frame_menubar (f, first_time, deep_p)
1828 FRAME_PTR f;
1829 int first_time;
1830 int deep_p;
1831 {
1832 xt_or_gtk_widget menubar_widget = f->output_data.x->menubar_widget;
1833 #ifdef USE_X_TOOLKIT
1834 LWLIB_ID id;
1835 #endif
1836 Lisp_Object items;
1837 widget_value *wv, *first_wv, *prev_wv = 0;
1838 int i, last_i;
1839 int *submenu_start, *submenu_end;
1840 int *submenu_top_level_items, *submenu_n_panes;
1841
1842
1843 XSETFRAME (Vmenu_updating_frame, f);
1844
1845 #ifdef USE_X_TOOLKIT
1846 if (f->output_data.x->id == 0)
1847 f->output_data.x->id = next_menubar_widget_id++;
1848 id = f->output_data.x->id;
1849 #endif
1850
1851 if (! menubar_widget)
1852 deep_p = 1;
1853 else if (pending_menu_activation && !deep_p)
1854 deep_p = 1;
1855 /* Make the first call for any given frame always go deep. */
1856 else if (!f->output_data.x->saved_menu_event && !deep_p)
1857 {
1858 deep_p = 1;
1859 f->output_data.x->saved_menu_event = (XEvent*)xmalloc (sizeof (XEvent));
1860 f->output_data.x->saved_menu_event->type = 0;
1861 }
1862
1863 if (deep_p)
1864 {
1865 /* Make a widget-value tree representing the entire menu trees. */
1866
1867 struct buffer *prev = current_buffer;
1868 Lisp_Object buffer;
1869 int specpdl_count = SPECPDL_INDEX ();
1870 int previous_menu_items_used = f->menu_bar_items_used;
1871 Lisp_Object *previous_items
1872 = (Lisp_Object *) alloca (previous_menu_items_used
1873 * sizeof (Lisp_Object));
1874
1875 /* If we are making a new widget, its contents are empty,
1876 do always reinitialize them. */
1877 if (! menubar_widget)
1878 previous_menu_items_used = 0;
1879
1880 buffer = XWINDOW (FRAME_SELECTED_WINDOW (f))->buffer;
1881 specbind (Qinhibit_quit, Qt);
1882 /* Don't let the debugger step into this code
1883 because it is not reentrant. */
1884 specbind (Qdebug_on_next_call, Qnil);
1885
1886 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
1887 record_unwind_protect (unuse_menu_items, Qnil);
1888 if (NILP (Voverriding_local_map_menu_flag))
1889 {
1890 specbind (Qoverriding_terminal_local_map, Qnil);
1891 specbind (Qoverriding_local_map, Qnil);
1892 }
1893
1894 set_buffer_internal_1 (XBUFFER (buffer));
1895
1896 /* Run the Lucid hook. */
1897 safe_run_hooks (Qactivate_menubar_hook);
1898
1899 /* If it has changed current-menubar from previous value,
1900 really recompute the menubar from the value. */
1901 if (! NILP (Vlucid_menu_bar_dirty_flag))
1902 call0 (Qrecompute_lucid_menubar);
1903 safe_run_hooks (Qmenu_bar_update_hook);
1904 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
1905
1906 items = FRAME_MENU_BAR_ITEMS (f);
1907
1908 /* Save the frame's previous menu bar contents data. */
1909 if (previous_menu_items_used)
1910 bcopy (XVECTOR (f->menu_bar_vector)->contents, previous_items,
1911 previous_menu_items_used * sizeof (Lisp_Object));
1912
1913 /* Fill in menu_items with the current menu bar contents.
1914 This can evaluate Lisp code. */
1915 menu_items = f->menu_bar_vector;
1916 menu_items_allocated = VECTORP (menu_items) ? ASIZE (menu_items) : 0;
1917 submenu_start = (int *) alloca (XVECTOR (items)->size * sizeof (int *));
1918 submenu_end = (int *) alloca (XVECTOR (items)->size * sizeof (int *));
1919 submenu_n_panes = (int *) alloca (XVECTOR (items)->size * sizeof (int));
1920 submenu_top_level_items
1921 = (int *) alloca (XVECTOR (items)->size * sizeof (int *));
1922 init_menu_items ();
1923 for (i = 0; i < XVECTOR (items)->size; i += 4)
1924 {
1925 Lisp_Object key, string, maps;
1926
1927 last_i = i;
1928
1929 key = XVECTOR (items)->contents[i];
1930 string = XVECTOR (items)->contents[i + 1];
1931 maps = XVECTOR (items)->contents[i + 2];
1932 if (NILP (string))
1933 break;
1934
1935 submenu_start[i] = menu_items_used;
1936
1937 menu_items_n_panes = 0;
1938 submenu_top_level_items[i]
1939 = parse_single_submenu (key, string, maps);
1940 submenu_n_panes[i] = menu_items_n_panes;
1941
1942 submenu_end[i] = menu_items_used;
1943 }
1944
1945 finish_menu_items ();
1946
1947 /* Convert menu_items into widget_value trees
1948 to display the menu. This cannot evaluate Lisp code. */
1949
1950 wv = xmalloc_widget_value ();
1951 wv->name = "menubar";
1952 wv->value = 0;
1953 wv->enabled = 1;
1954 wv->button_type = BUTTON_TYPE_NONE;
1955 wv->help = Qnil;
1956 first_wv = wv;
1957
1958 for (i = 0; i < last_i; i += 4)
1959 {
1960 menu_items_n_panes = submenu_n_panes[i];
1961 wv = digest_single_submenu (submenu_start[i], submenu_end[i],
1962 submenu_top_level_items[i]);
1963 if (prev_wv)
1964 prev_wv->next = wv;
1965 else
1966 first_wv->contents = wv;
1967 /* Don't set wv->name here; GC during the loop might relocate it. */
1968 wv->enabled = 1;
1969 wv->button_type = BUTTON_TYPE_NONE;
1970 prev_wv = wv;
1971 }
1972
1973 set_buffer_internal_1 (prev);
1974 unbind_to (specpdl_count, Qnil);
1975
1976 /* If there has been no change in the Lisp-level contents
1977 of the menu bar, skip redisplaying it. Just exit. */
1978
1979 for (i = 0; i < previous_menu_items_used; i++)
1980 if (menu_items_used == i
1981 || (!EQ (previous_items[i], XVECTOR (menu_items)->contents[i])))
1982 break;
1983 if (i == menu_items_used && i == previous_menu_items_used && i != 0)
1984 {
1985 free_menubar_widget_value_tree (first_wv);
1986 discard_menu_items ();
1987
1988 return;
1989 }
1990
1991 /* Now GC cannot happen during the lifetime of the widget_value,
1992 so it's safe to store data from a Lisp_String. */
1993 wv = first_wv->contents;
1994 for (i = 0; i < XVECTOR (items)->size; i += 4)
1995 {
1996 Lisp_Object string;
1997 string = XVECTOR (items)->contents[i + 1];
1998 if (NILP (string))
1999 break;
2000 wv->name = (char *) SDATA (string);
2001 wv = wv->next;
2002 }
2003
2004 f->menu_bar_vector = menu_items;
2005 f->menu_bar_items_used = menu_items_used;
2006 discard_menu_items ();
2007 }
2008 else
2009 {
2010 /* Make a widget-value tree containing
2011 just the top level menu bar strings. */
2012
2013 wv = xmalloc_widget_value ();
2014 wv->name = "menubar";
2015 wv->value = 0;
2016 wv->enabled = 1;
2017 wv->button_type = BUTTON_TYPE_NONE;
2018 wv->help = Qnil;
2019 first_wv = wv;
2020
2021 items = FRAME_MENU_BAR_ITEMS (f);
2022 for (i = 0; i < XVECTOR (items)->size; i += 4)
2023 {
2024 Lisp_Object string;
2025
2026 string = XVECTOR (items)->contents[i + 1];
2027 if (NILP (string))
2028 break;
2029
2030 wv = xmalloc_widget_value ();
2031 wv->name = (char *) SDATA (string);
2032 wv->value = 0;
2033 wv->enabled = 1;
2034 wv->button_type = BUTTON_TYPE_NONE;
2035 wv->help = Qnil;
2036 /* This prevents lwlib from assuming this
2037 menu item is really supposed to be empty. */
2038 /* The EMACS_INT cast avoids a warning.
2039 This value just has to be different from small integers. */
2040 wv->call_data = (void *) (EMACS_INT) (-1);
2041
2042 if (prev_wv)
2043 prev_wv->next = wv;
2044 else
2045 first_wv->contents = wv;
2046 prev_wv = wv;
2047 }
2048
2049 /* Forget what we thought we knew about what is in the
2050 detailed contents of the menu bar menus.
2051 Changing the top level always destroys the contents. */
2052 f->menu_bar_items_used = 0;
2053 }
2054
2055 /* Create or update the menu bar widget. */
2056
2057 BLOCK_INPUT;
2058
2059 #ifdef USE_GTK
2060 xg_crazy_callback_abort = 1;
2061 if (menubar_widget)
2062 {
2063 /* The third arg is DEEP_P, which says to consider the entire
2064 menu trees we supply, rather than just the menu bar item names. */
2065 xg_modify_menubar_widgets (menubar_widget,
2066 f,
2067 first_wv,
2068 deep_p,
2069 G_CALLBACK (menubar_selection_callback),
2070 G_CALLBACK (popup_deactivate_callback),
2071 G_CALLBACK (menu_highlight_callback));
2072 }
2073 else
2074 {
2075 GtkWidget *wvbox = f->output_data.x->vbox_widget;
2076
2077 menubar_widget
2078 = xg_create_widget ("menubar", "menubar", f, first_wv,
2079 G_CALLBACK (menubar_selection_callback),
2080 G_CALLBACK (popup_deactivate_callback),
2081 G_CALLBACK (menu_highlight_callback));
2082
2083 f->output_data.x->menubar_widget = menubar_widget;
2084 }
2085
2086
2087 #else /* not USE_GTK */
2088 if (menubar_widget)
2089 {
2090 /* Disable resizing (done for Motif!) */
2091 lw_allow_resizing (f->output_data.x->widget, False);
2092
2093 /* The third arg is DEEP_P, which says to consider the entire
2094 menu trees we supply, rather than just the menu bar item names. */
2095 lw_modify_all_widgets (id, first_wv, deep_p);
2096
2097 /* Re-enable the edit widget to resize. */
2098 lw_allow_resizing (f->output_data.x->widget, True);
2099 }
2100 else
2101 {
2102 menubar_widget = lw_create_widget ("menubar", "menubar", id, first_wv,
2103 f->output_data.x->column_widget,
2104 0,
2105 popup_activate_callback,
2106 menubar_selection_callback,
2107 popup_deactivate_callback,
2108 menu_highlight_callback);
2109 f->output_data.x->menubar_widget = menubar_widget;
2110 }
2111
2112 {
2113 int menubar_size
2114 = (f->output_data.x->menubar_widget
2115 ? (f->output_data.x->menubar_widget->core.height
2116 + f->output_data.x->menubar_widget->core.border_width)
2117 : 0);
2118
2119 #if 0 /* Experimentally, we now get the right results
2120 for -geometry -0-0 without this. 24 Aug 96, rms. */
2121 #ifdef USE_LUCID
2122 if (FRAME_EXTERNAL_MENU_BAR (f))
2123 {
2124 Dimension ibw = 0;
2125 XtVaGetValues (f->output_data.x->column_widget,
2126 XtNinternalBorderWidth, &ibw, NULL);
2127 menubar_size += ibw;
2128 }
2129 #endif /* USE_LUCID */
2130 #endif /* 0 */
2131
2132 f->output_data.x->menubar_height = menubar_size;
2133 }
2134 #endif /* not USE_GTK */
2135
2136 free_menubar_widget_value_tree (first_wv);
2137 update_frame_menubar (f);
2138
2139 #ifdef USE_GTK
2140 xg_crazy_callback_abort = 0;
2141 #endif
2142
2143 UNBLOCK_INPUT;
2144 }
2145
2146 /* Called from Fx_create_frame to create the initial menubar of a frame
2147 before it is mapped, so that the window is mapped with the menubar already
2148 there instead of us tacking it on later and thrashing the window after it
2149 is visible. */
2150
2151 void
2152 initialize_frame_menubar (f)
2153 FRAME_PTR f;
2154 {
2155 /* This function is called before the first chance to redisplay
2156 the frame. It has to be, so the frame will have the right size. */
2157 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
2158 set_frame_menubar (f, 1, 1);
2159 }
2160
2161
2162 /* Get rid of the menu bar of frame F, and free its storage.
2163 This is used when deleting a frame, and when turning off the menu bar.
2164 For GTK this function is in gtkutil.c. */
2165
2166 #ifndef USE_GTK
2167 void
2168 free_frame_menubar (f)
2169 FRAME_PTR f;
2170 {
2171 Widget menubar_widget;
2172
2173 menubar_widget = f->output_data.x->menubar_widget;
2174
2175 f->output_data.x->menubar_height = 0;
2176
2177 if (menubar_widget)
2178 {
2179 #ifdef USE_MOTIF
2180 /* Removing the menu bar magically changes the shell widget's x
2181 and y position of (0, 0) which, when the menu bar is turned
2182 on again, leads to pull-down menuss appearing in strange
2183 positions near the upper-left corner of the display. This
2184 happens only with some window managers like twm and ctwm,
2185 but not with other like Motif's mwm or kwm, because the
2186 latter generate ConfigureNotify events when the menu bar
2187 is switched off, which fixes the shell position. */
2188 Position x0, y0, x1, y1;
2189 #endif
2190
2191 BLOCK_INPUT;
2192
2193 #ifdef USE_MOTIF
2194 if (f->output_data.x->widget)
2195 XtVaGetValues (f->output_data.x->widget, XtNx, &x0, XtNy, &y0, NULL);
2196 #endif
2197
2198 lw_destroy_all_widgets ((LWLIB_ID) f->output_data.x->id);
2199 f->output_data.x->menubar_widget = NULL;
2200
2201 #ifdef USE_MOTIF
2202 if (f->output_data.x->widget)
2203 {
2204 XtVaGetValues (f->output_data.x->widget, XtNx, &x1, XtNy, &y1, NULL);
2205 if (x1 == 0 && y1 == 0)
2206 XtVaSetValues (f->output_data.x->widget, XtNx, x0, XtNy, y0, NULL);
2207 }
2208 #endif
2209
2210 UNBLOCK_INPUT;
2211 }
2212 }
2213 #endif /* not USE_GTK */
2214
2215 #endif /* USE_X_TOOLKIT || USE_GTK */
2216 \f
2217 /* xmenu_show actually displays a menu using the panes and items in menu_items
2218 and returns the value selected from it.
2219 There are two versions of xmenu_show, one for Xt and one for Xlib.
2220 Both assume input is blocked by the caller. */
2221
2222 /* F is the frame the menu is for.
2223 X and Y are the frame-relative specified position,
2224 relative to the inside upper left corner of the frame F.
2225 FOR_CLICK is nonzero if this menu was invoked for a mouse click.
2226 KEYMAPS is 1 if this menu was specified with keymaps;
2227 in that case, we return a list containing the chosen item's value
2228 and perhaps also the pane's prefix.
2229 TITLE is the specified menu title.
2230 ERROR is a place to store an error message string in case of failure.
2231 (We return nil on failure, but the value doesn't actually matter.) */
2232
2233 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
2234
2235 /* The item selected in the popup menu. */
2236 static Lisp_Object *volatile menu_item_selection;
2237
2238 #ifdef USE_GTK
2239
2240 /* Used when position a popup menu. See menu_position_func and
2241 create_and_show_popup_menu below. */
2242 struct next_popup_x_y
2243 {
2244 int x;
2245 int y;
2246 };
2247
2248 /* The menu position function to use if we are not putting a popup
2249 menu where the pointer is.
2250 MENU is the menu to pop up.
2251 X and Y shall on exit contain x/y where the menu shall pop up.
2252 PUSH_IN is not documented in the GTK manual.
2253 USER_DATA is any data passed in when calling gtk_menu_popup.
2254 Here it points to a struct next_popup_x_y where the coordinates
2255 to store in *X and *Y are.
2256
2257 Here only X and Y are used. */
2258 static void
2259 menu_position_func (menu, x, y, push_in, user_data)
2260 GtkMenu *menu;
2261 gint *x;
2262 gint *y;
2263 gboolean *push_in;
2264 gpointer user_data;
2265 {
2266 *x = ((struct next_popup_x_y*)user_data)->x;
2267 *y = ((struct next_popup_x_y*)user_data)->y;
2268 }
2269
2270 static void
2271 popup_selection_callback (widget, client_data)
2272 GtkWidget *widget;
2273 gpointer client_data;
2274 {
2275 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data*) client_data;
2276
2277 if (xg_crazy_callback_abort) return;
2278 if (cb_data) menu_item_selection = (Lisp_Object *) cb_data->call_data;
2279 }
2280
2281 /* Pop up the menu for frame F defined by FIRST_WV at X/Y and loop until the
2282 menu pops down.
2283 menu_item_selection will be set to the selection. */
2284 static void
2285 create_and_show_popup_menu (f, first_wv, x, y, for_click)
2286 FRAME_PTR f;
2287 widget_value *first_wv;
2288 int x;
2289 int y;
2290 int for_click;
2291 {
2292 int i;
2293 GtkWidget *menu;
2294 GtkMenuPositionFunc pos_func = 0; /* Pop up at pointer. */
2295 struct next_popup_x_y popup_x_y;
2296
2297 xg_crazy_callback_abort = 1;
2298 menu = xg_create_widget ("popup", first_wv->name, f, first_wv,
2299 G_CALLBACK (popup_selection_callback),
2300 G_CALLBACK (popup_deactivate_callback),
2301 G_CALLBACK (menu_highlight_callback));
2302 xg_crazy_callback_abort = 0;
2303
2304 for (i = 0; i < 5; i++)
2305 if (FRAME_X_DISPLAY_INFO (f)->grabbed & (1 << i))
2306 break;
2307
2308 if (! for_click)
2309 {
2310 /* Not invoked by a click. pop up at x/y. */
2311 pos_func = menu_position_func;
2312
2313 /* Adjust coordinates to be root-window-relative. */
2314 x += f->output_data.x->left_pos + FRAME_OUTER_TO_INNER_DIFF_X (f);
2315 y += f->output_data.x->top_pos + FRAME_OUTER_TO_INNER_DIFF_Y (f);
2316
2317 popup_x_y.x = x;
2318 popup_x_y.y = y;
2319 }
2320
2321 /* Display the menu. */
2322 gtk_widget_show_all (menu);
2323 gtk_menu_popup (GTK_MENU (menu), 0, 0, pos_func, &popup_x_y, i, 0);
2324
2325 xg_did_tearoff = 0;
2326 /* Set this to one. popup_widget_loop increases it by one, so it becomes
2327 two. show_help_echo uses this to detect popup menus. */
2328 popup_activated_flag = 1;
2329 /* Process events that apply to the menu. */
2330 popup_widget_loop ();
2331
2332 if (xg_did_tearoff)
2333 xg_keep_popup (menu, xg_did_tearoff);
2334 else
2335 gtk_widget_destroy (menu);
2336
2337 /* Must reset this manually because the button release event is not passed
2338 to Emacs event loop. */
2339 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
2340 }
2341
2342 #else /* not USE_GTK */
2343
2344 /* We need a unique id for each widget handled by the Lucid Widget
2345 library.
2346
2347 For the main windows, and popup menus, we use this counter,
2348 which we increment each time after use. This starts from 1<<16.
2349
2350 For menu bars, we use numbers starting at 0, counted in
2351 next_menubar_widget_id. */
2352 LWLIB_ID widget_id_tick;
2353
2354 static void
2355 popup_selection_callback (widget, id, client_data)
2356 Widget widget;
2357 LWLIB_ID id;
2358 XtPointer client_data;
2359 {
2360 menu_item_selection = (Lisp_Object *) client_data;
2361 }
2362
2363 /* Pop up the menu for frame F defined by FIRST_WV at X/Y and loop until the
2364 menu pops down.
2365 menu_item_selection will be set to the selection. */
2366 static void
2367 create_and_show_popup_menu (f, first_wv, x, y, for_click)
2368 FRAME_PTR f;
2369 widget_value *first_wv;
2370 int x;
2371 int y;
2372 int for_click;
2373 {
2374 int i;
2375 Arg av[2];
2376 int ac = 0;
2377 XButtonPressedEvent dummy;
2378 LWLIB_ID menu_id;
2379 Widget menu;
2380 Window child;
2381
2382 menu_id = widget_id_tick++;
2383 menu = lw_create_widget ("popup", first_wv->name, menu_id, first_wv,
2384 f->output_data.x->widget, 1, 0,
2385 popup_selection_callback,
2386 popup_deactivate_callback,
2387 menu_highlight_callback);
2388
2389 dummy.type = ButtonPress;
2390 dummy.serial = 0;
2391 dummy.send_event = 0;
2392 dummy.display = FRAME_X_DISPLAY (f);
2393 dummy.time = CurrentTime;
2394 dummy.root = FRAME_X_DISPLAY_INFO (f)->root_window;
2395 dummy.window = dummy.root;
2396 dummy.subwindow = dummy.root;
2397 dummy.x = x;
2398 dummy.y = y;
2399
2400 /* Adjust coordinates to be root-window-relative. */
2401 x += f->output_data.x->left_pos + FRAME_OUTER_TO_INNER_DIFF_X (f);
2402 y += f->output_data.x->top_pos + FRAME_OUTER_TO_INNER_DIFF_Y (f);
2403
2404 dummy.x_root = x;
2405 dummy.y_root = y;
2406
2407 dummy.state = 0;
2408 dummy.button = 0;
2409 for (i = 0; i < 5; i++)
2410 if (FRAME_X_DISPLAY_INFO (f)->grabbed & (1 << i))
2411 dummy.button = i;
2412
2413 /* Don't allow any geometry request from the user. */
2414 XtSetArg (av[ac], XtNgeometry, 0); ac++;
2415 XtSetValues (menu, av, ac);
2416
2417 /* Display the menu. */
2418 lw_popup_menu (menu, (XEvent *) &dummy);
2419 popup_activated_flag = 1;
2420
2421 /* Process events that apply to the menu. */
2422 popup_get_selection ((XEvent *) 0, FRAME_X_DISPLAY_INFO (f), menu_id, 0);
2423
2424 /* fp turned off the following statement and wrote a comment
2425 that it is unnecessary--that the menu has already disappeared.
2426 Nowadays the menu disappears ok, all right, but
2427 we need to delete the widgets or multiple ones will pile up. */
2428 lw_destroy_all_widgets (menu_id);
2429 }
2430
2431 #endif /* not USE_GTK */
2432
2433 static Lisp_Object
2434 xmenu_show (f, x, y, for_click, keymaps, title, error)
2435 FRAME_PTR f;
2436 int x;
2437 int y;
2438 int for_click;
2439 int keymaps;
2440 Lisp_Object title;
2441 char **error;
2442 {
2443 int i;
2444 widget_value *wv, *save_wv = 0, *first_wv = 0, *prev_wv = 0;
2445 widget_value **submenu_stack
2446 = (widget_value **) alloca (menu_items_used * sizeof (widget_value *));
2447 Lisp_Object *subprefix_stack
2448 = (Lisp_Object *) alloca (menu_items_used * sizeof (Lisp_Object));
2449 int submenu_depth = 0;
2450
2451 int first_pane;
2452
2453 *error = NULL;
2454
2455 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
2456 {
2457 *error = "Empty menu";
2458 return Qnil;
2459 }
2460
2461 /* Create a tree of widget_value objects
2462 representing the panes and their items. */
2463 wv = xmalloc_widget_value ();
2464 wv->name = "menu";
2465 wv->value = 0;
2466 wv->enabled = 1;
2467 wv->button_type = BUTTON_TYPE_NONE;
2468 wv->help =Qnil;
2469 first_wv = wv;
2470 first_pane = 1;
2471
2472 /* Loop over all panes and items, filling in the tree. */
2473 i = 0;
2474 while (i < menu_items_used)
2475 {
2476 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
2477 {
2478 submenu_stack[submenu_depth++] = save_wv;
2479 save_wv = prev_wv;
2480 prev_wv = 0;
2481 first_pane = 1;
2482 i++;
2483 }
2484 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
2485 {
2486 prev_wv = save_wv;
2487 save_wv = submenu_stack[--submenu_depth];
2488 first_pane = 0;
2489 i++;
2490 }
2491 else if (EQ (XVECTOR (menu_items)->contents[i], Qt)
2492 && submenu_depth != 0)
2493 i += MENU_ITEMS_PANE_LENGTH;
2494 /* Ignore a nil in the item list.
2495 It's meaningful only for dialog boxes. */
2496 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
2497 i += 1;
2498 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
2499 {
2500 /* Create a new pane. */
2501 Lisp_Object pane_name, prefix;
2502 char *pane_string;
2503
2504 pane_name = AREF (menu_items, i + MENU_ITEMS_PANE_NAME);
2505 prefix = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
2506
2507 #ifndef HAVE_MULTILINGUAL_MENU
2508 if (STRINGP (pane_name) && STRING_MULTIBYTE (pane_name))
2509 {
2510 pane_name = ENCODE_SYSTEM (pane_name);
2511 AREF (menu_items, i + MENU_ITEMS_PANE_NAME) = pane_name;
2512 }
2513 #endif
2514 pane_string = (NILP (pane_name)
2515 ? "" : (char *) SDATA (pane_name));
2516 /* If there is just one top-level pane, put all its items directly
2517 under the top-level menu. */
2518 if (menu_items_n_panes == 1)
2519 pane_string = "";
2520
2521 /* If the pane has a meaningful name,
2522 make the pane a top-level menu item
2523 with its items as a submenu beneath it. */
2524 if (!keymaps && strcmp (pane_string, ""))
2525 {
2526 wv = xmalloc_widget_value ();
2527 if (save_wv)
2528 save_wv->next = wv;
2529 else
2530 first_wv->contents = wv;
2531 wv->name = pane_string;
2532 if (keymaps && !NILP (prefix))
2533 wv->name++;
2534 wv->value = 0;
2535 wv->enabled = 1;
2536 wv->button_type = BUTTON_TYPE_NONE;
2537 wv->help = Qnil;
2538 save_wv = wv;
2539 prev_wv = 0;
2540 }
2541 else if (first_pane)
2542 {
2543 save_wv = wv;
2544 prev_wv = 0;
2545 }
2546 first_pane = 0;
2547 i += MENU_ITEMS_PANE_LENGTH;
2548 }
2549 else
2550 {
2551 /* Create a new item within current pane. */
2552 Lisp_Object item_name, enable, descrip, def, type, selected, help;
2553 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
2554 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
2555 descrip = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
2556 def = AREF (menu_items, i + MENU_ITEMS_ITEM_DEFINITION);
2557 type = AREF (menu_items, i + MENU_ITEMS_ITEM_TYPE);
2558 selected = AREF (menu_items, i + MENU_ITEMS_ITEM_SELECTED);
2559 help = AREF (menu_items, i + MENU_ITEMS_ITEM_HELP);
2560
2561 #ifndef HAVE_MULTILINGUAL_MENU
2562 if (STRINGP (item_name) && STRING_MULTIBYTE (item_name))
2563 {
2564 item_name = ENCODE_SYSTEM (item_name);
2565 AREF (menu_items, i + MENU_ITEMS_ITEM_NAME) = item_name;
2566 }
2567
2568 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
2569 {
2570 descrip = ENCODE_SYSTEM (descrip);
2571 AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY) = descrip;
2572 }
2573 #endif /* not HAVE_MULTILINGUAL_MENU */
2574
2575 wv = xmalloc_widget_value ();
2576 if (prev_wv)
2577 prev_wv->next = wv;
2578 else
2579 save_wv->contents = wv;
2580 wv->name = (char *) SDATA (item_name);
2581 if (!NILP (descrip))
2582 wv->key = (char *) SDATA (descrip);
2583 wv->value = 0;
2584 /* If this item has a null value,
2585 make the call_data null so that it won't display a box
2586 when the mouse is on it. */
2587 wv->call_data
2588 = (!NILP (def) ? (void *) &XVECTOR (menu_items)->contents[i] : 0);
2589 wv->enabled = !NILP (enable);
2590
2591 if (NILP (type))
2592 wv->button_type = BUTTON_TYPE_NONE;
2593 else if (EQ (type, QCtoggle))
2594 wv->button_type = BUTTON_TYPE_TOGGLE;
2595 else if (EQ (type, QCradio))
2596 wv->button_type = BUTTON_TYPE_RADIO;
2597 else
2598 abort ();
2599
2600 wv->selected = !NILP (selected);
2601
2602 if (! STRINGP (help))
2603 help = Qnil;
2604
2605 wv->help = help;
2606
2607 prev_wv = wv;
2608
2609 i += MENU_ITEMS_ITEM_LENGTH;
2610 }
2611 }
2612
2613 /* Deal with the title, if it is non-nil. */
2614 if (!NILP (title))
2615 {
2616 widget_value *wv_title = xmalloc_widget_value ();
2617 widget_value *wv_sep1 = xmalloc_widget_value ();
2618 widget_value *wv_sep2 = xmalloc_widget_value ();
2619
2620 wv_sep2->name = "--";
2621 wv_sep2->next = first_wv->contents;
2622 wv_sep2->help = Qnil;
2623
2624 wv_sep1->name = "--";
2625 wv_sep1->next = wv_sep2;
2626 wv_sep1->help = Qnil;
2627
2628 #ifndef HAVE_MULTILINGUAL_MENU
2629 if (STRING_MULTIBYTE (title))
2630 title = ENCODE_SYSTEM (title);
2631 #endif
2632
2633 wv_title->name = (char *) SDATA (title);
2634 wv_title->enabled = TRUE;
2635 wv_title->button_type = BUTTON_TYPE_NONE;
2636 wv_title->next = wv_sep1;
2637 wv_title->help = Qnil;
2638 first_wv->contents = wv_title;
2639 }
2640
2641 /* No selection has been chosen yet. */
2642 menu_item_selection = 0;
2643
2644 /* Actually create and show the menu until popped down. */
2645 create_and_show_popup_menu (f, first_wv, x, y, for_click);
2646
2647 /* Free the widget_value objects we used to specify the contents. */
2648 free_menubar_widget_value_tree (first_wv);
2649
2650 /* Find the selected item, and its pane, to return
2651 the proper value. */
2652 if (menu_item_selection != 0)
2653 {
2654 Lisp_Object prefix, entry;
2655
2656 prefix = entry = Qnil;
2657 i = 0;
2658 while (i < menu_items_used)
2659 {
2660 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
2661 {
2662 subprefix_stack[submenu_depth++] = prefix;
2663 prefix = entry;
2664 i++;
2665 }
2666 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
2667 {
2668 prefix = subprefix_stack[--submenu_depth];
2669 i++;
2670 }
2671 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
2672 {
2673 prefix
2674 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
2675 i += MENU_ITEMS_PANE_LENGTH;
2676 }
2677 /* Ignore a nil in the item list.
2678 It's meaningful only for dialog boxes. */
2679 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
2680 i += 1;
2681 else
2682 {
2683 entry
2684 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
2685 if (menu_item_selection == &XVECTOR (menu_items)->contents[i])
2686 {
2687 if (keymaps != 0)
2688 {
2689 int j;
2690
2691 entry = Fcons (entry, Qnil);
2692 if (!NILP (prefix))
2693 entry = Fcons (prefix, entry);
2694 for (j = submenu_depth - 1; j >= 0; j--)
2695 if (!NILP (subprefix_stack[j]))
2696 entry = Fcons (subprefix_stack[j], entry);
2697 }
2698 return entry;
2699 }
2700 i += MENU_ITEMS_ITEM_LENGTH;
2701 }
2702 }
2703 }
2704
2705 return Qnil;
2706 }
2707 \f
2708 #ifdef USE_GTK
2709 static void
2710 dialog_selection_callback (widget, client_data)
2711 GtkWidget *widget;
2712 gpointer client_data;
2713 {
2714 /* The EMACS_INT cast avoids a warning. There's no problem
2715 as long as pointers have enough bits to hold small integers. */
2716 if ((int) (EMACS_INT) client_data != -1)
2717 menu_item_selection = (Lisp_Object *) client_data;
2718
2719 popup_activated_flag = 0;
2720 }
2721
2722 /* Pop up the dialog for frame F defined by FIRST_WV and loop until the
2723 dialog pops down.
2724 menu_item_selection will be set to the selection. */
2725 static void
2726 create_and_show_dialog (f, first_wv)
2727 FRAME_PTR f;
2728 widget_value *first_wv;
2729 {
2730 GtkWidget *menu;
2731
2732 menu = xg_create_widget ("dialog", first_wv->name, f, first_wv,
2733 G_CALLBACK (dialog_selection_callback),
2734 G_CALLBACK (popup_deactivate_callback),
2735 0);
2736
2737 if (menu)
2738 {
2739 /* Display the menu. */
2740 gtk_widget_show_all (menu);
2741
2742 /* Process events that apply to the menu. */
2743 popup_widget_loop ();
2744
2745 gtk_widget_destroy (menu);
2746 }
2747 }
2748
2749 #else /* not USE_GTK */
2750 static void
2751 dialog_selection_callback (widget, id, client_data)
2752 Widget widget;
2753 LWLIB_ID id;
2754 XtPointer client_data;
2755 {
2756 /* The EMACS_INT cast avoids a warning. There's no problem
2757 as long as pointers have enough bits to hold small integers. */
2758 if ((int) (EMACS_INT) client_data != -1)
2759 menu_item_selection = (Lisp_Object *) client_data;
2760
2761 BLOCK_INPUT;
2762 lw_destroy_all_widgets (id);
2763 UNBLOCK_INPUT;
2764 popup_activated_flag = 0;
2765 }
2766
2767
2768 /* ARG is the LWLIB ID of the dialog box, represented
2769 as a Lisp object as (HIGHPART . LOWPART). */
2770
2771 Lisp_Object
2772 xdialog_show_unwind (arg)
2773 Lisp_Object arg;
2774 {
2775 LWLIB_ID id = (XINT (XCAR (arg)) << 4 * sizeof (LWLIB_ID)
2776 | XINT (XCDR (arg)));
2777 BLOCK_INPUT;
2778 lw_destroy_all_widgets (id);
2779 UNBLOCK_INPUT;
2780 popup_activated_flag = 0;
2781 return Qnil;
2782 }
2783
2784
2785 /* Pop up the dialog for frame F defined by FIRST_WV and loop until the
2786 dialog pops down.
2787 menu_item_selection will be set to the selection. */
2788 static void
2789 create_and_show_dialog (f, first_wv)
2790 FRAME_PTR f;
2791 widget_value *first_wv;
2792 {
2793 LWLIB_ID dialog_id;
2794
2795 dialog_id = widget_id_tick++;
2796 lw_create_widget (first_wv->name, "dialog", dialog_id, first_wv,
2797 f->output_data.x->widget, 1, 0,
2798 dialog_selection_callback, 0, 0);
2799 lw_modify_all_widgets (dialog_id, first_wv->contents, True);
2800
2801 /* Display the dialog box. */
2802 lw_pop_up_all_widgets (dialog_id);
2803 popup_activated_flag = 1;
2804
2805 /* Process events that apply to the dialog box.
2806 Also handle timers. */
2807 {
2808 int count = SPECPDL_INDEX ();
2809 int fact = 4 * sizeof (LWLIB_ID);
2810
2811 /* xdialog_show_unwind is responsible for popping the dialog box down. */
2812 record_unwind_protect (xdialog_show_unwind,
2813 Fcons (make_number (dialog_id >> (fact)),
2814 make_number (dialog_id & ~(-1 << (fact)))));
2815
2816 popup_get_selection ((XEvent *) 0, FRAME_X_DISPLAY_INFO (f), dialog_id, 1);
2817
2818 unbind_to (count, Qnil);
2819 }
2820 }
2821
2822 #endif /* not USE_GTK */
2823
2824 static char * button_names [] = {
2825 "button1", "button2", "button3", "button4", "button5",
2826 "button6", "button7", "button8", "button9", "button10" };
2827
2828 static Lisp_Object
2829 xdialog_show (f, keymaps, title, error)
2830 FRAME_PTR f;
2831 int keymaps;
2832 Lisp_Object title;
2833 char **error;
2834 {
2835 int i, nb_buttons=0;
2836 char dialog_name[6];
2837
2838 widget_value *wv, *first_wv = 0, *prev_wv = 0;
2839
2840 /* Number of elements seen so far, before boundary. */
2841 int left_count = 0;
2842 /* 1 means we've seen the boundary between left-hand elts and right-hand. */
2843 int boundary_seen = 0;
2844
2845 *error = NULL;
2846
2847 if (menu_items_n_panes > 1)
2848 {
2849 *error = "Multiple panes in dialog box";
2850 return Qnil;
2851 }
2852
2853 /* Create a tree of widget_value objects
2854 representing the text label and buttons. */
2855 {
2856 Lisp_Object pane_name, prefix;
2857 char *pane_string;
2858 pane_name = XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME];
2859 prefix = XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_PREFIX];
2860 pane_string = (NILP (pane_name)
2861 ? "" : (char *) SDATA (pane_name));
2862 prev_wv = xmalloc_widget_value ();
2863 prev_wv->value = pane_string;
2864 if (keymaps && !NILP (prefix))
2865 prev_wv->name++;
2866 prev_wv->enabled = 1;
2867 prev_wv->name = "message";
2868 prev_wv->help = Qnil;
2869 first_wv = prev_wv;
2870
2871 /* Loop over all panes and items, filling in the tree. */
2872 i = MENU_ITEMS_PANE_LENGTH;
2873 while (i < menu_items_used)
2874 {
2875
2876 /* Create a new item within current pane. */
2877 Lisp_Object item_name, enable, descrip;
2878 item_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_NAME];
2879 enable = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_ENABLE];
2880 descrip
2881 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_EQUIV_KEY];
2882
2883 if (NILP (item_name))
2884 {
2885 free_menubar_widget_value_tree (first_wv);
2886 *error = "Submenu in dialog items";
2887 return Qnil;
2888 }
2889 if (EQ (item_name, Qquote))
2890 {
2891 /* This is the boundary between left-side elts
2892 and right-side elts. Stop incrementing right_count. */
2893 boundary_seen = 1;
2894 i++;
2895 continue;
2896 }
2897 if (nb_buttons >= 9)
2898 {
2899 free_menubar_widget_value_tree (first_wv);
2900 *error = "Too many dialog items";
2901 return Qnil;
2902 }
2903
2904 wv = xmalloc_widget_value ();
2905 prev_wv->next = wv;
2906 wv->name = (char *) button_names[nb_buttons];
2907 if (!NILP (descrip))
2908 wv->key = (char *) SDATA (descrip);
2909 wv->value = (char *) SDATA (item_name);
2910 wv->call_data = (void *) &XVECTOR (menu_items)->contents[i];
2911 wv->enabled = !NILP (enable);
2912 wv->help = Qnil;
2913 prev_wv = wv;
2914
2915 if (! boundary_seen)
2916 left_count++;
2917
2918 nb_buttons++;
2919 i += MENU_ITEMS_ITEM_LENGTH;
2920 }
2921
2922 /* If the boundary was not specified,
2923 by default put half on the left and half on the right. */
2924 if (! boundary_seen)
2925 left_count = nb_buttons - nb_buttons / 2;
2926
2927 wv = xmalloc_widget_value ();
2928 wv->name = dialog_name;
2929 wv->help = Qnil;
2930 /* Dialog boxes use a really stupid name encoding
2931 which specifies how many buttons to use
2932 and how many buttons are on the right.
2933 The Q means something also. */
2934 dialog_name[0] = 'Q';
2935 dialog_name[1] = '0' + nb_buttons;
2936 dialog_name[2] = 'B';
2937 dialog_name[3] = 'R';
2938 /* Number of buttons to put on the right. */
2939 dialog_name[4] = '0' + nb_buttons - left_count;
2940 dialog_name[5] = 0;
2941 wv->contents = first_wv;
2942 first_wv = wv;
2943 }
2944
2945 /* No selection has been chosen yet. */
2946 menu_item_selection = 0;
2947
2948 /* Actually create and show the dialog. */
2949 create_and_show_dialog (f, first_wv);
2950
2951 /* Free the widget_value objects we used to specify the contents. */
2952 free_menubar_widget_value_tree (first_wv);
2953
2954 /* Find the selected item, and its pane, to return
2955 the proper value. */
2956 if (menu_item_selection != 0)
2957 {
2958 Lisp_Object prefix;
2959
2960 prefix = Qnil;
2961 i = 0;
2962 while (i < menu_items_used)
2963 {
2964 Lisp_Object entry;
2965
2966 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
2967 {
2968 prefix
2969 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
2970 i += MENU_ITEMS_PANE_LENGTH;
2971 }
2972 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
2973 {
2974 /* This is the boundary between left-side elts and
2975 right-side elts. */
2976 ++i;
2977 }
2978 else
2979 {
2980 entry
2981 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
2982 if (menu_item_selection == &XVECTOR (menu_items)->contents[i])
2983 {
2984 if (keymaps != 0)
2985 {
2986 entry = Fcons (entry, Qnil);
2987 if (!NILP (prefix))
2988 entry = Fcons (prefix, entry);
2989 }
2990 return entry;
2991 }
2992 i += MENU_ITEMS_ITEM_LENGTH;
2993 }
2994 }
2995 }
2996
2997 return Qnil;
2998 }
2999
3000 #else /* not USE_X_TOOLKIT && not USE_GTK */
3001
3002 /* The frame of the last activated non-toolkit menu bar.
3003 Used to generate menu help events. */
3004
3005 static struct frame *menu_help_frame;
3006
3007
3008 /* Show help HELP_STRING, or clear help if HELP_STRING is null.
3009
3010 PANE is the pane number, and ITEM is the menu item number in
3011 the menu (currently not used).
3012
3013 This cannot be done with generating a HELP_EVENT because
3014 XMenuActivate contains a loop that doesn't let Emacs process
3015 keyboard events. */
3016
3017 static void
3018 menu_help_callback (help_string, pane, item)
3019 char *help_string;
3020 int pane, item;
3021 {
3022 extern Lisp_Object Qmenu_item;
3023 Lisp_Object *first_item;
3024 Lisp_Object pane_name;
3025 Lisp_Object menu_object;
3026
3027 first_item = XVECTOR (menu_items)->contents;
3028 if (EQ (first_item[0], Qt))
3029 pane_name = first_item[MENU_ITEMS_PANE_NAME];
3030 else if (EQ (first_item[0], Qquote))
3031 /* This shouldn't happen, see xmenu_show. */
3032 pane_name = empty_string;
3033 else
3034 pane_name = first_item[MENU_ITEMS_ITEM_NAME];
3035
3036 /* (menu-item MENU-NAME PANE-NUMBER) */
3037 menu_object = Fcons (Qmenu_item,
3038 Fcons (pane_name,
3039 Fcons (make_number (pane), Qnil)));
3040 show_help_echo (help_string ? build_string (help_string) : Qnil,
3041 Qnil, menu_object, make_number (item), 1);
3042 }
3043
3044
3045 static Lisp_Object
3046 xmenu_show (f, x, y, for_click, keymaps, title, error)
3047 FRAME_PTR f;
3048 int x, y;
3049 int for_click;
3050 int keymaps;
3051 Lisp_Object title;
3052 char **error;
3053 {
3054 Window root;
3055 XMenu *menu;
3056 int pane, selidx, lpane, status;
3057 Lisp_Object entry, pane_prefix;
3058 char *datap;
3059 int ulx, uly, width, height;
3060 int dispwidth, dispheight;
3061 int i, j;
3062 int maxwidth;
3063 int dummy_int;
3064 unsigned int dummy_uint;
3065
3066 *error = 0;
3067 if (menu_items_n_panes == 0)
3068 return Qnil;
3069
3070 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
3071 {
3072 *error = "Empty menu";
3073 return Qnil;
3074 }
3075
3076 /* Figure out which root window F is on. */
3077 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &root,
3078 &dummy_int, &dummy_int, &dummy_uint, &dummy_uint,
3079 &dummy_uint, &dummy_uint);
3080
3081 /* Make the menu on that window. */
3082 menu = XMenuCreate (FRAME_X_DISPLAY (f), root, "emacs");
3083 if (menu == NULL)
3084 {
3085 *error = "Can't create menu";
3086 return Qnil;
3087 }
3088
3089 #ifdef HAVE_X_WINDOWS
3090 /* Adjust coordinates to relative to the outer (window manager) window. */
3091 {
3092 Window child;
3093 int win_x = 0, win_y = 0;
3094
3095 /* Find the position of the outside upper-left corner of
3096 the inner window, with respect to the outer window. */
3097 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
3098 {
3099 BLOCK_INPUT;
3100 XTranslateCoordinates (FRAME_X_DISPLAY (f),
3101
3102 /* From-window, to-window. */
3103 f->output_data.x->window_desc,
3104 f->output_data.x->parent_desc,
3105
3106 /* From-position, to-position. */
3107 0, 0, &win_x, &win_y,
3108
3109 /* Child of window. */
3110 &child);
3111 UNBLOCK_INPUT;
3112 x += win_x;
3113 y += win_y;
3114 }
3115 }
3116 #endif /* HAVE_X_WINDOWS */
3117
3118 /* Adjust coordinates to be root-window-relative. */
3119 x += f->output_data.x->left_pos;
3120 y += f->output_data.x->top_pos;
3121
3122 /* Create all the necessary panes and their items. */
3123 i = 0;
3124 while (i < menu_items_used)
3125 {
3126 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
3127 {
3128 /* Create a new pane. */
3129 Lisp_Object pane_name, prefix;
3130 char *pane_string;
3131
3132 pane_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_NAME];
3133 prefix = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
3134 pane_string = (NILP (pane_name)
3135 ? "" : (char *) SDATA (pane_name));
3136 if (keymaps && !NILP (prefix))
3137 pane_string++;
3138
3139 lpane = XMenuAddPane (FRAME_X_DISPLAY (f), menu, pane_string, TRUE);
3140 if (lpane == XM_FAILURE)
3141 {
3142 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
3143 *error = "Can't create pane";
3144 return Qnil;
3145 }
3146 i += MENU_ITEMS_PANE_LENGTH;
3147
3148 /* Find the width of the widest item in this pane. */
3149 maxwidth = 0;
3150 j = i;
3151 while (j < menu_items_used)
3152 {
3153 Lisp_Object item;
3154 item = XVECTOR (menu_items)->contents[j];
3155 if (EQ (item, Qt))
3156 break;
3157 if (NILP (item))
3158 {
3159 j++;
3160 continue;
3161 }
3162 width = SBYTES (item);
3163 if (width > maxwidth)
3164 maxwidth = width;
3165
3166 j += MENU_ITEMS_ITEM_LENGTH;
3167 }
3168 }
3169 /* Ignore a nil in the item list.
3170 It's meaningful only for dialog boxes. */
3171 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
3172 i += 1;
3173 else
3174 {
3175 /* Create a new item within current pane. */
3176 Lisp_Object item_name, enable, descrip, help;
3177 unsigned char *item_data;
3178 char *help_string;
3179
3180 item_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_NAME];
3181 enable = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_ENABLE];
3182 descrip
3183 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_EQUIV_KEY];
3184 help = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_HELP];
3185 help_string = STRINGP (help) ? SDATA (help) : NULL;
3186
3187 if (!NILP (descrip))
3188 {
3189 int gap = maxwidth - SBYTES (item_name);
3190 #ifdef C_ALLOCA
3191 Lisp_Object spacer;
3192 spacer = Fmake_string (make_number (gap), make_number (' '));
3193 item_name = concat2 (item_name, spacer);
3194 item_name = concat2 (item_name, descrip);
3195 item_data = SDATA (item_name);
3196 #else
3197 /* if alloca is fast, use that to make the space,
3198 to reduce gc needs. */
3199 item_data
3200 = (unsigned char *) alloca (maxwidth
3201 + SBYTES (descrip) + 1);
3202 bcopy (SDATA (item_name), item_data,
3203 SBYTES (item_name));
3204 for (j = SCHARS (item_name); j < maxwidth; j++)
3205 item_data[j] = ' ';
3206 bcopy (SDATA (descrip), item_data + j,
3207 SBYTES (descrip));
3208 item_data[j + SBYTES (descrip)] = 0;
3209 #endif
3210 }
3211 else
3212 item_data = SDATA (item_name);
3213
3214 if (XMenuAddSelection (FRAME_X_DISPLAY (f),
3215 menu, lpane, 0, item_data,
3216 !NILP (enable), help_string)
3217 == XM_FAILURE)
3218 {
3219 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
3220 *error = "Can't add selection to menu";
3221 return Qnil;
3222 }
3223 i += MENU_ITEMS_ITEM_LENGTH;
3224 }
3225 }
3226
3227 /* All set and ready to fly. */
3228 XMenuRecompute (FRAME_X_DISPLAY (f), menu);
3229 dispwidth = DisplayWidth (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f));
3230 dispheight = DisplayHeight (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f));
3231 x = min (x, dispwidth);
3232 y = min (y, dispheight);
3233 x = max (x, 1);
3234 y = max (y, 1);
3235 XMenuLocate (FRAME_X_DISPLAY (f), menu, 0, 0, x, y,
3236 &ulx, &uly, &width, &height);
3237 if (ulx+width > dispwidth)
3238 {
3239 x -= (ulx + width) - dispwidth;
3240 ulx = dispwidth - width;
3241 }
3242 if (uly+height > dispheight)
3243 {
3244 y -= (uly + height) - dispheight;
3245 uly = dispheight - height;
3246 }
3247 if (ulx < 0) x -= ulx;
3248 if (uly < 0) y -= uly;
3249
3250 XMenuSetAEQ (menu, TRUE);
3251 XMenuSetFreeze (menu, TRUE);
3252 pane = selidx = 0;
3253
3254 /* Help display under X won't work because XMenuActivate contains
3255 a loop that doesn't give Emacs a chance to process it. */
3256 menu_help_frame = f;
3257 status = XMenuActivate (FRAME_X_DISPLAY (f), menu, &pane, &selidx,
3258 x, y, ButtonReleaseMask, &datap,
3259 menu_help_callback);
3260
3261
3262 #ifdef HAVE_X_WINDOWS
3263 /* Assume the mouse has moved out of the X window.
3264 If it has actually moved in, we will get an EnterNotify. */
3265 x_mouse_leave (FRAME_X_DISPLAY_INFO (f));
3266 #endif
3267
3268 switch (status)
3269 {
3270 case XM_SUCCESS:
3271 #ifdef XDEBUG
3272 fprintf (stderr, "pane= %d line = %d\n", panes, selidx);
3273 #endif
3274
3275 /* Find the item number SELIDX in pane number PANE. */
3276 i = 0;
3277 while (i < menu_items_used)
3278 {
3279 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
3280 {
3281 if (pane == 0)
3282 pane_prefix
3283 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
3284 pane--;
3285 i += MENU_ITEMS_PANE_LENGTH;
3286 }
3287 else
3288 {
3289 if (pane == -1)
3290 {
3291 if (selidx == 0)
3292 {
3293 entry
3294 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
3295 if (keymaps != 0)
3296 {
3297 entry = Fcons (entry, Qnil);
3298 if (!NILP (pane_prefix))
3299 entry = Fcons (pane_prefix, entry);
3300 }
3301 break;
3302 }
3303 selidx--;
3304 }
3305 i += MENU_ITEMS_ITEM_LENGTH;
3306 }
3307 }
3308 break;
3309
3310 case XM_FAILURE:
3311 *error = "Can't activate menu";
3312 case XM_IA_SELECT:
3313 case XM_NO_SELECT:
3314 entry = Qnil;
3315 break;
3316 }
3317 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
3318
3319 #ifdef HAVE_X_WINDOWS
3320 /* State that no mouse buttons are now held.
3321 (The oldXMenu code doesn't track this info for us.)
3322 That is not necessarily true, but the fiction leads to reasonable
3323 results, and it is a pain to ask which are actually held now. */
3324 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
3325 #endif
3326
3327 return entry;
3328 }
3329
3330 #endif /* not USE_X_TOOLKIT */
3331
3332 #endif /* HAVE_MENUS */
3333 \f
3334 void
3335 syms_of_xmenu ()
3336 {
3337 staticpro (&menu_items);
3338 menu_items = Qnil;
3339 menu_items_inuse = Qnil;
3340
3341 Qdebug_on_next_call = intern ("debug-on-next-call");
3342 staticpro (&Qdebug_on_next_call);
3343
3344 DEFVAR_LISP ("menu-updating-frame", &Vmenu_updating_frame,
3345 doc: /* Frame for which we are updating a menu.
3346 The enable predicate for a menu command should check this variable. */);
3347 Vmenu_updating_frame = Qnil;
3348
3349 #ifdef USE_X_TOOLKIT
3350 widget_id_tick = (1<<16);
3351 next_menubar_widget_id = 1;
3352 #endif
3353
3354 defsubr (&Sx_popup_menu);
3355 #ifdef HAVE_MENUS
3356 defsubr (&Sx_popup_dialog);
3357 #endif
3358 }