1 /* Platform-independent code for terminal communications.
3 Copyright (C) 1986, 1988, 1993-1994, 1996, 1999-2017 Free Software
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 (at
11 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/>. */
23 #include <limits.h> /* for INT_MAX */
26 #include "character.h"
32 #include "termhooks.h"
33 #include "blockinput.h"
37 #include "../lwlib/lwlib.h"
40 #ifdef HAVE_WINDOW_SYSTEM
42 #endif /* HAVE_WINDOW_SYSTEM */
45 extern AppendMenuW_Proc unicode_append_menu
;
46 #endif /* HAVE_NTGUI */
50 /* Return non-zero if menus can handle radio and toggle buttons. */
54 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NTGUI) || defined(HAVE_NS)
55 if (FRAME_WINDOW_P (XFRAME (Vmenu_updating_frame
)))
61 Lisp_Object menu_items
;
63 /* If non-nil, means that the global vars defined here are already in use.
64 Used to detect cases where we try to re-enter this non-reentrant code. */
65 Lisp_Object menu_items_inuse
;
67 /* Number of slots currently allocated in menu_items. */
68 int menu_items_allocated
;
70 /* This is the index in menu_items of the first empty slot. */
73 /* The number of panes currently recorded in menu_items,
74 excluding those within submenus. */
75 int menu_items_n_panes
;
77 /* Current depth within submenus. */
78 static int menu_items_submenu_depth
;
81 init_menu_items (void)
83 if (!NILP (menu_items_inuse
))
84 error ("Trying to use a menu from within a menu-entry");
86 if (NILP (menu_items
))
88 menu_items_allocated
= 60;
89 menu_items
= Fmake_vector (make_number (menu_items_allocated
), Qnil
);
92 menu_items_inuse
= Qt
;
94 menu_items_n_panes
= 0;
95 menu_items_submenu_depth
= 0;
98 /* Call at the end of generating the data in menu_items. */
101 finish_menu_items (void)
106 unuse_menu_items (void)
108 menu_items_inuse
= Qnil
;
111 /* Call when finished using the data for the current menu
115 discard_menu_items (void)
117 /* Free the structure if it is especially large.
118 Otherwise, hold on to it, to save time. */
119 if (menu_items_allocated
> 200)
122 menu_items_allocated
= 0;
124 eassert (NILP (menu_items_inuse
));
127 /* This undoes save_menu_items, and it is called by the specpdl unwind
131 restore_menu_items (Lisp_Object saved
)
133 menu_items
= XCAR (saved
);
134 menu_items_inuse
= (! NILP (menu_items
) ? Qt
: Qnil
);
135 menu_items_allocated
= (VECTORP (menu_items
) ? ASIZE (menu_items
) : 0);
136 saved
= XCDR (saved
);
137 menu_items_used
= XINT (XCAR (saved
));
138 saved
= XCDR (saved
);
139 menu_items_n_panes
= XINT (XCAR (saved
));
140 saved
= XCDR (saved
);
141 menu_items_submenu_depth
= XINT (XCAR (saved
));
144 /* Push the whole state of menu_items processing onto the specpdl.
145 It will be restored when the specpdl is unwound. */
148 save_menu_items (void)
150 Lisp_Object saved
= list4 (!NILP (menu_items_inuse
) ? menu_items
: Qnil
,
151 make_number (menu_items_used
),
152 make_number (menu_items_n_panes
),
153 make_number (menu_items_submenu_depth
));
154 record_unwind_protect (restore_menu_items
, saved
);
155 menu_items_inuse
= Qnil
;
160 /* Ensure that there is room for ITEMS items in the menu_items vector. */
163 ensure_menu_items (int items
)
165 int incr
= items
- (menu_items_allocated
- menu_items_used
);
168 menu_items
= larger_vector (menu_items
, incr
, INT_MAX
);
169 menu_items_allocated
= ASIZE (menu_items
);
173 #if (defined USE_X_TOOLKIT || defined USE_GTK || defined HAVE_NS \
174 || defined HAVE_NTGUI)
176 /* Begin a submenu. */
179 push_submenu_start (void)
181 ensure_menu_items (1);
182 ASET (menu_items
, menu_items_used
, Qnil
);
184 menu_items_submenu_depth
++;
190 push_submenu_end (void)
192 ensure_menu_items (1);
193 ASET (menu_items
, menu_items_used
, Qlambda
);
195 menu_items_submenu_depth
--;
198 #endif /* USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI */
200 /* Indicate boundary between left and right. */
203 push_left_right_boundary (void)
205 ensure_menu_items (1);
206 ASET (menu_items
, menu_items_used
, Qquote
);
210 /* Start a new menu pane in menu_items.
211 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */
214 push_menu_pane (Lisp_Object name
, Lisp_Object prefix_vec
)
216 ensure_menu_items (MENU_ITEMS_PANE_LENGTH
);
217 if (menu_items_submenu_depth
== 0)
218 menu_items_n_panes
++;
219 ASET (menu_items
, menu_items_used
, Qt
);
221 ASET (menu_items
, menu_items_used
, name
);
223 ASET (menu_items
, menu_items_used
, prefix_vec
);
227 /* Push one menu item into the current pane. NAME is the string to
228 display. ENABLE if non-nil means this item can be selected. KEY
229 is the key generated by choosing this item, or nil if this item
230 doesn't really have a definition. DEF is the definition of this
231 item. EQUIV is the textual description of the keyboard equivalent
232 for this item (or nil if none). TYPE is the type of this menu
233 item, one of nil, `toggle' or `radio'. */
236 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
)
238 ensure_menu_items (MENU_ITEMS_ITEM_LENGTH
);
240 ASET (menu_items
, menu_items_used
+ MENU_ITEMS_ITEM_NAME
, name
);
241 ASET (menu_items
, menu_items_used
+ MENU_ITEMS_ITEM_ENABLE
, enable
);
242 ASET (menu_items
, menu_items_used
+ MENU_ITEMS_ITEM_VALUE
, key
);
243 ASET (menu_items
, menu_items_used
+ MENU_ITEMS_ITEM_EQUIV_KEY
, equiv
);
244 ASET (menu_items
, menu_items_used
+ MENU_ITEMS_ITEM_DEFINITION
, def
);
245 ASET (menu_items
, menu_items_used
+ MENU_ITEMS_ITEM_TYPE
, type
);
246 ASET (menu_items
, menu_items_used
+ MENU_ITEMS_ITEM_SELECTED
, selected
);
247 ASET (menu_items
, menu_items_used
+ MENU_ITEMS_ITEM_HELP
, help
);
249 menu_items_used
+= MENU_ITEMS_ITEM_LENGTH
;
252 /* Args passed between single_keymap_panes and single_menu_item. */
255 Lisp_Object pending_maps
;
260 static void single_menu_item (Lisp_Object
, Lisp_Object
, Lisp_Object
,
263 /* This is a recursive subroutine of keymap_panes.
264 It handles one keymap, KEYMAP.
265 The other arguments are passed along
266 or point to local variables of the previous function.
268 If we encounter submenus deeper than MAXDEPTH levels, ignore them. */
271 single_keymap_panes (Lisp_Object keymap
, Lisp_Object pane_name
,
272 Lisp_Object prefix
, int maxdepth
)
276 skp
.pending_maps
= Qnil
;
277 skp
.maxdepth
= maxdepth
;
283 push_menu_pane (pane_name
, prefix
);
287 /* Remember index for first item in this pane so we can go back
288 and add a prefix when (if) we see the first button. After
289 that, notbuttons is set to 0, to mark that we have seen a
290 button and all non button items need a prefix. */
291 skp
.notbuttons
= menu_items_used
;
294 map_keymap_canonical (keymap
, single_menu_item
, Qnil
, &skp
);
296 /* Process now any submenus which want to be panes at this level. */
297 while (CONSP (skp
.pending_maps
))
299 Lisp_Object elt
, eltcdr
, string
;
300 elt
= XCAR (skp
.pending_maps
);
302 string
= XCAR (eltcdr
);
303 /* We no longer discard the @ from the beginning of the string here.
304 Instead, we do this in *menu_show. */
305 single_keymap_panes (Fcar (elt
), string
, XCDR (eltcdr
), maxdepth
- 1);
306 skp
.pending_maps
= XCDR (skp
.pending_maps
);
310 /* This is a subroutine of single_keymap_panes that handles one
312 KEY is a key in a keymap and ITEM is its binding.
313 SKP->PENDING_MAPS_PTR is a list of keymaps waiting to be made into
315 If we encounter submenus deeper than SKP->MAXDEPTH levels, ignore them. */
318 single_menu_item (Lisp_Object key
, Lisp_Object item
, Lisp_Object dummy
, void *skp_v
)
320 Lisp_Object map
, item_string
, enabled
;
322 struct skp
*skp
= skp_v
;
324 /* Parse the menu item and leave the result in item_properties. */
325 res
= parse_menu_item (item
, 0);
327 return; /* Not a menu item. */
329 map
= AREF (item_properties
, ITEM_PROPERTY_MAP
);
331 enabled
= AREF (item_properties
, ITEM_PROPERTY_ENABLE
);
332 item_string
= AREF (item_properties
, ITEM_PROPERTY_NAME
);
334 if (!NILP (map
) && SREF (item_string
, 0) == '@')
337 /* An enabled separate pane. Remember this to handle it later. */
338 skp
->pending_maps
= Fcons (Fcons (map
, Fcons (item_string
, key
)),
343 /* Simulate radio buttons and toggle boxes by putting a prefix in
347 char const *prefix
= 0;
348 Lisp_Object type
= AREF (item_properties
, ITEM_PROPERTY_TYPE
);
352 = AREF (item_properties
, ITEM_PROPERTY_SELECTED
);
355 /* The first button. Line up previous items in this menu. */
357 int idx
= skp
->notbuttons
; /* Index for first item this menu. */
360 while (idx
< menu_items_used
)
363 = AREF (menu_items
, idx
+ MENU_ITEMS_ITEM_NAME
);
367 submenu
++; /* Skip sub menu. */
369 else if (EQ (tem
, Qlambda
))
372 submenu
--; /* End sub menu. */
374 else if (EQ (tem
, Qt
))
375 idx
+= 3; /* Skip new pane marker. */
376 else if (EQ (tem
, Qquote
))
377 idx
++; /* Skip a left, right divider. */
380 if (!submenu
&& SREF (tem
, 0) != '\0'
381 && SREF (tem
, 0) != '-')
383 AUTO_STRING (spaces
, " ");
384 ASET (menu_items
, idx
+ MENU_ITEMS_ITEM_NAME
,
385 concat2 (spaces
, tem
));
387 idx
+= MENU_ITEMS_ITEM_LENGTH
;
393 /* Calculate prefix, if any, for this item. */
394 if (EQ (type
, QCtoggle
))
395 prefix
= NILP (selected
) ? "[ ] " : "[X] ";
396 else if (EQ (type
, QCradio
))
397 prefix
= NILP (selected
) ? "( ) " : "(*) ";
399 /* Not a button. If we have earlier buttons, then we need a prefix. */
400 else if (!skp
->notbuttons
&& SREF (item_string
, 0) != '\0'
401 && SREF (item_string
, 0) != '-')
406 AUTO_STRING_WITH_LEN (prefix_obj
, prefix
, 4);
407 item_string
= concat2 (prefix_obj
, item_string
);
411 if ((FRAME_TERMCAP_P (XFRAME (Vmenu_updating_frame
))
412 || FRAME_MSDOS_P (XFRAME (Vmenu_updating_frame
)))
414 /* Indicate visually that this is a submenu. */
416 AUTO_STRING (space_gt
, " >");
417 item_string
= concat2 (item_string
, space_gt
);
420 push_menu_item (item_string
, enabled
, key
,
421 AREF (item_properties
, ITEM_PROPERTY_DEF
),
422 AREF (item_properties
, ITEM_PROPERTY_KEYEQ
),
423 AREF (item_properties
, ITEM_PROPERTY_TYPE
),
424 AREF (item_properties
, ITEM_PROPERTY_SELECTED
),
425 AREF (item_properties
, ITEM_PROPERTY_HELP
));
427 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (HAVE_NTGUI)
428 /* Display a submenu using the toolkit. */
429 if (FRAME_WINDOW_P (XFRAME (Vmenu_updating_frame
))
430 && ! (NILP (map
) || NILP (enabled
)))
432 push_submenu_start ();
433 single_keymap_panes (map
, Qnil
, key
, skp
->maxdepth
- 1);
439 /* Look through KEYMAPS, a vector of keymaps that is NMAPS long,
440 and generate menu panes for them in menu_items. */
443 keymap_panes (Lisp_Object
*keymaps
, ptrdiff_t nmaps
)
449 /* Loop over the given keymaps, making a pane for each map.
450 But don't make a pane that is empty--ignore that map instead.
451 P is the number of panes we have made so far. */
452 for (mapno
= 0; mapno
< nmaps
; mapno
++)
453 single_keymap_panes (keymaps
[mapno
],
454 Fkeymap_prompt (keymaps
[mapno
]), Qnil
, 10);
456 finish_menu_items ();
459 /* Encode a menu string as appropriate for menu-updating-frame's type. */
461 encode_menu_string (Lisp_Object str
)
463 /* TTY menu strings are encoded by write_glyphs, when they are
464 delivered to the glass, so no need to encode them here. */
465 if (FRAME_TERMCAP_P (XFRAME (Vmenu_updating_frame
)))
467 return ENCODE_MENU_STRING (str
);
470 /* Push the items in a single pane defined by the alist PANE. */
472 list_of_items (Lisp_Object pane
)
474 Lisp_Object tail
, item
, item1
;
476 for (tail
= pane
; CONSP (tail
); tail
= XCDR (tail
))
480 push_menu_item (encode_menu_string (item
), Qnil
, Qnil
, Qt
,
481 Qnil
, Qnil
, Qnil
, Qnil
);
482 else if (CONSP (item
))
485 CHECK_STRING (item1
);
486 push_menu_item (encode_menu_string (item1
), Qt
, XCDR (item
),
487 Qt
, Qnil
, Qnil
, Qnil
, Qnil
);
490 push_left_right_boundary ();
495 /* Push all the panes and items of a menu described by the
496 alist-of-alists MENU.
497 This handles old-fashioned calls to x-popup-menu. */
499 list_of_panes (Lisp_Object menu
)
505 for (tail
= menu
; CONSP (tail
); tail
= XCDR (tail
))
507 Lisp_Object elt
, pane_name
, pane_data
;
509 pane_name
= Fcar (elt
);
510 CHECK_STRING (pane_name
);
511 push_menu_pane (encode_menu_string (pane_name
), Qnil
);
512 pane_data
= Fcdr (elt
);
513 CHECK_CONS (pane_data
);
514 list_of_items (pane_data
);
517 finish_menu_items ();
520 /* Set up data in menu_items for a menu bar item
521 whose event type is ITEM_KEY (with string ITEM_NAME)
522 and whose contents come from the list of keymaps MAPS. */
524 parse_single_submenu (Lisp_Object item_key
, Lisp_Object item_name
,
531 bool top_level_items
= 0;
534 length
= Flength (maps
);
537 /* Convert the list MAPS into a vector MAPVEC. */
538 SAFE_ALLOCA_LISP (mapvec
, len
);
539 for (i
= 0; i
< len
; i
++)
541 mapvec
[i
] = Fcar (maps
);
545 /* Loop over the given keymaps, making a pane for each map.
546 But don't make a pane that is empty--ignore that map instead. */
547 for (i
= 0; i
< len
; i
++)
549 if (!KEYMAPP (mapvec
[i
]))
551 /* Here we have a command at top level in the menu bar
552 as opposed to a submenu. */
554 push_menu_pane (Qnil
, Qnil
);
555 push_menu_item (item_name
, Qt
, item_key
, mapvec
[i
],
556 Qnil
, Qnil
, Qnil
, Qnil
);
561 prompt
= Fkeymap_prompt (mapvec
[i
]);
562 single_keymap_panes (mapvec
[i
],
563 !NILP (prompt
) ? prompt
: item_name
,
569 return top_level_items
;
573 #if defined (USE_X_TOOLKIT) || defined (USE_GTK) || defined (HAVE_NS) || defined (HAVE_NTGUI)
575 /* Allocate and basically initialize widget_value, blocking input. */
578 make_widget_value (const char *name
, char *value
,
579 bool enabled
, Lisp_Object help
)
584 wv
= xzalloc (sizeof (widget_value
));
587 wv
->name
= (char *) name
;
589 wv
->enabled
= enabled
;
594 /* This recursively calls xfree 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. */
600 free_menubar_widget_value_tree (widget_value
*wv
)
604 wv
->name
= wv
->value
= wv
->key
= (char *) 0xDEADBEEF;
606 if (wv
->contents
&& (wv
->contents
!= (widget_value
*)1))
608 free_menubar_widget_value_tree (wv
->contents
);
609 wv
->contents
= (widget_value
*) 0xDEADBEEF;
613 free_menubar_widget_value_tree (wv
->next
);
614 wv
->next
= (widget_value
*) 0xDEADBEEF;
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. */
626 digest_single_submenu (int start
, int end
, bool top_level_items
)
628 widget_value
*wv
, *prev_wv
, *save_wv
, *first_wv
;
630 int submenu_depth
= 0;
631 widget_value
**submenu_stack
;
633 struct frame
*f
= XFRAME (Vmenu_updating_frame
);
636 SAFE_NALLOCA (submenu_stack
, 1, menu_items_used
);
637 wv
= make_widget_value ("menu", NULL
, true, Qnil
);
638 wv
->button_type
= BUTTON_TYPE_NONE
;
643 /* Loop over all panes and items made by the preceding call
644 to parse_single_submenu and construct a tree of widget_value objects.
645 Ignore the panes and items used by previous calls to
646 digest_single_submenu, even though those are also in menu_items. */
650 if (EQ (AREF (menu_items
, i
), Qnil
))
652 submenu_stack
[submenu_depth
++] = save_wv
;
657 else if (EQ (AREF (menu_items
, i
), Qlambda
))
660 save_wv
= submenu_stack
[--submenu_depth
];
663 else if (EQ (AREF (menu_items
, i
), Qt
)
664 && submenu_depth
!= 0)
665 i
+= MENU_ITEMS_PANE_LENGTH
;
666 /* Ignore a nil in the item list.
667 It's meaningful only for dialog boxes. */
668 else if (EQ (AREF (menu_items
, i
), Qquote
))
670 else if (EQ (AREF (menu_items
, i
), Qt
))
672 /* Create a new pane. */
673 Lisp_Object pane_name
;
674 const char *pane_string
;
678 pane_name
= AREF (menu_items
, i
+ MENU_ITEMS_PANE_NAME
);
680 /* TTY menus display menu items via tty_write_glyphs, which
681 will encode the strings as appropriate. */
682 if (!FRAME_TERMCAP_P (f
))
685 if (STRINGP (pane_name
))
687 if (unicode_append_menu
)
688 /* Encode as UTF-8 for now. */
689 pane_name
= ENCODE_UTF_8 (pane_name
);
690 else if (STRING_MULTIBYTE (pane_name
))
691 pane_name
= ENCODE_SYSTEM (pane_name
);
693 ASET (menu_items
, i
+ MENU_ITEMS_PANE_NAME
, pane_name
);
695 #elif defined (USE_LUCID) && defined (HAVE_XFT)
696 if (STRINGP (pane_name
))
698 pane_name
= ENCODE_UTF_8 (pane_name
);
699 ASET (menu_items
, i
+ MENU_ITEMS_PANE_NAME
, pane_name
);
701 #elif !defined (HAVE_MULTILINGUAL_MENU)
702 if (STRINGP (pane_name
) && STRING_MULTIBYTE (pane_name
))
704 pane_name
= ENCODE_MENU_STRING (pane_name
);
705 ASET (menu_items
, i
+ MENU_ITEMS_PANE_NAME
, pane_name
);
710 pane_string
= (NILP (pane_name
)
711 ? "" : SSDATA (pane_name
));
712 /* If there is just one top-level pane, put all its items directly
713 under the top-level menu. */
714 if (menu_items_n_panes
== 1)
717 /* If the pane has a meaningful name,
718 make the pane a top-level menu item
719 with its items as a submenu beneath it. */
720 if (strcmp (pane_string
, ""))
722 /* Set value to 1 so update_submenu_strings can handle '@'. */
723 wv
= make_widget_value (NULL
, (char *) 1, true, Qnil
);
727 first_wv
->contents
= wv
;
728 wv
->lname
= pane_name
;
729 wv
->button_type
= BUTTON_TYPE_NONE
;
736 i
+= MENU_ITEMS_PANE_LENGTH
;
740 /* Create a new item within current pane. */
741 Lisp_Object item_name
, enable
, descrip
, def
, type
, selected
;
744 /* All items should be contained in panes. */
748 item_name
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
);
749 enable
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_ENABLE
);
750 descrip
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
);
751 def
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_DEFINITION
);
752 type
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_TYPE
);
753 selected
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_SELECTED
);
754 help
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_HELP
);
756 /* TTY menu items and their descriptions will be encoded by
758 if (!FRAME_TERMCAP_P (f
))
761 if (STRINGP (item_name
))
763 if (unicode_append_menu
)
764 item_name
= ENCODE_UTF_8 (item_name
);
765 else if (STRING_MULTIBYTE (item_name
))
766 item_name
= ENCODE_SYSTEM (item_name
);
768 ASET (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
, item_name
);
771 if (STRINGP (descrip
) && STRING_MULTIBYTE (descrip
))
773 descrip
= ENCODE_SYSTEM (descrip
);
774 ASET (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
, descrip
);
777 if (STRINGP (item_name
))
779 item_name
= ENCODE_UTF_8 (item_name
);
780 ASET (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
, item_name
);
783 if (STRINGP (descrip
))
785 descrip
= ENCODE_UTF_8 (descrip
);
786 ASET (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
, descrip
);
788 #elif !defined (HAVE_MULTILINGUAL_MENU)
789 if (STRING_MULTIBYTE (item_name
))
791 item_name
= ENCODE_MENU_STRING (item_name
);
792 ASET (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
, item_name
);
795 if (STRINGP (descrip
) && STRING_MULTIBYTE (descrip
))
797 descrip
= ENCODE_MENU_STRING (descrip
);
798 ASET (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
, descrip
);
803 wv
= make_widget_value (NULL
, NULL
, !NILP (enable
),
804 STRINGP (help
) ? help
: Qnil
);
808 save_wv
->contents
= wv
;
810 wv
->lname
= item_name
;
813 /* The intptr_t cast avoids a warning. There's no problem
814 as long as pointers have enough bits to hold small integers. */
815 wv
->call_data
= (!NILP (def
) ? (void *) (intptr_t) i
: 0);
818 wv
->button_type
= BUTTON_TYPE_NONE
;
819 else if (EQ (type
, QCradio
))
820 wv
->button_type
= BUTTON_TYPE_RADIO
;
821 else if (EQ (type
, QCtoggle
))
822 wv
->button_type
= BUTTON_TYPE_TOGGLE
;
826 wv
->selected
= !NILP (selected
);
830 i
+= MENU_ITEMS_ITEM_LENGTH
;
834 /* If we have just one "menu item"
835 that was originally a button, return it by itself. */
836 if (top_level_items
&& first_wv
->contents
&& first_wv
->contents
->next
== 0)
839 first_wv
= first_wv
->contents
;
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. */
853 update_submenu_strings (widget_value
*first_wv
)
857 for (wv
= first_wv
; wv
; wv
= wv
->next
)
859 if (STRINGP (wv
->lname
))
861 wv
->name
= SSDATA (wv
->lname
);
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)
867 if (wv
->name
[0] == '@')
873 if (STRINGP (wv
->lkey
))
874 wv
->key
= SSDATA (wv
->lkey
);
877 update_submenu_strings (wv
->contents
);
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. */
887 find_and_call_menu_selection (struct frame
*f
, int menu_bar_items_used
,
888 Lisp_Object vector
, void *client_data
)
890 Lisp_Object prefix
, entry
;
891 Lisp_Object
*subprefix_stack
;
892 int submenu_depth
= 0;
897 SAFE_NALLOCA (subprefix_stack
, 1, menu_bar_items_used
);
901 while (i
< menu_bar_items_used
)
903 if (EQ (AREF (vector
, i
), Qnil
))
905 subprefix_stack
[submenu_depth
++] = prefix
;
909 else if (EQ (AREF (vector
, i
), Qlambda
))
911 prefix
= subprefix_stack
[--submenu_depth
];
914 else if (EQ (AREF (vector
, i
), Qt
))
916 prefix
= AREF (vector
, i
+ MENU_ITEMS_PANE_PREFIX
);
917 i
+= MENU_ITEMS_PANE_LENGTH
;
921 entry
= AREF (vector
, i
+ MENU_ITEMS_ITEM_VALUE
);
922 /* Treat the pointer as an integer. There's no problem
923 as long as pointers have enough bits to hold small integers. */
924 if ((intptr_t) client_data
== i
)
927 struct input_event buf
;
931 XSETFRAME (frame
, f
);
932 buf
.kind
= MENU_BAR_EVENT
;
933 buf
.frame_or_window
= frame
;
935 kbd_buffer_store_event (&buf
);
937 for (j
= 0; j
< submenu_depth
; j
++)
938 if (!NILP (subprefix_stack
[j
]))
940 buf
.kind
= MENU_BAR_EVENT
;
941 buf
.frame_or_window
= frame
;
942 buf
.arg
= subprefix_stack
[j
];
943 kbd_buffer_store_event (&buf
);
948 buf
.kind
= MENU_BAR_EVENT
;
949 buf
.frame_or_window
= frame
;
951 kbd_buffer_store_event (&buf
);
954 buf
.kind
= MENU_BAR_EVENT
;
955 buf
.frame_or_window
= frame
;
957 kbd_buffer_store_event (&buf
);
961 i
+= MENU_ITEMS_ITEM_LENGTH
;
968 #endif /* USE_X_TOOLKIT || USE_GTK || HAVE_NS || HAVE_NTGUI */
971 /* As above, but return the menu selection instead of storing in kb buffer.
972 If KEYMAPS, return full prefixes to selection. */
974 find_and_return_menu_selection (struct frame
*f
, bool keymaps
, void *client_data
)
976 Lisp_Object prefix
, entry
;
978 Lisp_Object
*subprefix_stack
;
979 int submenu_depth
= 0;
982 prefix
= entry
= Qnil
;
984 SAFE_ALLOCA_LISP (subprefix_stack
, menu_items_used
);
986 while (i
< menu_items_used
)
988 if (EQ (AREF (menu_items
, i
), Qnil
))
990 subprefix_stack
[submenu_depth
++] = prefix
;
994 else if (EQ (AREF (menu_items
, i
), Qlambda
))
996 prefix
= subprefix_stack
[--submenu_depth
];
999 else if (EQ (AREF (menu_items
, i
), Qt
))
1002 = AREF (menu_items
, i
+ MENU_ITEMS_PANE_PREFIX
);
1003 i
+= MENU_ITEMS_PANE_LENGTH
;
1005 /* Ignore a nil in the item list.
1006 It's meaningful only for dialog boxes. */
1007 else if (EQ (AREF (menu_items
, i
), Qquote
))
1012 = AREF (menu_items
, i
+ MENU_ITEMS_ITEM_VALUE
);
1013 if (aref_addr (menu_items
, i
) == client_data
)
1019 entry
= list1 (entry
);
1021 entry
= Fcons (prefix
, entry
);
1022 for (j
= submenu_depth
- 1; j
>= 0; j
--)
1023 if (!NILP (subprefix_stack
[j
]))
1024 entry
= Fcons (subprefix_stack
[j
], entry
);
1029 i
+= MENU_ITEMS_ITEM_LENGTH
;
1035 #endif /* HAVE_NS */
1038 menu_item_width (const unsigned char *str
)
1041 const unsigned char *p
;
1043 for (len
= 0, p
= str
; *p
; )
1046 int ch
= STRING_CHAR_AND_LENGTH (p
, ch_len
);
1048 len
+= CHARACTER_WIDTH (ch
);
1054 DEFUN ("menu-bar-menu-at-x-y", Fmenu_bar_menu_at_x_y
, Smenu_bar_menu_at_x_y
,
1056 doc
: /* Return the menu-bar menu on FRAME at pixel coordinates X, Y.
1057 X and Y are frame-relative pixel coordinates, assumed to define
1058 a location within the menu bar.
1059 If FRAME is nil or omitted, it defaults to the selected frame.
1061 Value is the symbol of the menu at X/Y, or nil if the specified
1062 coordinates are not within the FRAME's menu bar. The symbol can
1063 be used to look up the menu like this:
1065 (lookup-key MAP [menu-bar SYMBOL])
1067 where MAP is either the current global map or the current local map,
1068 since menu-bar items come from both.
1070 This function can return non-nil only on a text-terminal frame
1071 or on an X frame that doesn't use any GUI toolkit. Otherwise,
1072 Emacs does not manage the menu bar and cannot convert coordinates
1073 into menu items. */)
1074 (Lisp_Object x
, Lisp_Object y
, Lisp_Object frame
)
1077 struct frame
*f
= decode_any_frame (frame
);
1079 if (!FRAME_LIVE_P (f
))
1082 pixel_to_glyph_coords (f
, XINT (x
), XINT (y
), &col
, &row
, NULL
, 1);
1083 if (0 <= row
&& row
< FRAME_MENU_BAR_LINES (f
))
1085 Lisp_Object items
, item
;
1088 /* Find the menu bar item under `col'. */
1090 items
= FRAME_MENU_BAR_ITEMS (f
);
1091 /* This loop assumes a single menu-bar line, and will fail to
1092 find an item if it is not in the first line. Note that
1093 make_lispy_event in keyboard.c makes the same assumption. */
1094 for (i
= 0; i
< ASIZE (items
); i
+= 4)
1096 Lisp_Object pos
, str
;
1098 str
= AREF (items
, i
+ 1);
1099 pos
= AREF (items
, i
+ 3);
1102 if (XINT (pos
) <= col
1103 /* We use <= so the blank between 2 items on a TTY is
1104 considered part of the previous item. */
1105 && col
<= XINT (pos
) + menu_item_width (SDATA (str
)))
1107 item
= AREF (items
, i
);
1116 DEFUN ("x-popup-menu", Fx_popup_menu
, Sx_popup_menu
, 2, 2, 0,
1117 doc
: /* Pop up a deck-of-cards menu and return user's selection.
1118 POSITION is a position specification. This is either a mouse button event
1119 or a list ((XOFFSET YOFFSET) WINDOW)
1120 where XOFFSET and YOFFSET are positions in pixels from the top left
1121 corner of WINDOW. (WINDOW may be a window or a frame object.)
1122 This controls the position of the top left of the menu as a whole.
1123 If POSITION is t, it means to use the current mouse position.
1125 MENU is a specifier for a menu. For the simplest case, MENU is a keymap.
1126 The menu items come from key bindings that have a menu string as well as
1127 a definition; actually, the "definition" in such a key binding looks like
1128 \(STRING . REAL-DEFINITION). To give the menu a title, put a string into
1129 the keymap as a top-level element.
1131 If REAL-DEFINITION is nil, that puts a nonselectable string in the menu.
1132 Otherwise, REAL-DEFINITION should be a valid key binding definition.
1134 You can also use a list of keymaps as MENU.
1135 Then each keymap makes a separate pane.
1137 When MENU is a keymap or a list of keymaps, the return value is the
1138 list of events corresponding to the user's choice. Note that
1139 `x-popup-menu' does not actually execute the command bound to that
1142 Alternatively, you can specify a menu of multiple panes
1143 with a list of the form (TITLE PANE1 PANE2...),
1144 where each pane is a list of form (TITLE ITEM1 ITEM2...).
1145 Each ITEM is normally a cons cell (STRING . VALUE);
1146 but a string can appear as an item--that makes a nonselectable line
1148 With this form of menu, the return value is VALUE from the chosen item.
1150 If POSITION is nil, don't display the menu at all, just precalculate the
1151 cached information about equivalent key sequences.
1153 If the user gets rid of the menu without making a valid choice, for
1154 instance by clicking the mouse away from a valid choice or by typing
1155 keyboard input, then this normally results in a quit and
1156 `x-popup-menu' does not return. But if POSITION is a mouse button
1157 event (indicating that the user invoked the menu with the mouse) then
1158 no quit occurs and `x-popup-menu' returns nil. */)
1159 (Lisp_Object position
, Lisp_Object menu
)
1161 Lisp_Object keymap
, tem
, tem2
;
1162 int xpos
= 0, ypos
= 0;
1164 const char *error_name
= NULL
;
1165 Lisp_Object selection
= Qnil
;
1166 struct frame
*f
= NULL
;
1167 Lisp_Object x
, y
, window
;
1169 ptrdiff_t specpdl_count
= SPECPDL_INDEX ();
1171 if (NILP (position
))
1172 /* This is an obsolete call, which wants us to precompute the
1173 keybinding equivalents, but we don't do that any more anyway. */
1177 bool get_current_pos_p
= 0;
1179 /* Decode the first argument: find the window and the coordinates. */
1180 if (EQ (position
, Qt
)
1181 || (CONSP (position
) && (EQ (XCAR (position
), Qmenu_bar
)
1182 || EQ (XCAR (position
), Qtool_bar
))))
1184 get_current_pos_p
= 1;
1188 tem
= Fcar (position
);
1191 window
= Fcar (Fcdr (position
));
1193 y
= Fcar (XCDR (tem
));
1197 menuflags
|= MENU_FOR_CLICK
;
1198 tem
= Fcar (Fcdr (position
)); /* EVENT_START (position) */
1199 window
= Fcar (tem
); /* POSN_WINDOW (tem) */
1200 tem2
= Fcar (Fcdr (tem
)); /* POSN_POSN (tem) */
1201 /* The MENU_KBD_NAVIGATION field is set when the menu
1202 was invoked by F10, which probably means they have no
1203 mouse. In that case, we let them switch between
1204 top-level menu-bar menus by using C-f/C-b and
1205 horizontal arrow keys, since they cannot click the
1206 mouse to open a different submenu. This flag is only
1207 supported by tty_menu_show. We set it when POSITION
1208 and last_nonmenu_event are different, which means we
1209 constructed POSITION by hand (in popup-menu, see
1210 menu-bar.el) to look like a mouse click on the menu bar
1212 if (!EQ (POSN_POSN (last_nonmenu_event
),
1213 POSN_POSN (position
))
1214 && CONSP (tem2
) && EQ (Fcar (tem2
), Qmenu_bar
))
1215 menuflags
|= MENU_KBD_NAVIGATION
;
1216 tem
= Fcar (Fcdr (Fcdr (tem
))); /* POSN_WINDOW_POSN (tem) */
1221 /* If a click happens in an external tool bar or a detached
1222 tool bar, x and y is NIL. In that case, use the current
1223 mouse position. This happens for the help button in the
1224 tool bar. Ideally popup-menu should pass NIL to
1225 this function, but it doesn't. */
1226 if (NILP (x
) && NILP (y
))
1227 get_current_pos_p
= 1;
1230 if (get_current_pos_p
)
1232 /* Use the mouse's current position. */
1233 struct frame
*new_f
= SELECTED_FRAME ();
1237 #ifdef HAVE_X_WINDOWS
1238 if (FRAME_X_P (new_f
))
1240 /* Can't use mouse_position_hook for X since it returns
1241 coordinates relative to the window the mouse is in,
1242 we need coordinates relative to the edit widget always. */
1247 x_relative_mouse_position (new_f
, &cur_x
, &cur_y
);
1248 /* cur_x/y may be negative, so use make_number. */
1249 x
= make_number (cur_x
);
1250 y
= make_number (cur_y
);
1254 #endif /* HAVE_X_WINDOWS */
1256 Lisp_Object bar_window
;
1257 enum scroll_bar_part part
;
1259 void (*mouse_position_hook
) (struct frame
**, int,
1261 enum scroll_bar_part
*,
1265 FRAME_TERMINAL (new_f
)->mouse_position_hook
;
1267 if (mouse_position_hook
)
1268 (*mouse_position_hook
) (&new_f
, 1, &bar_window
,
1269 &part
, &x
, &y
, &time
);
1273 XSETFRAME (window
, new_f
);
1276 window
= selected_window
;
1282 /* Decode where to put the menu. */
1284 if (FRAMEP (window
))
1286 f
= XFRAME (window
);
1290 else if (WINDOWP (window
))
1292 struct window
*win
= XWINDOW (window
);
1293 CHECK_LIVE_WINDOW (window
);
1294 f
= XFRAME (WINDOW_FRAME (win
));
1296 xpos
= WINDOW_LEFT_EDGE_X (win
);
1297 ypos
= WINDOW_TOP_EDGE_Y (win
);
1300 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
1301 but I don't want to make one now. */
1302 CHECK_WINDOW (window
);
1304 CHECK_RANGED_INTEGER (x
,
1305 (xpos
< INT_MIN
- MOST_NEGATIVE_FIXNUM
1306 ? (EMACS_INT
) INT_MIN
- xpos
1307 : MOST_NEGATIVE_FIXNUM
),
1309 CHECK_RANGED_INTEGER (y
,
1310 (ypos
< INT_MIN
- MOST_NEGATIVE_FIXNUM
1311 ? (EMACS_INT
) INT_MIN
- ypos
1312 : MOST_NEGATIVE_FIXNUM
),
1317 XSETFRAME (Vmenu_updating_frame
, f
);
1320 /* Now parse the lisp menus. */
1321 record_unwind_protect_void (unuse_menu_items
);
1325 /* Decode the menu items from what was specified. */
1327 keymap
= get_keymap (menu
, 0, 0);
1330 /* We were given a keymap. Extract menu info from the keymap. */
1333 /* Extract the detailed info to make one pane. */
1334 keymap_panes (&menu
, 1);
1336 /* Search for a string appearing directly as an element of the keymap.
1337 That string is the title of the menu. */
1338 prompt
= Fkeymap_prompt (keymap
);
1341 #ifdef HAVE_NS /* Is that needed and NS-specific? --Stef */
1343 title
= build_string ("Select");
1346 /* Make that be the pane title of the first pane. */
1347 if (!NILP (prompt
) && menu_items_n_panes
>= 0)
1348 ASET (menu_items
, MENU_ITEMS_PANE_NAME
, prompt
);
1350 menuflags
|= MENU_KEYMAPS
;
1352 else if (CONSP (menu
) && KEYMAPP (XCAR (menu
)))
1354 /* We were given a list of keymaps. */
1355 EMACS_INT nmaps
= XFASTINT (Flength (menu
));
1360 SAFE_ALLOCA_LISP (maps
, nmaps
);
1363 /* The first keymap that has a prompt string
1364 supplies the menu title. */
1365 for (tem
= menu
, i
= 0; CONSP (tem
); tem
= XCDR (tem
))
1369 maps
[i
++] = keymap
= get_keymap (XCAR (tem
), 1, 0);
1371 prompt
= Fkeymap_prompt (keymap
);
1372 if (NILP (title
) && !NILP (prompt
))
1376 /* Extract the detailed info to make one pane. */
1377 keymap_panes (maps
, nmaps
);
1379 /* Make the title be the pane title of the first pane. */
1380 if (!NILP (title
) && menu_items_n_panes
>= 0)
1381 ASET (menu_items
, MENU_ITEMS_PANE_NAME
, title
);
1383 menuflags
|= MENU_KEYMAPS
;
1389 /* We were given an old-fashioned menu. */
1390 title
= Fcar (menu
);
1391 CHECK_STRING (title
);
1393 list_of_panes (Fcdr (menu
));
1395 menuflags
&= ~MENU_KEYMAPS
;
1398 unbind_to (specpdl_count
, Qnil
);
1400 #ifdef HAVE_WINDOW_SYSTEM
1401 /* Hide a previous tip, if any. */
1402 if (!FRAME_TERMCAP_P (f
))
1406 #ifdef HAVE_NTGUI /* FIXME: Is it really w32-specific? --Stef */
1407 /* If resources from a previous popup menu still exist, does nothing
1408 until the `menu_free_timer' has freed them (see w32fns.c). This
1409 can occur if you press ESC or click outside a menu without selecting
1412 if (current_popup_menu
&& FRAME_W32_P (f
))
1414 discard_menu_items ();
1415 FRAME_DISPLAY_INFO (f
)->grabbed
= 0;
1420 #ifdef HAVE_NS /* FIXME: ns-specific, why? --Stef */
1421 record_unwind_protect_void (discard_menu_items
);
1424 /* Display them in a menu, but not if F is the initial frame that
1425 doesn't have its hooks set (e.g., in a batch session), because
1426 such a frame cannot display menus. */
1427 if (!FRAME_INITIAL_P (f
))
1428 selection
= FRAME_TERMINAL (f
)->menu_show_hook (f
, xpos
, ypos
, menuflags
,
1429 title
, &error_name
);
1432 unbind_to (specpdl_count
, Qnil
);
1434 discard_menu_items ();
1437 #ifdef HAVE_NTGUI /* FIXME: Is it really w32-specific? --Stef */
1438 if (FRAME_W32_P (f
))
1439 FRAME_DISPLAY_INFO (f
)->grabbed
= 0;
1442 if (error_name
) error ("%s", error_name
);
1446 /* If F's terminal is not capable of displaying a popup dialog,
1447 emulate it with a menu. */
1450 emulate_dialog_with_menu (struct frame
*f
, Lisp_Object contents
)
1452 Lisp_Object x
, y
, frame
, newpos
, prompt
= Fcar (contents
);
1453 int x_coord
, y_coord
;
1455 if (FRAME_WINDOW_P (f
))
1457 x_coord
= FRAME_PIXEL_WIDTH (f
);
1458 y_coord
= FRAME_PIXEL_HEIGHT (f
);
1462 x_coord
= FRAME_COLS (f
);
1463 /* Center the title at frame middle. (TTY menus have
1464 their upper-left corner at the given position.) */
1465 if (STRINGP (prompt
))
1466 x_coord
-= SCHARS (prompt
);
1467 y_coord
= FRAME_TOTAL_LINES (f
);
1470 XSETFRAME (frame
, f
);
1471 XSETINT (x
, x_coord
/ 2);
1472 XSETINT (y
, y_coord
/ 2);
1473 newpos
= list2 (list2 (x
, y
), frame
);
1475 return Fx_popup_menu (newpos
, list2 (prompt
, contents
));
1478 DEFUN ("x-popup-dialog", Fx_popup_dialog
, Sx_popup_dialog
, 2, 3, 0,
1479 doc
: /* Pop up a dialog box and return user's selection.
1480 POSITION specifies which frame to use.
1481 This is normally a mouse button event or a window or frame.
1482 If POSITION is t, it means to use the frame the mouse is on.
1483 The dialog box appears in the middle of the specified frame.
1485 CONTENTS specifies the alternatives to display in the dialog box.
1486 It is a list of the form (DIALOG ITEM1 ITEM2...).
1487 Each ITEM is a cons cell (STRING . VALUE).
1488 The return value is VALUE from the chosen item.
1490 An ITEM may also be just a string--that makes a nonselectable item.
1491 An ITEM may also be nil--that means to put all preceding items
1492 on the left of the dialog box and all following items on the right.
1493 \(By default, approximately half appear on each side.)
1495 If HEADER is non-nil, the frame title for the box is "Information",
1496 otherwise it is "Question".
1498 If the user gets rid of the dialog box without making a valid choice,
1499 for instance using the window manager, then this produces a quit and
1500 `x-popup-dialog' does not return. */)
1501 (Lisp_Object position
, Lisp_Object contents
, Lisp_Object header
)
1503 struct frame
*f
= NULL
;
1506 /* Decode the first argument: find the window or frame to use. */
1507 if (EQ (position
, Qt
)
1508 || (CONSP (position
) && (EQ (XCAR (position
), Qmenu_bar
)
1509 || EQ (XCAR (position
), Qtool_bar
))))
1510 window
= selected_window
;
1511 else if (CONSP (position
))
1513 Lisp_Object tem
= XCAR (position
);
1515 window
= Fcar (XCDR (position
));
1518 tem
= Fcar (XCDR (position
)); /* EVENT_START (position) */
1519 window
= Fcar (tem
); /* POSN_WINDOW (tem) */
1522 else if (WINDOWP (position
) || FRAMEP (position
))
1527 /* Decode where to put the menu. */
1529 if (FRAMEP (window
))
1530 f
= XFRAME (window
);
1531 else if (WINDOWP (window
))
1533 CHECK_LIVE_WINDOW (window
);
1534 f
= XFRAME (WINDOW_FRAME (XWINDOW (window
)));
1537 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
1538 but I don't want to make one now. */
1539 CHECK_WINDOW (window
);
1541 /* Note that xw_popup_dialog can call menu code, so
1542 Vmenu_updating_frame should be set (Bug#17891). */
1543 eassume (f
&& FRAME_LIVE_P (f
));
1544 XSETFRAME (Vmenu_updating_frame
, f
);
1546 /* Force a redisplay before showing the dialog. If a frame is created
1547 just before showing the dialog, its contents may not have been fully
1548 drawn, as this depends on timing of events from the X server. Redisplay
1549 is not done when a dialog is shown. If redisplay could be done in the
1550 X event loop (i.e. the X event loop does not run in a signal handler)
1551 this would not be needed.
1553 Do this before creating the widget value that points to Lisp
1554 string contents, because Fredisplay may GC and relocate them. */
1557 /* Display the popup dialog by a terminal-specific hook ... */
1558 if (FRAME_TERMINAL (f
)->popup_dialog_hook
)
1560 Lisp_Object selection
1561 = FRAME_TERMINAL (f
)->popup_dialog_hook (f
, header
, contents
);
1563 /* NTGUI supports only simple dialogs with Yes/No choices. For
1564 other dialogs, it returns the symbol 'unsupported--w32-dialog',
1565 as a signal for the caller to fall back to the emulation code. */
1566 if (!EQ (selection
, Qunsupported__w32_dialog
))
1570 /* ... or emulate it with a menu. */
1571 return emulate_dialog_with_menu (f
, contents
);
1577 staticpro (&menu_items
);
1579 menu_items_inuse
= Qnil
;
1581 defsubr (&Sx_popup_menu
);
1582 defsubr (&Sx_popup_dialog
);
1583 defsubr (&Smenu_bar_menu_at_x_y
);