Converted compile-time tests to run-time tests. Menus display!
[emacs.git] / src / menu.c
blob6ec2c411e3185f48fd0acda3135b25722ec78682
1 /* Platform-independent code for terminal communications.
3 Copyright (C) 1986, 1988, 1993-1994, 1996, 1999-2013 Free Software
4 Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #include <config.h>
22 #include <stdio.h>
23 #include <limits.h> /* for INT_MAX */
25 #include "lisp.h"
26 #include "keyboard.h"
27 #include "keymap.h"
28 #include "frame.h"
29 #include "window.h"
30 #include "termhooks.h"
31 #include "blockinput.h"
32 #include "dispextern.h"
34 #ifdef USE_X_TOOLKIT
35 #include "../lwlib/lwlib.h"
36 #endif
38 #ifdef HAVE_WINDOW_SYSTEM
39 #include TERM_HEADER
40 #endif /* HAVE_WINDOW_SYSTEM */
42 #ifdef HAVE_NTGUI
43 # ifdef NTGUI_UNICODE
44 # define unicode_append_menu AppendMenuW
45 # else /* !NTGUI_UNICODE */
46 extern AppendMenuW_Proc unicode_append_menu;
47 # endif /* NTGUI_UNICODE */
48 extern HMENU current_popup_menu;
49 #endif /* HAVE_NTGUI */
51 #include "menu.h"
53 /* Return non-zero if menus can handle radio and toggle buttons. */
54 static bool
55 have_boxes (void)
57 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NTGUI)
58 if (FRAME_WINDOW_P (XFRAME (Vmenu_updating_frame)))
59 return 1;
60 #endif
61 return 0;
64 Lisp_Object menu_items;
66 /* If non-nil, means that the global vars defined here are already in use.
67 Used to detect cases where we try to re-enter this non-reentrant code. */
68 #if ! (defined USE_GTK || defined USE_MOTIF)
69 static
70 #endif
71 Lisp_Object menu_items_inuse;
73 /* Number of slots currently allocated in menu_items. */
74 int menu_items_allocated;
76 /* This is the index in menu_items of the first empty slot. */
77 int menu_items_used;
79 /* The number of panes currently recorded in menu_items,
80 excluding those within submenus. */
81 int menu_items_n_panes;
83 /* Current depth within submenus. */
84 static int menu_items_submenu_depth;
86 void
87 init_menu_items (void)
89 if (!NILP (menu_items_inuse))
90 error ("Trying to use a menu from within a menu-entry");
92 if (NILP (menu_items))
94 menu_items_allocated = 60;
95 menu_items = Fmake_vector (make_number (menu_items_allocated), Qnil);
98 menu_items_inuse = Qt;
99 menu_items_used = 0;
100 menu_items_n_panes = 0;
101 menu_items_submenu_depth = 0;
104 /* Call at the end of generating the data in menu_items. */
106 void
107 finish_menu_items (void)
111 void
112 unuse_menu_items (void)
114 menu_items_inuse = Qnil;
117 /* Call when finished using the data for the current menu
118 in menu_items. */
120 void
121 discard_menu_items (void)
123 /* Free the structure if it is especially large.
124 Otherwise, hold on to it, to save time. */
125 if (menu_items_allocated > 200)
127 menu_items = Qnil;
128 menu_items_allocated = 0;
130 eassert (NILP (menu_items_inuse));
133 /* This undoes save_menu_items, and it is called by the specpdl unwind
134 mechanism. */
136 static void
137 restore_menu_items (Lisp_Object saved)
139 menu_items = XCAR (saved);
140 menu_items_inuse = (! NILP (menu_items) ? Qt : Qnil);
141 menu_items_allocated = (VECTORP (menu_items) ? ASIZE (menu_items) : 0);
142 saved = XCDR (saved);
143 menu_items_used = XINT (XCAR (saved));
144 saved = XCDR (saved);
145 menu_items_n_panes = XINT (XCAR (saved));
146 saved = XCDR (saved);
147 menu_items_submenu_depth = XINT (XCAR (saved));
150 /* Push the whole state of menu_items processing onto the specpdl.
151 It will be restored when the specpdl is unwound. */
153 void
154 save_menu_items (void)
156 Lisp_Object saved = list4 (!NILP (menu_items_inuse) ? menu_items : Qnil,
157 make_number (menu_items_used),
158 make_number (menu_items_n_panes),
159 make_number (menu_items_submenu_depth));
160 record_unwind_protect (restore_menu_items, saved);
161 menu_items_inuse = Qnil;
162 menu_items = Qnil;
166 /* Ensure that there is room for ITEMS items in the menu_items vector. */
168 static void
169 ensure_menu_items (int items)
171 int incr = items - (menu_items_allocated - menu_items_used);
172 if (incr > 0)
174 menu_items = larger_vector (menu_items, incr, INT_MAX);
175 menu_items_allocated = ASIZE (menu_items);
179 #if (defined USE_X_TOOLKIT || defined USE_GTK || defined HAVE_NS \
180 || defined HAVE_NTGUI)
182 /* Begin a submenu. */
184 static void
185 push_submenu_start (void)
187 ensure_menu_items (1);
188 ASET (menu_items, menu_items_used, Qnil);
189 menu_items_used++;
190 menu_items_submenu_depth++;
193 /* End a submenu. */
195 static void
196 push_submenu_end (void)
198 ensure_menu_items (1);
199 ASET (menu_items, menu_items_used, Qlambda);
200 menu_items_used++;
201 menu_items_submenu_depth--;
204 #endif /* USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI */
206 /* Indicate boundary between left and right. */
208 static void
209 push_left_right_boundary (void)
211 ensure_menu_items (1);
212 ASET (menu_items, menu_items_used, Qquote);
213 menu_items_used++;
216 /* Start a new menu pane in menu_items.
217 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */
219 static void
220 push_menu_pane (Lisp_Object name, Lisp_Object prefix_vec)
222 ensure_menu_items (MENU_ITEMS_PANE_LENGTH);
223 if (menu_items_submenu_depth == 0)
224 menu_items_n_panes++;
225 ASET (menu_items, menu_items_used, Qt);
226 menu_items_used++;
227 ASET (menu_items, menu_items_used, name);
228 menu_items_used++;
229 ASET (menu_items, menu_items_used, prefix_vec);
230 menu_items_used++;
233 /* Push one menu item into the current pane. NAME is the string to
234 display. ENABLE if non-nil means this item can be selected. KEY
235 is the key generated by choosing this item, or nil if this item
236 doesn't really have a definition. DEF is the definition of this
237 item. EQUIV is the textual description of the keyboard equivalent
238 for this item (or nil if none). TYPE is the type of this menu
239 item, one of nil, `toggle' or `radio'. */
241 static void
242 push_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)
244 ensure_menu_items (MENU_ITEMS_ITEM_LENGTH);
246 ASET (menu_items, menu_items_used + MENU_ITEMS_ITEM_NAME, name);
247 ASET (menu_items, menu_items_used + MENU_ITEMS_ITEM_ENABLE, enable);
248 ASET (menu_items, menu_items_used + MENU_ITEMS_ITEM_VALUE, key);
249 ASET (menu_items, menu_items_used + MENU_ITEMS_ITEM_EQUIV_KEY, equiv);
250 ASET (menu_items, menu_items_used + MENU_ITEMS_ITEM_DEFINITION, def);
251 ASET (menu_items, menu_items_used + MENU_ITEMS_ITEM_TYPE, type);
252 ASET (menu_items, menu_items_used + MENU_ITEMS_ITEM_SELECTED, selected);
253 ASET (menu_items, menu_items_used + MENU_ITEMS_ITEM_HELP, help);
255 menu_items_used += MENU_ITEMS_ITEM_LENGTH;
258 /* Args passed between single_keymap_panes and single_menu_item. */
259 struct skp
261 Lisp_Object pending_maps;
262 int maxdepth;
263 int notbuttons;
266 static void single_menu_item (Lisp_Object, Lisp_Object, Lisp_Object,
267 void *);
269 /* This is a recursive subroutine of keymap_panes.
270 It handles one keymap, KEYMAP.
271 The other arguments are passed along
272 or point to local variables of the previous function.
274 If we encounter submenus deeper than MAXDEPTH levels, ignore them. */
276 static void
277 single_keymap_panes (Lisp_Object keymap, Lisp_Object pane_name,
278 Lisp_Object prefix, int maxdepth)
280 struct skp skp;
281 struct gcpro gcpro1;
283 skp.pending_maps = Qnil;
284 skp.maxdepth = maxdepth;
285 skp.notbuttons = 0;
287 if (maxdepth <= 0)
288 return;
290 push_menu_pane (pane_name, prefix);
292 if (!have_boxes ())
294 /* Remember index for first item in this pane so we can go back
295 and add a prefix when (if) we see the first button. After
296 that, notbuttons is set to 0, to mark that we have seen a
297 button and all non button items need a prefix. */
298 skp.notbuttons = menu_items_used;
301 GCPRO1 (skp.pending_maps);
302 map_keymap_canonical (keymap, single_menu_item, Qnil, &skp);
303 UNGCPRO;
305 /* Process now any submenus which want to be panes at this level. */
306 while (CONSP (skp.pending_maps))
308 Lisp_Object elt, eltcdr, string;
309 elt = XCAR (skp.pending_maps);
310 eltcdr = XCDR (elt);
311 string = XCAR (eltcdr);
312 /* We no longer discard the @ from the beginning of the string here.
313 Instead, we do this in *menu_show. */
314 single_keymap_panes (Fcar (elt), string, XCDR (eltcdr), maxdepth - 1);
315 skp.pending_maps = XCDR (skp.pending_maps);
319 /* This is a subroutine of single_keymap_panes that handles one
320 keymap entry.
321 KEY is a key in a keymap and ITEM is its binding.
322 SKP->PENDING_MAPS_PTR is a list of keymaps waiting to be made into
323 separate panes.
324 If we encounter submenus deeper than SKP->MAXDEPTH levels, ignore them. */
326 static void
327 single_menu_item (Lisp_Object key, Lisp_Object item, Lisp_Object dummy, void *skp_v)
329 Lisp_Object map, item_string, enabled;
330 struct gcpro gcpro1, gcpro2;
331 bool res;
332 struct skp *skp = skp_v;
334 /* Parse the menu item and leave the result in item_properties. */
335 GCPRO2 (key, item);
336 res = parse_menu_item (item, 0);
337 UNGCPRO;
338 if (!res)
339 return; /* Not a menu item. */
341 map = AREF (item_properties, ITEM_PROPERTY_MAP);
343 enabled = AREF (item_properties, ITEM_PROPERTY_ENABLE);
344 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
346 if (!NILP (map) && SREF (item_string, 0) == '@')
348 if (!NILP (enabled))
349 /* An enabled separate pane. Remember this to handle it later. */
350 skp->pending_maps = Fcons (Fcons (map, Fcons (item_string, key)),
351 skp->pending_maps);
352 return;
355 /* Simulate radio buttons and toggle boxes by putting a prefix in
356 front of them. */
357 if (!have_boxes ())
359 Lisp_Object prefix = Qnil;
360 Lisp_Object type = AREF (item_properties, ITEM_PROPERTY_TYPE);
361 if (!NILP (type))
363 Lisp_Object selected
364 = AREF (item_properties, ITEM_PROPERTY_SELECTED);
366 if (skp->notbuttons)
367 /* The first button. Line up previous items in this menu. */
369 int idx = skp->notbuttons; /* Index for first item this menu. */
370 int submenu = 0;
371 Lisp_Object tem;
372 while (idx < menu_items_used)
375 = AREF (menu_items, idx + MENU_ITEMS_ITEM_NAME);
376 if (NILP (tem))
378 idx++;
379 submenu++; /* Skip sub menu. */
381 else if (EQ (tem, Qlambda))
383 idx++;
384 submenu--; /* End sub menu. */
386 else if (EQ (tem, Qt))
387 idx += 3; /* Skip new pane marker. */
388 else if (EQ (tem, Qquote))
389 idx++; /* Skip a left, right divider. */
390 else
392 if (!submenu && SREF (tem, 0) != '\0'
393 && SREF (tem, 0) != '-')
394 ASET (menu_items, idx + MENU_ITEMS_ITEM_NAME,
395 concat2 (build_string (" "), tem));
396 idx += MENU_ITEMS_ITEM_LENGTH;
399 skp->notbuttons = 0;
402 /* Calculate prefix, if any, for this item. */
403 if (EQ (type, QCtoggle))
404 prefix = build_string (NILP (selected) ? "[ ] " : "[X] ");
405 else if (EQ (type, QCradio))
406 prefix = build_string (NILP (selected) ? "( ) " : "(*) ");
408 /* Not a button. If we have earlier buttons, then we need a prefix. */
409 else if (!skp->notbuttons && SREF (item_string, 0) != '\0'
410 && SREF (item_string, 0) != '-')
411 prefix = build_string (" ");
413 if (!NILP (prefix))
414 item_string = concat2 (prefix, item_string);
417 if (FRAME_TERMCAP_P (XFRAME (Vmenu_updating_frame))
418 && !NILP (map))
419 /* Indicate visually that this is a submenu. */
420 item_string = concat2 (item_string, build_string (" >"));
422 push_menu_item (item_string, enabled, key,
423 AREF (item_properties, ITEM_PROPERTY_DEF),
424 AREF (item_properties, ITEM_PROPERTY_KEYEQ),
425 AREF (item_properties, ITEM_PROPERTY_TYPE),
426 AREF (item_properties, ITEM_PROPERTY_SELECTED),
427 AREF (item_properties, ITEM_PROPERTY_HELP));
429 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (HAVE_NTGUI)
430 /* Display a submenu using the toolkit. */
431 if (FRAME_WINDOW_P (XFRAME (Vmenu_updating_frame))
432 && ! (NILP (map) || NILP (enabled)))
434 push_submenu_start ();
435 single_keymap_panes (map, Qnil, key, skp->maxdepth - 1);
436 push_submenu_end ();
438 #endif
441 /* Look through KEYMAPS, a vector of keymaps that is NMAPS long,
442 and generate menu panes for them in menu_items. */
444 static void
445 keymap_panes (Lisp_Object *keymaps, ptrdiff_t nmaps)
447 ptrdiff_t mapno;
449 init_menu_items ();
451 /* Loop over the given keymaps, making a pane for each map.
452 But don't make a pane that is empty--ignore that map instead.
453 P is the number of panes we have made so far. */
454 for (mapno = 0; mapno < nmaps; mapno++)
455 single_keymap_panes (keymaps[mapno],
456 Fkeymap_prompt (keymaps[mapno]), Qnil, 10);
458 finish_menu_items ();
462 /* Push the items in a single pane defined by the alist PANE. */
463 static void
464 list_of_items (Lisp_Object pane)
466 Lisp_Object tail, item, item1;
468 for (tail = pane; CONSP (tail); tail = XCDR (tail))
470 item = XCAR (tail);
471 if (STRINGP (item))
472 push_menu_item (ENCODE_MENU_STRING (item), Qnil, Qnil, Qt,
473 Qnil, Qnil, Qnil, Qnil);
474 else if (CONSP (item))
476 item1 = XCAR (item);
477 CHECK_STRING (item1);
478 push_menu_item (ENCODE_MENU_STRING (item1), Qt, XCDR (item),
479 Qt, Qnil, Qnil, Qnil, Qnil);
481 else
482 push_left_right_boundary ();
487 /* Push all the panes and items of a menu described by the
488 alist-of-alists MENU.
489 This handles old-fashioned calls to x-popup-menu. */
490 void
491 list_of_panes (Lisp_Object menu)
493 Lisp_Object tail;
495 init_menu_items ();
497 for (tail = menu; CONSP (tail); tail = XCDR (tail))
499 Lisp_Object elt, pane_name, pane_data;
500 elt = XCAR (tail);
501 pane_name = Fcar (elt);
502 CHECK_STRING (pane_name);
503 push_menu_pane (ENCODE_MENU_STRING (pane_name), Qnil);
504 pane_data = Fcdr (elt);
505 CHECK_CONS (pane_data);
506 list_of_items (pane_data);
509 finish_menu_items ();
512 /* Set up data in menu_items for a menu bar item
513 whose event type is ITEM_KEY (with string ITEM_NAME)
514 and whose contents come from the list of keymaps MAPS. */
515 bool
516 parse_single_submenu (Lisp_Object item_key, Lisp_Object item_name,
517 Lisp_Object maps)
519 Lisp_Object length;
520 EMACS_INT len;
521 Lisp_Object *mapvec;
522 ptrdiff_t i;
523 bool top_level_items = 0;
524 USE_SAFE_ALLOCA;
526 length = Flength (maps);
527 len = XINT (length);
529 /* Convert the list MAPS into a vector MAPVEC. */
530 SAFE_ALLOCA_LISP (mapvec, len);
531 for (i = 0; i < len; i++)
533 mapvec[i] = Fcar (maps);
534 maps = Fcdr (maps);
537 /* Loop over the given keymaps, making a pane for each map.
538 But don't make a pane that is empty--ignore that map instead. */
539 for (i = 0; i < len; i++)
541 if (!KEYMAPP (mapvec[i]))
543 /* Here we have a command at top level in the menu bar
544 as opposed to a submenu. */
545 top_level_items = 1;
546 push_menu_pane (Qnil, Qnil);
547 push_menu_item (item_name, Qt, item_key, mapvec[i],
548 Qnil, Qnil, Qnil, Qnil);
550 else
552 Lisp_Object prompt;
553 prompt = Fkeymap_prompt (mapvec[i]);
554 single_keymap_panes (mapvec[i],
555 !NILP (prompt) ? prompt : item_name,
556 item_key, 10);
560 SAFE_FREE ();
561 return top_level_items;
565 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (HAVE_NTGUI)
567 /* Allocate a widget_value, blocking input. */
569 widget_value *
570 xmalloc_widget_value (void)
572 widget_value *value;
574 block_input ();
575 value = malloc_widget_value ();
576 unblock_input ();
578 return value;
581 /* This recursively calls free_widget_value on the tree of widgets.
582 It must free all data that was malloc'ed for these widget_values.
583 In Emacs, many slots are pointers into the data of Lisp_Strings, and
584 must be left alone. */
586 void
587 free_menubar_widget_value_tree (widget_value *wv)
589 if (! wv) return;
591 wv->name = wv->value = wv->key = (char *) 0xDEADBEEF;
593 if (wv->contents && (wv->contents != (widget_value*)1))
595 free_menubar_widget_value_tree (wv->contents);
596 wv->contents = (widget_value *) 0xDEADBEEF;
598 if (wv->next)
600 free_menubar_widget_value_tree (wv->next);
601 wv->next = (widget_value *) 0xDEADBEEF;
603 block_input ();
604 free_widget_value (wv);
605 unblock_input ();
608 /* Create a tree of widget_value objects
609 representing the panes and items
610 in menu_items starting at index START, up to index END. */
612 widget_value *
613 digest_single_submenu (int start, int end, bool top_level_items)
615 widget_value *wv, *prev_wv, *save_wv, *first_wv;
616 int i;
617 int submenu_depth = 0;
618 widget_value **submenu_stack;
619 bool panes_seen = 0;
621 submenu_stack = alloca (menu_items_used * sizeof *submenu_stack);
622 wv = xmalloc_widget_value ();
623 wv->name = "menu";
624 wv->value = 0;
625 wv->enabled = 1;
626 wv->button_type = BUTTON_TYPE_NONE;
627 wv->help = Qnil;
628 first_wv = wv;
629 save_wv = 0;
630 prev_wv = 0;
632 /* Loop over all panes and items made by the preceding call
633 to parse_single_submenu and construct a tree of widget_value objects.
634 Ignore the panes and items used by previous calls to
635 digest_single_submenu, even though those are also in menu_items. */
636 i = start;
637 while (i < end)
639 if (EQ (AREF (menu_items, i), Qnil))
641 submenu_stack[submenu_depth++] = save_wv;
642 save_wv = prev_wv;
643 prev_wv = 0;
644 i++;
646 else if (EQ (AREF (menu_items, i), Qlambda))
648 prev_wv = save_wv;
649 save_wv = submenu_stack[--submenu_depth];
650 i++;
652 else if (EQ (AREF (menu_items, i), Qt)
653 && submenu_depth != 0)
654 i += MENU_ITEMS_PANE_LENGTH;
655 /* Ignore a nil in the item list.
656 It's meaningful only for dialog boxes. */
657 else if (EQ (AREF (menu_items, i), Qquote))
658 i += 1;
659 else if (EQ (AREF (menu_items, i), Qt))
661 /* Create a new pane. */
662 Lisp_Object pane_name;
663 const char *pane_string;
665 panes_seen = 1;
667 pane_name = AREF (menu_items, i + MENU_ITEMS_PANE_NAME);
669 #ifdef HAVE_NTGUI
670 if (STRINGP (pane_name))
672 if (unicode_append_menu)
673 /* Encode as UTF-8 for now. */
674 pane_name = ENCODE_UTF_8 (pane_name);
675 else if (STRING_MULTIBYTE (pane_name))
676 pane_name = ENCODE_SYSTEM (pane_name);
678 ASET (menu_items, i + MENU_ITEMS_PANE_NAME, pane_name);
680 #elif defined (USE_LUCID) && defined (HAVE_XFT)
681 if (STRINGP (pane_name))
683 pane_name = ENCODE_UTF_8 (pane_name);
684 ASET (menu_items, i + MENU_ITEMS_PANE_NAME, pane_name);
686 #elif !defined (HAVE_MULTILINGUAL_MENU)
687 if (STRINGP (pane_name) && STRING_MULTIBYTE (pane_name))
689 pane_name = ENCODE_MENU_STRING (pane_name);
690 ASET (menu_items, i + MENU_ITEMS_PANE_NAME, pane_name);
692 #endif
694 pane_string = (NILP (pane_name)
695 ? "" : SSDATA (pane_name));
696 /* If there is just one top-level pane, put all its items directly
697 under the top-level menu. */
698 if (menu_items_n_panes == 1)
699 pane_string = "";
701 /* If the pane has a meaningful name,
702 make the pane a top-level menu item
703 with its items as a submenu beneath it. */
704 if (strcmp (pane_string, ""))
706 wv = xmalloc_widget_value ();
707 if (save_wv)
708 save_wv->next = wv;
709 else
710 first_wv->contents = wv;
711 wv->lname = pane_name;
712 /* Set value to 1 so update_submenu_strings can handle '@' */
713 wv->value = (char *)1;
714 wv->enabled = 1;
715 wv->button_type = BUTTON_TYPE_NONE;
716 wv->help = Qnil;
717 save_wv = wv;
719 else
720 save_wv = first_wv;
722 prev_wv = 0;
723 i += MENU_ITEMS_PANE_LENGTH;
725 else
727 /* Create a new item within current pane. */
728 Lisp_Object item_name, enable, descrip, def, type, selected;
729 Lisp_Object help;
731 /* All items should be contained in panes. */
732 if (! panes_seen)
733 emacs_abort ();
735 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
736 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
737 descrip = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
738 def = AREF (menu_items, i + MENU_ITEMS_ITEM_DEFINITION);
739 type = AREF (menu_items, i + MENU_ITEMS_ITEM_TYPE);
740 selected = AREF (menu_items, i + MENU_ITEMS_ITEM_SELECTED);
741 help = AREF (menu_items, i + MENU_ITEMS_ITEM_HELP);
743 #ifdef HAVE_NTGUI
744 if (STRINGP (item_name))
746 if (unicode_append_menu)
747 item_name = ENCODE_UTF_8 (item_name);
748 else if (STRING_MULTIBYTE (item_name))
749 item_name = ENCODE_SYSTEM (item_name);
751 ASET (menu_items, i + MENU_ITEMS_ITEM_NAME, item_name);
754 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
756 descrip = ENCODE_SYSTEM (descrip);
757 ASET (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY, descrip);
759 #elif USE_LUCID
760 if (STRINGP (item_name))
762 item_name = ENCODE_UTF_8 (item_name);
763 ASET (menu_items, i + MENU_ITEMS_ITEM_NAME, item_name);
766 if (STRINGP (descrip))
768 descrip = ENCODE_UTF_8 (descrip);
769 ASET (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY, descrip);
771 #elif !defined (HAVE_MULTILINGUAL_MENU)
772 if (STRING_MULTIBYTE (item_name))
774 item_name = ENCODE_MENU_STRING (item_name);
775 ASET (menu_items, i + MENU_ITEMS_ITEM_NAME, item_name);
778 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
780 descrip = ENCODE_MENU_STRING (descrip);
781 ASET (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY, descrip);
783 #endif
785 wv = xmalloc_widget_value ();
786 if (prev_wv)
787 prev_wv->next = wv;
788 else
789 save_wv->contents = wv;
791 wv->lname = item_name;
792 if (!NILP (descrip))
793 wv->lkey = descrip;
794 wv->value = 0;
795 /* The intptr_t cast avoids a warning. There's no problem
796 as long as pointers have enough bits to hold small integers. */
797 wv->call_data = (!NILP (def) ? (void *) (intptr_t) i : 0);
798 wv->enabled = !NILP (enable);
800 if (NILP (type))
801 wv->button_type = BUTTON_TYPE_NONE;
802 else if (EQ (type, QCradio))
803 wv->button_type = BUTTON_TYPE_RADIO;
804 else if (EQ (type, QCtoggle))
805 wv->button_type = BUTTON_TYPE_TOGGLE;
806 else
807 emacs_abort ();
809 wv->selected = !NILP (selected);
810 if (! STRINGP (help))
811 help = Qnil;
813 wv->help = help;
815 prev_wv = wv;
817 i += MENU_ITEMS_ITEM_LENGTH;
821 /* If we have just one "menu item"
822 that was originally a button, return it by itself. */
823 if (top_level_items && first_wv->contents && first_wv->contents->next == 0)
825 wv = first_wv->contents;
826 free_widget_value (first_wv);
827 return wv;
830 return first_wv;
833 /* Walk through the widget_value tree starting at FIRST_WV and update
834 the char * pointers from the corresponding lisp values.
835 We do this after building the whole tree, since GC may happen while the
836 tree is constructed, and small strings are relocated. So we must wait
837 until no GC can happen before storing pointers into lisp values. */
838 void
839 update_submenu_strings (widget_value *first_wv)
841 widget_value *wv;
843 for (wv = first_wv; wv; wv = wv->next)
845 if (STRINGP (wv->lname))
847 wv->name = SSDATA (wv->lname);
849 /* Ignore the @ that means "separate pane".
850 This is a kludge, but this isn't worth more time. */
851 if (wv->value == (char *)1)
853 if (wv->name[0] == '@')
854 wv->name++;
855 wv->value = 0;
859 if (STRINGP (wv->lkey))
860 wv->key = SSDATA (wv->lkey);
862 if (wv->contents)
863 update_submenu_strings (wv->contents);
867 /* Find the menu selection and store it in the keyboard buffer.
868 F is the frame the menu is on.
869 MENU_BAR_ITEMS_USED is the length of VECTOR.
870 VECTOR is an array of menu events for the whole menu. */
872 void
873 find_and_call_menu_selection (struct frame *f, int menu_bar_items_used,
874 Lisp_Object vector, void *client_data)
876 Lisp_Object prefix, entry;
877 Lisp_Object *subprefix_stack;
878 int submenu_depth = 0;
879 int i;
881 entry = Qnil;
882 subprefix_stack = alloca (menu_bar_items_used * sizeof *subprefix_stack);
883 prefix = Qnil;
884 i = 0;
886 while (i < menu_bar_items_used)
888 if (EQ (AREF (vector, i), Qnil))
890 subprefix_stack[submenu_depth++] = prefix;
891 prefix = entry;
892 i++;
894 else if (EQ (AREF (vector, i), Qlambda))
896 prefix = subprefix_stack[--submenu_depth];
897 i++;
899 else if (EQ (AREF (vector, i), Qt))
901 prefix = AREF (vector, i + MENU_ITEMS_PANE_PREFIX);
902 i += MENU_ITEMS_PANE_LENGTH;
904 else
906 entry = AREF (vector, i + MENU_ITEMS_ITEM_VALUE);
907 /* Treat the pointer as an integer. There's no problem
908 as long as pointers have enough bits to hold small integers. */
909 if ((intptr_t) client_data == i)
911 int j;
912 struct input_event buf;
913 Lisp_Object frame;
914 EVENT_INIT (buf);
916 XSETFRAME (frame, f);
917 buf.kind = MENU_BAR_EVENT;
918 buf.frame_or_window = frame;
919 buf.arg = frame;
920 kbd_buffer_store_event (&buf);
922 for (j = 0; j < submenu_depth; j++)
923 if (!NILP (subprefix_stack[j]))
925 buf.kind = MENU_BAR_EVENT;
926 buf.frame_or_window = frame;
927 buf.arg = subprefix_stack[j];
928 kbd_buffer_store_event (&buf);
931 if (!NILP (prefix))
933 buf.kind = MENU_BAR_EVENT;
934 buf.frame_or_window = frame;
935 buf.arg = prefix;
936 kbd_buffer_store_event (&buf);
939 buf.kind = MENU_BAR_EVENT;
940 buf.frame_or_window = frame;
941 buf.arg = entry;
942 kbd_buffer_store_event (&buf);
944 return;
946 i += MENU_ITEMS_ITEM_LENGTH;
951 #endif /* USE_X_TOOLKIT || USE_GTK || HAVE_NS || HAVE_NTGUI */
953 #ifdef HAVE_NS
954 /* As above, but return the menu selection instead of storing in kb buffer.
955 If KEYMAPS, return full prefixes to selection. */
956 Lisp_Object
957 find_and_return_menu_selection (struct frame *f, bool keymaps, void *client_data)
959 Lisp_Object prefix, entry;
960 int i;
961 Lisp_Object *subprefix_stack;
962 int submenu_depth = 0;
964 prefix = entry = Qnil;
965 i = 0;
966 subprefix_stack = alloca (menu_items_used * word_size);
968 while (i < menu_items_used)
970 if (EQ (AREF (menu_items, i), Qnil))
972 subprefix_stack[submenu_depth++] = prefix;
973 prefix = entry;
974 i++;
976 else if (EQ (AREF (menu_items, i), Qlambda))
978 prefix = subprefix_stack[--submenu_depth];
979 i++;
981 else if (EQ (AREF (menu_items, i), Qt))
983 prefix
984 = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
985 i += MENU_ITEMS_PANE_LENGTH;
987 /* Ignore a nil in the item list.
988 It's meaningful only for dialog boxes. */
989 else if (EQ (AREF (menu_items, i), Qquote))
990 i += 1;
991 else
993 entry
994 = AREF (menu_items, i + MENU_ITEMS_ITEM_VALUE);
995 if (aref_addr (menu_items, i) == client_data)
997 if (keymaps)
999 int j;
1001 entry = list1 (entry);
1002 if (!NILP (prefix))
1003 entry = Fcons (prefix, entry);
1004 for (j = submenu_depth - 1; j >= 0; j--)
1005 if (!NILP (subprefix_stack[j]))
1006 entry = Fcons (subprefix_stack[j], entry);
1008 return entry;
1010 i += MENU_ITEMS_ITEM_LENGTH;
1013 return Qnil;
1015 #endif /* HAVE_NS */
1017 DEFUN ("x-popup-menu", Fx_popup_menu, Sx_popup_menu, 2, 2, 0,
1018 doc: /* Pop up a deck-of-cards menu and return user's selection.
1019 POSITION is a position specification. This is either a mouse button event
1020 or a list ((XOFFSET YOFFSET) WINDOW)
1021 where XOFFSET and YOFFSET are positions in pixels from the top left
1022 corner of WINDOW. (WINDOW may be a window or a frame object.)
1023 This controls the position of the top left of the menu as a whole.
1024 If POSITION is t, it means to use the current mouse position.
1026 MENU is a specifier for a menu. For the simplest case, MENU is a keymap.
1027 The menu items come from key bindings that have a menu string as well as
1028 a definition; actually, the "definition" in such a key binding looks like
1029 \(STRING . REAL-DEFINITION). To give the menu a title, put a string into
1030 the keymap as a top-level element.
1032 If REAL-DEFINITION is nil, that puts a nonselectable string in the menu.
1033 Otherwise, REAL-DEFINITION should be a valid key binding definition.
1035 You can also use a list of keymaps as MENU.
1036 Then each keymap makes a separate pane.
1038 When MENU is a keymap or a list of keymaps, the return value is the
1039 list of events corresponding to the user's choice. Note that
1040 `x-popup-menu' does not actually execute the command bound to that
1041 sequence of events.
1043 Alternatively, you can specify a menu of multiple panes
1044 with a list of the form (TITLE PANE1 PANE2...),
1045 where each pane is a list of form (TITLE ITEM1 ITEM2...).
1046 Each ITEM is normally a cons cell (STRING . VALUE);
1047 but a string can appear as an item--that makes a nonselectable line
1048 in the menu.
1049 With this form of menu, the return value is VALUE from the chosen item.
1051 If POSITION is nil, don't display the menu at all, just precalculate the
1052 cached information about equivalent key sequences.
1054 If the user gets rid of the menu without making a valid choice, for
1055 instance by clicking the mouse away from a valid choice or by typing
1056 keyboard input, then this normally results in a quit and
1057 `x-popup-menu' does not return. But if POSITION is a mouse button
1058 event (indicating that the user invoked the menu with the mouse) then
1059 no quit occurs and `x-popup-menu' returns nil. */)
1060 (Lisp_Object position, Lisp_Object menu)
1062 Lisp_Object keymap, tem;
1063 int xpos = 0, ypos = 0;
1064 Lisp_Object title;
1065 const char *error_name = NULL;
1066 Lisp_Object selection = Qnil;
1067 struct frame *f = NULL;
1068 Lisp_Object x, y, window;
1069 bool keymaps = 0;
1070 bool for_click = 0;
1071 ptrdiff_t specpdl_count = SPECPDL_INDEX ();
1072 struct gcpro gcpro1;
1074 if (NILP (position))
1075 /* This is an obsolete call, which wants us to precompute the
1076 keybinding equivalents, but we don't do that any more anyway. */
1077 return Qnil;
1079 #ifdef HAVE_MENUS
1081 bool get_current_pos_p = 0;
1083 /* Decode the first argument: find the window and the coordinates. */
1084 if (EQ (position, Qt)
1085 || (CONSP (position) && (EQ (XCAR (position), Qmenu_bar)
1086 || EQ (XCAR (position), Qtool_bar))))
1088 get_current_pos_p = 1;
1090 else
1092 tem = Fcar (position);
1093 if (CONSP (tem))
1095 window = Fcar (Fcdr (position));
1096 x = XCAR (tem);
1097 y = Fcar (XCDR (tem));
1099 else
1101 for_click = 1;
1102 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
1103 window = Fcar (tem); /* POSN_WINDOW (tem) */
1104 tem = Fcar (Fcdr (Fcdr (tem))); /* POSN_WINDOW_POSN (tem) */
1105 x = Fcar (tem);
1106 y = Fcdr (tem);
1109 /* If a click happens in an external tool bar or a detached
1110 tool bar, x and y is NIL. In that case, use the current
1111 mouse position. This happens for the help button in the
1112 tool bar. Ideally popup-menu should pass NIL to
1113 this function, but it doesn't. */
1114 if (NILP (x) && NILP (y))
1115 get_current_pos_p = 1;
1118 if (get_current_pos_p)
1120 /* Use the mouse's current position. */
1121 struct frame *new_f = SELECTED_FRAME ();
1122 #ifdef HAVE_X_WINDOWS
1123 /* Can't use mouse_position_hook for X since it returns
1124 coordinates relative to the window the mouse is in,
1125 we need coordinates relative to the edit widget always. */
1126 if (new_f != 0)
1128 int cur_x, cur_y;
1130 mouse_position_for_popup (new_f, &cur_x, &cur_y);
1131 /* cur_x/y may be negative, so use make_number. */
1132 x = make_number (cur_x);
1133 y = make_number (cur_y);
1136 #else /* not HAVE_X_WINDOWS */
1137 Lisp_Object bar_window;
1138 enum scroll_bar_part part;
1139 Time time;
1140 void (*mouse_position_hook) (struct frame **, int,
1141 Lisp_Object *,
1142 enum scroll_bar_part *,
1143 Lisp_Object *,
1144 Lisp_Object *,
1145 Time *) =
1146 FRAME_TERMINAL (new_f)->mouse_position_hook;
1148 if (mouse_position_hook)
1149 (*mouse_position_hook) (&new_f, 1, &bar_window,
1150 &part, &x, &y, &time);
1151 #endif /* not HAVE_X_WINDOWS */
1153 if (new_f != 0)
1154 XSETFRAME (window, new_f);
1155 else
1157 window = selected_window;
1158 XSETFASTINT (x, 0);
1159 XSETFASTINT (y, 0);
1163 /* Decode where to put the menu. */
1165 if (FRAMEP (window))
1167 f = XFRAME (window);
1168 xpos = 0;
1169 ypos = 0;
1171 else if (WINDOWP (window))
1173 struct window *win = XWINDOW (window);
1174 CHECK_LIVE_WINDOW (window);
1175 f = XFRAME (WINDOW_FRAME (win));
1177 xpos = WINDOW_LEFT_EDGE_X (win);
1178 ypos = WINDOW_TOP_EDGE_Y (win);
1180 else
1181 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
1182 but I don't want to make one now. */
1183 CHECK_WINDOW (window);
1185 CHECK_RANGED_INTEGER (x,
1186 (xpos < INT_MIN - MOST_NEGATIVE_FIXNUM
1187 ? (EMACS_INT) INT_MIN - xpos
1188 : MOST_NEGATIVE_FIXNUM),
1189 INT_MAX - xpos);
1190 CHECK_RANGED_INTEGER (y,
1191 (ypos < INT_MIN - MOST_NEGATIVE_FIXNUM
1192 ? (EMACS_INT) INT_MIN - ypos
1193 : MOST_NEGATIVE_FIXNUM),
1194 INT_MAX - ypos);
1195 xpos += XINT (x);
1196 ypos += XINT (y);
1198 XSETFRAME (Vmenu_updating_frame, f);
1200 #endif /* HAVE_MENUS */
1202 /* Now parse the lisp menus. */
1203 record_unwind_protect_void (unuse_menu_items);
1205 title = Qnil;
1206 GCPRO1 (title);
1208 /* Decode the menu items from what was specified. */
1210 keymap = get_keymap (menu, 0, 0);
1211 if (CONSP (keymap))
1213 /* We were given a keymap. Extract menu info from the keymap. */
1214 Lisp_Object prompt;
1216 /* Extract the detailed info to make one pane. */
1217 keymap_panes (&menu, 1);
1219 /* Search for a string appearing directly as an element of the keymap.
1220 That string is the title of the menu. */
1221 prompt = Fkeymap_prompt (keymap);
1222 if (!NILP (prompt))
1223 title = prompt;
1224 #ifdef HAVE_NS /* Is that needed and NS-specific? --Stef */
1225 else
1226 title = build_string ("Select");
1227 #endif
1229 /* Make that be the pane title of the first pane. */
1230 if (!NILP (prompt) && menu_items_n_panes >= 0)
1231 ASET (menu_items, MENU_ITEMS_PANE_NAME, prompt);
1233 keymaps = 1;
1235 else if (CONSP (menu) && KEYMAPP (XCAR (menu)))
1237 /* We were given a list of keymaps. */
1238 EMACS_INT nmaps = XFASTINT (Flength (menu));
1239 Lisp_Object *maps;
1240 ptrdiff_t i;
1241 USE_SAFE_ALLOCA;
1243 SAFE_ALLOCA_LISP (maps, nmaps);
1244 title = Qnil;
1246 /* The first keymap that has a prompt string
1247 supplies the menu title. */
1248 for (tem = menu, i = 0; CONSP (tem); tem = XCDR (tem))
1250 Lisp_Object prompt;
1252 maps[i++] = keymap = get_keymap (XCAR (tem), 1, 0);
1254 prompt = Fkeymap_prompt (keymap);
1255 if (NILP (title) && !NILP (prompt))
1256 title = prompt;
1259 /* Extract the detailed info to make one pane. */
1260 keymap_panes (maps, nmaps);
1262 /* Make the title be the pane title of the first pane. */
1263 if (!NILP (title) && menu_items_n_panes >= 0)
1264 ASET (menu_items, MENU_ITEMS_PANE_NAME, title);
1266 keymaps = 1;
1268 SAFE_FREE ();
1270 else
1272 /* We were given an old-fashioned menu. */
1273 title = Fcar (menu);
1274 CHECK_STRING (title);
1276 list_of_panes (Fcdr (menu));
1278 keymaps = 0;
1281 unbind_to (specpdl_count, Qnil);
1283 #ifdef HAVE_MENUS
1284 #ifdef HAVE_WINDOW_SYSTEM
1285 /* Hide a previous tip, if any. */
1286 if (!FRAME_TERMCAP_P (f))
1287 Fx_hide_tip ();
1288 #endif
1290 #ifdef HAVE_NTGUI /* FIXME: Is it really w32-specific? --Stef */
1291 /* If resources from a previous popup menu still exist, does nothing
1292 until the `menu_free_timer' has freed them (see w32fns.c). This
1293 can occur if you press ESC or click outside a menu without selecting
1294 a menu item.
1296 if (current_popup_menu && FRAME_W32_P (f))
1298 discard_menu_items ();
1299 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
1300 UNGCPRO;
1301 return Qnil;
1303 #endif
1305 #ifdef HAVE_NS /* FIXME: ns-specific, why? --Stef */
1306 record_unwind_protect_void (discard_menu_items);
1307 #endif
1309 /* Display them in a menu. */
1310 block_input ();
1312 /* FIXME: Use a terminal hook! */
1313 #if defined HAVE_NTGUI
1314 if (FRAME_W32_P (f))
1315 selection = w32_menu_show (f, xpos, ypos, for_click,
1316 keymaps, title, &error_name);
1317 else
1318 #endif
1319 #if defined HAVE_NS
1320 if (FRAME_NS_P (f))
1321 selection = ns_menu_show (f, xpos, ypos, for_click,
1322 keymaps, title, &error_name);
1323 else
1324 #endif
1325 #if (defined (HAVE_X_WINDOWS) || defined (MSDOS))
1326 /* Assume last_event_timestamp is the timestamp of the button event.
1327 Is this assumption ever violated? We can't use the timestamp
1328 stored within POSITION because there the top bits from the actual
1329 timestamp may be truncated away (Bug#4930). */
1330 if (FRAME_X_P (f) || FRAME_MSDOS_P (f))
1331 selection = xmenu_show (f, xpos, ypos, for_click,
1332 keymaps, title, &error_name,
1333 last_event_timestamp);
1334 else
1335 #endif
1336 if (FRAME_TERMCAP_P (f))
1337 selection = tty_menu_show (f, xpos, ypos, for_click,
1338 keymaps, title, &error_name);
1340 unblock_input ();
1342 #ifdef HAVE_NS
1343 unbind_to (specpdl_count, Qnil);
1344 #else
1345 discard_menu_items ();
1346 #endif
1348 #ifdef HAVE_NTGUI /* FIXME: Is it really w32-specific? --Stef */
1349 if (FRAME_W32_P (f))
1350 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
1351 #endif
1353 #endif /* HAVE_MENUS */
1355 UNGCPRO;
1357 if (error_name) error ("%s", error_name);
1358 return selection;
1361 void
1362 syms_of_menu (void)
1364 staticpro (&menu_items);
1365 menu_items = Qnil;
1366 menu_items_inuse = Qnil;
1368 defsubr (&Sx_popup_menu);