]> code.delx.au - gnu-emacs/blob - src/xmenu.c
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-74
[gnu-emacs] / src / xmenu.c
1 /* X Communication module for terminals which understand the X protocol.
2 Copyright (C) 1986, 1988, 1993, 1994, 1996, 1999, 2000, 2001, 2003, 2004
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 #include "sysselect.h"
52
53 #ifdef MSDOS
54 #include "msdos.h"
55 #endif
56
57 #ifdef HAVE_X_WINDOWS
58 /* This may include sys/types.h, and that somehow loses
59 if this is not done before the other system files. */
60 #include "xterm.h"
61 #endif
62
63 /* Load sys/types.h if not already loaded.
64 In some systems loading it twice is suicidal. */
65 #ifndef makedev
66 #include <sys/types.h>
67 #endif
68
69 #include "dispextern.h"
70
71 #ifdef HAVE_X_WINDOWS
72 /* Defining HAVE_MULTILINGUAL_MENU would mean that the toolkit menu
73 code accepts the Emacs internal encoding. */
74 #undef HAVE_MULTILINGUAL_MENU
75 #ifdef USE_X_TOOLKIT
76 #include "widget.h"
77 #include <X11/Xlib.h>
78 #include <X11/IntrinsicP.h>
79 #include <X11/CoreP.h>
80 #include <X11/StringDefs.h>
81 #include <X11/Shell.h>
82 #ifdef USE_LUCID
83 #include <X11/Xaw/Paned.h>
84 #endif /* USE_LUCID */
85 #include "../lwlib/lwlib.h"
86 #else /* not USE_X_TOOLKIT */
87 #ifndef USE_GTK
88 #include "../oldXMenu/XMenu.h"
89 #endif
90 #endif /* not USE_X_TOOLKIT */
91 #endif /* HAVE_X_WINDOWS */
92
93 #ifndef TRUE
94 #define TRUE 1
95 #define FALSE 0
96 #endif /* no TRUE */
97
98 Lisp_Object Vmenu_updating_frame;
99
100 Lisp_Object Qdebug_on_next_call;
101
102 extern Lisp_Object Qmenu_bar;
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 P_ ((FRAME_PTR, int, int));
115 extern XtAppContext Xt_app_con;
116
117 static Lisp_Object xdialog_show P_ ((FRAME_PTR, int, Lisp_Object, char **));
118 static void popup_get_selection P_ ((XEvent *, struct x_display_info *,
119 LWLIB_ID, int, int));
120
121 /* Define HAVE_BOXES if menus can handle radio and toggle buttons. */
122
123 #define HAVE_BOXES 1
124 #endif /* USE_X_TOOLKIT */
125
126 #ifdef USE_GTK
127 #include "gtkutil.h"
128 #define HAVE_BOXES 1
129 extern void set_frame_menubar P_ ((FRAME_PTR, int, int));
130 static Lisp_Object xdialog_show P_ ((FRAME_PTR, int, Lisp_Object, char **));
131 #endif
132
133 /* This is how to deal with multibyte text if HAVE_MULTILINGUAL_MENU
134 isn't defined. The use of HAVE_MULTILINGUAL_MENU could probably be
135 confined to an extended version of this with sections of code below
136 using it unconditionally. */
137 #ifdef USE_GTK
138 /* gtk just uses utf-8. */
139 # define ENCODE_MENU_STRING(str) ENCODE_UTF_8 (str)
140 #else
141 /* I'm not convinced ENCODE_SYSTEM is defined correctly, or maybe
142 something else should be used here. Except under MS-Windows it
143 just converts to unibyte, but encoding with `locale-coding-system'
144 seems better -- X may actually display the result correctly, and
145 it's not necessarily equivalent to the unibyte text. -- fx */
146 # define ENCODE_MENU_STRING(str) ENCODE_SYSTEM (str)
147 #endif
148
149 static void push_menu_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
150 Lisp_Object, Lisp_Object, Lisp_Object,
151 Lisp_Object, Lisp_Object));
152 static int update_frame_menubar P_ ((struct frame *));
153 static Lisp_Object xmenu_show P_ ((struct frame *, int, int, int, int,
154 Lisp_Object, char **));
155 static void keymap_panes P_ ((Lisp_Object *, int, int));
156 static void single_keymap_panes P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
157 int, int));
158 static void list_of_panes P_ ((Lisp_Object));
159 static void list_of_items P_ ((Lisp_Object));
160
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 Lisp_Object 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 top left of the menu as a whole.
745 If POSITION is t, it means to use the current mouse position.
746
747 MENU is a specifier for a menu. For the simplest case, MENU is a keymap.
748 The menu items come from key bindings that have a menu string as well as
749 a definition; actually, the "definition" in such a key binding looks like
750 \(STRING . REAL-DEFINITION). To give the menu a title, put a string into
751 the keymap as a top-level element.
752
753 If REAL-DEFINITION is nil, that puts a nonselectable string in the menu.
754 Otherwise, REAL-DEFINITION should be a valid key binding definition.
755
756 You can also use a list of keymaps as MENU.
757 Then each keymap makes a separate pane.
758 When MENU is a keymap or a list of keymaps, the return value
759 is a list of events.
760
761 Alternatively, you can specify a menu of multiple panes
762 with a list of the form (TITLE PANE1 PANE2...),
763 where each pane is a list of form (TITLE ITEM1 ITEM2...).
764 Each ITEM is normally a cons cell (STRING . VALUE);
765 but a string can appear as an item--that makes a nonselectable line
766 in the menu.
767 With this form of menu, the return value is VALUE from the chosen item.
768
769 If POSITION is nil, don't display the menu at all, just precalculate the
770 cached information about equivalent key sequences. */)
771 (position, menu)
772 Lisp_Object position, menu;
773 {
774 Lisp_Object keymap, tem;
775 int xpos = 0, ypos = 0;
776 Lisp_Object title;
777 char *error_name;
778 Lisp_Object selection;
779 FRAME_PTR f = NULL;
780 Lisp_Object x, y, window;
781 int keymaps = 0;
782 int for_click = 0;
783 int specpdl_count = SPECPDL_INDEX ();
784 struct gcpro gcpro1;
785
786 #ifdef HAVE_MENUS
787 if (! NILP (position))
788 {
789 int get_current_pos_p = 0;
790 check_x ();
791
792 /* Decode the first argument: find the window and the coordinates. */
793 if (EQ (position, Qt)
794 || (CONSP (position) && (EQ (XCAR (position), Qmenu_bar)
795 || EQ (XCAR (position), Qtool_bar))))
796 {
797 get_current_pos_p = 1;
798 }
799 else
800 {
801 tem = Fcar (position);
802 if (CONSP (tem))
803 {
804 window = Fcar (Fcdr (position));
805 x = Fcar (tem);
806 y = Fcar (Fcdr (tem));
807 }
808 else
809 {
810 for_click = 1;
811 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
812 window = Fcar (tem); /* POSN_WINDOW (tem) */
813 tem = Fcar (Fcdr (Fcdr (tem))); /* POSN_WINDOW_POSN (tem) */
814 x = Fcar (tem);
815 y = Fcdr (tem);
816 }
817
818 /* If a click happens in an external tool bar or a detached
819 tool bar, x and y is NIL. In that case, use the current
820 mouse position. This happens for the help button in the
821 tool bar. Ideally popup-menu should pass NIL to
822 this function, but it doesn't. */
823 if (NILP (x) && NILP (y))
824 get_current_pos_p = 1;
825 }
826
827 if (get_current_pos_p)
828 {
829 /* Use the mouse's current position. */
830 FRAME_PTR new_f = SELECTED_FRAME ();
831 #ifdef HAVE_X_WINDOWS
832 /* Can't use mouse_position_hook for X since it returns
833 coordinates relative to the window the mouse is in,
834 we need coordinates relative to the edit widget always. */
835 if (new_f != 0)
836 {
837 int cur_x, cur_y;
838
839 mouse_position_for_popup (new_f, &cur_x, &cur_y);
840 /* cur_x/y may be negative, so use make_number. */
841 x = make_number (cur_x);
842 y = make_number (cur_y);
843 }
844
845 #else /* not HAVE_X_WINDOWS */
846 Lisp_Object bar_window;
847 enum scroll_bar_part part;
848 unsigned long time;
849
850 if (mouse_position_hook)
851 (*mouse_position_hook) (&new_f, 1, &bar_window,
852 &part, &x, &y, &time);
853 #endif /* not HAVE_X_WINDOWS */
854
855 if (new_f != 0)
856 XSETFRAME (window, new_f);
857 else
858 {
859 window = selected_window;
860 XSETFASTINT (x, 0);
861 XSETFASTINT (y, 0);
862 }
863 }
864
865 CHECK_NUMBER (x);
866 CHECK_NUMBER (y);
867
868 /* Decode where to put the menu. */
869
870 if (FRAMEP (window))
871 {
872 f = XFRAME (window);
873 xpos = 0;
874 ypos = 0;
875 }
876 else if (WINDOWP (window))
877 {
878 CHECK_LIVE_WINDOW (window);
879 f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
880
881 xpos = WINDOW_LEFT_EDGE_X (XWINDOW (window));
882 ypos = WINDOW_TOP_EDGE_Y (XWINDOW (window));
883 }
884 else
885 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
886 but I don't want to make one now. */
887 CHECK_WINDOW (window);
888
889 xpos += XINT (x);
890 ypos += XINT (y);
891 }
892 Vmenu_updating_frame = Qnil;
893 #endif /* HAVE_MENUS */
894
895 record_unwind_protect (unuse_menu_items, Qnil);
896 title = Qnil;
897 GCPRO1 (title);
898
899 /* Decode the menu items from what was specified. */
900
901 keymap = get_keymap (menu, 0, 0);
902 if (CONSP (keymap))
903 {
904 /* We were given a keymap. Extract menu info from the keymap. */
905 Lisp_Object prompt;
906
907 /* Extract the detailed info to make one pane. */
908 keymap_panes (&menu, 1, NILP (position));
909
910 /* Search for a string appearing directly as an element of the keymap.
911 That string is the title of the menu. */
912 prompt = Fkeymap_prompt (keymap);
913 if (NILP (title) && !NILP (prompt))
914 title = prompt;
915
916 /* Make that be the pane title of the first pane. */
917 if (!NILP (prompt) && menu_items_n_panes >= 0)
918 XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME] = prompt;
919
920 keymaps = 1;
921 }
922 else if (CONSP (menu) && KEYMAPP (XCAR (menu)))
923 {
924 /* We were given a list of keymaps. */
925 int nmaps = XFASTINT (Flength (menu));
926 Lisp_Object *maps
927 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
928 int i;
929
930 title = Qnil;
931
932 /* The first keymap that has a prompt string
933 supplies the menu title. */
934 for (tem = menu, i = 0; CONSP (tem); tem = Fcdr (tem))
935 {
936 Lisp_Object prompt;
937
938 maps[i++] = keymap = get_keymap (Fcar (tem), 1, 0);
939
940 prompt = Fkeymap_prompt (keymap);
941 if (NILP (title) && !NILP (prompt))
942 title = prompt;
943 }
944
945 /* Extract the detailed info to make one pane. */
946 keymap_panes (maps, nmaps, NILP (position));
947
948 /* Make the title be the pane title of the first pane. */
949 if (!NILP (title) && menu_items_n_panes >= 0)
950 XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME] = title;
951
952 keymaps = 1;
953 }
954 else
955 {
956 /* We were given an old-fashioned menu. */
957 title = Fcar (menu);
958 CHECK_STRING (title);
959
960 list_of_panes (Fcdr (menu));
961
962 keymaps = 0;
963 }
964
965 unbind_to (specpdl_count, Qnil);
966
967 if (NILP (position))
968 {
969 discard_menu_items ();
970 UNGCPRO;
971 return Qnil;
972 }
973
974 #ifdef HAVE_MENUS
975 /* Display them in a menu. */
976 BLOCK_INPUT;
977
978 selection = xmenu_show (f, xpos, ypos, for_click,
979 keymaps, title, &error_name);
980 UNBLOCK_INPUT;
981
982 discard_menu_items ();
983
984 UNGCPRO;
985 #endif /* HAVE_MENUS */
986
987 if (error_name) error (error_name);
988 return selection;
989 }
990
991 #ifdef HAVE_MENUS
992
993 DEFUN ("x-popup-dialog", Fx_popup_dialog, Sx_popup_dialog, 2, 2, 0,
994 doc: /* Pop up a dialog box and return user's selection.
995 POSITION specifies which frame to use.
996 This is normally a mouse button event or a window or frame.
997 If POSITION is t, it means to use the frame the mouse is on.
998 The dialog box appears in the middle of the specified frame.
999
1000 CONTENTS specifies the alternatives to display in the dialog box.
1001 It is a list of the form (TITLE ITEM1 ITEM2...).
1002 Each ITEM is a cons cell (STRING . VALUE).
1003 The return value is VALUE from the chosen item.
1004
1005 An ITEM may also be just a string--that makes a nonselectable item.
1006 An ITEM may also be nil--that means to put all preceding items
1007 on the left of the dialog box and all following items on the right.
1008 \(By default, approximately half appear on each side.) */)
1009 (position, contents)
1010 Lisp_Object position, contents;
1011 {
1012 FRAME_PTR f = NULL;
1013 Lisp_Object window;
1014
1015 check_x ();
1016
1017 /* Decode the first argument: find the window or frame to use. */
1018 if (EQ (position, Qt)
1019 || (CONSP (position) && (EQ (XCAR (position), Qmenu_bar)
1020 || EQ (XCAR (position), Qtool_bar))))
1021 {
1022 #if 0 /* Using the frame the mouse is on may not be right. */
1023 /* Use the mouse's current position. */
1024 FRAME_PTR new_f = SELECTED_FRAME ();
1025 Lisp_Object bar_window;
1026 enum scroll_bar_part part;
1027 unsigned long time;
1028 Lisp_Object x, y;
1029
1030 (*mouse_position_hook) (&new_f, 1, &bar_window, &part, &x, &y, &time);
1031
1032 if (new_f != 0)
1033 XSETFRAME (window, new_f);
1034 else
1035 window = selected_window;
1036 #endif
1037 window = selected_window;
1038 }
1039 else if (CONSP (position))
1040 {
1041 Lisp_Object tem;
1042 tem = Fcar (position);
1043 if (CONSP (tem))
1044 window = Fcar (Fcdr (position));
1045 else
1046 {
1047 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
1048 window = Fcar (tem); /* POSN_WINDOW (tem) */
1049 }
1050 }
1051 else if (WINDOWP (position) || FRAMEP (position))
1052 window = position;
1053 else
1054 window = Qnil;
1055
1056 /* Decode where to put the menu. */
1057
1058 if (FRAMEP (window))
1059 f = XFRAME (window);
1060 else if (WINDOWP (window))
1061 {
1062 CHECK_LIVE_WINDOW (window);
1063 f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
1064 }
1065 else
1066 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
1067 but I don't want to make one now. */
1068 CHECK_WINDOW (window);
1069
1070 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
1071 /* Display a menu with these alternatives
1072 in the middle of frame F. */
1073 {
1074 Lisp_Object x, y, frame, newpos;
1075 XSETFRAME (frame, f);
1076 XSETINT (x, x_pixel_width (f) / 2);
1077 XSETINT (y, x_pixel_height (f) / 2);
1078 newpos = Fcons (Fcons (x, Fcons (y, Qnil)), Fcons (frame, Qnil));
1079
1080 return Fx_popup_menu (newpos,
1081 Fcons (Fcar (contents), Fcons (contents, Qnil)));
1082 }
1083 #else
1084 {
1085 Lisp_Object title;
1086 char *error_name;
1087 Lisp_Object selection;
1088 int specpdl_count = SPECPDL_INDEX ();
1089
1090 /* Decode the dialog items from what was specified. */
1091 title = Fcar (contents);
1092 CHECK_STRING (title);
1093 record_unwind_protect (unuse_menu_items, Qnil);
1094
1095 if (NILP (Fcar (Fcdr (contents))))
1096 /* No buttons specified, add an "Ok" button so users can pop down
1097 the dialog. Also, the lesstif/motif version crashes if there are
1098 no buttons. */
1099 contents = Fcons (title, Fcons (Fcons (build_string ("Ok"), Qt), Qnil));
1100
1101 list_of_panes (Fcons (contents, Qnil));
1102
1103 /* Display them in a dialog box. */
1104 BLOCK_INPUT;
1105 selection = xdialog_show (f, 0, title, &error_name);
1106 UNBLOCK_INPUT;
1107
1108 unbind_to (specpdl_count, Qnil);
1109 discard_menu_items ();
1110
1111 if (error_name) error (error_name);
1112 return selection;
1113 }
1114 #endif
1115 }
1116
1117
1118 #ifndef MSDOS
1119
1120 /* Set menu_items_inuse so no other popup menu or dialog is created. */
1121
1122 void
1123 x_menu_set_in_use (in_use)
1124 int in_use;
1125 {
1126 menu_items_inuse = in_use ? Qt : Qnil;
1127 popup_activated_flag = in_use;
1128 }
1129
1130 /* Wait for an X event to arrive or for a timer to expire. */
1131
1132 void
1133 x_menu_wait_for_event (void *data)
1134 {
1135 extern EMACS_TIME timer_check P_ ((int));
1136
1137 /* Another way to do this is to register a timer callback, that can be
1138 done in GTK and Xt. But we have to do it like this when using only X
1139 anyway, and with callbacks we would have three variants for timer handling
1140 instead of the small ifdefs below. */
1141
1142 while (
1143 #ifdef USE_X_TOOLKIT
1144 ! XtAppPending (Xt_app_con)
1145 #elif defined USE_GTK
1146 ! gtk_events_pending ()
1147 #else
1148 ! XPending ((Display*) data)
1149 #endif
1150 )
1151 {
1152 EMACS_TIME next_time = timer_check (1);
1153 long secs = EMACS_SECS (next_time);
1154 long usecs = EMACS_USECS (next_time);
1155 SELECT_TYPE read_fds;
1156 struct x_display_info *dpyinfo;
1157 int n = 0;
1158
1159 FD_ZERO (&read_fds);
1160 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
1161 {
1162 int fd = ConnectionNumber (dpyinfo->display);
1163 FD_SET (fd, &read_fds);
1164 if (fd > n) n = fd;
1165 }
1166
1167 if (secs < 0 || (secs == 0 && usecs == 0))
1168 {
1169 /* Sometimes timer_check returns -1 (no timers) even if there are
1170 timers. So do a timeout anyway. */
1171 EMACS_SET_SECS (next_time, 1);
1172 EMACS_SET_USECS (next_time, 0);
1173 }
1174
1175 select (n + 1, &read_fds, (SELECT_TYPE *)0, (SELECT_TYPE *)0, &next_time);
1176 }
1177 }
1178 #endif /* ! MSDOS */
1179
1180 \f
1181 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
1182
1183 #ifdef USE_X_TOOLKIT
1184
1185 /* Loop in Xt until the menu pulldown or dialog popup has been
1186 popped down (deactivated). This is used for x-popup-menu
1187 and x-popup-dialog; it is not used for the menu bar.
1188
1189 If DOWN_ON_KEYPRESS is nonzero, pop down if a key is pressed.
1190
1191 NOTE: All calls to popup_get_selection should be protected
1192 with BLOCK_INPUT, UNBLOCK_INPUT wrappers. */
1193
1194 static void
1195 popup_get_selection (initial_event, dpyinfo, id, do_timers, down_on_keypress)
1196 XEvent *initial_event;
1197 struct x_display_info *dpyinfo;
1198 LWLIB_ID id;
1199 int do_timers;
1200 int down_on_keypress;
1201 {
1202 XEvent event;
1203
1204 while (popup_activated_flag)
1205 {
1206 if (initial_event)
1207 {
1208 event = *initial_event;
1209 initial_event = 0;
1210 }
1211 else
1212 {
1213 if (do_timers) x_menu_wait_for_event (0);
1214 XtAppNextEvent (Xt_app_con, &event);
1215 }
1216
1217 /* Make sure we don't consider buttons grabbed after menu goes.
1218 And make sure to deactivate for any ButtonRelease,
1219 even if XtDispatchEvent doesn't do that. */
1220 if (event.type == ButtonRelease
1221 && dpyinfo->display == event.xbutton.display)
1222 {
1223 dpyinfo->grabbed &= ~(1 << event.xbutton.button);
1224 #ifdef USE_MOTIF /* Pretending that the event came from a
1225 Btn1Down seems the only way to convince Motif to
1226 activate its callbacks; setting the XmNmenuPost
1227 isn't working. --marcus@sysc.pdx.edu. */
1228 event.xbutton.button = 1;
1229 /* Motif only pops down menus when no Ctrl, Alt or Mod
1230 key is pressed and the button is released. So reset key state
1231 so Motif thinks this is the case. */
1232 event.xbutton.state = 0;
1233 #endif
1234 }
1235 /* If the user presses a key that doesn't go to the menu,
1236 deactivate the menu.
1237 The user is likely to do that if we get wedged.
1238 All toolkits now pop down menus on ESC.
1239 For dialogs however, the focus may not be on the dialog, so
1240 in that case, we pop down. */
1241 else if (event.type == KeyPress
1242 && down_on_keypress
1243 && dpyinfo->display == event.xbutton.display)
1244 {
1245 KeySym keysym = XLookupKeysym (&event.xkey, 0);
1246 if (!IsModifierKey (keysym)
1247 && x_any_window_to_frame (dpyinfo, event.xany.window) != NULL)
1248 popup_activated_flag = 0;
1249 }
1250
1251 x_dispatch_event (&event, event.xany.display);
1252 }
1253 }
1254
1255 #endif /* USE_X_TOOLKIT */
1256
1257 #ifdef USE_GTK
1258 /* Loop util popup_activated_flag is set to zero in a callback.
1259 Used for popup menus and dialogs. */
1260
1261 static void
1262 popup_widget_loop (do_timers, widget)
1263 int do_timers;
1264 GtkWidget *widget;
1265 {
1266 ++popup_activated_flag;
1267
1268 /* Process events in the Gtk event loop until done. */
1269 while (popup_activated_flag)
1270 {
1271 if (do_timers) x_menu_wait_for_event (0);
1272 gtk_main_iteration ();
1273 }
1274 }
1275 #endif
1276
1277 /* Activate the menu bar of frame F.
1278 This is called from keyboard.c when it gets the
1279 MENU_BAR_ACTIVATE_EVENT out of the Emacs event queue.
1280
1281 To activate the menu bar, we use the X button-press event
1282 that was saved in saved_menu_event.
1283 That makes the toolkit do its thing.
1284
1285 But first we recompute the menu bar contents (the whole tree).
1286
1287 The reason for saving the button event until here, instead of
1288 passing it to the toolkit right away, is that we can safely
1289 execute Lisp code. */
1290
1291 void
1292 x_activate_menubar (f)
1293 FRAME_PTR f;
1294 {
1295 if (!f->output_data.x->saved_menu_event->type)
1296 return;
1297
1298 #ifdef USE_GTK
1299 if (! xg_win_to_widget (FRAME_X_DISPLAY (f),
1300 f->output_data.x->saved_menu_event->xany.window))
1301 return;
1302 #endif
1303
1304 set_frame_menubar (f, 0, 1);
1305 BLOCK_INPUT;
1306 #ifdef USE_GTK
1307 XPutBackEvent (f->output_data.x->display_info->display,
1308 f->output_data.x->saved_menu_event);
1309 popup_activated_flag = 1;
1310 #else
1311 XtDispatchEvent (f->output_data.x->saved_menu_event);
1312 #endif
1313 UNBLOCK_INPUT;
1314 #ifdef USE_MOTIF
1315 if (f->output_data.x->saved_menu_event->type == ButtonRelease)
1316 pending_menu_activation = 1;
1317 #endif
1318
1319 /* Ignore this if we get it a second time. */
1320 f->output_data.x->saved_menu_event->type = 0;
1321 }
1322
1323 /* Detect if a dialog or menu has been posted. */
1324
1325 int
1326 popup_activated ()
1327 {
1328 return popup_activated_flag;
1329 }
1330
1331 /* This callback is invoked when the user selects a menubar cascade
1332 pushbutton, but before the pulldown menu is posted. */
1333
1334 #ifndef USE_GTK
1335 static void
1336 popup_activate_callback (widget, id, client_data)
1337 Widget widget;
1338 LWLIB_ID id;
1339 XtPointer client_data;
1340 {
1341 popup_activated_flag = 1;
1342 }
1343 #endif
1344
1345 /* This callback is invoked when a dialog or menu is finished being
1346 used and has been unposted. */
1347
1348 #ifdef USE_GTK
1349 static void
1350 popup_deactivate_callback (widget, client_data)
1351 GtkWidget *widget;
1352 gpointer client_data;
1353 {
1354 popup_activated_flag = 0;
1355 }
1356 #else
1357 static void
1358 popup_deactivate_callback (widget, id, client_data)
1359 Widget widget;
1360 LWLIB_ID id;
1361 XtPointer client_data;
1362 {
1363 popup_activated_flag = 0;
1364 }
1365 #endif
1366
1367
1368 /* Function that finds the frame for WIDGET and shows the HELP text
1369 for that widget.
1370 F is the frame if known, or NULL if not known. */
1371 static void
1372 show_help_event (f, widget, help)
1373 FRAME_PTR f;
1374 xt_or_gtk_widget widget;
1375 Lisp_Object help;
1376 {
1377 Lisp_Object frame;
1378
1379 if (f)
1380 {
1381 XSETFRAME (frame, f);
1382 kbd_buffer_store_help_event (frame, help);
1383 }
1384 else
1385 {
1386 #if 0 /* This code doesn't do anything useful. ++kfs */
1387 /* WIDGET is the popup menu. It's parent is the frame's
1388 widget. See which frame that is. */
1389 xt_or_gtk_widget frame_widget = XtParent (widget);
1390 Lisp_Object tail;
1391
1392 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
1393 {
1394 frame = XCAR (tail);
1395 if (GC_FRAMEP (frame)
1396 && (f = XFRAME (frame),
1397 FRAME_X_P (f) && f->output_data.x->widget == frame_widget))
1398 break;
1399 }
1400 #endif
1401 show_help_echo (help, Qnil, Qnil, Qnil, 1);
1402 }
1403 }
1404
1405 /* Callback called when menu items are highlighted/unhighlighted
1406 while moving the mouse over them. WIDGET is the menu bar or menu
1407 popup widget. ID is its LWLIB_ID. CALL_DATA contains a pointer to
1408 the data structure for the menu item, or null in case of
1409 unhighlighting. */
1410
1411 #ifdef USE_GTK
1412 void
1413 menu_highlight_callback (widget, call_data)
1414 GtkWidget *widget;
1415 gpointer call_data;
1416 {
1417 xg_menu_item_cb_data *cb_data;
1418 Lisp_Object help;
1419
1420 cb_data = (xg_menu_item_cb_data*) g_object_get_data (G_OBJECT (widget),
1421 XG_ITEM_DATA);
1422 if (! cb_data) return;
1423
1424 help = call_data ? cb_data->help : Qnil;
1425
1426 /* If popup_activated_flag is greater than 1 we are in a popup menu.
1427 Don't show help for them, they won't appear before the
1428 popup is popped down. */
1429 if (popup_activated_flag <= 1)
1430 show_help_event (cb_data->cl_data->f, widget, help);
1431 }
1432 #else
1433 void
1434 menu_highlight_callback (widget, id, call_data)
1435 Widget widget;
1436 LWLIB_ID id;
1437 void *call_data;
1438 {
1439 struct frame *f;
1440 Lisp_Object help;
1441
1442 widget_value *wv = (widget_value *) call_data;
1443
1444 help = wv ? wv->help : Qnil;
1445
1446 /* Determine the frame for the help event. */
1447 f = menubar_id_to_frame (id);
1448
1449 show_help_event (f, widget, help);
1450 }
1451 #endif
1452
1453 /* Find the menu selection and store it in the keyboard buffer.
1454 F is the frame the menu is on.
1455 MENU_BAR_ITEMS_USED is the length of VECTOR.
1456 VECTOR is an array of menu events for the whole menu.
1457 */
1458 void
1459 find_and_call_menu_selection (f, menu_bar_items_used, vector, client_data)
1460 FRAME_PTR f;
1461 EMACS_INT menu_bar_items_used;
1462 Lisp_Object vector;
1463 void *client_data;
1464 {
1465 Lisp_Object prefix, entry;
1466 Lisp_Object *subprefix_stack;
1467 int submenu_depth = 0;
1468 int i;
1469
1470 entry = Qnil;
1471 subprefix_stack = (Lisp_Object *) alloca (menu_bar_items_used * sizeof (Lisp_Object));
1472 prefix = Qnil;
1473 i = 0;
1474
1475 while (i < menu_bar_items_used)
1476 {
1477 if (EQ (XVECTOR (vector)->contents[i], Qnil))
1478 {
1479 subprefix_stack[submenu_depth++] = prefix;
1480 prefix = entry;
1481 i++;
1482 }
1483 else if (EQ (XVECTOR (vector)->contents[i], Qlambda))
1484 {
1485 prefix = subprefix_stack[--submenu_depth];
1486 i++;
1487 }
1488 else if (EQ (XVECTOR (vector)->contents[i], Qt))
1489 {
1490 prefix = XVECTOR (vector)->contents[i + MENU_ITEMS_PANE_PREFIX];
1491 i += MENU_ITEMS_PANE_LENGTH;
1492 }
1493 else
1494 {
1495 entry = XVECTOR (vector)->contents[i + MENU_ITEMS_ITEM_VALUE];
1496 /* The EMACS_INT cast avoids a warning. There's no problem
1497 as long as pointers have enough bits to hold small integers. */
1498 if ((int) (EMACS_INT) client_data == i)
1499 {
1500 int j;
1501 struct input_event buf;
1502 Lisp_Object frame;
1503 EVENT_INIT (buf);
1504
1505 XSETFRAME (frame, f);
1506 buf.kind = MENU_BAR_EVENT;
1507 buf.frame_or_window = frame;
1508 buf.arg = frame;
1509 kbd_buffer_store_event (&buf);
1510
1511 for (j = 0; j < submenu_depth; j++)
1512 if (!NILP (subprefix_stack[j]))
1513 {
1514 buf.kind = MENU_BAR_EVENT;
1515 buf.frame_or_window = frame;
1516 buf.arg = subprefix_stack[j];
1517 kbd_buffer_store_event (&buf);
1518 }
1519
1520 if (!NILP (prefix))
1521 {
1522 buf.kind = MENU_BAR_EVENT;
1523 buf.frame_or_window = frame;
1524 buf.arg = prefix;
1525 kbd_buffer_store_event (&buf);
1526 }
1527
1528 buf.kind = MENU_BAR_EVENT;
1529 buf.frame_or_window = frame;
1530 buf.arg = entry;
1531 kbd_buffer_store_event (&buf);
1532
1533 return;
1534 }
1535 i += MENU_ITEMS_ITEM_LENGTH;
1536 }
1537 }
1538 }
1539
1540
1541 #ifdef USE_GTK
1542 /* Gtk calls callbacks just because we tell it what item should be
1543 selected in a radio group. If this variable is set to a non-zero
1544 value, we are creating menus and don't want callbacks right now.
1545 */
1546 static int xg_crazy_callback_abort;
1547
1548 /* This callback is called from the menu bar pulldown menu
1549 when the user makes a selection.
1550 Figure out what the user chose
1551 and put the appropriate events into the keyboard buffer. */
1552 static void
1553 menubar_selection_callback (widget, client_data)
1554 GtkWidget *widget;
1555 gpointer client_data;
1556 {
1557 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data*) client_data;
1558
1559 if (xg_crazy_callback_abort)
1560 return;
1561
1562 if (! cb_data || ! cb_data->cl_data || ! cb_data->cl_data->f)
1563 return;
1564
1565 find_and_call_menu_selection (cb_data->cl_data->f,
1566 cb_data->cl_data->menu_bar_items_used,
1567 cb_data->cl_data->menu_bar_vector,
1568 cb_data->call_data);
1569 }
1570
1571 #else /* not USE_GTK */
1572
1573 /* This callback is called from the menu bar pulldown menu
1574 when the user makes a selection.
1575 Figure out what the user chose
1576 and put the appropriate events into the keyboard buffer. */
1577 static void
1578 menubar_selection_callback (widget, id, client_data)
1579 Widget widget;
1580 LWLIB_ID id;
1581 XtPointer client_data;
1582 {
1583 FRAME_PTR f;
1584
1585 f = menubar_id_to_frame (id);
1586 if (!f)
1587 return;
1588 find_and_call_menu_selection (f, f->menu_bar_items_used,
1589 f->menu_bar_vector, client_data);
1590 }
1591 #endif /* not USE_GTK */
1592
1593 /* Allocate a widget_value, blocking input. */
1594
1595 widget_value *
1596 xmalloc_widget_value ()
1597 {
1598 widget_value *value;
1599
1600 BLOCK_INPUT;
1601 value = malloc_widget_value ();
1602 UNBLOCK_INPUT;
1603
1604 return value;
1605 }
1606
1607 /* This recursively calls free_widget_value on the tree of widgets.
1608 It must free all data that was malloc'ed for these widget_values.
1609 In Emacs, many slots are pointers into the data of Lisp_Strings, and
1610 must be left alone. */
1611
1612 void
1613 free_menubar_widget_value_tree (wv)
1614 widget_value *wv;
1615 {
1616 if (! wv) return;
1617
1618 wv->name = wv->value = wv->key = (char *) 0xDEADBEEF;
1619
1620 if (wv->contents && (wv->contents != (widget_value*)1))
1621 {
1622 free_menubar_widget_value_tree (wv->contents);
1623 wv->contents = (widget_value *) 0xDEADBEEF;
1624 }
1625 if (wv->next)
1626 {
1627 free_menubar_widget_value_tree (wv->next);
1628 wv->next = (widget_value *) 0xDEADBEEF;
1629 }
1630 BLOCK_INPUT;
1631 free_widget_value (wv);
1632 UNBLOCK_INPUT;
1633 }
1634 \f
1635 /* Set up data in menu_items for a menu bar item
1636 whose event type is ITEM_KEY (with string ITEM_NAME)
1637 and whose contents come from the list of keymaps MAPS. */
1638
1639 static int
1640 parse_single_submenu (item_key, item_name, maps)
1641 Lisp_Object item_key, item_name, maps;
1642 {
1643 Lisp_Object length;
1644 int len;
1645 Lisp_Object *mapvec;
1646 int i;
1647 int top_level_items = 0;
1648
1649 length = Flength (maps);
1650 len = XINT (length);
1651
1652 /* Convert the list MAPS into a vector MAPVEC. */
1653 mapvec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
1654 for (i = 0; i < len; i++)
1655 {
1656 mapvec[i] = Fcar (maps);
1657 maps = Fcdr (maps);
1658 }
1659
1660 /* Loop over the given keymaps, making a pane for each map.
1661 But don't make a pane that is empty--ignore that map instead. */
1662 for (i = 0; i < len; i++)
1663 {
1664 if (!KEYMAPP (mapvec[i]))
1665 {
1666 /* Here we have a command at top level in the menu bar
1667 as opposed to a submenu. */
1668 top_level_items = 1;
1669 push_menu_pane (Qnil, Qnil);
1670 push_menu_item (item_name, Qt, item_key, mapvec[i],
1671 Qnil, Qnil, Qnil, Qnil);
1672 }
1673 else
1674 {
1675 Lisp_Object prompt;
1676 prompt = Fkeymap_prompt (mapvec[i]);
1677 single_keymap_panes (mapvec[i],
1678 !NILP (prompt) ? prompt : item_name,
1679 item_key, 0, 10);
1680 }
1681 }
1682
1683 return top_level_items;
1684 }
1685
1686 /* Create a tree of widget_value objects
1687 representing the panes and items
1688 in menu_items starting at index START, up to index END. */
1689
1690 static widget_value *
1691 digest_single_submenu (start, end, top_level_items)
1692 int start, end, top_level_items;
1693 {
1694 widget_value *wv, *prev_wv, *save_wv, *first_wv;
1695 int i;
1696 int submenu_depth = 0;
1697 widget_value **submenu_stack;
1698
1699 submenu_stack
1700 = (widget_value **) alloca (menu_items_used * sizeof (widget_value *));
1701 wv = xmalloc_widget_value ();
1702 wv->name = "menu";
1703 wv->value = 0;
1704 wv->enabled = 1;
1705 wv->button_type = BUTTON_TYPE_NONE;
1706 wv->help = Qnil;
1707 first_wv = wv;
1708 save_wv = 0;
1709 prev_wv = 0;
1710
1711 /* Loop over all panes and items made by the preceding call
1712 to parse_single_submenu and construct a tree of widget_value objects.
1713 Ignore the panes and items used by previous calls to
1714 digest_single_submenu, even though those are also in menu_items. */
1715 i = start;
1716 while (i < end)
1717 {
1718 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
1719 {
1720 submenu_stack[submenu_depth++] = save_wv;
1721 save_wv = prev_wv;
1722 prev_wv = 0;
1723 i++;
1724 }
1725 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
1726 {
1727 prev_wv = save_wv;
1728 save_wv = submenu_stack[--submenu_depth];
1729 i++;
1730 }
1731 else if (EQ (XVECTOR (menu_items)->contents[i], Qt)
1732 && submenu_depth != 0)
1733 i += MENU_ITEMS_PANE_LENGTH;
1734 /* Ignore a nil in the item list.
1735 It's meaningful only for dialog boxes. */
1736 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
1737 i += 1;
1738 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
1739 {
1740 /* Create a new pane. */
1741 Lisp_Object pane_name, prefix;
1742 char *pane_string;
1743
1744 pane_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_NAME];
1745 prefix = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
1746
1747 #ifndef HAVE_MULTILINGUAL_MENU
1748 if (STRINGP (pane_name) && STRING_MULTIBYTE (pane_name))
1749 {
1750 pane_name = ENCODE_SYSTEM (pane_name);
1751 AREF (menu_items, i + MENU_ITEMS_PANE_NAME) = pane_name;
1752 }
1753 #endif
1754 pane_string = (NILP (pane_name)
1755 ? "" : (char *) SDATA (pane_name));
1756 /* If there is just one top-level pane, put all its items directly
1757 under the top-level menu. */
1758 if (menu_items_n_panes == 1)
1759 pane_string = "";
1760
1761 /* If the pane has a meaningful name,
1762 make the pane a top-level menu item
1763 with its items as a submenu beneath it. */
1764 if (strcmp (pane_string, ""))
1765 {
1766 wv = xmalloc_widget_value ();
1767 if (save_wv)
1768 save_wv->next = wv;
1769 else
1770 first_wv->contents = wv;
1771 wv->lname = pane_name;
1772 /* Set value to 1 so update_submenu_strings can handle '@' */
1773 wv->value = (char *)1;
1774 wv->enabled = 1;
1775 wv->button_type = BUTTON_TYPE_NONE;
1776 wv->help = Qnil;
1777 }
1778 save_wv = wv;
1779 prev_wv = 0;
1780 i += MENU_ITEMS_PANE_LENGTH;
1781 }
1782 else
1783 {
1784 /* Create a new item within current pane. */
1785 Lisp_Object item_name, enable, descrip, def, type, selected;
1786 Lisp_Object help;
1787
1788 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
1789 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
1790 descrip = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
1791 def = AREF (menu_items, i + MENU_ITEMS_ITEM_DEFINITION);
1792 type = AREF (menu_items, i + MENU_ITEMS_ITEM_TYPE);
1793 selected = AREF (menu_items, i + MENU_ITEMS_ITEM_SELECTED);
1794 help = AREF (menu_items, i + MENU_ITEMS_ITEM_HELP);
1795
1796 #ifndef HAVE_MULTILINGUAL_MENU
1797 if (STRING_MULTIBYTE (item_name))
1798 {
1799 item_name = ENCODE_MENU_STRING (item_name);
1800 AREF (menu_items, i + MENU_ITEMS_ITEM_NAME) = item_name;
1801 }
1802
1803 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
1804 {
1805 descrip = ENCODE_MENU_STRING (descrip);
1806 AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY) = descrip;
1807 }
1808 #endif /* not HAVE_MULTILINGUAL_MENU */
1809
1810 wv = xmalloc_widget_value ();
1811 if (prev_wv)
1812 prev_wv->next = wv;
1813 else
1814 save_wv->contents = wv;
1815
1816 wv->lname = item_name;
1817 if (!NILP (descrip))
1818 wv->lkey = descrip;
1819 wv->value = 0;
1820 /* The EMACS_INT cast avoids a warning. There's no problem
1821 as long as pointers have enough bits to hold small integers. */
1822 wv->call_data = (!NILP (def) ? (void *) (EMACS_INT) i : 0);
1823 wv->enabled = !NILP (enable);
1824
1825 if (NILP (type))
1826 wv->button_type = BUTTON_TYPE_NONE;
1827 else if (EQ (type, QCradio))
1828 wv->button_type = BUTTON_TYPE_RADIO;
1829 else if (EQ (type, QCtoggle))
1830 wv->button_type = BUTTON_TYPE_TOGGLE;
1831 else
1832 abort ();
1833
1834 wv->selected = !NILP (selected);
1835 if (! STRINGP (help))
1836 help = Qnil;
1837
1838 wv->help = help;
1839
1840 prev_wv = wv;
1841
1842 i += MENU_ITEMS_ITEM_LENGTH;
1843 }
1844 }
1845
1846 /* If we have just one "menu item"
1847 that was originally a button, return it by itself. */
1848 if (top_level_items && first_wv->contents && first_wv->contents->next == 0)
1849 {
1850 wv = first_wv->contents;
1851 free_widget_value (first_wv);
1852 return wv;
1853 }
1854
1855 return first_wv;
1856 }
1857
1858 /* Walk through the widget_value tree starting at FIRST_WV and update
1859 the char * pointers from the corresponding lisp values.
1860 We do this after building the whole tree, since GC may happen while the
1861 tree is constructed, and small strings are relocated. So we must wait
1862 until no GC can happen before storing pointers into lisp values. */
1863 static void
1864 update_submenu_strings (first_wv)
1865 widget_value *first_wv;
1866 {
1867 widget_value *wv;
1868
1869 for (wv = first_wv; wv; wv = wv->next)
1870 {
1871 if (STRINGP (wv->lname))
1872 {
1873 wv->name = SDATA (wv->lname);
1874
1875 /* Ignore the @ that means "separate pane".
1876 This is a kludge, but this isn't worth more time. */
1877 if (wv->value == (char *)1)
1878 {
1879 if (wv->name[0] == '@')
1880 wv->name++;
1881 wv->value = 0;
1882 }
1883 }
1884
1885 if (STRINGP (wv->lkey))
1886 wv->key = SDATA (wv->lkey);
1887
1888 if (wv->contents)
1889 update_submenu_strings (wv->contents);
1890 }
1891 }
1892
1893 \f
1894 /* Recompute all the widgets of frame F, when the menu bar has been
1895 changed. Value is non-zero if widgets were updated. */
1896
1897 static int
1898 update_frame_menubar (f)
1899 FRAME_PTR f;
1900 {
1901 #ifdef USE_GTK
1902 return xg_update_frame_menubar (f);
1903 #else
1904 struct x_output *x = f->output_data.x;
1905 int columns, rows;
1906
1907 if (!x->menubar_widget || XtIsManaged (x->menubar_widget))
1908 return 0;
1909
1910 BLOCK_INPUT;
1911 /* Save the size of the frame because the pane widget doesn't accept
1912 to resize itself. So force it. */
1913 columns = FRAME_COLS (f);
1914 rows = FRAME_LINES (f);
1915
1916 /* Do the voodoo which means "I'm changing lots of things, don't try
1917 to refigure sizes until I'm done." */
1918 lw_refigure_widget (x->column_widget, False);
1919
1920 /* The order in which children are managed is the top to bottom
1921 order in which they are displayed in the paned window. First,
1922 remove the text-area widget. */
1923 XtUnmanageChild (x->edit_widget);
1924
1925 /* Remove the menubar that is there now, and put up the menubar that
1926 should be there. */
1927 XtManageChild (x->menubar_widget);
1928 XtMapWidget (x->menubar_widget);
1929 XtVaSetValues (x->menubar_widget, XtNmappedWhenManaged, 1, NULL);
1930
1931 /* Re-manage the text-area widget, and then thrash the sizes. */
1932 XtManageChild (x->edit_widget);
1933 lw_refigure_widget (x->column_widget, True);
1934
1935 /* Force the pane widget to resize itself with the right values. */
1936 EmacsFrameSetCharSize (x->edit_widget, columns, rows);
1937 UNBLOCK_INPUT;
1938 #endif
1939 return 1;
1940 }
1941
1942 /* Set the contents of the menubar widgets of frame F.
1943 The argument FIRST_TIME is currently ignored;
1944 it is set the first time this is called, from initialize_frame_menubar. */
1945
1946 void
1947 set_frame_menubar (f, first_time, deep_p)
1948 FRAME_PTR f;
1949 int first_time;
1950 int deep_p;
1951 {
1952 xt_or_gtk_widget menubar_widget = f->output_data.x->menubar_widget;
1953 #ifdef USE_X_TOOLKIT
1954 LWLIB_ID id;
1955 #endif
1956 Lisp_Object items;
1957 widget_value *wv, *first_wv, *prev_wv = 0;
1958 int i, last_i = 0;
1959 int *submenu_start, *submenu_end;
1960 int *submenu_top_level_items, *submenu_n_panes;
1961
1962
1963 XSETFRAME (Vmenu_updating_frame, f);
1964
1965 #ifdef USE_X_TOOLKIT
1966 if (f->output_data.x->id == 0)
1967 f->output_data.x->id = next_menubar_widget_id++;
1968 id = f->output_data.x->id;
1969 #endif
1970
1971 if (! menubar_widget)
1972 deep_p = 1;
1973 else if (pending_menu_activation && !deep_p)
1974 deep_p = 1;
1975 /* Make the first call for any given frame always go deep. */
1976 else if (!f->output_data.x->saved_menu_event && !deep_p)
1977 {
1978 deep_p = 1;
1979 f->output_data.x->saved_menu_event = (XEvent*)xmalloc (sizeof (XEvent));
1980 f->output_data.x->saved_menu_event->type = 0;
1981 }
1982
1983 #ifdef USE_GTK
1984 /* If we have detached menus, we must update deep so detached menus
1985 also gets updated. */
1986 deep_p = deep_p || xg_have_tear_offs ();
1987 #endif
1988
1989 if (deep_p)
1990 {
1991 /* Make a widget-value tree representing the entire menu trees. */
1992
1993 struct buffer *prev = current_buffer;
1994 Lisp_Object buffer;
1995 int specpdl_count = SPECPDL_INDEX ();
1996 int previous_menu_items_used = f->menu_bar_items_used;
1997 Lisp_Object *previous_items
1998 = (Lisp_Object *) alloca (previous_menu_items_used
1999 * sizeof (Lisp_Object));
2000
2001 /* If we are making a new widget, its contents are empty,
2002 do always reinitialize them. */
2003 if (! menubar_widget)
2004 previous_menu_items_used = 0;
2005
2006 buffer = XWINDOW (FRAME_SELECTED_WINDOW (f))->buffer;
2007 specbind (Qinhibit_quit, Qt);
2008 /* Don't let the debugger step into this code
2009 because it is not reentrant. */
2010 specbind (Qdebug_on_next_call, Qnil);
2011
2012 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
2013 record_unwind_protect (unuse_menu_items, Qnil);
2014 if (NILP (Voverriding_local_map_menu_flag))
2015 {
2016 specbind (Qoverriding_terminal_local_map, Qnil);
2017 specbind (Qoverriding_local_map, Qnil);
2018 }
2019
2020 set_buffer_internal_1 (XBUFFER (buffer));
2021
2022 /* Run the Lucid hook. */
2023 safe_run_hooks (Qactivate_menubar_hook);
2024
2025 /* If it has changed current-menubar from previous value,
2026 really recompute the menubar from the value. */
2027 if (! NILP (Vlucid_menu_bar_dirty_flag))
2028 call0 (Qrecompute_lucid_menubar);
2029 safe_run_hooks (Qmenu_bar_update_hook);
2030 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
2031
2032 items = FRAME_MENU_BAR_ITEMS (f);
2033
2034 /* Save the frame's previous menu bar contents data. */
2035 if (previous_menu_items_used)
2036 bcopy (XVECTOR (f->menu_bar_vector)->contents, previous_items,
2037 previous_menu_items_used * sizeof (Lisp_Object));
2038
2039 /* Fill in menu_items with the current menu bar contents.
2040 This can evaluate Lisp code. */
2041 menu_items = f->menu_bar_vector;
2042 menu_items_allocated = VECTORP (menu_items) ? ASIZE (menu_items) : 0;
2043 submenu_start = (int *) alloca (XVECTOR (items)->size * sizeof (int *));
2044 submenu_end = (int *) alloca (XVECTOR (items)->size * sizeof (int *));
2045 submenu_n_panes = (int *) alloca (XVECTOR (items)->size * sizeof (int));
2046 submenu_top_level_items
2047 = (int *) alloca (XVECTOR (items)->size * sizeof (int *));
2048 init_menu_items ();
2049 for (i = 0; i < XVECTOR (items)->size; i += 4)
2050 {
2051 Lisp_Object key, string, maps;
2052
2053 last_i = i;
2054
2055 key = XVECTOR (items)->contents[i];
2056 string = XVECTOR (items)->contents[i + 1];
2057 maps = XVECTOR (items)->contents[i + 2];
2058 if (NILP (string))
2059 break;
2060
2061 submenu_start[i] = menu_items_used;
2062
2063 menu_items_n_panes = 0;
2064 submenu_top_level_items[i]
2065 = parse_single_submenu (key, string, maps);
2066 submenu_n_panes[i] = menu_items_n_panes;
2067
2068 submenu_end[i] = menu_items_used;
2069 }
2070
2071 finish_menu_items ();
2072
2073 /* Convert menu_items into widget_value trees
2074 to display the menu. This cannot evaluate Lisp code. */
2075
2076 wv = xmalloc_widget_value ();
2077 wv->name = "menubar";
2078 wv->value = 0;
2079 wv->enabled = 1;
2080 wv->button_type = BUTTON_TYPE_NONE;
2081 wv->help = Qnil;
2082 first_wv = wv;
2083
2084 for (i = 0; i < last_i; i += 4)
2085 {
2086 menu_items_n_panes = submenu_n_panes[i];
2087 wv = digest_single_submenu (submenu_start[i], submenu_end[i],
2088 submenu_top_level_items[i]);
2089 if (prev_wv)
2090 prev_wv->next = wv;
2091 else
2092 first_wv->contents = wv;
2093 /* Don't set wv->name here; GC during the loop might relocate it. */
2094 wv->enabled = 1;
2095 wv->button_type = BUTTON_TYPE_NONE;
2096 prev_wv = wv;
2097 }
2098
2099 set_buffer_internal_1 (prev);
2100 unbind_to (specpdl_count, Qnil);
2101
2102 /* If there has been no change in the Lisp-level contents
2103 of the menu bar, skip redisplaying it. Just exit. */
2104
2105 for (i = 0; i < previous_menu_items_used; i++)
2106 if (menu_items_used == i
2107 || (!EQ (previous_items[i], XVECTOR (menu_items)->contents[i])))
2108 break;
2109 if (i == menu_items_used && i == previous_menu_items_used && i != 0)
2110 {
2111 free_menubar_widget_value_tree (first_wv);
2112 discard_menu_items ();
2113
2114 return;
2115 }
2116
2117 /* Now GC cannot happen during the lifetime of the widget_value,
2118 so it's safe to store data from a Lisp_String. */
2119 wv = first_wv->contents;
2120 for (i = 0; i < XVECTOR (items)->size; i += 4)
2121 {
2122 Lisp_Object string;
2123 string = XVECTOR (items)->contents[i + 1];
2124 if (NILP (string))
2125 break;
2126 wv->name = (char *) SDATA (string);
2127 update_submenu_strings (wv->contents);
2128 wv = wv->next;
2129 }
2130
2131 f->menu_bar_vector = menu_items;
2132 f->menu_bar_items_used = menu_items_used;
2133 discard_menu_items ();
2134 }
2135 else
2136 {
2137 /* Make a widget-value tree containing
2138 just the top level menu bar strings. */
2139
2140 wv = xmalloc_widget_value ();
2141 wv->name = "menubar";
2142 wv->value = 0;
2143 wv->enabled = 1;
2144 wv->button_type = BUTTON_TYPE_NONE;
2145 wv->help = Qnil;
2146 first_wv = wv;
2147
2148 items = FRAME_MENU_BAR_ITEMS (f);
2149 for (i = 0; i < XVECTOR (items)->size; i += 4)
2150 {
2151 Lisp_Object string;
2152
2153 string = XVECTOR (items)->contents[i + 1];
2154 if (NILP (string))
2155 break;
2156
2157 wv = xmalloc_widget_value ();
2158 wv->name = (char *) SDATA (string);
2159 wv->value = 0;
2160 wv->enabled = 1;
2161 wv->button_type = BUTTON_TYPE_NONE;
2162 wv->help = Qnil;
2163 /* This prevents lwlib from assuming this
2164 menu item is really supposed to be empty. */
2165 /* The EMACS_INT cast avoids a warning.
2166 This value just has to be different from small integers. */
2167 wv->call_data = (void *) (EMACS_INT) (-1);
2168
2169 if (prev_wv)
2170 prev_wv->next = wv;
2171 else
2172 first_wv->contents = wv;
2173 prev_wv = wv;
2174 }
2175
2176 /* Forget what we thought we knew about what is in the
2177 detailed contents of the menu bar menus.
2178 Changing the top level always destroys the contents. */
2179 f->menu_bar_items_used = 0;
2180 }
2181
2182 /* Create or update the menu bar widget. */
2183
2184 BLOCK_INPUT;
2185
2186 #ifdef USE_GTK
2187 xg_crazy_callback_abort = 1;
2188 if (menubar_widget)
2189 {
2190 /* The fourth arg is DEEP_P, which says to consider the entire
2191 menu trees we supply, rather than just the menu bar item names. */
2192 xg_modify_menubar_widgets (menubar_widget,
2193 f,
2194 first_wv,
2195 deep_p,
2196 G_CALLBACK (menubar_selection_callback),
2197 G_CALLBACK (popup_deactivate_callback),
2198 G_CALLBACK (menu_highlight_callback));
2199 }
2200 else
2201 {
2202 GtkWidget *wvbox = f->output_data.x->vbox_widget;
2203
2204 menubar_widget
2205 = xg_create_widget ("menubar", "menubar", f, first_wv,
2206 G_CALLBACK (menubar_selection_callback),
2207 G_CALLBACK (popup_deactivate_callback),
2208 G_CALLBACK (menu_highlight_callback));
2209
2210 f->output_data.x->menubar_widget = menubar_widget;
2211 }
2212
2213
2214 #else /* not USE_GTK */
2215 if (menubar_widget)
2216 {
2217 /* Disable resizing (done for Motif!) */
2218 lw_allow_resizing (f->output_data.x->widget, False);
2219
2220 /* The third arg is DEEP_P, which says to consider the entire
2221 menu trees we supply, rather than just the menu bar item names. */
2222 lw_modify_all_widgets (id, first_wv, deep_p);
2223
2224 /* Re-enable the edit widget to resize. */
2225 lw_allow_resizing (f->output_data.x->widget, True);
2226 }
2227 else
2228 {
2229 menubar_widget = lw_create_widget ("menubar", "menubar", id, first_wv,
2230 f->output_data.x->column_widget,
2231 0,
2232 popup_activate_callback,
2233 menubar_selection_callback,
2234 popup_deactivate_callback,
2235 menu_highlight_callback);
2236 f->output_data.x->menubar_widget = menubar_widget;
2237 }
2238
2239 {
2240 int menubar_size
2241 = (f->output_data.x->menubar_widget
2242 ? (f->output_data.x->menubar_widget->core.height
2243 + f->output_data.x->menubar_widget->core.border_width)
2244 : 0);
2245
2246 #if 0 /* Experimentally, we now get the right results
2247 for -geometry -0-0 without this. 24 Aug 96, rms. */
2248 #ifdef USE_LUCID
2249 if (FRAME_EXTERNAL_MENU_BAR (f))
2250 {
2251 Dimension ibw = 0;
2252 XtVaGetValues (f->output_data.x->column_widget,
2253 XtNinternalBorderWidth, &ibw, NULL);
2254 menubar_size += ibw;
2255 }
2256 #endif /* USE_LUCID */
2257 #endif /* 0 */
2258
2259 f->output_data.x->menubar_height = menubar_size;
2260 }
2261 #endif /* not USE_GTK */
2262
2263 free_menubar_widget_value_tree (first_wv);
2264 update_frame_menubar (f);
2265
2266 #ifdef USE_GTK
2267 xg_crazy_callback_abort = 0;
2268 #endif
2269
2270 UNBLOCK_INPUT;
2271 }
2272
2273 /* Called from Fx_create_frame to create the initial menubar of a frame
2274 before it is mapped, so that the window is mapped with the menubar already
2275 there instead of us tacking it on later and thrashing the window after it
2276 is visible. */
2277
2278 void
2279 initialize_frame_menubar (f)
2280 FRAME_PTR f;
2281 {
2282 /* This function is called before the first chance to redisplay
2283 the frame. It has to be, so the frame will have the right size. */
2284 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
2285 set_frame_menubar (f, 1, 1);
2286 }
2287
2288
2289 /* Get rid of the menu bar of frame F, and free its storage.
2290 This is used when deleting a frame, and when turning off the menu bar.
2291 For GTK this function is in gtkutil.c. */
2292
2293 #ifndef USE_GTK
2294 void
2295 free_frame_menubar (f)
2296 FRAME_PTR f;
2297 {
2298 Widget menubar_widget;
2299
2300 menubar_widget = f->output_data.x->menubar_widget;
2301
2302 f->output_data.x->menubar_height = 0;
2303
2304 if (menubar_widget)
2305 {
2306 #ifdef USE_MOTIF
2307 /* Removing the menu bar magically changes the shell widget's x
2308 and y position of (0, 0) which, when the menu bar is turned
2309 on again, leads to pull-down menuss appearing in strange
2310 positions near the upper-left corner of the display. This
2311 happens only with some window managers like twm and ctwm,
2312 but not with other like Motif's mwm or kwm, because the
2313 latter generate ConfigureNotify events when the menu bar
2314 is switched off, which fixes the shell position. */
2315 Position x0, y0, x1, y1;
2316 #endif
2317
2318 BLOCK_INPUT;
2319
2320 #ifdef USE_MOTIF
2321 if (f->output_data.x->widget)
2322 XtVaGetValues (f->output_data.x->widget, XtNx, &x0, XtNy, &y0, NULL);
2323 #endif
2324
2325 lw_destroy_all_widgets ((LWLIB_ID) f->output_data.x->id);
2326 f->output_data.x->menubar_widget = NULL;
2327
2328 #ifdef USE_MOTIF
2329 if (f->output_data.x->widget)
2330 {
2331 XtVaGetValues (f->output_data.x->widget, XtNx, &x1, XtNy, &y1, NULL);
2332 if (x1 == 0 && y1 == 0)
2333 XtVaSetValues (f->output_data.x->widget, XtNx, x0, XtNy, y0, NULL);
2334 }
2335 #endif
2336
2337 UNBLOCK_INPUT;
2338 }
2339 }
2340 #endif /* not USE_GTK */
2341
2342 #endif /* USE_X_TOOLKIT || USE_GTK */
2343 \f
2344 /* xmenu_show actually displays a menu using the panes and items in menu_items
2345 and returns the value selected from it.
2346 There are two versions of xmenu_show, one for Xt and one for Xlib.
2347 Both assume input is blocked by the caller. */
2348
2349 /* F is the frame the menu is for.
2350 X and Y are the frame-relative specified position,
2351 relative to the inside upper left corner of the frame F.
2352 FOR_CLICK is nonzero if this menu was invoked for a mouse click.
2353 KEYMAPS is 1 if this menu was specified with keymaps;
2354 in that case, we return a list containing the chosen item's value
2355 and perhaps also the pane's prefix.
2356 TITLE is the specified menu title.
2357 ERROR is a place to store an error message string in case of failure.
2358 (We return nil on failure, but the value doesn't actually matter.) */
2359
2360 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
2361
2362 /* The item selected in the popup menu. */
2363 static Lisp_Object *volatile menu_item_selection;
2364
2365 #ifdef USE_GTK
2366
2367 /* Used when position a popup menu. See menu_position_func and
2368 create_and_show_popup_menu below. */
2369 struct next_popup_x_y
2370 {
2371 FRAME_PTR f;
2372 int x;
2373 int y;
2374 };
2375
2376 /* The menu position function to use if we are not putting a popup
2377 menu where the pointer is.
2378 MENU is the menu to pop up.
2379 X and Y shall on exit contain x/y where the menu shall pop up.
2380 PUSH_IN is not documented in the GTK manual.
2381 USER_DATA is any data passed in when calling gtk_menu_popup.
2382 Here it points to a struct next_popup_x_y where the coordinates
2383 to store in *X and *Y are as well as the frame for the popup.
2384
2385 Here only X and Y are used. */
2386 static void
2387 menu_position_func (menu, x, y, push_in, user_data)
2388 GtkMenu *menu;
2389 gint *x;
2390 gint *y;
2391 gboolean *push_in;
2392 gpointer user_data;
2393 {
2394 struct next_popup_x_y* data = (struct next_popup_x_y*)user_data;
2395 GtkRequisition req;
2396 int disp_width = FRAME_X_DISPLAY_INFO (data->f)->width;
2397 int disp_height = FRAME_X_DISPLAY_INFO (data->f)->height;
2398
2399 *x = data->x;
2400 *y = data->y;
2401
2402 /* Check if there is room for the menu. If not, adjust x/y so that
2403 the menu is fully visible. */
2404 gtk_widget_size_request (GTK_WIDGET (menu), &req);
2405 if (data->x + req.width > disp_width)
2406 *x -= data->x + req.width - disp_width;
2407 if (data->y + req.height > disp_height)
2408 *y -= data->y + req.height - disp_height;
2409 }
2410
2411 static void
2412 popup_selection_callback (widget, client_data)
2413 GtkWidget *widget;
2414 gpointer client_data;
2415 {
2416 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data*) client_data;
2417
2418 if (xg_crazy_callback_abort) return;
2419 if (cb_data) menu_item_selection = (Lisp_Object *) cb_data->call_data;
2420 }
2421
2422 static Lisp_Object
2423 pop_down_menu (arg)
2424 Lisp_Object arg;
2425 {
2426 struct Lisp_Save_Value *p = XSAVE_VALUE (arg);
2427
2428 popup_activated_flag = 0;
2429 BLOCK_INPUT;
2430 gtk_widget_destroy (GTK_WIDGET (p->pointer));
2431 UNBLOCK_INPUT;
2432 return Qnil;
2433 }
2434
2435 /* Pop up the menu for frame F defined by FIRST_WV at X/Y and loop until the
2436 menu pops down.
2437 menu_item_selection will be set to the selection. */
2438 static void
2439 create_and_show_popup_menu (f, first_wv, x, y, for_click)
2440 FRAME_PTR f;
2441 widget_value *first_wv;
2442 int x;
2443 int y;
2444 int for_click;
2445 {
2446 int i;
2447 GtkWidget *menu;
2448 GtkMenuPositionFunc pos_func = 0; /* Pop up at pointer. */
2449 struct next_popup_x_y popup_x_y;
2450 int specpdl_count = SPECPDL_INDEX ();
2451
2452 xg_crazy_callback_abort = 1;
2453 menu = xg_create_widget ("popup", first_wv->name, f, first_wv,
2454 G_CALLBACK (popup_selection_callback),
2455 G_CALLBACK (popup_deactivate_callback),
2456 G_CALLBACK (menu_highlight_callback));
2457 xg_crazy_callback_abort = 0;
2458
2459 for (i = 0; i < 5; i++)
2460 if (FRAME_X_DISPLAY_INFO (f)->grabbed & (1 << i))
2461 break;
2462
2463 if (! for_click)
2464 {
2465 /* Not invoked by a click. pop up at x/y. */
2466 pos_func = menu_position_func;
2467
2468 /* Adjust coordinates to be root-window-relative. */
2469 x += f->left_pos + FRAME_OUTER_TO_INNER_DIFF_X (f);
2470 y += f->top_pos + FRAME_OUTER_TO_INNER_DIFF_Y (f);
2471
2472 popup_x_y.x = x;
2473 popup_x_y.y = y;
2474 popup_x_y.f = f;
2475 }
2476
2477 /* Display the menu. */
2478 gtk_widget_show_all (menu);
2479 gtk_menu_popup (GTK_MENU (menu), 0, 0, pos_func, &popup_x_y, i, 0);
2480
2481 record_unwind_protect (pop_down_menu, make_save_value (menu, 0));
2482
2483 /* Set this to one. popup_widget_loop increases it by one, so it becomes
2484 two. show_help_echo uses this to detect popup menus. */
2485 popup_activated_flag = 1;
2486 /* Process events that apply to the menu. */
2487 popup_widget_loop (1, menu);
2488
2489 unbind_to (specpdl_count, Qnil);
2490
2491 /* Must reset this manually because the button release event is not passed
2492 to Emacs event loop. */
2493 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
2494 }
2495
2496 #else /* not USE_GTK */
2497
2498 /* We need a unique id for each widget handled by the Lucid Widget
2499 library.
2500
2501 For the main windows, and popup menus, we use this counter,
2502 which we increment each time after use. This starts from 1<<16.
2503
2504 For menu bars, we use numbers starting at 0, counted in
2505 next_menubar_widget_id. */
2506 LWLIB_ID widget_id_tick;
2507
2508 static void
2509 popup_selection_callback (widget, id, client_data)
2510 Widget widget;
2511 LWLIB_ID id;
2512 XtPointer client_data;
2513 {
2514 menu_item_selection = (Lisp_Object *) client_data;
2515 }
2516
2517 /* ARG is the LWLIB ID of the dialog box, represented
2518 as a Lisp object as (HIGHPART . LOWPART). */
2519
2520 static Lisp_Object
2521 pop_down_menu (arg)
2522 Lisp_Object arg;
2523 {
2524 LWLIB_ID id = (XINT (XCAR (arg)) << 4 * sizeof (LWLIB_ID)
2525 | XINT (XCDR (arg)));
2526
2527 BLOCK_INPUT;
2528 lw_destroy_all_widgets (id);
2529 UNBLOCK_INPUT;
2530 popup_activated_flag = 0;
2531
2532 return Qnil;
2533 }
2534
2535 /* Pop up the menu for frame F defined by FIRST_WV at X/Y and loop until the
2536 menu pops down.
2537 menu_item_selection will be set to the selection. */
2538 static void
2539 create_and_show_popup_menu (f, first_wv, x, y, for_click)
2540 FRAME_PTR f;
2541 widget_value *first_wv;
2542 int x;
2543 int y;
2544 int for_click;
2545 {
2546 int i;
2547 Arg av[2];
2548 int ac = 0;
2549 XButtonPressedEvent dummy;
2550 LWLIB_ID menu_id;
2551 Widget menu;
2552
2553 menu_id = widget_id_tick++;
2554 menu = lw_create_widget ("popup", first_wv->name, menu_id, first_wv,
2555 f->output_data.x->widget, 1, 0,
2556 popup_selection_callback,
2557 popup_deactivate_callback,
2558 menu_highlight_callback);
2559
2560 dummy.type = ButtonPress;
2561 dummy.serial = 0;
2562 dummy.send_event = 0;
2563 dummy.display = FRAME_X_DISPLAY (f);
2564 dummy.time = CurrentTime;
2565 dummy.root = FRAME_X_DISPLAY_INFO (f)->root_window;
2566 dummy.window = dummy.root;
2567 dummy.subwindow = dummy.root;
2568 dummy.x = x;
2569 dummy.y = y;
2570
2571 /* Adjust coordinates to be root-window-relative. */
2572 x += f->left_pos + FRAME_OUTER_TO_INNER_DIFF_X (f);
2573 y += f->top_pos + FRAME_OUTER_TO_INNER_DIFF_Y (f);
2574
2575 dummy.x_root = x;
2576 dummy.y_root = y;
2577
2578 dummy.state = 0;
2579 dummy.button = 0;
2580 for (i = 0; i < 5; i++)
2581 if (FRAME_X_DISPLAY_INFO (f)->grabbed & (1 << i))
2582 dummy.button = i;
2583
2584 /* Don't allow any geometry request from the user. */
2585 XtSetArg (av[ac], XtNgeometry, 0); ac++;
2586 XtSetValues (menu, av, ac);
2587
2588 /* Display the menu. */
2589 lw_popup_menu (menu, (XEvent *) &dummy);
2590 popup_activated_flag = 1;
2591
2592 {
2593 int fact = 4 * sizeof (LWLIB_ID);
2594 int specpdl_count = SPECPDL_INDEX ();
2595 record_unwind_protect (pop_down_menu,
2596 Fcons (make_number (menu_id >> (fact)),
2597 make_number (menu_id & ~(-1 << (fact)))));
2598
2599 /* Process events that apply to the menu. */
2600 popup_get_selection ((XEvent *) 0, FRAME_X_DISPLAY_INFO (f), menu_id, 1, 0);
2601
2602 unbind_to (specpdl_count, Qnil);
2603 }
2604 }
2605
2606 #endif /* not USE_GTK */
2607
2608 static Lisp_Object
2609 xmenu_show (f, x, y, for_click, keymaps, title, error)
2610 FRAME_PTR f;
2611 int x;
2612 int y;
2613 int for_click;
2614 int keymaps;
2615 Lisp_Object title;
2616 char **error;
2617 {
2618 int i;
2619 widget_value *wv, *save_wv = 0, *first_wv = 0, *prev_wv = 0;
2620 widget_value **submenu_stack
2621 = (widget_value **) alloca (menu_items_used * sizeof (widget_value *));
2622 Lisp_Object *subprefix_stack
2623 = (Lisp_Object *) alloca (menu_items_used * sizeof (Lisp_Object));
2624 int submenu_depth = 0;
2625
2626 int first_pane;
2627
2628 *error = NULL;
2629
2630 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
2631 {
2632 *error = "Empty menu";
2633 return Qnil;
2634 }
2635
2636 /* Create a tree of widget_value objects
2637 representing the panes and their items. */
2638 wv = xmalloc_widget_value ();
2639 wv->name = "menu";
2640 wv->value = 0;
2641 wv->enabled = 1;
2642 wv->button_type = BUTTON_TYPE_NONE;
2643 wv->help =Qnil;
2644 first_wv = wv;
2645 first_pane = 1;
2646
2647 /* Loop over all panes and items, filling in the tree. */
2648 i = 0;
2649 while (i < menu_items_used)
2650 {
2651 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
2652 {
2653 submenu_stack[submenu_depth++] = save_wv;
2654 save_wv = prev_wv;
2655 prev_wv = 0;
2656 first_pane = 1;
2657 i++;
2658 }
2659 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
2660 {
2661 prev_wv = save_wv;
2662 save_wv = submenu_stack[--submenu_depth];
2663 first_pane = 0;
2664 i++;
2665 }
2666 else if (EQ (XVECTOR (menu_items)->contents[i], Qt)
2667 && submenu_depth != 0)
2668 i += MENU_ITEMS_PANE_LENGTH;
2669 /* Ignore a nil in the item list.
2670 It's meaningful only for dialog boxes. */
2671 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
2672 i += 1;
2673 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
2674 {
2675 /* Create a new pane. */
2676 Lisp_Object pane_name, prefix;
2677 char *pane_string;
2678
2679 pane_name = AREF (menu_items, i + MENU_ITEMS_PANE_NAME);
2680 prefix = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
2681
2682 #ifndef HAVE_MULTILINGUAL_MENU
2683 if (STRINGP (pane_name) && STRING_MULTIBYTE (pane_name))
2684 {
2685 pane_name = ENCODE_SYSTEM (pane_name);
2686 AREF (menu_items, i + MENU_ITEMS_PANE_NAME) = pane_name;
2687 }
2688 #endif
2689 pane_string = (NILP (pane_name)
2690 ? "" : (char *) SDATA (pane_name));
2691 /* If there is just one top-level pane, put all its items directly
2692 under the top-level menu. */
2693 if (menu_items_n_panes == 1)
2694 pane_string = "";
2695
2696 /* If the pane has a meaningful name,
2697 make the pane a top-level menu item
2698 with its items as a submenu beneath it. */
2699 if (!keymaps && strcmp (pane_string, ""))
2700 {
2701 wv = xmalloc_widget_value ();
2702 if (save_wv)
2703 save_wv->next = wv;
2704 else
2705 first_wv->contents = wv;
2706 wv->name = pane_string;
2707 if (keymaps && !NILP (prefix))
2708 wv->name++;
2709 wv->value = 0;
2710 wv->enabled = 1;
2711 wv->button_type = BUTTON_TYPE_NONE;
2712 wv->help = Qnil;
2713 save_wv = wv;
2714 prev_wv = 0;
2715 }
2716 else if (first_pane)
2717 {
2718 save_wv = wv;
2719 prev_wv = 0;
2720 }
2721 first_pane = 0;
2722 i += MENU_ITEMS_PANE_LENGTH;
2723 }
2724 else
2725 {
2726 /* Create a new item within current pane. */
2727 Lisp_Object item_name, enable, descrip, def, type, selected, help;
2728 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
2729 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
2730 descrip = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
2731 def = AREF (menu_items, i + MENU_ITEMS_ITEM_DEFINITION);
2732 type = AREF (menu_items, i + MENU_ITEMS_ITEM_TYPE);
2733 selected = AREF (menu_items, i + MENU_ITEMS_ITEM_SELECTED);
2734 help = AREF (menu_items, i + MENU_ITEMS_ITEM_HELP);
2735
2736 #ifndef HAVE_MULTILINGUAL_MENU
2737 if (STRINGP (item_name) && STRING_MULTIBYTE (item_name))
2738 {
2739 item_name = ENCODE_MENU_STRING (item_name);
2740 AREF (menu_items, i + MENU_ITEMS_ITEM_NAME) = item_name;
2741 }
2742
2743 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
2744 {
2745 descrip = ENCODE_MENU_STRING (descrip);
2746 AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY) = descrip;
2747 }
2748 #endif /* not HAVE_MULTILINGUAL_MENU */
2749
2750 wv = xmalloc_widget_value ();
2751 if (prev_wv)
2752 prev_wv->next = wv;
2753 else
2754 save_wv->contents = wv;
2755 wv->name = (char *) SDATA (item_name);
2756 if (!NILP (descrip))
2757 wv->key = (char *) SDATA (descrip);
2758 wv->value = 0;
2759 /* If this item has a null value,
2760 make the call_data null so that it won't display a box
2761 when the mouse is on it. */
2762 wv->call_data
2763 = (!NILP (def) ? (void *) &XVECTOR (menu_items)->contents[i] : 0);
2764 wv->enabled = !NILP (enable);
2765
2766 if (NILP (type))
2767 wv->button_type = BUTTON_TYPE_NONE;
2768 else if (EQ (type, QCtoggle))
2769 wv->button_type = BUTTON_TYPE_TOGGLE;
2770 else if (EQ (type, QCradio))
2771 wv->button_type = BUTTON_TYPE_RADIO;
2772 else
2773 abort ();
2774
2775 wv->selected = !NILP (selected);
2776
2777 if (! STRINGP (help))
2778 help = Qnil;
2779
2780 wv->help = help;
2781
2782 prev_wv = wv;
2783
2784 i += MENU_ITEMS_ITEM_LENGTH;
2785 }
2786 }
2787
2788 /* Deal with the title, if it is non-nil. */
2789 if (!NILP (title))
2790 {
2791 widget_value *wv_title = xmalloc_widget_value ();
2792 widget_value *wv_sep1 = xmalloc_widget_value ();
2793 widget_value *wv_sep2 = xmalloc_widget_value ();
2794
2795 wv_sep2->name = "--";
2796 wv_sep2->next = first_wv->contents;
2797 wv_sep2->help = Qnil;
2798
2799 wv_sep1->name = "--";
2800 wv_sep1->next = wv_sep2;
2801 wv_sep1->help = Qnil;
2802
2803 #ifndef HAVE_MULTILINGUAL_MENU
2804 if (STRING_MULTIBYTE (title))
2805 title = ENCODE_MENU_STRING (title);
2806 #endif
2807
2808 wv_title->name = (char *) SDATA (title);
2809 wv_title->enabled = TRUE;
2810 wv_title->button_type = BUTTON_TYPE_NONE;
2811 wv_title->next = wv_sep1;
2812 wv_title->help = Qnil;
2813 first_wv->contents = wv_title;
2814 }
2815
2816 /* No selection has been chosen yet. */
2817 menu_item_selection = 0;
2818
2819 /* Actually create and show the menu until popped down. */
2820 create_and_show_popup_menu (f, first_wv, x, y, for_click);
2821
2822 /* Free the widget_value objects we used to specify the contents. */
2823 free_menubar_widget_value_tree (first_wv);
2824
2825 /* Find the selected item, and its pane, to return
2826 the proper value. */
2827 if (menu_item_selection != 0)
2828 {
2829 Lisp_Object prefix, entry;
2830
2831 prefix = entry = Qnil;
2832 i = 0;
2833 while (i < menu_items_used)
2834 {
2835 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
2836 {
2837 subprefix_stack[submenu_depth++] = prefix;
2838 prefix = entry;
2839 i++;
2840 }
2841 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
2842 {
2843 prefix = subprefix_stack[--submenu_depth];
2844 i++;
2845 }
2846 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
2847 {
2848 prefix
2849 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
2850 i += MENU_ITEMS_PANE_LENGTH;
2851 }
2852 /* Ignore a nil in the item list.
2853 It's meaningful only for dialog boxes. */
2854 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
2855 i += 1;
2856 else
2857 {
2858 entry
2859 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
2860 if (menu_item_selection == &XVECTOR (menu_items)->contents[i])
2861 {
2862 if (keymaps != 0)
2863 {
2864 int j;
2865
2866 entry = Fcons (entry, Qnil);
2867 if (!NILP (prefix))
2868 entry = Fcons (prefix, entry);
2869 for (j = submenu_depth - 1; j >= 0; j--)
2870 if (!NILP (subprefix_stack[j]))
2871 entry = Fcons (subprefix_stack[j], entry);
2872 }
2873 return entry;
2874 }
2875 i += MENU_ITEMS_ITEM_LENGTH;
2876 }
2877 }
2878 }
2879
2880 return Qnil;
2881 }
2882 \f
2883 #ifdef USE_GTK
2884 static void
2885 dialog_selection_callback (widget, client_data)
2886 GtkWidget *widget;
2887 gpointer client_data;
2888 {
2889 /* The EMACS_INT cast avoids a warning. There's no problem
2890 as long as pointers have enough bits to hold small integers. */
2891 if ((int) (EMACS_INT) client_data != -1)
2892 menu_item_selection = (Lisp_Object *) client_data;
2893
2894 popup_activated_flag = 0;
2895 }
2896
2897 /* Pop up the dialog for frame F defined by FIRST_WV and loop until the
2898 dialog pops down.
2899 menu_item_selection will be set to the selection. */
2900 static void
2901 create_and_show_dialog (f, first_wv)
2902 FRAME_PTR f;
2903 widget_value *first_wv;
2904 {
2905 GtkWidget *menu;
2906
2907 menu = xg_create_widget ("dialog", first_wv->name, f, first_wv,
2908 G_CALLBACK (dialog_selection_callback),
2909 G_CALLBACK (popup_deactivate_callback),
2910 0);
2911
2912 if (menu)
2913 {
2914 int specpdl_count = SPECPDL_INDEX ();
2915 record_unwind_protect (pop_down_menu, make_save_value (menu, 0));
2916
2917 /* Display the menu. */
2918 gtk_widget_show_all (menu);
2919
2920 /* Process events that apply to the menu. */
2921 popup_widget_loop (1, menu);
2922
2923 unbind_to (specpdl_count, Qnil);
2924 }
2925 }
2926
2927 #else /* not USE_GTK */
2928 static void
2929 dialog_selection_callback (widget, id, client_data)
2930 Widget widget;
2931 LWLIB_ID id;
2932 XtPointer client_data;
2933 {
2934 /* The EMACS_INT cast avoids a warning. There's no problem
2935 as long as pointers have enough bits to hold small integers. */
2936 if ((int) (EMACS_INT) client_data != -1)
2937 menu_item_selection = (Lisp_Object *) client_data;
2938
2939 BLOCK_INPUT;
2940 lw_destroy_all_widgets (id);
2941 UNBLOCK_INPUT;
2942 popup_activated_flag = 0;
2943 }
2944
2945
2946 /* Pop up the dialog for frame F defined by FIRST_WV and loop until the
2947 dialog pops down.
2948 menu_item_selection will be set to the selection. */
2949 static void
2950 create_and_show_dialog (f, first_wv)
2951 FRAME_PTR f;
2952 widget_value *first_wv;
2953 {
2954 LWLIB_ID dialog_id;
2955
2956 dialog_id = widget_id_tick++;
2957 lw_create_widget (first_wv->name, "dialog", dialog_id, first_wv,
2958 f->output_data.x->widget, 1, 0,
2959 dialog_selection_callback, 0, 0);
2960 lw_modify_all_widgets (dialog_id, first_wv->contents, True);
2961
2962 /* Display the dialog box. */
2963 lw_pop_up_all_widgets (dialog_id);
2964 popup_activated_flag = 1;
2965
2966 /* Process events that apply to the dialog box.
2967 Also handle timers. */
2968 {
2969 int count = SPECPDL_INDEX ();
2970 int fact = 4 * sizeof (LWLIB_ID);
2971
2972 /* xdialog_show_unwind is responsible for popping the dialog box down. */
2973 record_unwind_protect (pop_down_menu,
2974 Fcons (make_number (dialog_id >> (fact)),
2975 make_number (dialog_id & ~(-1 << (fact)))));
2976
2977 popup_get_selection ((XEvent *) 0, FRAME_X_DISPLAY_INFO (f),
2978 dialog_id, 1, 1);
2979
2980 unbind_to (count, Qnil);
2981 }
2982 }
2983
2984 #endif /* not USE_GTK */
2985
2986 static char * button_names [] = {
2987 "button1", "button2", "button3", "button4", "button5",
2988 "button6", "button7", "button8", "button9", "button10" };
2989
2990 static Lisp_Object
2991 xdialog_show (f, keymaps, title, error)
2992 FRAME_PTR f;
2993 int keymaps;
2994 Lisp_Object title;
2995 char **error;
2996 {
2997 int i, nb_buttons=0;
2998 char dialog_name[6];
2999
3000 widget_value *wv, *first_wv = 0, *prev_wv = 0;
3001
3002 /* Number of elements seen so far, before boundary. */
3003 int left_count = 0;
3004 /* 1 means we've seen the boundary between left-hand elts and right-hand. */
3005 int boundary_seen = 0;
3006
3007 *error = NULL;
3008
3009 if (menu_items_n_panes > 1)
3010 {
3011 *error = "Multiple panes in dialog box";
3012 return Qnil;
3013 }
3014
3015 /* Create a tree of widget_value objects
3016 representing the text label and buttons. */
3017 {
3018 Lisp_Object pane_name, prefix;
3019 char *pane_string;
3020 pane_name = XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME];
3021 prefix = XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_PREFIX];
3022 pane_string = (NILP (pane_name)
3023 ? "" : (char *) SDATA (pane_name));
3024 prev_wv = xmalloc_widget_value ();
3025 prev_wv->value = pane_string;
3026 if (keymaps && !NILP (prefix))
3027 prev_wv->name++;
3028 prev_wv->enabled = 1;
3029 prev_wv->name = "message";
3030 prev_wv->help = Qnil;
3031 first_wv = prev_wv;
3032
3033 /* Loop over all panes and items, filling in the tree. */
3034 i = MENU_ITEMS_PANE_LENGTH;
3035 while (i < menu_items_used)
3036 {
3037
3038 /* Create a new item within current pane. */
3039 Lisp_Object item_name, enable, descrip;
3040 item_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_NAME];
3041 enable = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_ENABLE];
3042 descrip
3043 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_EQUIV_KEY];
3044
3045 if (NILP (item_name))
3046 {
3047 free_menubar_widget_value_tree (first_wv);
3048 *error = "Submenu in dialog items";
3049 return Qnil;
3050 }
3051 if (EQ (item_name, Qquote))
3052 {
3053 /* This is the boundary between left-side elts
3054 and right-side elts. Stop incrementing right_count. */
3055 boundary_seen = 1;
3056 i++;
3057 continue;
3058 }
3059 if (nb_buttons >= 9)
3060 {
3061 free_menubar_widget_value_tree (first_wv);
3062 *error = "Too many dialog items";
3063 return Qnil;
3064 }
3065
3066 wv = xmalloc_widget_value ();
3067 prev_wv->next = wv;
3068 wv->name = (char *) button_names[nb_buttons];
3069 if (!NILP (descrip))
3070 wv->key = (char *) SDATA (descrip);
3071 wv->value = (char *) SDATA (item_name);
3072 wv->call_data = (void *) &XVECTOR (menu_items)->contents[i];
3073 wv->enabled = !NILP (enable);
3074 wv->help = Qnil;
3075 prev_wv = wv;
3076
3077 if (! boundary_seen)
3078 left_count++;
3079
3080 nb_buttons++;
3081 i += MENU_ITEMS_ITEM_LENGTH;
3082 }
3083
3084 /* If the boundary was not specified,
3085 by default put half on the left and half on the right. */
3086 if (! boundary_seen)
3087 left_count = nb_buttons - nb_buttons / 2;
3088
3089 wv = xmalloc_widget_value ();
3090 wv->name = dialog_name;
3091 wv->help = Qnil;
3092 /* Dialog boxes use a really stupid name encoding
3093 which specifies how many buttons to use
3094 and how many buttons are on the right.
3095 The Q means something also. */
3096 dialog_name[0] = 'Q';
3097 dialog_name[1] = '0' + nb_buttons;
3098 dialog_name[2] = 'B';
3099 dialog_name[3] = 'R';
3100 /* Number of buttons to put on the right. */
3101 dialog_name[4] = '0' + nb_buttons - left_count;
3102 dialog_name[5] = 0;
3103 wv->contents = first_wv;
3104 first_wv = wv;
3105 }
3106
3107 /* No selection has been chosen yet. */
3108 menu_item_selection = 0;
3109
3110 /* Actually create and show the dialog. */
3111 create_and_show_dialog (f, first_wv);
3112
3113 /* Free the widget_value objects we used to specify the contents. */
3114 free_menubar_widget_value_tree (first_wv);
3115
3116 /* Find the selected item, and its pane, to return
3117 the proper value. */
3118 if (menu_item_selection != 0)
3119 {
3120 Lisp_Object prefix;
3121
3122 prefix = Qnil;
3123 i = 0;
3124 while (i < menu_items_used)
3125 {
3126 Lisp_Object entry;
3127
3128 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
3129 {
3130 prefix
3131 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
3132 i += MENU_ITEMS_PANE_LENGTH;
3133 }
3134 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
3135 {
3136 /* This is the boundary between left-side elts and
3137 right-side elts. */
3138 ++i;
3139 }
3140 else
3141 {
3142 entry
3143 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
3144 if (menu_item_selection == &XVECTOR (menu_items)->contents[i])
3145 {
3146 if (keymaps != 0)
3147 {
3148 entry = Fcons (entry, Qnil);
3149 if (!NILP (prefix))
3150 entry = Fcons (prefix, entry);
3151 }
3152 return entry;
3153 }
3154 i += MENU_ITEMS_ITEM_LENGTH;
3155 }
3156 }
3157 }
3158
3159 return Qnil;
3160 }
3161
3162 #else /* not USE_X_TOOLKIT && not USE_GTK */
3163
3164 /* The frame of the last activated non-toolkit menu bar.
3165 Used to generate menu help events. */
3166
3167 static struct frame *menu_help_frame;
3168
3169
3170 /* Show help HELP_STRING, or clear help if HELP_STRING is null.
3171
3172 PANE is the pane number, and ITEM is the menu item number in
3173 the menu (currently not used).
3174
3175 This cannot be done with generating a HELP_EVENT because
3176 XMenuActivate contains a loop that doesn't let Emacs process
3177 keyboard events. */
3178
3179 static void
3180 menu_help_callback (help_string, pane, item)
3181 char *help_string;
3182 int pane, item;
3183 {
3184 extern Lisp_Object Qmenu_item;
3185 Lisp_Object *first_item;
3186 Lisp_Object pane_name;
3187 Lisp_Object menu_object;
3188
3189 first_item = XVECTOR (menu_items)->contents;
3190 if (EQ (first_item[0], Qt))
3191 pane_name = first_item[MENU_ITEMS_PANE_NAME];
3192 else if (EQ (first_item[0], Qquote))
3193 /* This shouldn't happen, see xmenu_show. */
3194 pane_name = empty_string;
3195 else
3196 pane_name = first_item[MENU_ITEMS_ITEM_NAME];
3197
3198 /* (menu-item MENU-NAME PANE-NUMBER) */
3199 menu_object = Fcons (Qmenu_item,
3200 Fcons (pane_name,
3201 Fcons (make_number (pane), Qnil)));
3202 show_help_echo (help_string ? build_string (help_string) : Qnil,
3203 Qnil, menu_object, make_number (item), 1);
3204 }
3205
3206 static Lisp_Object
3207 pop_down_menu (arg)
3208 Lisp_Object arg;
3209 {
3210 struct Lisp_Save_Value *p1 = XSAVE_VALUE (Fcar (arg));
3211 struct Lisp_Save_Value *p2 = XSAVE_VALUE (Fcdr (arg));
3212
3213 FRAME_PTR f = p1->pointer;
3214 XMenu *menu = p2->pointer;
3215
3216 BLOCK_INPUT;
3217 #ifndef MSDOS
3218 XUngrabPointer (FRAME_X_DISPLAY (f), CurrentTime);
3219 XUngrabKeyboard (FRAME_X_DISPLAY (f), CurrentTime);
3220 #endif
3221 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
3222
3223 #ifdef HAVE_X_WINDOWS
3224 /* Assume the mouse has moved out of the X window.
3225 If it has actually moved in, we will get an EnterNotify. */
3226 x_mouse_leave (FRAME_X_DISPLAY_INFO (f));
3227
3228 /* State that no mouse buttons are now held.
3229 (The oldXMenu code doesn't track this info for us.)
3230 That is not necessarily true, but the fiction leads to reasonable
3231 results, and it is a pain to ask which are actually held now. */
3232 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
3233
3234 #endif /* HAVE_X_WINDOWS */
3235
3236 UNBLOCK_INPUT;
3237
3238 return Qnil;
3239 }
3240
3241
3242 static Lisp_Object
3243 xmenu_show (f, x, y, for_click, keymaps, title, error)
3244 FRAME_PTR f;
3245 int x, y;
3246 int for_click;
3247 int keymaps;
3248 Lisp_Object title;
3249 char **error;
3250 {
3251 Window root;
3252 XMenu *menu;
3253 int pane, selidx, lpane, status;
3254 Lisp_Object entry, pane_prefix;
3255 char *datap;
3256 int ulx, uly, width, height;
3257 int dispwidth, dispheight;
3258 int i, j, lines, maxlines;
3259 int maxwidth;
3260 int dummy_int;
3261 unsigned int dummy_uint;
3262 int specpdl_count = SPECPDL_INDEX ();
3263
3264 *error = 0;
3265 if (menu_items_n_panes == 0)
3266 return Qnil;
3267
3268 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
3269 {
3270 *error = "Empty menu";
3271 return Qnil;
3272 }
3273
3274 /* Figure out which root window F is on. */
3275 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &root,
3276 &dummy_int, &dummy_int, &dummy_uint, &dummy_uint,
3277 &dummy_uint, &dummy_uint);
3278
3279 /* Make the menu on that window. */
3280 menu = XMenuCreate (FRAME_X_DISPLAY (f), root, "emacs");
3281 if (menu == NULL)
3282 {
3283 *error = "Can't create menu";
3284 return Qnil;
3285 }
3286
3287 #ifdef HAVE_X_WINDOWS
3288 /* Adjust coordinates to relative to the outer (window manager) window. */
3289 x += FRAME_OUTER_TO_INNER_DIFF_X (f);
3290 y += FRAME_OUTER_TO_INNER_DIFF_Y (f);
3291 #endif /* HAVE_X_WINDOWS */
3292
3293 /* Adjust coordinates to be root-window-relative. */
3294 x += f->left_pos;
3295 y += f->top_pos;
3296
3297 /* Create all the necessary panes and their items. */
3298 maxlines = lines = i = 0;
3299 while (i < menu_items_used)
3300 {
3301 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
3302 {
3303 /* Create a new pane. */
3304 Lisp_Object pane_name, prefix;
3305 char *pane_string;
3306
3307 maxlines = max (maxlines, lines);
3308 lines = 0;
3309 pane_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_NAME];
3310 prefix = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
3311 pane_string = (NILP (pane_name)
3312 ? "" : (char *) SDATA (pane_name));
3313 if (keymaps && !NILP (prefix))
3314 pane_string++;
3315
3316 lpane = XMenuAddPane (FRAME_X_DISPLAY (f), menu, pane_string, TRUE);
3317 if (lpane == XM_FAILURE)
3318 {
3319 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
3320 *error = "Can't create pane";
3321 return Qnil;
3322 }
3323 i += MENU_ITEMS_PANE_LENGTH;
3324
3325 /* Find the width of the widest item in this pane. */
3326 maxwidth = 0;
3327 j = i;
3328 while (j < menu_items_used)
3329 {
3330 Lisp_Object item;
3331 item = XVECTOR (menu_items)->contents[j];
3332 if (EQ (item, Qt))
3333 break;
3334 if (NILP (item))
3335 {
3336 j++;
3337 continue;
3338 }
3339 width = SBYTES (item);
3340 if (width > maxwidth)
3341 maxwidth = width;
3342
3343 j += MENU_ITEMS_ITEM_LENGTH;
3344 }
3345 }
3346 /* Ignore a nil in the item list.
3347 It's meaningful only for dialog boxes. */
3348 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
3349 i += 1;
3350 else
3351 {
3352 /* Create a new item within current pane. */
3353 Lisp_Object item_name, enable, descrip, help;
3354 unsigned char *item_data;
3355 char *help_string;
3356
3357 item_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_NAME];
3358 enable = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_ENABLE];
3359 descrip
3360 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_EQUIV_KEY];
3361 help = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_HELP];
3362 help_string = STRINGP (help) ? SDATA (help) : NULL;
3363
3364 if (!NILP (descrip))
3365 {
3366 int gap = maxwidth - SBYTES (item_name);
3367 #ifdef C_ALLOCA
3368 Lisp_Object spacer;
3369 spacer = Fmake_string (make_number (gap), make_number (' '));
3370 item_name = concat2 (item_name, spacer);
3371 item_name = concat2 (item_name, descrip);
3372 item_data = SDATA (item_name);
3373 #else
3374 /* if alloca is fast, use that to make the space,
3375 to reduce gc needs. */
3376 item_data
3377 = (unsigned char *) alloca (maxwidth
3378 + SBYTES (descrip) + 1);
3379 bcopy (SDATA (item_name), item_data,
3380 SBYTES (item_name));
3381 for (j = SCHARS (item_name); j < maxwidth; j++)
3382 item_data[j] = ' ';
3383 bcopy (SDATA (descrip), item_data + j,
3384 SBYTES (descrip));
3385 item_data[j + SBYTES (descrip)] = 0;
3386 #endif
3387 }
3388 else
3389 item_data = SDATA (item_name);
3390
3391 if (XMenuAddSelection (FRAME_X_DISPLAY (f),
3392 menu, lpane, 0, item_data,
3393 !NILP (enable), help_string)
3394 == XM_FAILURE)
3395 {
3396 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
3397 *error = "Can't add selection to menu";
3398 return Qnil;
3399 }
3400 i += MENU_ITEMS_ITEM_LENGTH;
3401 lines++;
3402 }
3403 }
3404
3405 maxlines = max (maxlines, lines);
3406
3407 /* All set and ready to fly. */
3408 XMenuRecompute (FRAME_X_DISPLAY (f), menu);
3409 dispwidth = DisplayWidth (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f));
3410 dispheight = DisplayHeight (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f));
3411 x = min (x, dispwidth);
3412 y = min (y, dispheight);
3413 x = max (x, 1);
3414 y = max (y, 1);
3415 XMenuLocate (FRAME_X_DISPLAY (f), menu, 0, 0, x, y,
3416 &ulx, &uly, &width, &height);
3417 if (ulx+width > dispwidth)
3418 {
3419 x -= (ulx + width) - dispwidth;
3420 ulx = dispwidth - width;
3421 }
3422 if (uly+height > dispheight)
3423 {
3424 y -= (uly + height) - dispheight;
3425 uly = dispheight - height;
3426 }
3427 if (ulx < 0) x -= ulx;
3428 if (uly < 0) y -= uly;
3429
3430 if (! for_click)
3431 {
3432 /* If position was not given by a mouse click, adjust so upper left
3433 corner of the menu as a whole ends up at given coordinates. This
3434 is what x-popup-menu says in its documentation. */
3435 x += width/2;
3436 y += 1.5*height/(maxlines+2);
3437 }
3438
3439 XMenuSetAEQ (menu, TRUE);
3440 XMenuSetFreeze (menu, TRUE);
3441 pane = selidx = 0;
3442
3443 #ifndef MSDOS
3444 XMenuActivateSetWaitFunction (x_menu_wait_for_event, FRAME_X_DISPLAY (f));
3445 #endif
3446
3447 record_unwind_protect (pop_down_menu,
3448 Fcons (make_save_value (f, 0),
3449 make_save_value (menu, 0)));
3450
3451 /* Help display under X won't work because XMenuActivate contains
3452 a loop that doesn't give Emacs a chance to process it. */
3453 menu_help_frame = f;
3454 status = XMenuActivate (FRAME_X_DISPLAY (f), menu, &pane, &selidx,
3455 x, y, ButtonReleaseMask, &datap,
3456 menu_help_callback);
3457
3458 switch (status)
3459 {
3460 case XM_SUCCESS:
3461 #ifdef XDEBUG
3462 fprintf (stderr, "pane= %d line = %d\n", panes, selidx);
3463 #endif
3464
3465 /* Find the item number SELIDX in pane number PANE. */
3466 i = 0;
3467 while (i < menu_items_used)
3468 {
3469 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
3470 {
3471 if (pane == 0)
3472 pane_prefix
3473 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
3474 pane--;
3475 i += MENU_ITEMS_PANE_LENGTH;
3476 }
3477 else
3478 {
3479 if (pane == -1)
3480 {
3481 if (selidx == 0)
3482 {
3483 entry
3484 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
3485 if (keymaps != 0)
3486 {
3487 entry = Fcons (entry, Qnil);
3488 if (!NILP (pane_prefix))
3489 entry = Fcons (pane_prefix, entry);
3490 }
3491 break;
3492 }
3493 selidx--;
3494 }
3495 i += MENU_ITEMS_ITEM_LENGTH;
3496 }
3497 }
3498 break;
3499
3500 case XM_FAILURE:
3501 *error = "Can't activate menu";
3502 case XM_IA_SELECT:
3503 case XM_NO_SELECT:
3504 entry = Qnil;
3505 break;
3506 }
3507
3508 unbind_to (specpdl_count, Qnil);
3509
3510 return entry;
3511 }
3512
3513 #endif /* not USE_X_TOOLKIT */
3514
3515 #endif /* HAVE_MENUS */
3516 \f
3517 void
3518 syms_of_xmenu ()
3519 {
3520 staticpro (&menu_items);
3521 menu_items = Qnil;
3522 menu_items_inuse = Qnil;
3523
3524 Qdebug_on_next_call = intern ("debug-on-next-call");
3525 staticpro (&Qdebug_on_next_call);
3526
3527 DEFVAR_LISP ("menu-updating-frame", &Vmenu_updating_frame,
3528 doc: /* Frame for which we are updating a menu.
3529 The enable predicate for a menu command should check this variable. */);
3530 Vmenu_updating_frame = Qnil;
3531
3532 #ifdef USE_X_TOOLKIT
3533 widget_id_tick = (1<<16);
3534 next_menubar_widget_id = 1;
3535 #endif
3536
3537 defsubr (&Sx_popup_menu);
3538 #ifdef HAVE_MENUS
3539 defsubr (&Sx_popup_dialog);
3540 #endif
3541 }
3542
3543 /* arch-tag: 92ea573c-398e-496e-ac73-2436f7d63242
3544 (do not change this comment) */