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