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