Spelling fixes for "does not exists".
[bpt/emacs.git] / src / menu.c
CommitLineData
279a1d4b 1/* Platform-independent code for terminal communications.
95df8112 2
ab422c4d
PE
3Copyright (C) 1986, 1988, 1993-1994, 1996, 1999-2013 Free Software
4Foundation, Inc.
279a1d4b
CY
5
6This file is part of GNU Emacs.
7
8GNU Emacs is free software: you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation, either version 3 of the License, or
11(at your option) any later version.
12
13GNU Emacs is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20
21#include <config.h>
22#include <stdio.h>
3c24731f 23#include <limits.h> /* for INT_MAX */
279a1d4b
CY
24
25#include "lisp.h"
26#include "keyboard.h"
27#include "keymap.h"
28#include "frame.h"
ef7417fd 29#include "window.h"
279a1d4b
CY
30#include "termhooks.h"
31#include "blockinput.h"
32#include "dispextern.h"
33
34#ifdef USE_X_TOOLKIT
35#include "../lwlib/lwlib.h"
36#endif
37
17a2cbbd
DC
38#ifdef HAVE_WINDOW_SYSTEM
39#include TERM_HEADER
40#endif /* HAVE_WINDOW_SYSTEM */
279a1d4b
CY
41
42#ifdef HAVE_NTGUI
0fda9b75
DC
43# ifdef NTGUI_UNICODE
44# define unicode_append_menu AppendMenuW
45# else /* !NTGUI_UNICODE */
279a1d4b 46extern AppendMenuW_Proc unicode_append_menu;
0fda9b75 47# endif /* NTGUI_UNICODE */
04e452cb 48extern HMENU current_popup_menu;
279a1d4b
CY
49#endif /* HAVE_NTGUI */
50
e7c9048f 51#include "menu.h"
279a1d4b
CY
52
53/* Define HAVE_BOXES if menus can handle radio and toggle buttons. */
54#if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NTGUI)
55#define HAVE_BOXES 1
56#endif
57
279a1d4b
CY
58Lisp_Object menu_items;
59
60/* If non-nil, means that the global vars defined here are already in use.
61 Used to detect cases where we try to re-enter this non-reentrant code. */
4475bec4
PE
62#if ! (defined USE_GTK || defined USE_MOTIF)
63static
64#endif
279a1d4b
CY
65Lisp_Object menu_items_inuse;
66
67/* Number of slots currently allocated in menu_items. */
68int menu_items_allocated;
69
70/* This is the index in menu_items of the first empty slot. */
71int menu_items_used;
72
73/* The number of panes currently recorded in menu_items,
74 excluding those within submenus. */
75int menu_items_n_panes;
76
77/* Current depth within submenus. */
78static int menu_items_submenu_depth;
79
80void
971de7fb 81init_menu_items (void)
279a1d4b
CY
82{
83 if (!NILP (menu_items_inuse))
84 error ("Trying to use a menu from within a menu-entry");
85
86 if (NILP (menu_items))
87 {
88 menu_items_allocated = 60;
89 menu_items = Fmake_vector (make_number (menu_items_allocated), Qnil);
90 }
91
92 menu_items_inuse = Qt;
93 menu_items_used = 0;
94 menu_items_n_panes = 0;
95 menu_items_submenu_depth = 0;
96}
97
98/* Call at the end of generating the data in menu_items. */
99
100void
971de7fb 101finish_menu_items (void)
279a1d4b
CY
102{
103}
104
105Lisp_Object
971de7fb 106unuse_menu_items (Lisp_Object dummy)
279a1d4b
CY
107{
108 return menu_items_inuse = Qnil;
109}
110
111/* Call when finished using the data for the current menu
112 in menu_items. */
113
114void
971de7fb 115discard_menu_items (void)
279a1d4b
CY
116{
117 /* Free the structure if it is especially large.
118 Otherwise, hold on to it, to save time. */
119 if (menu_items_allocated > 200)
120 {
121 menu_items = Qnil;
122 menu_items_allocated = 0;
123 }
a54e2c05 124 eassert (NILP (menu_items_inuse));
279a1d4b
CY
125}
126
94da8397 127#ifdef HAVE_NS
ef7417fd
SM
128static Lisp_Object
129cleanup_popup_menu (Lisp_Object arg)
130{
131 discard_menu_items ();
132 return Qnil;
133}
94da8397 134#endif
ef7417fd 135
279a1d4b
CY
136/* This undoes save_menu_items, and it is called by the specpdl unwind
137 mechanism. */
138
139static Lisp_Object
971de7fb 140restore_menu_items (Lisp_Object saved)
279a1d4b
CY
141{
142 menu_items = XCAR (saved);
143 menu_items_inuse = (! NILP (menu_items) ? Qt : Qnil);
144 menu_items_allocated = (VECTORP (menu_items) ? ASIZE (menu_items) : 0);
145 saved = XCDR (saved);
146 menu_items_used = XINT (XCAR (saved));
147 saved = XCDR (saved);
148 menu_items_n_panes = XINT (XCAR (saved));
149 saved = XCDR (saved);
150 menu_items_submenu_depth = XINT (XCAR (saved));
151 return Qnil;
152}
153
154/* Push the whole state of menu_items processing onto the specpdl.
155 It will be restored when the specpdl is unwound. */
156
157void
971de7fb 158save_menu_items (void)
279a1d4b
CY
159{
160 Lisp_Object saved = list4 (!NILP (menu_items_inuse) ? menu_items : Qnil,
161 make_number (menu_items_used),
162 make_number (menu_items_n_panes),
163 make_number (menu_items_submenu_depth));
164 record_unwind_protect (restore_menu_items, saved);
165 menu_items_inuse = Qnil;
166 menu_items = Qnil;
167}
168
169\f
d311d28c 170/* Ensure that there is room for ITEMS items in the menu_items vector. */
279a1d4b
CY
171
172static void
d311d28c 173ensure_menu_items (int items)
279a1d4b 174{
d311d28c 175 int incr = items - (menu_items_allocated - menu_items_used);
908589fd 176 if (incr > 0)
d311d28c
PE
177 {
178 menu_items = larger_vector (menu_items, incr, INT_MAX);
179 menu_items_allocated = ASIZE (menu_items);
180 }
279a1d4b
CY
181}
182
60d9e1db
PE
183#if (defined USE_X_TOOLKIT || defined USE_GTK || defined HAVE_NS \
184 || defined HAVE_NTGUI)
185
279a1d4b
CY
186/* Begin a submenu. */
187
188static void
971de7fb 189push_submenu_start (void)
279a1d4b 190{
d311d28c 191 ensure_menu_items (1);
fb7da12e
AS
192 ASET (menu_items, menu_items_used, Qnil);
193 menu_items_used++;
279a1d4b
CY
194 menu_items_submenu_depth++;
195}
196
197/* End a submenu. */
198
199static void
971de7fb 200push_submenu_end (void)
279a1d4b 201{
d311d28c 202 ensure_menu_items (1);
fb7da12e
AS
203 ASET (menu_items, menu_items_used, Qlambda);
204 menu_items_used++;
279a1d4b
CY
205 menu_items_submenu_depth--;
206}
207
60d9e1db
PE
208#endif /* USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI */
209
279a1d4b
CY
210/* Indicate boundary between left and right. */
211
212static void
971de7fb 213push_left_right_boundary (void)
279a1d4b 214{
d311d28c 215 ensure_menu_items (1);
fb7da12e
AS
216 ASET (menu_items, menu_items_used, Qquote);
217 menu_items_used++;
279a1d4b
CY
218}
219
220/* Start a new menu pane in menu_items.
221 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */
222
593c843c 223static void
971de7fb 224push_menu_pane (Lisp_Object name, Lisp_Object prefix_vec)
279a1d4b 225{
d311d28c 226 ensure_menu_items (MENU_ITEMS_PANE_LENGTH);
279a1d4b
CY
227 if (menu_items_submenu_depth == 0)
228 menu_items_n_panes++;
fb7da12e
AS
229 ASET (menu_items, menu_items_used, Qt);
230 menu_items_used++;
231 ASET (menu_items, menu_items_used, name);
232 menu_items_used++;
233 ASET (menu_items, menu_items_used, prefix_vec);
234 menu_items_used++;
279a1d4b
CY
235}
236
237/* Push one menu item into the current pane. NAME is the string to
238 display. ENABLE if non-nil means this item can be selected. KEY
239 is the key generated by choosing this item, or nil if this item
240 doesn't really have a definition. DEF is the definition of this
241 item. EQUIV is the textual description of the keyboard equivalent
242 for this item (or nil if none). TYPE is the type of this menu
243 item, one of nil, `toggle' or `radio'. */
244
593c843c 245static void
971de7fb 246push_menu_item (Lisp_Object name, Lisp_Object enable, Lisp_Object key, Lisp_Object def, Lisp_Object equiv, Lisp_Object type, Lisp_Object selected, Lisp_Object help)
279a1d4b 247{
d311d28c 248 ensure_menu_items (MENU_ITEMS_ITEM_LENGTH);
279a1d4b 249
b7c7a4d1
SM
250 ASET (menu_items, menu_items_used + MENU_ITEMS_ITEM_NAME, name);
251 ASET (menu_items, menu_items_used + MENU_ITEMS_ITEM_ENABLE, enable);
252 ASET (menu_items, menu_items_used + MENU_ITEMS_ITEM_VALUE, key);
253 ASET (menu_items, menu_items_used + MENU_ITEMS_ITEM_EQUIV_KEY, equiv);
254 ASET (menu_items, menu_items_used + MENU_ITEMS_ITEM_DEFINITION, def);
255 ASET (menu_items, menu_items_used + MENU_ITEMS_ITEM_TYPE, type);
256 ASET (menu_items, menu_items_used + MENU_ITEMS_ITEM_SELECTED, selected);
257 ASET (menu_items, menu_items_used + MENU_ITEMS_ITEM_HELP, help);
258
259 menu_items_used += MENU_ITEMS_ITEM_LENGTH;
279a1d4b
CY
260}
261
262/* Args passed between single_keymap_panes and single_menu_item. */
263struct skp
264 {
265 Lisp_Object pending_maps;
ef7417fd 266 int maxdepth;
279a1d4b
CY
267 int notbuttons;
268 };
269
f57e2426
J
270static void single_menu_item (Lisp_Object, Lisp_Object, Lisp_Object,
271 void *);
279a1d4b
CY
272
273/* This is a recursive subroutine of keymap_panes.
274 It handles one keymap, KEYMAP.
275 The other arguments are passed along
276 or point to local variables of the previous function.
279a1d4b
CY
277
278 If we encounter submenus deeper than MAXDEPTH levels, ignore them. */
279
593c843c 280static void
ef7417fd
SM
281single_keymap_panes (Lisp_Object keymap, Lisp_Object pane_name,
282 Lisp_Object prefix, int maxdepth)
279a1d4b
CY
283{
284 struct skp skp;
285 struct gcpro gcpro1;
286
287 skp.pending_maps = Qnil;
288 skp.maxdepth = maxdepth;
279a1d4b
CY
289 skp.notbuttons = 0;
290
291 if (maxdepth <= 0)
292 return;
293
294 push_menu_pane (pane_name, prefix);
295
296#ifndef HAVE_BOXES
297 /* Remember index for first item in this pane so we can go back and
298 add a prefix when (if) we see the first button. After that, notbuttons
299 is set to 0, to mark that we have seen a button and all non button
300 items need a prefix. */
301 skp.notbuttons = menu_items_used;
302#endif
303
304 GCPRO1 (skp.pending_maps);
305 map_keymap_canonical (keymap, single_menu_item, Qnil, &skp);
306 UNGCPRO;
307
308 /* Process now any submenus which want to be panes at this level. */
309 while (CONSP (skp.pending_maps))
310 {
311 Lisp_Object elt, eltcdr, string;
312 elt = XCAR (skp.pending_maps);
313 eltcdr = XCDR (elt);
314 string = XCAR (eltcdr);
315 /* We no longer discard the @ from the beginning of the string here.
316 Instead, we do this in *menu_show. */
ef7417fd 317 single_keymap_panes (Fcar (elt), string, XCDR (eltcdr), maxdepth - 1);
279a1d4b
CY
318 skp.pending_maps = XCDR (skp.pending_maps);
319 }
320}
321
322/* This is a subroutine of single_keymap_panes that handles one
323 keymap entry.
324 KEY is a key in a keymap and ITEM is its binding.
325 SKP->PENDING_MAPS_PTR is a list of keymaps waiting to be made into
326 separate panes.
279a1d4b
CY
327 If we encounter submenus deeper than SKP->MAXDEPTH levels, ignore them. */
328
329static void
971de7fb 330single_menu_item (Lisp_Object key, Lisp_Object item, Lisp_Object dummy, void *skp_v)
279a1d4b
CY
331{
332 Lisp_Object map, item_string, enabled;
333 struct gcpro gcpro1, gcpro2;
9fa1de30 334 bool res;
279a1d4b
CY
335 struct skp *skp = skp_v;
336
337 /* Parse the menu item and leave the result in item_properties. */
338 GCPRO2 (key, item);
ef7417fd 339 res = parse_menu_item (item, 0);
279a1d4b
CY
340 UNGCPRO;
341 if (!res)
342 return; /* Not a menu item. */
343
28be1ada 344 map = AREF (item_properties, ITEM_PROPERTY_MAP);
279a1d4b 345
28be1ada
DA
346 enabled = AREF (item_properties, ITEM_PROPERTY_ENABLE);
347 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
279a1d4b
CY
348
349 if (!NILP (map) && SREF (item_string, 0) == '@')
350 {
351 if (!NILP (enabled))
352 /* An enabled separate pane. Remember this to handle it later. */
353 skp->pending_maps = Fcons (Fcons (map, Fcons (item_string, key)),
354 skp->pending_maps);
355 return;
356 }
357
5e617bc2 358#if defined (HAVE_X_WINDOWS) || defined (MSDOS)
279a1d4b
CY
359#ifndef HAVE_BOXES
360 /* Simulate radio buttons and toggle boxes by putting a prefix in
361 front of them. */
362 {
363 Lisp_Object prefix = Qnil;
28be1ada 364 Lisp_Object type = AREF (item_properties, ITEM_PROPERTY_TYPE);
279a1d4b
CY
365 if (!NILP (type))
366 {
367 Lisp_Object selected
28be1ada 368 = AREF (item_properties, ITEM_PROPERTY_SELECTED);
279a1d4b
CY
369
370 if (skp->notbuttons)
371 /* The first button. Line up previous items in this menu. */
372 {
60d9e1db 373 int idx = skp->notbuttons; /* Index for first item this menu. */
279a1d4b
CY
374 int submenu = 0;
375 Lisp_Object tem;
60d9e1db 376 while (idx < menu_items_used)
279a1d4b
CY
377 {
378 tem
28be1ada 379 = AREF (menu_items, idx + MENU_ITEMS_ITEM_NAME);
279a1d4b
CY
380 if (NILP (tem))
381 {
60d9e1db 382 idx++;
279a1d4b
CY
383 submenu++; /* Skip sub menu. */
384 }
385 else if (EQ (tem, Qlambda))
386 {
60d9e1db 387 idx++;
279a1d4b
CY
388 submenu--; /* End sub menu. */
389 }
390 else if (EQ (tem, Qt))
60d9e1db 391 idx += 3; /* Skip new pane marker. */
279a1d4b 392 else if (EQ (tem, Qquote))
60d9e1db 393 idx++; /* Skip a left, right divider. */
279a1d4b
CY
394 else
395 {
396 if (!submenu && SREF (tem, 0) != '\0'
397 && SREF (tem, 0) != '-')
28be1ada
DA
398 ASET (menu_items, idx + MENU_ITEMS_ITEM_NAME,
399 concat2 (build_string (" "), tem));
60d9e1db 400 idx += MENU_ITEMS_ITEM_LENGTH;
279a1d4b
CY
401 }
402 }
403 skp->notbuttons = 0;
404 }
405
406 /* Calculate prefix, if any, for this item. */
407 if (EQ (type, QCtoggle))
408 prefix = build_string (NILP (selected) ? "[ ] " : "[X] ");
409 else if (EQ (type, QCradio))
410 prefix = build_string (NILP (selected) ? "( ) " : "(*) ");
411 }
412 /* Not a button. If we have earlier buttons, then we need a prefix. */
413 else if (!skp->notbuttons && SREF (item_string, 0) != '\0'
414 && SREF (item_string, 0) != '-')
415 prefix = build_string (" ");
416
417 if (!NILP (prefix))
418 item_string = concat2 (prefix, item_string);
419 }
420#endif /* not HAVE_BOXES */
421
422#if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
423 if (!NILP (map))
424 /* Indicate visually that this is a submenu. */
425 item_string = concat2 (item_string, build_string (" >"));
426#endif
427
dda86321 428#endif /* HAVE_X_WINDOWS || MSDOS */
279a1d4b
CY
429
430 push_menu_item (item_string, enabled, key,
28be1ada
DA
431 AREF (item_properties, ITEM_PROPERTY_DEF),
432 AREF (item_properties, ITEM_PROPERTY_KEYEQ),
433 AREF (item_properties, ITEM_PROPERTY_TYPE),
434 AREF (item_properties, ITEM_PROPERTY_SELECTED),
435 AREF (item_properties, ITEM_PROPERTY_HELP));
279a1d4b 436
edfda783 437#if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (HAVE_NTGUI)
279a1d4b
CY
438 /* Display a submenu using the toolkit. */
439 if (! (NILP (map) || NILP (enabled)))
440 {
441 push_submenu_start ();
ef7417fd 442 single_keymap_panes (map, Qnil, key, skp->maxdepth - 1);
279a1d4b
CY
443 push_submenu_end ();
444 }
445#endif
446}
447
448/* Look through KEYMAPS, a vector of keymaps that is NMAPS long,
ef7417fd 449 and generate menu panes for them in menu_items. */
279a1d4b 450
ef7417fd 451static void
d311d28c 452keymap_panes (Lisp_Object *keymaps, ptrdiff_t nmaps)
279a1d4b 453{
d311d28c 454 ptrdiff_t mapno;
279a1d4b
CY
455
456 init_menu_items ();
457
458 /* Loop over the given keymaps, making a pane for each map.
459 But don't make a pane that is empty--ignore that map instead.
460 P is the number of panes we have made so far. */
461 for (mapno = 0; mapno < nmaps; mapno++)
462 single_keymap_panes (keymaps[mapno],
ef7417fd 463 Fkeymap_prompt (keymaps[mapno]), Qnil, 10);
279a1d4b
CY
464
465 finish_menu_items ();
466}
467
468
469/* Push the items in a single pane defined by the alist PANE. */
470static void
971de7fb 471list_of_items (Lisp_Object pane)
279a1d4b
CY
472{
473 Lisp_Object tail, item, item1;
474
475 for (tail = pane; CONSP (tail); tail = XCDR (tail))
476 {
477 item = XCAR (tail);
478 if (STRINGP (item))
479 push_menu_item (ENCODE_MENU_STRING (item), Qnil, Qnil, Qt,
480 Qnil, Qnil, Qnil, Qnil);
481 else if (CONSP (item))
482 {
483 item1 = XCAR (item);
484 CHECK_STRING (item1);
485 push_menu_item (ENCODE_MENU_STRING (item1), Qt, XCDR (item),
486 Qt, Qnil, Qnil, Qnil, Qnil);
487 }
488 else
489 push_left_right_boundary ();
490
491 }
492}
493
494/* Push all the panes and items of a menu described by the
495 alist-of-alists MENU.
496 This handles old-fashioned calls to x-popup-menu. */
497void
971de7fb 498list_of_panes (Lisp_Object menu)
279a1d4b
CY
499{
500 Lisp_Object tail;
501
502 init_menu_items ();
503
504 for (tail = menu; CONSP (tail); tail = XCDR (tail))
505 {
506 Lisp_Object elt, pane_name, pane_data;
507 elt = XCAR (tail);
508 pane_name = Fcar (elt);
509 CHECK_STRING (pane_name);
510 push_menu_pane (ENCODE_MENU_STRING (pane_name), Qnil);
511 pane_data = Fcdr (elt);
512 CHECK_CONS (pane_data);
513 list_of_items (pane_data);
514 }
515
516 finish_menu_items ();
517}
518
519/* Set up data in menu_items for a menu bar item
520 whose event type is ITEM_KEY (with string ITEM_NAME)
521 and whose contents come from the list of keymaps MAPS. */
7cded46f
PE
522bool
523parse_single_submenu (Lisp_Object item_key, Lisp_Object item_name,
524 Lisp_Object maps)
279a1d4b
CY
525{
526 Lisp_Object length;
d311d28c 527 EMACS_INT len;
279a1d4b 528 Lisp_Object *mapvec;
d311d28c 529 ptrdiff_t i;
7cded46f 530 bool top_level_items = 0;
d311d28c 531 USE_SAFE_ALLOCA;
279a1d4b
CY
532
533 length = Flength (maps);
534 len = XINT (length);
535
536 /* Convert the list MAPS into a vector MAPVEC. */
d311d28c 537 SAFE_ALLOCA_LISP (mapvec, len);
279a1d4b
CY
538 for (i = 0; i < len; i++)
539 {
540 mapvec[i] = Fcar (maps);
541 maps = Fcdr (maps);
542 }
543
544 /* Loop over the given keymaps, making a pane for each map.
545 But don't make a pane that is empty--ignore that map instead. */
546 for (i = 0; i < len; i++)
547 {
548 if (!KEYMAPP (mapvec[i]))
549 {
550 /* Here we have a command at top level in the menu bar
551 as opposed to a submenu. */
552 top_level_items = 1;
553 push_menu_pane (Qnil, Qnil);
554 push_menu_item (item_name, Qt, item_key, mapvec[i],
555 Qnil, Qnil, Qnil, Qnil);
556 }
557 else
558 {
559 Lisp_Object prompt;
560 prompt = Fkeymap_prompt (mapvec[i]);
561 single_keymap_panes (mapvec[i],
562 !NILP (prompt) ? prompt : item_name,
ef7417fd 563 item_key, 10);
279a1d4b
CY
564 }
565 }
566
d311d28c 567 SAFE_FREE ();
279a1d4b
CY
568 return top_level_items;
569}
570
571\f
edfda783 572#if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (HAVE_NTGUI)
279a1d4b
CY
573
574/* Allocate a widget_value, blocking input. */
575
576widget_value *
971de7fb 577xmalloc_widget_value (void)
279a1d4b
CY
578{
579 widget_value *value;
580
4d7e6e51 581 block_input ();
279a1d4b 582 value = malloc_widget_value ();
4d7e6e51 583 unblock_input ();
279a1d4b
CY
584
585 return value;
586}
587
588/* This recursively calls free_widget_value on the tree of widgets.
589 It must free all data that was malloc'ed for these widget_values.
590 In Emacs, many slots are pointers into the data of Lisp_Strings, and
591 must be left alone. */
592
593void
971de7fb 594free_menubar_widget_value_tree (widget_value *wv)
279a1d4b
CY
595{
596 if (! wv) return;
597
598 wv->name = wv->value = wv->key = (char *) 0xDEADBEEF;
599
600 if (wv->contents && (wv->contents != (widget_value*)1))
601 {
602 free_menubar_widget_value_tree (wv->contents);
603 wv->contents = (widget_value *) 0xDEADBEEF;
604 }
605 if (wv->next)
606 {
607 free_menubar_widget_value_tree (wv->next);
608 wv->next = (widget_value *) 0xDEADBEEF;
609 }
4d7e6e51 610 block_input ();
279a1d4b 611 free_widget_value (wv);
4d7e6e51 612 unblock_input ();
279a1d4b
CY
613}
614
615/* Create a tree of widget_value objects
616 representing the panes and items
617 in menu_items starting at index START, up to index END. */
618
619widget_value *
7cded46f 620digest_single_submenu (int start, int end, bool top_level_items)
279a1d4b
CY
621{
622 widget_value *wv, *prev_wv, *save_wv, *first_wv;
623 int i;
624 int submenu_depth = 0;
625 widget_value **submenu_stack;
7cded46f 626 bool panes_seen = 0;
279a1d4b 627
38182d90 628 submenu_stack = alloca (menu_items_used * sizeof *submenu_stack);
279a1d4b
CY
629 wv = xmalloc_widget_value ();
630 wv->name = "menu";
631 wv->value = 0;
632 wv->enabled = 1;
633 wv->button_type = BUTTON_TYPE_NONE;
634 wv->help = Qnil;
635 first_wv = wv;
636 save_wv = 0;
637 prev_wv = 0;
638
639 /* Loop over all panes and items made by the preceding call
640 to parse_single_submenu and construct a tree of widget_value objects.
641 Ignore the panes and items used by previous calls to
642 digest_single_submenu, even though those are also in menu_items. */
643 i = start;
644 while (i < end)
645 {
28be1ada 646 if (EQ (AREF (menu_items, i), Qnil))
279a1d4b
CY
647 {
648 submenu_stack[submenu_depth++] = save_wv;
649 save_wv = prev_wv;
650 prev_wv = 0;
651 i++;
652 }
28be1ada 653 else if (EQ (AREF (menu_items, i), Qlambda))
279a1d4b
CY
654 {
655 prev_wv = save_wv;
656 save_wv = submenu_stack[--submenu_depth];
657 i++;
658 }
28be1ada 659 else if (EQ (AREF (menu_items, i), Qt)
279a1d4b
CY
660 && submenu_depth != 0)
661 i += MENU_ITEMS_PANE_LENGTH;
662 /* Ignore a nil in the item list.
663 It's meaningful only for dialog boxes. */
28be1ada 664 else if (EQ (AREF (menu_items, i), Qquote))
279a1d4b 665 i += 1;
28be1ada 666 else if (EQ (AREF (menu_items, i), Qt))
279a1d4b
CY
667 {
668 /* Create a new pane. */
b01a1c29 669 Lisp_Object pane_name;
675e2c69 670 const char *pane_string;
279a1d4b 671
7cded46f 672 panes_seen = 1;
279a1d4b 673
28be1ada 674 pane_name = AREF (menu_items, i + MENU_ITEMS_PANE_NAME);
279a1d4b
CY
675
676#ifdef HAVE_NTGUI
677 if (STRINGP (pane_name))
678 {
679 if (unicode_append_menu)
680 /* Encode as UTF-8 for now. */
681 pane_name = ENCODE_UTF_8 (pane_name);
682 else if (STRING_MULTIBYTE (pane_name))
683 pane_name = ENCODE_SYSTEM (pane_name);
684
685 ASET (menu_items, i + MENU_ITEMS_PANE_NAME, pane_name);
686 }
99852628
JD
687#elif defined (USE_LUCID) && defined (HAVE_XFT)
688 if (STRINGP (pane_name))
689 {
690 pane_name = ENCODE_UTF_8 (pane_name);
691 ASET (menu_items, i + MENU_ITEMS_PANE_NAME, pane_name);
692 }
279a1d4b
CY
693#elif !defined (HAVE_MULTILINGUAL_MENU)
694 if (STRINGP (pane_name) && STRING_MULTIBYTE (pane_name))
695 {
696 pane_name = ENCODE_MENU_STRING (pane_name);
697 ASET (menu_items, i + MENU_ITEMS_PANE_NAME, pane_name);
698 }
699#endif
700
701 pane_string = (NILP (pane_name)
51b59d79 702 ? "" : SSDATA (pane_name));
279a1d4b
CY
703 /* If there is just one top-level pane, put all its items directly
704 under the top-level menu. */
705 if (menu_items_n_panes == 1)
706 pane_string = "";
707
708 /* If the pane has a meaningful name,
709 make the pane a top-level menu item
710 with its items as a submenu beneath it. */
711 if (strcmp (pane_string, ""))
712 {
713 wv = xmalloc_widget_value ();
714 if (save_wv)
715 save_wv->next = wv;
716 else
717 first_wv->contents = wv;
718 wv->lname = pane_name;
719 /* Set value to 1 so update_submenu_strings can handle '@' */
720 wv->value = (char *)1;
721 wv->enabled = 1;
722 wv->button_type = BUTTON_TYPE_NONE;
723 wv->help = Qnil;
724 save_wv = wv;
725 }
726 else
727 save_wv = first_wv;
728
729 prev_wv = 0;
730 i += MENU_ITEMS_PANE_LENGTH;
731 }
732 else
733 {
734 /* Create a new item within current pane. */
735 Lisp_Object item_name, enable, descrip, def, type, selected;
736 Lisp_Object help;
737
738 /* All items should be contained in panes. */
7cded46f 739 if (! panes_seen)
1088b922 740 emacs_abort ();
279a1d4b
CY
741
742 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
743 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
744 descrip = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
745 def = AREF (menu_items, i + MENU_ITEMS_ITEM_DEFINITION);
746 type = AREF (menu_items, i + MENU_ITEMS_ITEM_TYPE);
747 selected = AREF (menu_items, i + MENU_ITEMS_ITEM_SELECTED);
748 help = AREF (menu_items, i + MENU_ITEMS_ITEM_HELP);
749
750#ifdef HAVE_NTGUI
751 if (STRINGP (item_name))
752 {
753 if (unicode_append_menu)
754 item_name = ENCODE_UTF_8 (item_name);
755 else if (STRING_MULTIBYTE (item_name))
756 item_name = ENCODE_SYSTEM (item_name);
757
758 ASET (menu_items, i + MENU_ITEMS_ITEM_NAME, item_name);
759 }
760
761 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
762 {
763 descrip = ENCODE_SYSTEM (descrip);
764 ASET (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY, descrip);
765 }
99852628
JD
766#elif USE_LUCID
767 if (STRINGP (item_name))
768 {
769 item_name = ENCODE_UTF_8 (item_name);
770 ASET (menu_items, i + MENU_ITEMS_ITEM_NAME, item_name);
771 }
772
773 if (STRINGP (descrip))
774 {
775 descrip = ENCODE_UTF_8 (descrip);
776 ASET (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY, descrip);
777 }
279a1d4b
CY
778#elif !defined (HAVE_MULTILINGUAL_MENU)
779 if (STRING_MULTIBYTE (item_name))
780 {
781 item_name = ENCODE_MENU_STRING (item_name);
782 ASET (menu_items, i + MENU_ITEMS_ITEM_NAME, item_name);
783 }
784
785 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
786 {
787 descrip = ENCODE_MENU_STRING (descrip);
788 ASET (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY, descrip);
789 }
790#endif
791
792 wv = xmalloc_widget_value ();
793 if (prev_wv)
794 prev_wv->next = wv;
795 else
796 save_wv->contents = wv;
797
798 wv->lname = item_name;
799 if (!NILP (descrip))
800 wv->lkey = descrip;
801 wv->value = 0;
d01a7826 802 /* The intptr_t cast avoids a warning. There's no problem
279a1d4b 803 as long as pointers have enough bits to hold small integers. */
d01a7826 804 wv->call_data = (!NILP (def) ? (void *) (intptr_t) i : 0);
279a1d4b
CY
805 wv->enabled = !NILP (enable);
806
807 if (NILP (type))
808 wv->button_type = BUTTON_TYPE_NONE;
809 else if (EQ (type, QCradio))
810 wv->button_type = BUTTON_TYPE_RADIO;
811 else if (EQ (type, QCtoggle))
812 wv->button_type = BUTTON_TYPE_TOGGLE;
813 else
1088b922 814 emacs_abort ();
279a1d4b
CY
815
816 wv->selected = !NILP (selected);
817 if (! STRINGP (help))
818 help = Qnil;
819
820 wv->help = help;
821
822 prev_wv = wv;
823
824 i += MENU_ITEMS_ITEM_LENGTH;
825 }
826 }
827
828 /* If we have just one "menu item"
829 that was originally a button, return it by itself. */
830 if (top_level_items && first_wv->contents && first_wv->contents->next == 0)
831 {
832 wv = first_wv->contents;
833 free_widget_value (first_wv);
834 return wv;
835 }
836
837 return first_wv;
838}
839
840/* Walk through the widget_value tree starting at FIRST_WV and update
841 the char * pointers from the corresponding lisp values.
842 We do this after building the whole tree, since GC may happen while the
843 tree is constructed, and small strings are relocated. So we must wait
844 until no GC can happen before storing pointers into lisp values. */
845void
971de7fb 846update_submenu_strings (widget_value *first_wv)
279a1d4b
CY
847{
848 widget_value *wv;
849
850 for (wv = first_wv; wv; wv = wv->next)
851 {
852 if (STRINGP (wv->lname))
853 {
51b59d79 854 wv->name = SSDATA (wv->lname);
279a1d4b
CY
855
856 /* Ignore the @ that means "separate pane".
857 This is a kludge, but this isn't worth more time. */
858 if (wv->value == (char *)1)
859 {
860 if (wv->name[0] == '@')
861 wv->name++;
862 wv->value = 0;
863 }
864 }
865
866 if (STRINGP (wv->lkey))
51b59d79 867 wv->key = SSDATA (wv->lkey);
279a1d4b
CY
868
869 if (wv->contents)
870 update_submenu_strings (wv->contents);
871 }
872}
873
874/* Find the menu selection and store it in the keyboard buffer.
875 F is the frame the menu is on.
876 MENU_BAR_ITEMS_USED is the length of VECTOR.
877 VECTOR is an array of menu events for the whole menu. */
878
879void
971de7fb 880find_and_call_menu_selection (FRAME_PTR f, int menu_bar_items_used, Lisp_Object vector, void *client_data)
279a1d4b
CY
881{
882 Lisp_Object prefix, entry;
883 Lisp_Object *subprefix_stack;
884 int submenu_depth = 0;
885 int i;
886
887 entry = Qnil;
38182d90 888 subprefix_stack = alloca (menu_bar_items_used * sizeof *subprefix_stack);
279a1d4b
CY
889 prefix = Qnil;
890 i = 0;
891
892 while (i < menu_bar_items_used)
893 {
28be1ada 894 if (EQ (AREF (vector, i), Qnil))
279a1d4b
CY
895 {
896 subprefix_stack[submenu_depth++] = prefix;
897 prefix = entry;
898 i++;
899 }
28be1ada 900 else if (EQ (AREF (vector, i), Qlambda))
279a1d4b
CY
901 {
902 prefix = subprefix_stack[--submenu_depth];
903 i++;
904 }
28be1ada 905 else if (EQ (AREF (vector, i), Qt))
279a1d4b 906 {
28be1ada 907 prefix = AREF (vector, i + MENU_ITEMS_PANE_PREFIX);
279a1d4b
CY
908 i += MENU_ITEMS_PANE_LENGTH;
909 }
910 else
911 {
28be1ada 912 entry = AREF (vector, i + MENU_ITEMS_ITEM_VALUE);
8ac068ac 913 /* Treat the pointer as an integer. There's no problem
279a1d4b 914 as long as pointers have enough bits to hold small integers. */
d01a7826 915 if ((intptr_t) client_data == i)
279a1d4b
CY
916 {
917 int j;
918 struct input_event buf;
919 Lisp_Object frame;
920 EVENT_INIT (buf);
921
922 XSETFRAME (frame, f);
923 buf.kind = MENU_BAR_EVENT;
924 buf.frame_or_window = frame;
925 buf.arg = frame;
926 kbd_buffer_store_event (&buf);
927
928 for (j = 0; j < submenu_depth; j++)
929 if (!NILP (subprefix_stack[j]))
930 {
931 buf.kind = MENU_BAR_EVENT;
932 buf.frame_or_window = frame;
933 buf.arg = subprefix_stack[j];
934 kbd_buffer_store_event (&buf);
935 }
936
937 if (!NILP (prefix))
938 {
939 buf.kind = MENU_BAR_EVENT;
940 buf.frame_or_window = frame;
941 buf.arg = prefix;
942 kbd_buffer_store_event (&buf);
943 }
944
945 buf.kind = MENU_BAR_EVENT;
946 buf.frame_or_window = frame;
947 buf.arg = entry;
948 kbd_buffer_store_event (&buf);
949
950 return;
951 }
952 i += MENU_ITEMS_ITEM_LENGTH;
953 }
954 }
955}
956
edfda783
AR
957#endif /* USE_X_TOOLKIT || USE_GTK || HAVE_NS || HAVE_NTGUI */
958
959#ifdef HAVE_NS
960/* As above, but return the menu selection instead of storing in kb buffer.
7cded46f 961 If KEYMAPS, return full prefixes to selection. */
edfda783 962Lisp_Object
7cded46f 963find_and_return_menu_selection (FRAME_PTR f, bool keymaps, void *client_data)
edfda783
AR
964{
965 Lisp_Object prefix, entry;
966 int i;
967 Lisp_Object *subprefix_stack;
968 int submenu_depth = 0;
969
970 prefix = entry = Qnil;
971 i = 0;
663e2b3f 972 subprefix_stack = alloca (menu_items_used * word_size);
edfda783
AR
973
974 while (i < menu_items_used)
975 {
28be1ada 976 if (EQ (AREF (menu_items, i), Qnil))
edfda783
AR
977 {
978 subprefix_stack[submenu_depth++] = prefix;
979 prefix = entry;
980 i++;
981 }
28be1ada 982 else if (EQ (AREF (menu_items, i), Qlambda))
edfda783
AR
983 {
984 prefix = subprefix_stack[--submenu_depth];
985 i++;
986 }
28be1ada 987 else if (EQ (AREF (menu_items, i), Qt))
edfda783
AR
988 {
989 prefix
28be1ada 990 = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
edfda783
AR
991 i += MENU_ITEMS_PANE_LENGTH;
992 }
993 /* Ignore a nil in the item list.
994 It's meaningful only for dialog boxes. */
28be1ada 995 else if (EQ (AREF (menu_items, i), Qquote))
edfda783
AR
996 i += 1;
997 else
998 {
999 entry
28be1ada 1000 = AREF (menu_items, i + MENU_ITEMS_ITEM_VALUE);
4939150c 1001 if (aref_addr (menu_items, i) == client_data)
edfda783 1002 {
7cded46f 1003 if (keymaps)
edfda783
AR
1004 {
1005 int j;
1006
1007 entry = Fcons (entry, Qnil);
1008 if (!NILP (prefix))
1009 entry = Fcons (prefix, entry);
1010 for (j = submenu_depth - 1; j >= 0; j--)
1011 if (!NILP (subprefix_stack[j]))
1012 entry = Fcons (subprefix_stack[j], entry);
1013 }
1014 return entry;
1015 }
1016 i += MENU_ITEMS_ITEM_LENGTH;
1017 }
1018 }
facfbbbd 1019 return Qnil;
edfda783 1020}
31c2d412 1021#endif /* HAVE_NS */
279a1d4b 1022
a7ca3326 1023DEFUN ("x-popup-menu", Fx_popup_menu, Sx_popup_menu, 2, 2, 0,
ef7417fd
SM
1024 doc: /* Pop up a deck-of-cards menu and return user's selection.
1025POSITION is a position specification. This is either a mouse button event
1026or a list ((XOFFSET YOFFSET) WINDOW)
1027where XOFFSET and YOFFSET are positions in pixels from the top left
1028corner of WINDOW. (WINDOW may be a window or a frame object.)
1029This controls the position of the top left of the menu as a whole.
1030If POSITION is t, it means to use the current mouse position.
1031
1032MENU is a specifier for a menu. For the simplest case, MENU is a keymap.
1033The menu items come from key bindings that have a menu string as well as
1034a definition; actually, the "definition" in such a key binding looks like
1035\(STRING . REAL-DEFINITION). To give the menu a title, put a string into
1036the keymap as a top-level element.
1037
1038If REAL-DEFINITION is nil, that puts a nonselectable string in the menu.
1039Otherwise, REAL-DEFINITION should be a valid key binding definition.
1040
1041You can also use a list of keymaps as MENU.
1042 Then each keymap makes a separate pane.
1043
1044When MENU is a keymap or a list of keymaps, the return value is the
1045list of events corresponding to the user's choice. Note that
1046`x-popup-menu' does not actually execute the command bound to that
1047sequence of events.
1048
1049Alternatively, you can specify a menu of multiple panes
1050 with a list of the form (TITLE PANE1 PANE2...),
1051where each pane is a list of form (TITLE ITEM1 ITEM2...).
1052Each ITEM is normally a cons cell (STRING . VALUE);
1053but a string can appear as an item--that makes a nonselectable line
1054in the menu.
1055With this form of menu, the return value is VALUE from the chosen item.
1056
1057If POSITION is nil, don't display the menu at all, just precalculate the
1058cached information about equivalent key sequences.
1059
1060If the user gets rid of the menu without making a valid choice, for
1061instance by clicking the mouse away from a valid choice or by typing
1062keyboard input, then this normally results in a quit and
1063`x-popup-menu' does not return. But if POSITION is a mouse button
1064event (indicating that the user invoked the menu with the mouse) then
1065no quit occurs and `x-popup-menu' returns nil. */)
5842a27b 1066 (Lisp_Object position, Lisp_Object menu)
ef7417fd
SM
1067{
1068 Lisp_Object keymap, tem;
1069 int xpos = 0, ypos = 0;
1070 Lisp_Object title;
42ca4633 1071 const char *error_name = NULL;
ef7417fd
SM
1072 Lisp_Object selection = Qnil;
1073 FRAME_PTR f = NULL;
1074 Lisp_Object x, y, window;
7cded46f
PE
1075 bool keymaps = 0;
1076 bool for_click = 0;
d311d28c 1077 ptrdiff_t specpdl_count = SPECPDL_INDEX ();
ef7417fd 1078 struct gcpro gcpro1;
ef7417fd 1079
ef7417fd
SM
1080 if (NILP (position))
1081 /* This is an obsolete call, which wants us to precompute the
1082 keybinding equivalents, but we don't do that any more anyway. */
1083 return Qnil;
1084
1085#ifdef HAVE_MENUS
1086 {
7cded46f 1087 bool get_current_pos_p = 0;
73931ad1 1088
7452b7bd 1089 check_window_system (SELECTED_FRAME ());
ef7417fd
SM
1090
1091 /* Decode the first argument: find the window and the coordinates. */
1092 if (EQ (position, Qt)
1093 || (CONSP (position) && (EQ (XCAR (position), Qmenu_bar)
1094 || EQ (XCAR (position), Qtool_bar))))
1095 {
1096 get_current_pos_p = 1;
1097 }
1098 else
1099 {
1100 tem = Fcar (position);
1101 if (CONSP (tem))
1102 {
1103 window = Fcar (Fcdr (position));
1104 x = XCAR (tem);
1105 y = Fcar (XCDR (tem));
1106 }
1107 else
1108 {
1109 for_click = 1;
1110 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
1111 window = Fcar (tem); /* POSN_WINDOW (tem) */
a6d676d9
CY
1112 tem = Fcar (Fcdr (Fcdr (tem))); /* POSN_WINDOW_POSN (tem) */
1113 x = Fcar (tem);
1114 y = Fcdr (tem);
ef7417fd
SM
1115 }
1116
1117 /* If a click happens in an external tool bar or a detached
1118 tool bar, x and y is NIL. In that case, use the current
1119 mouse position. This happens for the help button in the
1120 tool bar. Ideally popup-menu should pass NIL to
1121 this function, but it doesn't. */
1122 if (NILP (x) && NILP (y))
1123 get_current_pos_p = 1;
1124 }
1125
1126 if (get_current_pos_p)
1127 {
1128 /* Use the mouse's current position. */
1129 FRAME_PTR new_f = SELECTED_FRAME ();
1130#ifdef HAVE_X_WINDOWS
1131 /* Can't use mouse_position_hook for X since it returns
1132 coordinates relative to the window the mouse is in,
1133 we need coordinates relative to the edit widget always. */
1134 if (new_f != 0)
1135 {
1136 int cur_x, cur_y;
1137
1138 mouse_position_for_popup (new_f, &cur_x, &cur_y);
1139 /* cur_x/y may be negative, so use make_number. */
1140 x = make_number (cur_x);
1141 y = make_number (cur_y);
1142 }
1143
1144#else /* not HAVE_X_WINDOWS */
1145 Lisp_Object bar_window;
1146 enum scroll_bar_part part;
08dc5ae6 1147 Time time;
f57e2426
J
1148 void (*mouse_position_hook) (struct frame **, int,
1149 Lisp_Object *,
1150 enum scroll_bar_part *,
1151 Lisp_Object *,
1152 Lisp_Object *,
08dc5ae6 1153 Time *) =
ef7417fd
SM
1154 FRAME_TERMINAL (new_f)->mouse_position_hook;
1155
1156 if (mouse_position_hook)
1157 (*mouse_position_hook) (&new_f, 1, &bar_window,
1158 &part, &x, &y, &time);
1159#endif /* not HAVE_X_WINDOWS */
1160
1161 if (new_f != 0)
1162 XSETFRAME (window, new_f);
1163 else
1164 {
1165 window = selected_window;
1166 XSETFASTINT (x, 0);
1167 XSETFASTINT (y, 0);
1168 }
1169 }
1170
ef7417fd
SM
1171 /* Decode where to put the menu. */
1172
1173 if (FRAMEP (window))
1174 {
1175 f = XFRAME (window);
1176 xpos = 0;
1177 ypos = 0;
1178 }
1179 else if (WINDOWP (window))
1180 {
1181 struct window *win = XWINDOW (window);
1182 CHECK_LIVE_WINDOW (window);
1183 f = XFRAME (WINDOW_FRAME (win));
1184
ef7417fd
SM
1185 xpos = WINDOW_LEFT_EDGE_X (win);
1186 ypos = WINDOW_TOP_EDGE_Y (win);
ef7417fd
SM
1187 }
1188 else
1189 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
1190 but I don't want to make one now. */
1191 CHECK_WINDOW (window);
1192
af5a5a98
AS
1193 CHECK_RANGED_INTEGER (x,
1194 (xpos < INT_MIN - MOST_NEGATIVE_FIXNUM
d311d28c
PE
1195 ? (EMACS_INT) INT_MIN - xpos
1196 : MOST_NEGATIVE_FIXNUM),
af5a5a98
AS
1197 INT_MAX - xpos);
1198 CHECK_RANGED_INTEGER (y,
1199 (ypos < INT_MIN - MOST_NEGATIVE_FIXNUM
d311d28c
PE
1200 ? (EMACS_INT) INT_MIN - ypos
1201 : MOST_NEGATIVE_FIXNUM),
af5a5a98 1202 INT_MAX - ypos);
ef7417fd
SM
1203 xpos += XINT (x);
1204 ypos += XINT (y);
1205
1206 /* FIXME: Find a more general check! */
1207 if (!(FRAME_X_P (f) || FRAME_MSDOS_P (f)
1208 || FRAME_W32_P (f) || FRAME_NS_P (f)))
1209 error ("Can not put GUI menu on this terminal");
1210
1211 XSETFRAME (Vmenu_updating_frame, f);
1212 }
1213#endif /* HAVE_MENUS */
1214
1215 /* Now parse the lisp menus. */
1216 record_unwind_protect (unuse_menu_items, Qnil);
1217
1218 title = Qnil;
1219 GCPRO1 (title);
1220
1221 /* Decode the menu items from what was specified. */
1222
1223 keymap = get_keymap (menu, 0, 0);
1224 if (CONSP (keymap))
1225 {
1226 /* We were given a keymap. Extract menu info from the keymap. */
1227 Lisp_Object prompt;
1228
1229 /* Extract the detailed info to make one pane. */
1230 keymap_panes (&menu, 1);
1231
1232 /* Search for a string appearing directly as an element of the keymap.
1233 That string is the title of the menu. */
1234 prompt = Fkeymap_prompt (keymap);
1235 if (!NILP (prompt))
1236 title = prompt;
1237#ifdef HAVE_NS /* Is that needed and NS-specific? --Stef */
1238 else
1239 title = build_string ("Select");
1240#endif
1241
1242 /* Make that be the pane title of the first pane. */
1243 if (!NILP (prompt) && menu_items_n_panes >= 0)
1244 ASET (menu_items, MENU_ITEMS_PANE_NAME, prompt);
1245
1246 keymaps = 1;
1247 }
1248 else if (CONSP (menu) && KEYMAPP (XCAR (menu)))
1249 {
1250 /* We were given a list of keymaps. */
d311d28c
PE
1251 EMACS_INT nmaps = XFASTINT (Flength (menu));
1252 Lisp_Object *maps;
1253 ptrdiff_t i;
1254 USE_SAFE_ALLOCA;
ef7417fd 1255
d311d28c 1256 SAFE_ALLOCA_LISP (maps, nmaps);
ef7417fd
SM
1257 title = Qnil;
1258
1259 /* The first keymap that has a prompt string
1260 supplies the menu title. */
1261 for (tem = menu, i = 0; CONSP (tem); tem = XCDR (tem))
1262 {
1263 Lisp_Object prompt;
1264
1265 maps[i++] = keymap = get_keymap (XCAR (tem), 1, 0);
1266
1267 prompt = Fkeymap_prompt (keymap);
1268 if (NILP (title) && !NILP (prompt))
1269 title = prompt;
1270 }
1271
1272 /* Extract the detailed info to make one pane. */
1273 keymap_panes (maps, nmaps);
1274
1275 /* Make the title be the pane title of the first pane. */
1276 if (!NILP (title) && menu_items_n_panes >= 0)
1277 ASET (menu_items, MENU_ITEMS_PANE_NAME, title);
1278
1279 keymaps = 1;
d311d28c
PE
1280
1281 SAFE_FREE ();
ef7417fd
SM
1282 }
1283 else
1284 {
1285 /* We were given an old-fashioned menu. */
1286 title = Fcar (menu);
1287 CHECK_STRING (title);
1288
1289 list_of_panes (Fcdr (menu));
1290
1291 keymaps = 0;
1292 }
1293
1294 unbind_to (specpdl_count, Qnil);
1295
1296#ifdef HAVE_MENUS
dc92c039 1297#ifdef HAVE_WINDOW_SYSTEM
ef7417fd
SM
1298 /* Hide a previous tip, if any. */
1299 Fx_hide_tip ();
dc92c039 1300#endif
ef7417fd
SM
1301
1302#ifdef HAVE_NTGUI /* FIXME: Is it really w32-specific? --Stef */
1303 /* If resources from a previous popup menu still exist, does nothing
1304 until the `menu_free_timer' has freed them (see w32fns.c). This
1305 can occur if you press ESC or click outside a menu without selecting
1306 a menu item.
1307 */
1308 if (current_popup_menu)
1309 {
1310 discard_menu_items ();
1311 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
1312 UNGCPRO;
1313 return Qnil;
1314 }
1315#endif
1316
1317#ifdef HAVE_NS /* FIXME: ns-specific, why? --Stef */
1318 record_unwind_protect (cleanup_popup_menu, Qnil);
1319#endif
1320
1321 /* Display them in a menu. */
4d7e6e51 1322 block_input ();
ef7417fd
SM
1323
1324 /* FIXME: Use a terminal hook! */
1325#if defined HAVE_NTGUI
1326 selection = w32_menu_show (f, xpos, ypos, for_click,
1327 keymaps, title, &error_name);
1328#elif defined HAVE_NS
1329 selection = ns_menu_show (f, xpos, ypos, for_click,
1330 keymaps, title, &error_name);
1331#else /* MSDOS and X11 */
a6d676d9
CY
1332 /* Assume last_event_timestamp is the timestamp of the button event.
1333 Is this assumption ever violated? We can't use the timestamp
1334 stored within POSITION because there the top bits from the actual
1335 timestamp may be truncated away (Bug#4930). */
ef7417fd
SM
1336 selection = xmenu_show (f, xpos, ypos, for_click,
1337 keymaps, title, &error_name,
a6d676d9 1338 last_event_timestamp);
ef7417fd
SM
1339#endif
1340
4d7e6e51 1341 unblock_input ();
ef7417fd
SM
1342
1343#ifdef HAVE_NS
1344 unbind_to (specpdl_count, Qnil);
1345#else
1346 discard_menu_items ();
1347#endif
1348
1349#ifdef HAVE_NTGUI /* FIXME: Is it really w32-specific? --Stef */
1350 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
1351#endif
1352
1353#endif /* HAVE_MENUS */
1354
1355 UNGCPRO;
1356
42eea0d0 1357 if (error_name) error ("%s", error_name);
ef7417fd
SM
1358 return selection;
1359}
1360
279a1d4b 1361void
971de7fb 1362syms_of_menu (void)
279a1d4b
CY
1363{
1364 staticpro (&menu_items);
1365 menu_items = Qnil;
1366 menu_items_inuse = Qnil;
ef7417fd
SM
1367
1368 defsubr (&Sx_popup_menu);
279a1d4b 1369}