Merge cygw32
[bpt/emacs.git] / src / menu.c
1 /* Platform-independent code for terminal communications.
2
3 Copyright (C) 1986, 1988, 1993-1994, 1996, 1999-2012
4 Free Software Foundation, Inc.
5
6 This file is part of GNU Emacs.
7
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.
12
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.
17
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/>. */
20
21 #include <config.h>
22 #include <stdio.h>
23 #include <limits.h> /* for INT_MAX */
24
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"
33
34 #ifdef USE_X_TOOLKIT
35 #include "../lwlib/lwlib.h"
36 #endif
37
38 #ifdef HAVE_WINDOW_SYSTEM
39 #include TERM_HEADER
40 #endif /* HAVE_WINDOW_SYSTEM */
41
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 */
50
51 #include "menu.h"
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
58 Lisp_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. */
62 #if ! (defined USE_GTK || defined USE_MOTIF)
63 static
64 #endif
65 Lisp_Object menu_items_inuse;
66
67 /* Number of slots currently allocated in menu_items. */
68 int menu_items_allocated;
69
70 /* This is the index in menu_items of the first empty slot. */
71 int menu_items_used;
72
73 /* The number of panes currently recorded in menu_items,
74 excluding those within submenus. */
75 int menu_items_n_panes;
76
77 /* Current depth within submenus. */
78 static int menu_items_submenu_depth;
79
80 void
81 init_menu_items (void)
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
100 void
101 finish_menu_items (void)
102 {
103 }
104
105 Lisp_Object
106 unuse_menu_items (Lisp_Object dummy)
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
114 void
115 discard_menu_items (void)
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 }
124 eassert (NILP (menu_items_inuse));
125 }
126
127 #ifdef HAVE_NS
128 static Lisp_Object
129 cleanup_popup_menu (Lisp_Object arg)
130 {
131 discard_menu_items ();
132 return Qnil;
133 }
134 #endif
135
136 /* This undoes save_menu_items, and it is called by the specpdl unwind
137 mechanism. */
138
139 static Lisp_Object
140 restore_menu_items (Lisp_Object saved)
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
157 void
158 save_menu_items (void)
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
170 /* Ensure that there is room for ITEMS items in the menu_items vector. */
171
172 static void
173 ensure_menu_items (int items)
174 {
175 int incr = items - (menu_items_allocated - menu_items_used);
176 if (0 < incr)
177 {
178 menu_items = larger_vector (menu_items, incr, INT_MAX);
179 menu_items_allocated = ASIZE (menu_items);
180 }
181 }
182
183 #if (defined USE_X_TOOLKIT || defined USE_GTK || defined HAVE_NS \
184 || defined HAVE_NTGUI)
185
186 /* Begin a submenu. */
187
188 static void
189 push_submenu_start (void)
190 {
191 ensure_menu_items (1);
192 ASET (menu_items, menu_items_used, Qnil);
193 menu_items_used++;
194 menu_items_submenu_depth++;
195 }
196
197 /* End a submenu. */
198
199 static void
200 push_submenu_end (void)
201 {
202 ensure_menu_items (1);
203 ASET (menu_items, menu_items_used, Qlambda);
204 menu_items_used++;
205 menu_items_submenu_depth--;
206 }
207
208 #endif /* USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI */
209
210 /* Indicate boundary between left and right. */
211
212 static void
213 push_left_right_boundary (void)
214 {
215 ensure_menu_items (1);
216 ASET (menu_items, menu_items_used, Qquote);
217 menu_items_used++;
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
223 static void
224 push_menu_pane (Lisp_Object name, Lisp_Object prefix_vec)
225 {
226 ensure_menu_items (MENU_ITEMS_PANE_LENGTH);
227 if (menu_items_submenu_depth == 0)
228 menu_items_n_panes++;
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++;
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
245 static void
246 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)
247 {
248 ensure_menu_items (MENU_ITEMS_ITEM_LENGTH);
249
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;
260 }
261
262 /* Args passed between single_keymap_panes and single_menu_item. */
263 struct skp
264 {
265 Lisp_Object pending_maps;
266 int maxdepth;
267 int notbuttons;
268 };
269
270 static void single_menu_item (Lisp_Object, Lisp_Object, Lisp_Object,
271 void *);
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.
277
278 If we encounter submenus deeper than MAXDEPTH levels, ignore them. */
279
280 static void
281 single_keymap_panes (Lisp_Object keymap, Lisp_Object pane_name,
282 Lisp_Object prefix, int maxdepth)
283 {
284 struct skp skp;
285 struct gcpro gcpro1;
286
287 skp.pending_maps = Qnil;
288 skp.maxdepth = maxdepth;
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. */
317 single_keymap_panes (Fcar (elt), string, XCDR (eltcdr), maxdepth - 1);
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.
327 If we encounter submenus deeper than SKP->MAXDEPTH levels, ignore them. */
328
329 static void
330 single_menu_item (Lisp_Object key, Lisp_Object item, Lisp_Object dummy, void *skp_v)
331 {
332 Lisp_Object map, item_string, enabled;
333 struct gcpro gcpro1, gcpro2;
334 int res;
335 struct skp *skp = skp_v;
336
337 /* Parse the menu item and leave the result in item_properties. */
338 GCPRO2 (key, item);
339 res = parse_menu_item (item, 0);
340 UNGCPRO;
341 if (!res)
342 return; /* Not a menu item. */
343
344 map = AREF (item_properties, ITEM_PROPERTY_MAP);
345
346 enabled = AREF (item_properties, ITEM_PROPERTY_ENABLE);
347 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
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
358 #if defined (HAVE_X_WINDOWS) || defined (MSDOS)
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;
364 Lisp_Object type = AREF (item_properties, ITEM_PROPERTY_TYPE);
365 if (!NILP (type))
366 {
367 Lisp_Object selected
368 = AREF (item_properties, ITEM_PROPERTY_SELECTED);
369
370 if (skp->notbuttons)
371 /* The first button. Line up previous items in this menu. */
372 {
373 int idx = skp->notbuttons; /* Index for first item this menu. */
374 int submenu = 0;
375 Lisp_Object tem;
376 while (idx < menu_items_used)
377 {
378 tem
379 = AREF (menu_items, idx + MENU_ITEMS_ITEM_NAME);
380 if (NILP (tem))
381 {
382 idx++;
383 submenu++; /* Skip sub menu. */
384 }
385 else if (EQ (tem, Qlambda))
386 {
387 idx++;
388 submenu--; /* End sub menu. */
389 }
390 else if (EQ (tem, Qt))
391 idx += 3; /* Skip new pane marker. */
392 else if (EQ (tem, Qquote))
393 idx++; /* Skip a left, right divider. */
394 else
395 {
396 if (!submenu && SREF (tem, 0) != '\0'
397 && SREF (tem, 0) != '-')
398 ASET (menu_items, idx + MENU_ITEMS_ITEM_NAME,
399 concat2 (build_string (" "), tem));
400 idx += MENU_ITEMS_ITEM_LENGTH;
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
428 #endif /* HAVE_X_WINDOWS || MSDOS */
429
430 push_menu_item (item_string, enabled, key,
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));
436
437 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (HAVE_NTGUI)
438 /* Display a submenu using the toolkit. */
439 if (! (NILP (map) || NILP (enabled)))
440 {
441 push_submenu_start ();
442 single_keymap_panes (map, Qnil, key, skp->maxdepth - 1);
443 push_submenu_end ();
444 }
445 #endif
446 }
447
448 /* Look through KEYMAPS, a vector of keymaps that is NMAPS long,
449 and generate menu panes for them in menu_items. */
450
451 static void
452 keymap_panes (Lisp_Object *keymaps, ptrdiff_t nmaps)
453 {
454 ptrdiff_t mapno;
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],
463 Fkeymap_prompt (keymaps[mapno]), Qnil, 10);
464
465 finish_menu_items ();
466 }
467
468
469 /* Push the items in a single pane defined by the alist PANE. */
470 static void
471 list_of_items (Lisp_Object pane)
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. */
497 void
498 list_of_panes (Lisp_Object menu)
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. */
522 int
523 parse_single_submenu (Lisp_Object item_key, Lisp_Object item_name, Lisp_Object maps)
524 {
525 Lisp_Object length;
526 EMACS_INT len;
527 Lisp_Object *mapvec;
528 ptrdiff_t i;
529 int top_level_items = 0;
530 USE_SAFE_ALLOCA;
531
532 length = Flength (maps);
533 len = XINT (length);
534
535 /* Convert the list MAPS into a vector MAPVEC. */
536 SAFE_ALLOCA_LISP (mapvec, len);
537 for (i = 0; i < len; i++)
538 {
539 mapvec[i] = Fcar (maps);
540 maps = Fcdr (maps);
541 }
542
543 /* Loop over the given keymaps, making a pane for each map.
544 But don't make a pane that is empty--ignore that map instead. */
545 for (i = 0; i < len; i++)
546 {
547 if (!KEYMAPP (mapvec[i]))
548 {
549 /* Here we have a command at top level in the menu bar
550 as opposed to a submenu. */
551 top_level_items = 1;
552 push_menu_pane (Qnil, Qnil);
553 push_menu_item (item_name, Qt, item_key, mapvec[i],
554 Qnil, Qnil, Qnil, Qnil);
555 }
556 else
557 {
558 Lisp_Object prompt;
559 prompt = Fkeymap_prompt (mapvec[i]);
560 single_keymap_panes (mapvec[i],
561 !NILP (prompt) ? prompt : item_name,
562 item_key, 10);
563 }
564 }
565
566 SAFE_FREE ();
567 return top_level_items;
568 }
569
570 \f
571 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (HAVE_NTGUI)
572
573 /* Allocate a widget_value, blocking input. */
574
575 widget_value *
576 xmalloc_widget_value (void)
577 {
578 widget_value *value;
579
580 block_input ();
581 value = malloc_widget_value ();
582 unblock_input ();
583
584 return value;
585 }
586
587 /* This recursively calls free_widget_value on the tree of widgets.
588 It must free all data that was malloc'ed for these widget_values.
589 In Emacs, many slots are pointers into the data of Lisp_Strings, and
590 must be left alone. */
591
592 void
593 free_menubar_widget_value_tree (widget_value *wv)
594 {
595 if (! wv) return;
596
597 wv->name = wv->value = wv->key = (char *) 0xDEADBEEF;
598
599 if (wv->contents && (wv->contents != (widget_value*)1))
600 {
601 free_menubar_widget_value_tree (wv->contents);
602 wv->contents = (widget_value *) 0xDEADBEEF;
603 }
604 if (wv->next)
605 {
606 free_menubar_widget_value_tree (wv->next);
607 wv->next = (widget_value *) 0xDEADBEEF;
608 }
609 block_input ();
610 free_widget_value (wv);
611 unblock_input ();
612 }
613
614 /* Create a tree of widget_value objects
615 representing the panes and items
616 in menu_items starting at index START, up to index END. */
617
618 widget_value *
619 digest_single_submenu (int start, int end, int top_level_items)
620 {
621 widget_value *wv, *prev_wv, *save_wv, *first_wv;
622 int i;
623 int submenu_depth = 0;
624 widget_value **submenu_stack;
625 int panes_seen = 0;
626
627 submenu_stack = alloca (menu_items_used * sizeof *submenu_stack);
628 wv = xmalloc_widget_value ();
629 wv->name = "menu";
630 wv->value = 0;
631 wv->enabled = 1;
632 wv->button_type = BUTTON_TYPE_NONE;
633 wv->help = Qnil;
634 first_wv = wv;
635 save_wv = 0;
636 prev_wv = 0;
637
638 /* Loop over all panes and items made by the preceding call
639 to parse_single_submenu and construct a tree of widget_value objects.
640 Ignore the panes and items used by previous calls to
641 digest_single_submenu, even though those are also in menu_items. */
642 i = start;
643 while (i < end)
644 {
645 if (EQ (AREF (menu_items, i), Qnil))
646 {
647 submenu_stack[submenu_depth++] = save_wv;
648 save_wv = prev_wv;
649 prev_wv = 0;
650 i++;
651 }
652 else if (EQ (AREF (menu_items, i), Qlambda))
653 {
654 prev_wv = save_wv;
655 save_wv = submenu_stack[--submenu_depth];
656 i++;
657 }
658 else if (EQ (AREF (menu_items, i), Qt)
659 && submenu_depth != 0)
660 i += MENU_ITEMS_PANE_LENGTH;
661 /* Ignore a nil in the item list.
662 It's meaningful only for dialog boxes. */
663 else if (EQ (AREF (menu_items, i), Qquote))
664 i += 1;
665 else if (EQ (AREF (menu_items, i), Qt))
666 {
667 /* Create a new pane. */
668 Lisp_Object pane_name;
669 const char *pane_string;
670
671 panes_seen++;
672
673 pane_name = AREF (menu_items, i + MENU_ITEMS_PANE_NAME);
674
675 #ifdef HAVE_NTGUI
676 if (STRINGP (pane_name))
677 {
678 if (unicode_append_menu)
679 /* Encode as UTF-8 for now. */
680 pane_name = ENCODE_UTF_8 (pane_name);
681 else if (STRING_MULTIBYTE (pane_name))
682 pane_name = ENCODE_SYSTEM (pane_name);
683
684 ASET (menu_items, i + MENU_ITEMS_PANE_NAME, pane_name);
685 }
686 #elif defined (USE_LUCID) && defined (HAVE_XFT)
687 if (STRINGP (pane_name))
688 {
689 pane_name = ENCODE_UTF_8 (pane_name);
690 ASET (menu_items, i + MENU_ITEMS_PANE_NAME, pane_name);
691 }
692 #elif !defined (HAVE_MULTILINGUAL_MENU)
693 if (STRINGP (pane_name) && STRING_MULTIBYTE (pane_name))
694 {
695 pane_name = ENCODE_MENU_STRING (pane_name);
696 ASET (menu_items, i + MENU_ITEMS_PANE_NAME, pane_name);
697 }
698 #endif
699
700 pane_string = (NILP (pane_name)
701 ? "" : SSDATA (pane_name));
702 /* If there is just one top-level pane, put all its items directly
703 under the top-level menu. */
704 if (menu_items_n_panes == 1)
705 pane_string = "";
706
707 /* If the pane has a meaningful name,
708 make the pane a top-level menu item
709 with its items as a submenu beneath it. */
710 if (strcmp (pane_string, ""))
711 {
712 wv = xmalloc_widget_value ();
713 if (save_wv)
714 save_wv->next = wv;
715 else
716 first_wv->contents = wv;
717 wv->lname = pane_name;
718 /* Set value to 1 so update_submenu_strings can handle '@' */
719 wv->value = (char *)1;
720 wv->enabled = 1;
721 wv->button_type = BUTTON_TYPE_NONE;
722 wv->help = Qnil;
723 save_wv = wv;
724 }
725 else
726 save_wv = first_wv;
727
728 prev_wv = 0;
729 i += MENU_ITEMS_PANE_LENGTH;
730 }
731 else
732 {
733 /* Create a new item within current pane. */
734 Lisp_Object item_name, enable, descrip, def, type, selected;
735 Lisp_Object help;
736
737 /* All items should be contained in panes. */
738 if (panes_seen == 0)
739 emacs_abort ();
740
741 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
742 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
743 descrip = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
744 def = AREF (menu_items, i + MENU_ITEMS_ITEM_DEFINITION);
745 type = AREF (menu_items, i + MENU_ITEMS_ITEM_TYPE);
746 selected = AREF (menu_items, i + MENU_ITEMS_ITEM_SELECTED);
747 help = AREF (menu_items, i + MENU_ITEMS_ITEM_HELP);
748
749 #ifdef HAVE_NTGUI
750 if (STRINGP (item_name))
751 {
752 if (unicode_append_menu)
753 item_name = ENCODE_UTF_8 (item_name);
754 else if (STRING_MULTIBYTE (item_name))
755 item_name = ENCODE_SYSTEM (item_name);
756
757 ASET (menu_items, i + MENU_ITEMS_ITEM_NAME, item_name);
758 }
759
760 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
761 {
762 descrip = ENCODE_SYSTEM (descrip);
763 ASET (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY, descrip);
764 }
765 #elif USE_LUCID
766 if (STRINGP (item_name))
767 {
768 item_name = ENCODE_UTF_8 (item_name);
769 ASET (menu_items, i + MENU_ITEMS_ITEM_NAME, item_name);
770 }
771
772 if (STRINGP (descrip))
773 {
774 descrip = ENCODE_UTF_8 (descrip);
775 ASET (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY, descrip);
776 }
777 #elif !defined (HAVE_MULTILINGUAL_MENU)
778 if (STRING_MULTIBYTE (item_name))
779 {
780 item_name = ENCODE_MENU_STRING (item_name);
781 ASET (menu_items, i + MENU_ITEMS_ITEM_NAME, item_name);
782 }
783
784 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
785 {
786 descrip = ENCODE_MENU_STRING (descrip);
787 ASET (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY, descrip);
788 }
789 #endif
790
791 wv = xmalloc_widget_value ();
792 if (prev_wv)
793 prev_wv->next = wv;
794 else
795 save_wv->contents = wv;
796
797 wv->lname = item_name;
798 if (!NILP (descrip))
799 wv->lkey = descrip;
800 wv->value = 0;
801 /* The intptr_t cast avoids a warning. There's no problem
802 as long as pointers have enough bits to hold small integers. */
803 wv->call_data = (!NILP (def) ? (void *) (intptr_t) i : 0);
804 wv->enabled = !NILP (enable);
805
806 if (NILP (type))
807 wv->button_type = BUTTON_TYPE_NONE;
808 else if (EQ (type, QCradio))
809 wv->button_type = BUTTON_TYPE_RADIO;
810 else if (EQ (type, QCtoggle))
811 wv->button_type = BUTTON_TYPE_TOGGLE;
812 else
813 emacs_abort ();
814
815 wv->selected = !NILP (selected);
816 if (! STRINGP (help))
817 help = Qnil;
818
819 wv->help = help;
820
821 prev_wv = wv;
822
823 i += MENU_ITEMS_ITEM_LENGTH;
824 }
825 }
826
827 /* If we have just one "menu item"
828 that was originally a button, return it by itself. */
829 if (top_level_items && first_wv->contents && first_wv->contents->next == 0)
830 {
831 wv = first_wv->contents;
832 free_widget_value (first_wv);
833 return wv;
834 }
835
836 return first_wv;
837 }
838
839 /* Walk through the widget_value tree starting at FIRST_WV and update
840 the char * pointers from the corresponding lisp values.
841 We do this after building the whole tree, since GC may happen while the
842 tree is constructed, and small strings are relocated. So we must wait
843 until no GC can happen before storing pointers into lisp values. */
844 void
845 update_submenu_strings (widget_value *first_wv)
846 {
847 widget_value *wv;
848
849 for (wv = first_wv; wv; wv = wv->next)
850 {
851 if (STRINGP (wv->lname))
852 {
853 wv->name = SSDATA (wv->lname);
854
855 /* Ignore the @ that means "separate pane".
856 This is a kludge, but this isn't worth more time. */
857 if (wv->value == (char *)1)
858 {
859 if (wv->name[0] == '@')
860 wv->name++;
861 wv->value = 0;
862 }
863 }
864
865 if (STRINGP (wv->lkey))
866 wv->key = SSDATA (wv->lkey);
867
868 if (wv->contents)
869 update_submenu_strings (wv->contents);
870 }
871 }
872
873 /* Find the menu selection and store it in the keyboard buffer.
874 F is the frame the menu is on.
875 MENU_BAR_ITEMS_USED is the length of VECTOR.
876 VECTOR is an array of menu events for the whole menu. */
877
878 void
879 find_and_call_menu_selection (FRAME_PTR f, int menu_bar_items_used, Lisp_Object vector, void *client_data)
880 {
881 Lisp_Object prefix, entry;
882 Lisp_Object *subprefix_stack;
883 int submenu_depth = 0;
884 int i;
885
886 entry = Qnil;
887 subprefix_stack = alloca (menu_bar_items_used * sizeof *subprefix_stack);
888 prefix = Qnil;
889 i = 0;
890
891 while (i < menu_bar_items_used)
892 {
893 if (EQ (AREF (vector, i), Qnil))
894 {
895 subprefix_stack[submenu_depth++] = prefix;
896 prefix = entry;
897 i++;
898 }
899 else if (EQ (AREF (vector, i), Qlambda))
900 {
901 prefix = subprefix_stack[--submenu_depth];
902 i++;
903 }
904 else if (EQ (AREF (vector, i), Qt))
905 {
906 prefix = AREF (vector, i + MENU_ITEMS_PANE_PREFIX);
907 i += MENU_ITEMS_PANE_LENGTH;
908 }
909 else
910 {
911 entry = AREF (vector, i + MENU_ITEMS_ITEM_VALUE);
912 /* Treat the pointer as an integer. There's no problem
913 as long as pointers have enough bits to hold small integers. */
914 if ((intptr_t) client_data == i)
915 {
916 int j;
917 struct input_event buf;
918 Lisp_Object frame;
919 EVENT_INIT (buf);
920
921 XSETFRAME (frame, f);
922 buf.kind = MENU_BAR_EVENT;
923 buf.frame_or_window = frame;
924 buf.arg = frame;
925 kbd_buffer_store_event (&buf);
926
927 for (j = 0; j < submenu_depth; j++)
928 if (!NILP (subprefix_stack[j]))
929 {
930 buf.kind = MENU_BAR_EVENT;
931 buf.frame_or_window = frame;
932 buf.arg = subprefix_stack[j];
933 kbd_buffer_store_event (&buf);
934 }
935
936 if (!NILP (prefix))
937 {
938 buf.kind = MENU_BAR_EVENT;
939 buf.frame_or_window = frame;
940 buf.arg = prefix;
941 kbd_buffer_store_event (&buf);
942 }
943
944 buf.kind = MENU_BAR_EVENT;
945 buf.frame_or_window = frame;
946 buf.arg = entry;
947 kbd_buffer_store_event (&buf);
948
949 return;
950 }
951 i += MENU_ITEMS_ITEM_LENGTH;
952 }
953 }
954 }
955
956 #endif /* USE_X_TOOLKIT || USE_GTK || HAVE_NS || HAVE_NTGUI */
957
958 #ifdef HAVE_NS
959 /* As above, but return the menu selection instead of storing in kb buffer.
960 If keymaps==1, return full prefixes to selection. */
961 Lisp_Object
962 find_and_return_menu_selection (FRAME_PTR f, int keymaps, void *client_data)
963 {
964 Lisp_Object prefix, entry;
965 int i;
966 Lisp_Object *subprefix_stack;
967 int submenu_depth = 0;
968
969 prefix = entry = Qnil;
970 i = 0;
971 subprefix_stack = alloca (menu_items_used * word_size);
972
973 while (i < menu_items_used)
974 {
975 if (EQ (AREF (menu_items, i), Qnil))
976 {
977 subprefix_stack[submenu_depth++] = prefix;
978 prefix = entry;
979 i++;
980 }
981 else if (EQ (AREF (menu_items, i), Qlambda))
982 {
983 prefix = subprefix_stack[--submenu_depth];
984 i++;
985 }
986 else if (EQ (AREF (menu_items, i), Qt))
987 {
988 prefix
989 = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
990 i += MENU_ITEMS_PANE_LENGTH;
991 }
992 /* Ignore a nil in the item list.
993 It's meaningful only for dialog boxes. */
994 else if (EQ (AREF (menu_items, i), Qquote))
995 i += 1;
996 else
997 {
998 entry
999 = AREF (menu_items, i + MENU_ITEMS_ITEM_VALUE);
1000 if (aref_addr (menu_items, i) == client_data)
1001 {
1002 if (keymaps != 0)
1003 {
1004 int j;
1005
1006 entry = Fcons (entry, Qnil);
1007 if (!NILP (prefix))
1008 entry = Fcons (prefix, entry);
1009 for (j = submenu_depth - 1; j >= 0; j--)
1010 if (!NILP (subprefix_stack[j]))
1011 entry = Fcons (subprefix_stack[j], entry);
1012 }
1013 return entry;
1014 }
1015 i += MENU_ITEMS_ITEM_LENGTH;
1016 }
1017 }
1018 return Qnil;
1019 }
1020 #endif /* HAVE_NS */
1021
1022 DEFUN ("x-popup-menu", Fx_popup_menu, Sx_popup_menu, 2, 2, 0,
1023 doc: /* Pop up a deck-of-cards menu and return user's selection.
1024 POSITION is a position specification. This is either a mouse button event
1025 or a list ((XOFFSET YOFFSET) WINDOW)
1026 where XOFFSET and YOFFSET are positions in pixels from the top left
1027 corner of WINDOW. (WINDOW may be a window or a frame object.)
1028 This controls the position of the top left of the menu as a whole.
1029 If POSITION is t, it means to use the current mouse position.
1030
1031 MENU is a specifier for a menu. For the simplest case, MENU is a keymap.
1032 The menu items come from key bindings that have a menu string as well as
1033 a definition; actually, the "definition" in such a key binding looks like
1034 \(STRING . REAL-DEFINITION). To give the menu a title, put a string into
1035 the keymap as a top-level element.
1036
1037 If REAL-DEFINITION is nil, that puts a nonselectable string in the menu.
1038 Otherwise, REAL-DEFINITION should be a valid key binding definition.
1039
1040 You can also use a list of keymaps as MENU.
1041 Then each keymap makes a separate pane.
1042
1043 When MENU is a keymap or a list of keymaps, the return value is the
1044 list of events corresponding to the user's choice. Note that
1045 `x-popup-menu' does not actually execute the command bound to that
1046 sequence of events.
1047
1048 Alternatively, you can specify a menu of multiple panes
1049 with a list of the form (TITLE PANE1 PANE2...),
1050 where each pane is a list of form (TITLE ITEM1 ITEM2...).
1051 Each ITEM is normally a cons cell (STRING . VALUE);
1052 but a string can appear as an item--that makes a nonselectable line
1053 in the menu.
1054 With this form of menu, the return value is VALUE from the chosen item.
1055
1056 If POSITION is nil, don't display the menu at all, just precalculate the
1057 cached information about equivalent key sequences.
1058
1059 If the user gets rid of the menu without making a valid choice, for
1060 instance by clicking the mouse away from a valid choice or by typing
1061 keyboard input, then this normally results in a quit and
1062 `x-popup-menu' does not return. But if POSITION is a mouse button
1063 event (indicating that the user invoked the menu with the mouse) then
1064 no quit occurs and `x-popup-menu' returns nil. */)
1065 (Lisp_Object position, Lisp_Object menu)
1066 {
1067 Lisp_Object keymap, tem;
1068 int xpos = 0, ypos = 0;
1069 Lisp_Object title;
1070 const char *error_name = NULL;
1071 Lisp_Object selection = Qnil;
1072 FRAME_PTR f = NULL;
1073 Lisp_Object x, y, window;
1074 int keymaps = 0;
1075 int for_click = 0;
1076 ptrdiff_t specpdl_count = SPECPDL_INDEX ();
1077 struct gcpro gcpro1;
1078
1079 if (NILP (position))
1080 /* This is an obsolete call, which wants us to precompute the
1081 keybinding equivalents, but we don't do that any more anyway. */
1082 return Qnil;
1083
1084 #ifdef HAVE_MENUS
1085 {
1086 int get_current_pos_p = 0;
1087 /* FIXME!! check_w32 (); or check_x (); or check_ns (); */
1088
1089 /* Decode the first argument: find the window and the coordinates. */
1090 if (EQ (position, Qt)
1091 || (CONSP (position) && (EQ (XCAR (position), Qmenu_bar)
1092 || EQ (XCAR (position), Qtool_bar))))
1093 {
1094 get_current_pos_p = 1;
1095 }
1096 else
1097 {
1098 tem = Fcar (position);
1099 if (CONSP (tem))
1100 {
1101 window = Fcar (Fcdr (position));
1102 x = XCAR (tem);
1103 y = Fcar (XCDR (tem));
1104 }
1105 else
1106 {
1107 for_click = 1;
1108 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
1109 window = Fcar (tem); /* POSN_WINDOW (tem) */
1110 tem = Fcar (Fcdr (Fcdr (tem))); /* POSN_WINDOW_POSN (tem) */
1111 x = Fcar (tem);
1112 y = Fcdr (tem);
1113 }
1114
1115 /* If a click happens in an external tool bar or a detached
1116 tool bar, x and y is NIL. In that case, use the current
1117 mouse position. This happens for the help button in the
1118 tool bar. Ideally popup-menu should pass NIL to
1119 this function, but it doesn't. */
1120 if (NILP (x) && NILP (y))
1121 get_current_pos_p = 1;
1122 }
1123
1124 if (get_current_pos_p)
1125 {
1126 /* Use the mouse's current position. */
1127 FRAME_PTR new_f = SELECTED_FRAME ();
1128 #ifdef HAVE_X_WINDOWS
1129 /* Can't use mouse_position_hook for X since it returns
1130 coordinates relative to the window the mouse is in,
1131 we need coordinates relative to the edit widget always. */
1132 if (new_f != 0)
1133 {
1134 int cur_x, cur_y;
1135
1136 mouse_position_for_popup (new_f, &cur_x, &cur_y);
1137 /* cur_x/y may be negative, so use make_number. */
1138 x = make_number (cur_x);
1139 y = make_number (cur_y);
1140 }
1141
1142 #else /* not HAVE_X_WINDOWS */
1143 Lisp_Object bar_window;
1144 enum scroll_bar_part part;
1145 Time time;
1146 void (*mouse_position_hook) (struct frame **, int,
1147 Lisp_Object *,
1148 enum scroll_bar_part *,
1149 Lisp_Object *,
1150 Lisp_Object *,
1151 Time *) =
1152 FRAME_TERMINAL (new_f)->mouse_position_hook;
1153
1154 if (mouse_position_hook)
1155 (*mouse_position_hook) (&new_f, 1, &bar_window,
1156 &part, &x, &y, &time);
1157 #endif /* not HAVE_X_WINDOWS */
1158
1159 if (new_f != 0)
1160 XSETFRAME (window, new_f);
1161 else
1162 {
1163 window = selected_window;
1164 XSETFASTINT (x, 0);
1165 XSETFASTINT (y, 0);
1166 }
1167 }
1168
1169 /* Decode where to put the menu. */
1170
1171 if (FRAMEP (window))
1172 {
1173 f = XFRAME (window);
1174 xpos = 0;
1175 ypos = 0;
1176 }
1177 else if (WINDOWP (window))
1178 {
1179 struct window *win = XWINDOW (window);
1180 CHECK_LIVE_WINDOW (window);
1181 f = XFRAME (WINDOW_FRAME (win));
1182
1183 xpos = WINDOW_LEFT_EDGE_X (win);
1184 ypos = WINDOW_TOP_EDGE_Y (win);
1185 }
1186 else
1187 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
1188 but I don't want to make one now. */
1189 CHECK_WINDOW (window);
1190
1191 CHECK_RANGED_INTEGER (x,
1192 (xpos < INT_MIN - MOST_NEGATIVE_FIXNUM
1193 ? (EMACS_INT) INT_MIN - xpos
1194 : MOST_NEGATIVE_FIXNUM),
1195 INT_MAX - xpos);
1196 CHECK_RANGED_INTEGER (y,
1197 (ypos < INT_MIN - MOST_NEGATIVE_FIXNUM
1198 ? (EMACS_INT) INT_MIN - ypos
1199 : MOST_NEGATIVE_FIXNUM),
1200 INT_MAX - ypos);
1201 xpos += XINT (x);
1202 ypos += XINT (y);
1203
1204 /* FIXME: Find a more general check! */
1205 if (!(FRAME_X_P (f) || FRAME_MSDOS_P (f)
1206 || FRAME_W32_P (f) || FRAME_NS_P (f)))
1207 error ("Can not put GUI menu on this terminal");
1208
1209 XSETFRAME (Vmenu_updating_frame, f);
1210 }
1211 #endif /* HAVE_MENUS */
1212
1213 /* Now parse the lisp menus. */
1214 record_unwind_protect (unuse_menu_items, Qnil);
1215
1216 title = Qnil;
1217 GCPRO1 (title);
1218
1219 /* Decode the menu items from what was specified. */
1220
1221 keymap = get_keymap (menu, 0, 0);
1222 if (CONSP (keymap))
1223 {
1224 /* We were given a keymap. Extract menu info from the keymap. */
1225 Lisp_Object prompt;
1226
1227 /* Extract the detailed info to make one pane. */
1228 keymap_panes (&menu, 1);
1229
1230 /* Search for a string appearing directly as an element of the keymap.
1231 That string is the title of the menu. */
1232 prompt = Fkeymap_prompt (keymap);
1233 if (!NILP (prompt))
1234 title = prompt;
1235 #ifdef HAVE_NS /* Is that needed and NS-specific? --Stef */
1236 else
1237 title = build_string ("Select");
1238 #endif
1239
1240 /* Make that be the pane title of the first pane. */
1241 if (!NILP (prompt) && menu_items_n_panes >= 0)
1242 ASET (menu_items, MENU_ITEMS_PANE_NAME, prompt);
1243
1244 keymaps = 1;
1245 }
1246 else if (CONSP (menu) && KEYMAPP (XCAR (menu)))
1247 {
1248 /* We were given a list of keymaps. */
1249 EMACS_INT nmaps = XFASTINT (Flength (menu));
1250 Lisp_Object *maps;
1251 ptrdiff_t i;
1252 USE_SAFE_ALLOCA;
1253
1254 SAFE_ALLOCA_LISP (maps, nmaps);
1255 title = Qnil;
1256
1257 /* The first keymap that has a prompt string
1258 supplies the menu title. */
1259 for (tem = menu, i = 0; CONSP (tem); tem = XCDR (tem))
1260 {
1261 Lisp_Object prompt;
1262
1263 maps[i++] = keymap = get_keymap (XCAR (tem), 1, 0);
1264
1265 prompt = Fkeymap_prompt (keymap);
1266 if (NILP (title) && !NILP (prompt))
1267 title = prompt;
1268 }
1269
1270 /* Extract the detailed info to make one pane. */
1271 keymap_panes (maps, nmaps);
1272
1273 /* Make the title be the pane title of the first pane. */
1274 if (!NILP (title) && menu_items_n_panes >= 0)
1275 ASET (menu_items, MENU_ITEMS_PANE_NAME, title);
1276
1277 keymaps = 1;
1278
1279 SAFE_FREE ();
1280 }
1281 else
1282 {
1283 /* We were given an old-fashioned menu. */
1284 title = Fcar (menu);
1285 CHECK_STRING (title);
1286
1287 list_of_panes (Fcdr (menu));
1288
1289 keymaps = 0;
1290 }
1291
1292 unbind_to (specpdl_count, Qnil);
1293
1294 #ifdef HAVE_MENUS
1295 #ifdef HAVE_WINDOW_SYSTEM
1296 /* Hide a previous tip, if any. */
1297 Fx_hide_tip ();
1298 #endif
1299
1300 #ifdef HAVE_NTGUI /* FIXME: Is it really w32-specific? --Stef */
1301 /* If resources from a previous popup menu still exist, does nothing
1302 until the `menu_free_timer' has freed them (see w32fns.c). This
1303 can occur if you press ESC or click outside a menu without selecting
1304 a menu item.
1305 */
1306 if (current_popup_menu)
1307 {
1308 discard_menu_items ();
1309 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
1310 UNGCPRO;
1311 return Qnil;
1312 }
1313 #endif
1314
1315 #ifdef HAVE_NS /* FIXME: ns-specific, why? --Stef */
1316 record_unwind_protect (cleanup_popup_menu, Qnil);
1317 #endif
1318
1319 /* Display them in a menu. */
1320 block_input ();
1321
1322 /* FIXME: Use a terminal hook! */
1323 #if defined HAVE_NTGUI
1324 selection = w32_menu_show (f, xpos, ypos, for_click,
1325 keymaps, title, &error_name);
1326 #elif defined HAVE_NS
1327 selection = ns_menu_show (f, xpos, ypos, for_click,
1328 keymaps, title, &error_name);
1329 #else /* MSDOS and X11 */
1330 /* Assume last_event_timestamp is the timestamp of the button event.
1331 Is this assumption ever violated? We can't use the timestamp
1332 stored within POSITION because there the top bits from the actual
1333 timestamp may be truncated away (Bug#4930). */
1334 selection = xmenu_show (f, xpos, ypos, for_click,
1335 keymaps, title, &error_name,
1336 last_event_timestamp);
1337 #endif
1338
1339 unblock_input ();
1340
1341 #ifdef HAVE_NS
1342 unbind_to (specpdl_count, Qnil);
1343 #else
1344 discard_menu_items ();
1345 #endif
1346
1347 #ifdef HAVE_NTGUI /* FIXME: Is it really w32-specific? --Stef */
1348 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
1349 #endif
1350
1351 #endif /* HAVE_MENUS */
1352
1353 UNGCPRO;
1354
1355 if (error_name) error ("%s", error_name);
1356 return selection;
1357 }
1358
1359 void
1360 syms_of_menu (void)
1361 {
1362 staticpro (&menu_items);
1363 menu_items = Qnil;
1364 menu_items_inuse = Qnil;
1365
1366 defsubr (&Sx_popup_menu);
1367 }