(powerpc-apple-darwin*): Use ${CC-cc} instead of
[emacs.git] / src / xmenu.c
blob3e99a1c506d611b9a769f95a9f14ff77316579b9
1 /* X Communication module for terminals which understand the X protocol.
2 Copyright (C) 1986, 88, 93, 94, 96, 99, 2000, 2001, 2003
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* X pop-up deck-of-cards menu facility for GNU Emacs.
24 * Written by Jon Arnold and Roman Budzianowski
25 * Mods and rewrite by Robert Krawitz
29 /* Modified by Fred Pierresteguy on December 93
30 to make the popup menus and menubar use the Xt. */
32 /* Rewritten for clarity and GC protection by rms in Feb 94. */
34 #include <config.h>
36 /* On 4.3 this loses if it comes after xterm.h. */
37 #include <signal.h>
39 #include <stdio.h>
41 #include "lisp.h"
42 #include "termhooks.h"
43 #include "keyboard.h"
44 #include "keymap.h"
45 #include "frame.h"
46 #include "window.h"
47 #include "blockinput.h"
48 #include "buffer.h"
49 #include "charset.h"
50 #include "coding.h"
52 #ifdef MSDOS
53 #include "msdos.h"
54 #endif
56 #ifdef HAVE_X_WINDOWS
57 /* This may include sys/types.h, and that somehow loses
58 if this is not done before the other system files. */
59 #include "xterm.h"
60 #endif
62 /* Load sys/types.h if not already loaded.
63 In some systems loading it twice is suicidal. */
64 #ifndef makedev
65 #include <sys/types.h>
66 #endif
68 #include "dispextern.h"
70 #ifdef HAVE_X_WINDOWS
71 /* Defining HAVE_MULTILINGUAL_MENU would mean that the toolkit menu
72 code accepts the Emacs internal encoding. */
73 #undef HAVE_MULTILINGUAL_MENU
74 #ifdef USE_X_TOOLKIT
75 #include "widget.h"
76 #include <X11/Xlib.h>
77 #include <X11/IntrinsicP.h>
78 #include <X11/CoreP.h>
79 #include <X11/StringDefs.h>
80 #include <X11/Shell.h>
81 #ifdef USE_LUCID
82 #include <X11/Xaw/Paned.h>
83 #endif /* USE_LUCID */
84 #include "../lwlib/lwlib.h"
85 #else /* not USE_X_TOOLKIT */
86 #ifndef USE_GTK
87 #include "../oldXMenu/XMenu.h"
88 #endif
89 #endif /* not USE_X_TOOLKIT */
90 #endif /* HAVE_X_WINDOWS */
92 #ifndef TRUE
93 #define TRUE 1
94 #define FALSE 0
95 #endif /* no TRUE */
97 Lisp_Object Vmenu_updating_frame;
99 Lisp_Object Qdebug_on_next_call;
101 extern Lisp_Object Qmenu_bar;
102 extern Lisp_Object Qmouse_click, Qevent_kind;
104 extern Lisp_Object QCtoggle, QCradio;
106 extern Lisp_Object Voverriding_local_map;
107 extern Lisp_Object Voverriding_local_map_menu_flag;
109 extern Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
111 extern Lisp_Object Qmenu_bar_update_hook;
113 #ifdef USE_X_TOOLKIT
114 extern void set_frame_menubar ();
115 extern XtAppContext Xt_app_con;
117 static Lisp_Object xdialog_show ();
118 static void popup_get_selection ();
120 /* Define HAVE_BOXES if menus can handle radio and toggle buttons. */
122 #define HAVE_BOXES 1
123 #endif /* USE_X_TOOLKIT */
125 #ifdef USE_GTK
126 #include "gtkutil.h"
127 #define HAVE_BOXES 1
128 extern void set_frame_menubar ();
129 static Lisp_Object xdialog_show ();
130 #endif
132 /* This is how to deal with multibyte text if HAVE_MULTILINGUAL_MENU
133 isn't defined. The use of HAVE_MULTILINGUAL_MENU could probably be
134 confined to an extended version of this with sections of code below
135 using it unconditionally. */
136 #ifdef USE_GTK
137 /* gtk just uses utf-8. */
138 # define ENCODE_MENU_STRING(str) ENCODE_UTF_8 (str)
139 #else
140 /* I'm not convinced ENCODE_SYSTEM is defined correctly, or maybe
141 something else should be used here. Except under MS-Windows it
142 just converts to unibyte, but encoding with `locale-coding-system'
143 seems better -- X may actually display the result correctly, and
144 it's not necessarily equivalent to the unibyte text. -- fx */
145 # define ENCODE_MENU_STRING(str) ENCODE_SYSTEM (str)
146 #endif
148 static void push_menu_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
149 Lisp_Object, Lisp_Object, Lisp_Object,
150 Lisp_Object, Lisp_Object));
151 static int update_frame_menubar P_ ((struct frame *));
152 static Lisp_Object xmenu_show P_ ((struct frame *, int, int, int, int,
153 Lisp_Object, char **));
154 static void keymap_panes P_ ((Lisp_Object *, int, int));
155 static void single_keymap_panes P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
156 int, int));
157 static void list_of_panes P_ ((Lisp_Object));
158 static void list_of_items P_ ((Lisp_Object));
160 extern EMACS_TIME timer_check P_ ((int));
162 /* This holds a Lisp vector that holds the results of decoding
163 the keymaps or alist-of-alists that specify a menu.
165 It describes the panes and items within the panes.
167 Each pane is described by 3 elements in the vector:
168 t, the pane name, the pane's prefix key.
169 Then follow the pane's items, with 5 elements per item:
170 the item string, the enable flag, the item's value,
171 the definition, and the equivalent keyboard key's description string.
173 In some cases, multiple levels of menus may be described.
174 A single vector slot containing nil indicates the start of a submenu.
175 A single vector slot containing lambda indicates the end of a submenu.
176 The submenu follows a menu item which is the way to reach the submenu.
178 A single vector slot containing quote indicates that the
179 following items should appear on the right of a dialog box.
181 Using a Lisp vector to hold this information while we decode it
182 takes care of protecting all the data from GC. */
184 #define MENU_ITEMS_PANE_NAME 1
185 #define MENU_ITEMS_PANE_PREFIX 2
186 #define MENU_ITEMS_PANE_LENGTH 3
188 enum menu_item_idx
190 MENU_ITEMS_ITEM_NAME = 0,
191 MENU_ITEMS_ITEM_ENABLE,
192 MENU_ITEMS_ITEM_VALUE,
193 MENU_ITEMS_ITEM_EQUIV_KEY,
194 MENU_ITEMS_ITEM_DEFINITION,
195 MENU_ITEMS_ITEM_TYPE,
196 MENU_ITEMS_ITEM_SELECTED,
197 MENU_ITEMS_ITEM_HELP,
198 MENU_ITEMS_ITEM_LENGTH
201 static Lisp_Object menu_items;
203 /* If non-nil, means that the global vars defined here are already in use.
204 Used to detect cases where we try to re-enter this non-reentrant code. */
205 static Lisp_Object menu_items_inuse;
207 /* Number of slots currently allocated in menu_items. */
208 static int menu_items_allocated;
210 /* This is the index in menu_items of the first empty slot. */
211 static int menu_items_used;
213 /* The number of panes currently recorded in menu_items,
214 excluding those within submenus. */
215 static int menu_items_n_panes;
217 /* Current depth within submenus. */
218 static int menu_items_submenu_depth;
220 /* Flag which when set indicates a dialog or menu has been posted by
221 Xt on behalf of one of the widget sets. */
222 static int popup_activated_flag;
224 static int next_menubar_widget_id;
226 /* This is set nonzero after the user activates the menu bar, and set
227 to zero again after the menu bars are redisplayed by prepare_menu_bar.
228 While it is nonzero, all calls to set_frame_menubar go deep.
230 I don't understand why this is needed, but it does seem to be
231 needed on Motif, according to Marcus Daniels <marcus@sysc.pdx.edu>. */
233 int pending_menu_activation;
235 #ifdef USE_X_TOOLKIT
237 /* Return the frame whose ->output_data.x->id equals ID, or 0 if none. */
239 static struct frame *
240 menubar_id_to_frame (id)
241 LWLIB_ID id;
243 Lisp_Object tail, frame;
244 FRAME_PTR f;
246 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
248 frame = XCAR (tail);
249 if (!GC_FRAMEP (frame))
250 continue;
251 f = XFRAME (frame);
252 if (!FRAME_WINDOW_P (f))
253 continue;
254 if (f->output_data.x->id == id)
255 return f;
257 return 0;
260 #endif
262 /* Initialize the menu_items structure if we haven't already done so.
263 Also mark it as currently empty. */
265 static void
266 init_menu_items ()
268 if (NILP (menu_items))
270 menu_items_allocated = 60;
271 menu_items = Fmake_vector (make_number (menu_items_allocated), Qnil);
274 if (!NILP (menu_items_inuse))
275 error ("Trying to use a menu from within a menu-entry");
276 menu_items_inuse = Qt;
277 menu_items_used = 0;
278 menu_items_n_panes = 0;
279 menu_items_submenu_depth = 0;
282 /* Call at the end of generating the data in menu_items. */
284 static void
285 finish_menu_items ()
289 static Lisp_Object
290 unuse_menu_items (dummy)
291 int dummy;
293 return menu_items_inuse = Qnil;
296 /* Call when finished using the data for the current menu
297 in menu_items. */
299 static void
300 discard_menu_items ()
302 /* Free the structure if it is especially large.
303 Otherwise, hold on to it, to save time. */
304 if (menu_items_allocated > 200)
306 menu_items = Qnil;
307 menu_items_allocated = 0;
309 xassert (NILP (menu_items_inuse));
312 /* Make the menu_items vector twice as large. */
314 static void
315 grow_menu_items ()
317 Lisp_Object old;
318 int old_size = menu_items_allocated;
319 old = menu_items;
321 menu_items_allocated *= 2;
322 menu_items = Fmake_vector (make_number (menu_items_allocated), Qnil);
323 bcopy (XVECTOR (old)->contents, XVECTOR (menu_items)->contents,
324 old_size * sizeof (Lisp_Object));
327 /* Begin a submenu. */
329 static void
330 push_submenu_start ()
332 if (menu_items_used + 1 > menu_items_allocated)
333 grow_menu_items ();
335 XVECTOR (menu_items)->contents[menu_items_used++] = Qnil;
336 menu_items_submenu_depth++;
339 /* End a submenu. */
341 static void
342 push_submenu_end ()
344 if (menu_items_used + 1 > menu_items_allocated)
345 grow_menu_items ();
347 XVECTOR (menu_items)->contents[menu_items_used++] = Qlambda;
348 menu_items_submenu_depth--;
351 /* Indicate boundary between left and right. */
353 static void
354 push_left_right_boundary ()
356 if (menu_items_used + 1 > menu_items_allocated)
357 grow_menu_items ();
359 XVECTOR (menu_items)->contents[menu_items_used++] = Qquote;
362 /* Start a new menu pane in menu_items.
363 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */
365 static void
366 push_menu_pane (name, prefix_vec)
367 Lisp_Object name, prefix_vec;
369 if (menu_items_used + MENU_ITEMS_PANE_LENGTH > menu_items_allocated)
370 grow_menu_items ();
372 if (menu_items_submenu_depth == 0)
373 menu_items_n_panes++;
374 XVECTOR (menu_items)->contents[menu_items_used++] = Qt;
375 XVECTOR (menu_items)->contents[menu_items_used++] = name;
376 XVECTOR (menu_items)->contents[menu_items_used++] = prefix_vec;
379 /* Push one menu item into the current pane. NAME is the string to
380 display. ENABLE if non-nil means this item can be selected. KEY
381 is the key generated by choosing this item, or nil if this item
382 doesn't really have a definition. DEF is the definition of this
383 item. EQUIV is the textual description of the keyboard equivalent
384 for this item (or nil if none). TYPE is the type of this menu
385 item, one of nil, `toggle' or `radio'. */
387 static void
388 push_menu_item (name, enable, key, def, equiv, type, selected, help)
389 Lisp_Object name, enable, key, def, equiv, type, selected, help;
391 if (menu_items_used + MENU_ITEMS_ITEM_LENGTH > menu_items_allocated)
392 grow_menu_items ();
394 XVECTOR (menu_items)->contents[menu_items_used++] = name;
395 XVECTOR (menu_items)->contents[menu_items_used++] = enable;
396 XVECTOR (menu_items)->contents[menu_items_used++] = key;
397 XVECTOR (menu_items)->contents[menu_items_used++] = equiv;
398 XVECTOR (menu_items)->contents[menu_items_used++] = def;
399 XVECTOR (menu_items)->contents[menu_items_used++] = type;
400 XVECTOR (menu_items)->contents[menu_items_used++] = selected;
401 XVECTOR (menu_items)->contents[menu_items_used++] = help;
404 /* Look through KEYMAPS, a vector of keymaps that is NMAPS long,
405 and generate menu panes for them in menu_items.
406 If NOTREAL is nonzero,
407 don't bother really computing whether an item is enabled. */
409 static void
410 keymap_panes (keymaps, nmaps, notreal)
411 Lisp_Object *keymaps;
412 int nmaps;
413 int notreal;
415 int mapno;
417 init_menu_items ();
419 /* Loop over the given keymaps, making a pane for each map.
420 But don't make a pane that is empty--ignore that map instead.
421 P is the number of panes we have made so far. */
422 for (mapno = 0; mapno < nmaps; mapno++)
423 single_keymap_panes (keymaps[mapno],
424 Fkeymap_prompt (keymaps[mapno]), Qnil, notreal, 10);
426 finish_menu_items ();
429 /* Args passed between single_keymap_panes and single_menu_item. */
430 struct skp
432 Lisp_Object pending_maps;
433 int maxdepth, notreal;
434 int notbuttons;
437 static void single_menu_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
438 void *));
440 /* This is a recursive subroutine of keymap_panes.
441 It handles one keymap, KEYMAP.
442 The other arguments are passed along
443 or point to local variables of the previous function.
444 If NOTREAL is nonzero, only check for equivalent key bindings, don't
445 evaluate expressions in menu items and don't make any menu.
447 If we encounter submenus deeper than MAXDEPTH levels, ignore them. */
449 static void
450 single_keymap_panes (keymap, pane_name, prefix, notreal, maxdepth)
451 Lisp_Object keymap;
452 Lisp_Object pane_name;
453 Lisp_Object prefix;
454 int notreal;
455 int maxdepth;
457 struct skp skp;
458 struct gcpro gcpro1;
460 skp.pending_maps = Qnil;
461 skp.maxdepth = maxdepth;
462 skp.notreal = notreal;
463 skp.notbuttons = 0;
465 if (maxdepth <= 0)
466 return;
468 push_menu_pane (pane_name, prefix);
470 #ifndef HAVE_BOXES
471 /* Remember index for first item in this pane so we can go back and
472 add a prefix when (if) we see the first button. After that, notbuttons
473 is set to 0, to mark that we have seen a button and all non button
474 items need a prefix. */
475 skp.notbuttons = menu_items_used;
476 #endif
478 GCPRO1 (skp.pending_maps);
479 map_keymap (keymap, single_menu_item, Qnil, &skp, 1);
480 UNGCPRO;
482 /* Process now any submenus which want to be panes at this level. */
483 while (CONSP (skp.pending_maps))
485 Lisp_Object elt, eltcdr, string;
486 elt = XCAR (skp.pending_maps);
487 eltcdr = XCDR (elt);
488 string = XCAR (eltcdr);
489 /* We no longer discard the @ from the beginning of the string here.
490 Instead, we do this in xmenu_show. */
491 single_keymap_panes (Fcar (elt), string,
492 XCDR (eltcdr), notreal, maxdepth - 1);
493 skp.pending_maps = XCDR (skp.pending_maps);
497 /* This is a subroutine of single_keymap_panes that handles one
498 keymap entry.
499 KEY is a key in a keymap and ITEM is its binding.
500 SKP->PENDING_MAPS_PTR is a list of keymaps waiting to be made into
501 separate panes.
502 If SKP->NOTREAL is nonzero, only check for equivalent key bindings, don't
503 evaluate expressions in menu items and don't make any menu.
504 If we encounter submenus deeper than SKP->MAXDEPTH levels, ignore them.
505 SKP->NOTBUTTONS is only used when simulating toggle boxes and radio
506 buttons. It keeps track of if we have seen a button in this menu or
507 not. */
509 static void
510 single_menu_item (key, item, dummy, skp_v)
511 Lisp_Object key, item, dummy;
512 void *skp_v;
514 Lisp_Object map, item_string, enabled;
515 struct gcpro gcpro1, gcpro2;
516 int res;
517 struct skp *skp = skp_v;
519 /* Parse the menu item and leave the result in item_properties. */
520 GCPRO2 (key, item);
521 res = parse_menu_item (item, skp->notreal, 0);
522 UNGCPRO;
523 if (!res)
524 return; /* Not a menu item. */
526 map = XVECTOR (item_properties)->contents[ITEM_PROPERTY_MAP];
528 if (skp->notreal)
530 /* We don't want to make a menu, just traverse the keymaps to
531 precompute equivalent key bindings. */
532 if (!NILP (map))
533 single_keymap_panes (map, Qnil, key, 1, skp->maxdepth - 1);
534 return;
537 enabled = XVECTOR (item_properties)->contents[ITEM_PROPERTY_ENABLE];
538 item_string = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
540 if (!NILP (map) && SREF (item_string, 0) == '@')
542 if (!NILP (enabled))
543 /* An enabled separate pane. Remember this to handle it later. */
544 skp->pending_maps = Fcons (Fcons (map, Fcons (item_string, key)),
545 skp->pending_maps);
546 return;
549 #ifndef HAVE_BOXES
550 /* Simulate radio buttons and toggle boxes by putting a prefix in
551 front of them. */
553 Lisp_Object prefix = Qnil;
554 Lisp_Object type = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE];
555 if (!NILP (type))
557 Lisp_Object selected
558 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED];
560 if (skp->notbuttons)
561 /* The first button. Line up previous items in this menu. */
563 int index = skp->notbuttons; /* Index for first item this menu. */
564 int submenu = 0;
565 Lisp_Object tem;
566 while (index < menu_items_used)
569 = XVECTOR (menu_items)->contents[index + MENU_ITEMS_ITEM_NAME];
570 if (NILP (tem))
572 index++;
573 submenu++; /* Skip sub menu. */
575 else if (EQ (tem, Qlambda))
577 index++;
578 submenu--; /* End sub menu. */
580 else if (EQ (tem, Qt))
581 index += 3; /* Skip new pane marker. */
582 else if (EQ (tem, Qquote))
583 index++; /* Skip a left, right divider. */
584 else
586 if (!submenu && SREF (tem, 0) != '\0'
587 && SREF (tem, 0) != '-')
588 XVECTOR (menu_items)->contents[index + MENU_ITEMS_ITEM_NAME]
589 = concat2 (build_string (" "), tem);
590 index += MENU_ITEMS_ITEM_LENGTH;
593 skp->notbuttons = 0;
596 /* Calculate prefix, if any, for this item. */
597 if (EQ (type, QCtoggle))
598 prefix = build_string (NILP (selected) ? "[ ] " : "[X] ");
599 else if (EQ (type, QCradio))
600 prefix = build_string (NILP (selected) ? "( ) " : "(*) ");
602 /* Not a button. If we have earlier buttons, then we need a prefix. */
603 else if (!skp->notbuttons && SREF (item_string, 0) != '\0'
604 && SREF (item_string, 0) != '-')
605 prefix = build_string (" ");
607 if (!NILP (prefix))
608 item_string = concat2 (prefix, item_string);
610 #endif /* not HAVE_BOXES */
612 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
613 if (!NILP (map))
614 /* Indicate visually that this is a submenu. */
615 item_string = concat2 (item_string, build_string (" >"));
616 #endif
618 push_menu_item (item_string, enabled, key,
619 XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF],
620 XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ],
621 XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE],
622 XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED],
623 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP]);
625 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
626 /* Display a submenu using the toolkit. */
627 if (! (NILP (map) || NILP (enabled)))
629 push_submenu_start ();
630 single_keymap_panes (map, Qnil, key, 0, skp->maxdepth - 1);
631 push_submenu_end ();
633 #endif
636 /* Push all the panes and items of a menu described by the
637 alist-of-alists MENU.
638 This handles old-fashioned calls to x-popup-menu. */
640 static void
641 list_of_panes (menu)
642 Lisp_Object menu;
644 Lisp_Object tail;
646 init_menu_items ();
648 for (tail = menu; !NILP (tail); tail = Fcdr (tail))
650 Lisp_Object elt, pane_name, pane_data;
651 elt = Fcar (tail);
652 pane_name = Fcar (elt);
653 CHECK_STRING (pane_name);
654 push_menu_pane (ENCODE_MENU_STRING (pane_name), Qnil);
655 pane_data = Fcdr (elt);
656 CHECK_CONS (pane_data);
657 list_of_items (pane_data);
660 finish_menu_items ();
663 /* Push the items in a single pane defined by the alist PANE. */
665 static void
666 list_of_items (pane)
667 Lisp_Object pane;
669 Lisp_Object tail, item, item1;
671 for (tail = pane; !NILP (tail); tail = Fcdr (tail))
673 item = Fcar (tail);
674 if (STRINGP (item))
675 push_menu_item (ENCODE_MENU_STRING (item), Qnil, Qnil, Qt,
676 Qnil, Qnil, Qnil, Qnil);
677 else if (NILP (item))
678 push_left_right_boundary ();
679 else
681 CHECK_CONS (item);
682 item1 = Fcar (item);
683 CHECK_STRING (item1);
684 push_menu_item (ENCODE_MENU_STRING (item1), Qt, Fcdr (item),
685 Qt, Qnil, Qnil, Qnil, Qnil);
690 #ifdef HAVE_X_WINDOWS
691 /* Return the mouse position in *X and *Y. The coordinates are window
692 relative for the edit window in frame F.
693 This is for Fx_popup_menu. The mouse_position_hook can not
694 be used for X, as it returns window relative coordinates
695 for the window where the mouse is in. This could be the menu bar,
696 the scroll bar or the edit window. Fx_popup_menu needs to be
697 sure it is the edit window. */
698 static void
699 mouse_position_for_popup (f, x, y)
700 FRAME_PTR f;
701 int *x;
702 int *y;
704 Window root, dummy_window;
705 int dummy;
707 BLOCK_INPUT;
709 XQueryPointer (FRAME_X_DISPLAY (f),
710 DefaultRootWindow (FRAME_X_DISPLAY (f)),
712 /* The root window which contains the pointer. */
713 &root,
715 /* Window pointer is on, not used */
716 &dummy_window,
718 /* The position on that root window. */
719 x, y,
721 /* x/y in dummy_window coordinates, not used. */
722 &dummy, &dummy,
724 /* Modifier keys and pointer buttons, about which
725 we don't care. */
726 (unsigned int *) &dummy);
728 UNBLOCK_INPUT;
730 /* xmenu_show expects window coordinates, not root window
731 coordinates. Translate. */
732 *x -= f->left_pos + FRAME_OUTER_TO_INNER_DIFF_X (f);
733 *y -= f->top_pos + FRAME_OUTER_TO_INNER_DIFF_Y (f);
736 #endif /* HAVE_X_WINDOWS */
738 DEFUN ("x-popup-menu", Fx_popup_menu, Sx_popup_menu, 2, 2, 0,
739 doc: /* Pop up a deck-of-cards menu and return user's selection.
740 POSITION is a position specification. This is either a mouse button event
741 or a list ((XOFFSET YOFFSET) WINDOW)
742 where XOFFSET and YOFFSET are positions in pixels from the top left
743 corner of WINDOW's frame. (WINDOW may be a frame object instead of a window.)
744 This controls the position of the center of the first line
745 in the first pane of the menu, not the top left of the menu as a whole.
746 If POSITION is t, it means to use the current mouse position.
748 MENU is a specifier for a menu. For the simplest case, MENU is a keymap.
749 The menu items come from key bindings that have a menu string as well as
750 a definition; actually, the "definition" in such a key binding looks like
751 \(STRING . REAL-DEFINITION). To give the menu a title, put a string into
752 the keymap as a top-level element.
754 If REAL-DEFINITION is nil, that puts a nonselectable string in the menu.
755 Otherwise, REAL-DEFINITION should be a valid key binding definition.
757 You can also use a list of keymaps as MENU.
758 Then each keymap makes a separate pane.
759 When MENU is a keymap or a list of keymaps, the return value
760 is a list of events.
762 Alternatively, you can specify a menu of multiple panes
763 with a list of the form (TITLE PANE1 PANE2...),
764 where each pane is a list of form (TITLE ITEM1 ITEM2...).
765 Each ITEM is normally a cons cell (STRING . VALUE);
766 but a string can appear as an item--that makes a nonselectable line
767 in the menu.
768 With this form of menu, the return value is VALUE from the chosen item.
770 If POSITION is nil, don't display the menu at all, just precalculate the
771 cached information about equivalent key sequences. */)
772 (position, menu)
773 Lisp_Object position, menu;
775 Lisp_Object keymap, tem;
776 int xpos = 0, ypos = 0;
777 Lisp_Object title;
778 char *error_name;
779 Lisp_Object selection;
780 FRAME_PTR f = NULL;
781 Lisp_Object x, y, window;
782 int keymaps = 0;
783 int for_click = 0;
784 int specpdl_count = SPECPDL_INDEX ();
785 struct gcpro gcpro1;
787 #ifdef HAVE_MENUS
788 if (! NILP (position))
790 int get_current_pos_p = 0;
791 check_x ();
793 /* Decode the first argument: find the window and the coordinates. */
794 if (EQ (position, Qt)
795 || (CONSP (position) && (EQ (XCAR (position), Qmenu_bar)
796 || EQ (XCAR (position), Qtool_bar))))
798 get_current_pos_p = 1;
800 else
802 tem = Fcar (position);
803 if (CONSP (tem))
805 window = Fcar (Fcdr (position));
806 x = Fcar (tem);
807 y = Fcar (Fcdr (tem));
809 else
811 for_click = 1;
812 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
813 window = Fcar (tem); /* POSN_WINDOW (tem) */
814 tem = Fcar (Fcdr (Fcdr (tem))); /* POSN_WINDOW_POSN (tem) */
815 x = Fcar (tem);
816 y = Fcdr (tem);
819 /* If a click happens in an external tool bar or a detached
820 tool bar, x and y is NIL. In that case, use the current
821 mouse position. This happens for the help button in the
822 tool bar. Ideally popup-menu should pass NIL to
823 this function, but it doesn't. */
824 if (NILP (x) && NILP (y))
825 get_current_pos_p = 1;
828 if (get_current_pos_p)
830 /* Use the mouse's current position. */
831 FRAME_PTR new_f = SELECTED_FRAME ();
832 #ifdef HAVE_X_WINDOWS
833 /* Can't use mouse_position_hook for X since it returns
834 coordinates relative to the window the mouse is in,
835 we need coordinates relative to the edit widget always. */
836 if (new_f != 0)
838 int cur_x, cur_y;
840 mouse_position_for_popup (new_f, &cur_x, &cur_y);
841 /* cur_x/y may be negative, so use make_number. */
842 x = make_number (cur_x);
843 y = make_number (cur_y);
846 #else /* not HAVE_X_WINDOWS */
847 Lisp_Object bar_window;
848 enum scroll_bar_part part;
849 unsigned long time;
851 if (mouse_position_hook)
852 (*mouse_position_hook) (&new_f, 1, &bar_window,
853 &part, &x, &y, &time);
854 #endif /* not HAVE_X_WINDOWS */
856 if (new_f != 0)
857 XSETFRAME (window, new_f);
858 else
860 window = selected_window;
861 XSETFASTINT (x, 0);
862 XSETFASTINT (y, 0);
866 CHECK_NUMBER (x);
867 CHECK_NUMBER (y);
869 /* Decode where to put the menu. */
871 if (FRAMEP (window))
873 f = XFRAME (window);
874 xpos = 0;
875 ypos = 0;
877 else if (WINDOWP (window))
879 CHECK_LIVE_WINDOW (window);
880 f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
882 xpos = WINDOW_LEFT_EDGE_X (XWINDOW (window));
883 ypos = WINDOW_TOP_EDGE_Y (XWINDOW (window));
885 else
886 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
887 but I don't want to make one now. */
888 CHECK_WINDOW (window);
890 xpos += XINT (x);
891 ypos += XINT (y);
893 Vmenu_updating_frame = Qnil;
894 #endif /* HAVE_MENUS */
896 record_unwind_protect (unuse_menu_items, Qnil);
897 title = Qnil;
898 GCPRO1 (title);
900 /* Decode the menu items from what was specified. */
902 keymap = get_keymap (menu, 0, 0);
903 if (CONSP (keymap))
905 /* We were given a keymap. Extract menu info from the keymap. */
906 Lisp_Object prompt;
908 /* Extract the detailed info to make one pane. */
909 keymap_panes (&menu, 1, NILP (position));
911 /* Search for a string appearing directly as an element of the keymap.
912 That string is the title of the menu. */
913 prompt = Fkeymap_prompt (keymap);
914 if (NILP (title) && !NILP (prompt))
915 title = prompt;
917 /* Make that be the pane title of the first pane. */
918 if (!NILP (prompt) && menu_items_n_panes >= 0)
919 XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME] = prompt;
921 keymaps = 1;
923 else if (CONSP (menu) && KEYMAPP (XCAR (menu)))
925 /* We were given a list of keymaps. */
926 int nmaps = XFASTINT (Flength (menu));
927 Lisp_Object *maps
928 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
929 int i;
931 title = Qnil;
933 /* The first keymap that has a prompt string
934 supplies the menu title. */
935 for (tem = menu, i = 0; CONSP (tem); tem = Fcdr (tem))
937 Lisp_Object prompt;
939 maps[i++] = keymap = get_keymap (Fcar (tem), 1, 0);
941 prompt = Fkeymap_prompt (keymap);
942 if (NILP (title) && !NILP (prompt))
943 title = prompt;
946 /* Extract the detailed info to make one pane. */
947 keymap_panes (maps, nmaps, NILP (position));
949 /* Make the title be the pane title of the first pane. */
950 if (!NILP (title) && menu_items_n_panes >= 0)
951 XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME] = title;
953 keymaps = 1;
955 else
957 /* We were given an old-fashioned menu. */
958 title = Fcar (menu);
959 CHECK_STRING (title);
961 list_of_panes (Fcdr (menu));
963 keymaps = 0;
966 unbind_to (specpdl_count, Qnil);
968 if (NILP (position))
970 discard_menu_items ();
971 UNGCPRO;
972 return Qnil;
975 #ifdef HAVE_MENUS
976 /* Display them in a menu. */
977 BLOCK_INPUT;
979 selection = xmenu_show (f, xpos, ypos, for_click,
980 keymaps, title, &error_name);
981 UNBLOCK_INPUT;
983 discard_menu_items ();
985 UNGCPRO;
986 #endif /* HAVE_MENUS */
988 if (error_name) error (error_name);
989 return selection;
992 #ifdef HAVE_MENUS
994 DEFUN ("x-popup-dialog", Fx_popup_dialog, Sx_popup_dialog, 2, 2, 0,
995 doc: /* Pop up a dialog box and return user's selection.
996 POSITION specifies which frame to use.
997 This is normally a mouse button event or a window or frame.
998 If POSITION is t, it means to use the frame the mouse is on.
999 The dialog box appears in the middle of the specified frame.
1001 CONTENTS specifies the alternatives to display in the dialog box.
1002 It is a list of the form (TITLE ITEM1 ITEM2...).
1003 Each ITEM is a cons cell (STRING . VALUE).
1004 The return value is VALUE from the chosen item.
1006 An ITEM may also be just a string--that makes a nonselectable item.
1007 An ITEM may also be nil--that means to put all preceding items
1008 on the left of the dialog box and all following items on the right.
1009 \(By default, approximately half appear on each side.) */)
1010 (position, contents)
1011 Lisp_Object position, contents;
1013 FRAME_PTR f = NULL;
1014 Lisp_Object window;
1016 check_x ();
1018 /* Decode the first argument: find the window or frame to use. */
1019 if (EQ (position, Qt)
1020 || (CONSP (position) && (EQ (XCAR (position), Qmenu_bar)
1021 || EQ (XCAR (position), Qtool_bar))))
1023 #if 0 /* Using the frame the mouse is on may not be right. */
1024 /* Use the mouse's current position. */
1025 FRAME_PTR new_f = SELECTED_FRAME ();
1026 Lisp_Object bar_window;
1027 enum scroll_bar_part part;
1028 unsigned long time;
1029 Lisp_Object x, y;
1031 (*mouse_position_hook) (&new_f, 1, &bar_window, &part, &x, &y, &time);
1033 if (new_f != 0)
1034 XSETFRAME (window, new_f);
1035 else
1036 window = selected_window;
1037 #endif
1038 window = selected_window;
1040 else if (CONSP (position))
1042 Lisp_Object tem;
1043 tem = Fcar (position);
1044 if (CONSP (tem))
1045 window = Fcar (Fcdr (position));
1046 else
1048 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
1049 window = Fcar (tem); /* POSN_WINDOW (tem) */
1052 else if (WINDOWP (position) || FRAMEP (position))
1053 window = position;
1054 else
1055 window = Qnil;
1057 /* Decode where to put the menu. */
1059 if (FRAMEP (window))
1060 f = XFRAME (window);
1061 else if (WINDOWP (window))
1063 CHECK_LIVE_WINDOW (window);
1064 f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
1066 else
1067 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
1068 but I don't want to make one now. */
1069 CHECK_WINDOW (window);
1071 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
1072 /* Display a menu with these alternatives
1073 in the middle of frame F. */
1075 Lisp_Object x, y, frame, newpos;
1076 XSETFRAME (frame, f);
1077 XSETINT (x, x_pixel_width (f) / 2);
1078 XSETINT (y, x_pixel_height (f) / 2);
1079 newpos = Fcons (Fcons (x, Fcons (y, Qnil)), Fcons (frame, Qnil));
1081 return Fx_popup_menu (newpos,
1082 Fcons (Fcar (contents), Fcons (contents, Qnil)));
1084 #else
1086 Lisp_Object title;
1087 char *error_name;
1088 Lisp_Object selection;
1089 int specpdl_count = SPECPDL_INDEX ();
1091 /* Decode the dialog items from what was specified. */
1092 title = Fcar (contents);
1093 CHECK_STRING (title);
1094 record_unwind_protect (unuse_menu_items, Qnil);
1096 list_of_panes (Fcons (contents, Qnil));
1098 /* Display them in a dialog box. */
1099 BLOCK_INPUT;
1100 selection = xdialog_show (f, 0, title, &error_name);
1101 UNBLOCK_INPUT;
1103 unbind_to (specpdl_count, Qnil);
1104 discard_menu_items ();
1106 if (error_name) error (error_name);
1107 return selection;
1109 #endif
1112 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
1114 /* Loop in Xt until the menu pulldown or dialog popup has been
1115 popped down (deactivated). This is used for x-popup-menu
1116 and x-popup-dialog; it is not used for the menu bar.
1118 If DO_TIMERS is nonzero, run timers.
1120 NOTE: All calls to popup_get_selection should be protected
1121 with BLOCK_INPUT, UNBLOCK_INPUT wrappers. */
1123 #ifdef USE_X_TOOLKIT
1124 static void
1125 popup_get_selection (initial_event, dpyinfo, id, do_timers)
1126 XEvent *initial_event;
1127 struct x_display_info *dpyinfo;
1128 LWLIB_ID id;
1129 int do_timers;
1131 XEvent event;
1133 while (popup_activated_flag)
1135 /* If we have no events to run, consider timers. */
1136 if (do_timers && !XtAppPending (Xt_app_con))
1137 timer_check (1);
1139 if (initial_event)
1141 event = *initial_event;
1142 initial_event = 0;
1144 else
1145 XtAppNextEvent (Xt_app_con, &event);
1147 /* Make sure we don't consider buttons grabbed after menu goes.
1148 And make sure to deactivate for any ButtonRelease,
1149 even if XtDispatchEvent doesn't do that. */
1150 if (event.type == ButtonRelease
1151 && dpyinfo->display == event.xbutton.display)
1153 dpyinfo->grabbed &= ~(1 << event.xbutton.button);
1154 #ifdef USE_MOTIF /* Pretending that the event came from a
1155 Btn1Down seems the only way to convince Motif to
1156 activate its callbacks; setting the XmNmenuPost
1157 isn't working. --marcus@sysc.pdx.edu. */
1158 event.xbutton.button = 1;
1159 /* Motif only pops down menus when no Ctrl, Alt or Mod
1160 key is pressed and the button is released. So reset key state
1161 so Motif thinks this is the case. */
1162 event.xbutton.state = 0;
1163 #endif
1165 /* If the user presses a key, deactivate the menu.
1166 The user is likely to do that if we get wedged.
1167 This is mostly for Lucid, Motif pops down the menu on ESC. */
1168 else if (event.type == KeyPress
1169 && dpyinfo->display == event.xbutton.display)
1171 KeySym keysym = XLookupKeysym (&event.xkey, 0);
1172 if (!IsModifierKey (keysym))
1173 popup_activated_flag = 0;
1176 x_dispatch_event (&event, event.xany.display);
1180 #endif /* USE_X_TOOLKIT */
1182 #ifdef USE_GTK
1183 /* Loop util popup_activated_flag is set to zero in a callback.
1184 Used for popup menus and dialogs. */
1185 static void
1186 popup_widget_loop ()
1188 ++popup_activated_flag;
1190 /* Process events in the Gtk event loop until done. */
1191 while (popup_activated_flag)
1193 gtk_main_iteration ();
1196 #endif
1198 /* Activate the menu bar of frame F.
1199 This is called from keyboard.c when it gets the
1200 MENU_BAR_ACTIVATE_EVENT out of the Emacs event queue.
1202 To activate the menu bar, we use the X button-press event
1203 that was saved in saved_menu_event.
1204 That makes the toolkit do its thing.
1206 But first we recompute the menu bar contents (the whole tree).
1208 The reason for saving the button event until here, instead of
1209 passing it to the toolkit right away, is that we can safely
1210 execute Lisp code. */
1212 void
1213 x_activate_menubar (f)
1214 FRAME_PTR f;
1216 if (!f->output_data.x->saved_menu_event->type)
1217 return;
1219 #ifdef USE_GTK
1220 if (! xg_win_to_widget (FRAME_X_DISPLAY (f),
1221 f->output_data.x->saved_menu_event->xany.window))
1222 return;
1223 #endif
1225 set_frame_menubar (f, 0, 1);
1226 BLOCK_INPUT;
1227 #ifdef USE_GTK
1228 XPutBackEvent (f->output_data.x->display_info->display,
1229 f->output_data.x->saved_menu_event);
1230 popup_activated_flag = 1;
1231 #else
1232 XtDispatchEvent (f->output_data.x->saved_menu_event);
1233 #endif
1234 UNBLOCK_INPUT;
1235 #ifdef USE_MOTIF
1236 if (f->output_data.x->saved_menu_event->type == ButtonRelease)
1237 pending_menu_activation = 1;
1238 #endif
1240 /* Ignore this if we get it a second time. */
1241 f->output_data.x->saved_menu_event->type = 0;
1244 /* Detect if a dialog or menu has been posted. */
1247 popup_activated ()
1249 return popup_activated_flag;
1252 /* This callback is invoked when the user selects a menubar cascade
1253 pushbutton, but before the pulldown menu is posted. */
1255 #ifndef USE_GTK
1256 static void
1257 popup_activate_callback (widget, id, client_data)
1258 Widget widget;
1259 LWLIB_ID id;
1260 XtPointer client_data;
1262 popup_activated_flag = 1;
1264 #endif
1266 /* This callback is invoked when a dialog or menu is finished being
1267 used and has been unposted. */
1269 #ifdef USE_GTK
1270 static void
1271 popup_deactivate_callback (widget, client_data)
1272 GtkWidget *widget;
1273 gpointer client_data;
1275 popup_activated_flag = 0;
1277 #else
1278 static void
1279 popup_deactivate_callback (widget, id, client_data)
1280 Widget widget;
1281 LWLIB_ID id;
1282 XtPointer client_data;
1284 popup_activated_flag = 0;
1286 #endif
1289 /* Function that finds the frame for WIDGET and shows the HELP text
1290 for that widget.
1291 F is the frame if known, or NULL if not known. */
1292 static void
1293 show_help_event (f, widget, help)
1294 FRAME_PTR f;
1295 xt_or_gtk_widget widget;
1296 Lisp_Object help;
1298 Lisp_Object frame;
1300 if (f)
1302 XSETFRAME (frame, f);
1303 kbd_buffer_store_help_event (frame, help);
1305 else
1307 /* WIDGET is the popup menu. It's parent is the frame's
1308 widget. See which frame that is. */
1309 xt_or_gtk_widget frame_widget = XtParent (widget);
1310 Lisp_Object tail;
1312 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
1314 frame = XCAR (tail);
1315 if (GC_FRAMEP (frame)
1316 && (f = XFRAME (frame),
1317 FRAME_X_P (f) && f->output_data.x->widget == frame_widget))
1318 break;
1321 show_help_echo (help, Qnil, Qnil, Qnil, 1);
1325 /* Callback called when menu items are highlighted/unhighlighted
1326 while moving the mouse over them. WIDGET is the menu bar or menu
1327 popup widget. ID is its LWLIB_ID. CALL_DATA contains a pointer to
1328 the data structure for the menu item, or null in case of
1329 unhighlighting. */
1331 #ifdef USE_GTK
1332 void
1333 menu_highlight_callback (widget, call_data)
1334 GtkWidget *widget;
1335 gpointer call_data;
1337 xg_menu_item_cb_data *cb_data;
1338 Lisp_Object help;
1340 cb_data = (xg_menu_item_cb_data*) g_object_get_data (G_OBJECT (widget),
1341 XG_ITEM_DATA);
1342 if (! cb_data) return;
1344 help = call_data ? cb_data->help : Qnil;
1346 /* If popup_activated_flag is greater than 1 we are in a popup menu.
1347 Don't show help for them, they won't appear before the
1348 popup is popped down. */
1349 if (popup_activated_flag <= 1)
1350 show_help_event (cb_data->cl_data->f, widget, help);
1352 #else
1353 void
1354 menu_highlight_callback (widget, id, call_data)
1355 Widget widget;
1356 LWLIB_ID id;
1357 void *call_data;
1359 struct frame *f;
1360 Lisp_Object help;
1362 widget_value *wv = (widget_value *) call_data;
1364 help = wv ? wv->help : Qnil;
1366 /* Determine the frame for the help event. */
1367 f = menubar_id_to_frame (id);
1369 show_help_event (f, widget, help);
1371 #endif
1373 /* Find the menu selection and store it in the keyboard buffer.
1374 F is the frame the menu is on.
1375 MENU_BAR_ITEMS_USED is the length of VECTOR.
1376 VECTOR is an array of menu events for the whole menu.
1378 void
1379 find_and_call_menu_selection (f, menu_bar_items_used, vector, client_data)
1380 FRAME_PTR f;
1381 int menu_bar_items_used;
1382 Lisp_Object vector;
1383 void *client_data;
1385 Lisp_Object prefix, entry;
1386 Lisp_Object *subprefix_stack;
1387 int submenu_depth = 0;
1388 int i;
1390 entry = Qnil;
1391 subprefix_stack = (Lisp_Object *) alloca (menu_bar_items_used * sizeof (Lisp_Object));
1392 prefix = Qnil;
1393 i = 0;
1395 while (i < menu_bar_items_used)
1397 if (EQ (XVECTOR (vector)->contents[i], Qnil))
1399 subprefix_stack[submenu_depth++] = prefix;
1400 prefix = entry;
1401 i++;
1403 else if (EQ (XVECTOR (vector)->contents[i], Qlambda))
1405 prefix = subprefix_stack[--submenu_depth];
1406 i++;
1408 else if (EQ (XVECTOR (vector)->contents[i], Qt))
1410 prefix = XVECTOR (vector)->contents[i + MENU_ITEMS_PANE_PREFIX];
1411 i += MENU_ITEMS_PANE_LENGTH;
1413 else
1415 entry = XVECTOR (vector)->contents[i + MENU_ITEMS_ITEM_VALUE];
1416 /* The EMACS_INT cast avoids a warning. There's no problem
1417 as long as pointers have enough bits to hold small integers. */
1418 if ((int) (EMACS_INT) client_data == i)
1420 int j;
1421 struct input_event buf;
1422 Lisp_Object frame;
1423 EVENT_INIT (buf);
1425 XSETFRAME (frame, f);
1426 buf.kind = MENU_BAR_EVENT;
1427 buf.frame_or_window = frame;
1428 buf.arg = frame;
1429 kbd_buffer_store_event (&buf);
1431 for (j = 0; j < submenu_depth; j++)
1432 if (!NILP (subprefix_stack[j]))
1434 buf.kind = MENU_BAR_EVENT;
1435 buf.frame_or_window = frame;
1436 buf.arg = subprefix_stack[j];
1437 kbd_buffer_store_event (&buf);
1440 if (!NILP (prefix))
1442 buf.kind = MENU_BAR_EVENT;
1443 buf.frame_or_window = frame;
1444 buf.arg = prefix;
1445 kbd_buffer_store_event (&buf);
1448 buf.kind = MENU_BAR_EVENT;
1449 buf.frame_or_window = frame;
1450 buf.arg = entry;
1451 kbd_buffer_store_event (&buf);
1453 return;
1455 i += MENU_ITEMS_ITEM_LENGTH;
1461 #ifdef USE_GTK
1462 /* Gtk calls callbacks just because we tell it what item should be
1463 selected in a radio group. If this variable is set to a non-zero
1464 value, we are creating menus and don't want callbacks right now.
1466 static int xg_crazy_callback_abort;
1468 /* This callback is called from the menu bar pulldown menu
1469 when the user makes a selection.
1470 Figure out what the user chose
1471 and put the appropriate events into the keyboard buffer. */
1472 static void
1473 menubar_selection_callback (widget, client_data)
1474 GtkWidget *widget;
1475 gpointer client_data;
1477 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data*) client_data;
1479 if (xg_crazy_callback_abort)
1480 return;
1482 if (! cb_data || ! cb_data->cl_data || ! cb_data->cl_data->f)
1483 return;
1485 find_and_call_menu_selection (cb_data->cl_data->f,
1486 cb_data->cl_data->menu_bar_items_used,
1487 cb_data->cl_data->menu_bar_vector,
1488 cb_data->call_data);
1491 #else /* not USE_GTK */
1493 /* This callback is called from the menu bar pulldown menu
1494 when the user makes a selection.
1495 Figure out what the user chose
1496 and put the appropriate events into the keyboard buffer. */
1497 static void
1498 menubar_selection_callback (widget, id, client_data)
1499 Widget widget;
1500 LWLIB_ID id;
1501 XtPointer client_data;
1503 FRAME_PTR f;
1505 f = menubar_id_to_frame (id);
1506 if (!f)
1507 return;
1508 find_and_call_menu_selection (f, f->menu_bar_items_used,
1509 f->menu_bar_vector, client_data);
1511 #endif /* not USE_GTK */
1513 /* Allocate a widget_value, blocking input. */
1515 widget_value *
1516 xmalloc_widget_value ()
1518 widget_value *value;
1520 BLOCK_INPUT;
1521 value = malloc_widget_value ();
1522 UNBLOCK_INPUT;
1524 return value;
1527 /* This recursively calls free_widget_value on the tree of widgets.
1528 It must free all data that was malloc'ed for these widget_values.
1529 In Emacs, many slots are pointers into the data of Lisp_Strings, and
1530 must be left alone. */
1532 void
1533 free_menubar_widget_value_tree (wv)
1534 widget_value *wv;
1536 if (! wv) return;
1538 wv->name = wv->value = wv->key = (char *) 0xDEADBEEF;
1540 if (wv->contents && (wv->contents != (widget_value*)1))
1542 free_menubar_widget_value_tree (wv->contents);
1543 wv->contents = (widget_value *) 0xDEADBEEF;
1545 if (wv->next)
1547 free_menubar_widget_value_tree (wv->next);
1548 wv->next = (widget_value *) 0xDEADBEEF;
1550 BLOCK_INPUT;
1551 free_widget_value (wv);
1552 UNBLOCK_INPUT;
1555 /* Set up data in menu_items for a menu bar item
1556 whose event type is ITEM_KEY (with string ITEM_NAME)
1557 and whose contents come from the list of keymaps MAPS. */
1559 static int
1560 parse_single_submenu (item_key, item_name, maps)
1561 Lisp_Object item_key, item_name, maps;
1563 Lisp_Object length;
1564 int len;
1565 Lisp_Object *mapvec;
1566 int i;
1567 int top_level_items = 0;
1569 length = Flength (maps);
1570 len = XINT (length);
1572 /* Convert the list MAPS into a vector MAPVEC. */
1573 mapvec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
1574 for (i = 0; i < len; i++)
1576 mapvec[i] = Fcar (maps);
1577 maps = Fcdr (maps);
1580 /* Loop over the given keymaps, making a pane for each map.
1581 But don't make a pane that is empty--ignore that map instead. */
1582 for (i = 0; i < len; i++)
1584 if (!KEYMAPP (mapvec[i]))
1586 /* Here we have a command at top level in the menu bar
1587 as opposed to a submenu. */
1588 top_level_items = 1;
1589 push_menu_pane (Qnil, Qnil);
1590 push_menu_item (item_name, Qt, item_key, mapvec[i],
1591 Qnil, Qnil, Qnil, Qnil);
1593 else
1595 Lisp_Object prompt;
1596 prompt = Fkeymap_prompt (mapvec[i]);
1597 single_keymap_panes (mapvec[i],
1598 !NILP (prompt) ? prompt : item_name,
1599 item_key, 0, 10);
1603 return top_level_items;
1606 /* Create a tree of widget_value objects
1607 representing the panes and items
1608 in menu_items starting at index START, up to index END. */
1610 static widget_value *
1611 digest_single_submenu (start, end, top_level_items)
1612 int start, end, top_level_items;
1614 widget_value *wv, *prev_wv, *save_wv, *first_wv;
1615 int i;
1616 int submenu_depth = 0;
1617 widget_value **submenu_stack;
1619 submenu_stack
1620 = (widget_value **) alloca (menu_items_used * sizeof (widget_value *));
1621 wv = xmalloc_widget_value ();
1622 wv->name = "menu";
1623 wv->value = 0;
1624 wv->enabled = 1;
1625 wv->button_type = BUTTON_TYPE_NONE;
1626 wv->help = Qnil;
1627 first_wv = wv;
1628 save_wv = 0;
1629 prev_wv = 0;
1631 /* Loop over all panes and items made by the preceding call
1632 to parse_single_submenu and construct a tree of widget_value objects.
1633 Ignore the panes and items used by previous calls to
1634 digest_single_submenu, even though those are also in menu_items. */
1635 i = start;
1636 while (i < end)
1638 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
1640 submenu_stack[submenu_depth++] = save_wv;
1641 save_wv = prev_wv;
1642 prev_wv = 0;
1643 i++;
1645 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
1647 prev_wv = save_wv;
1648 save_wv = submenu_stack[--submenu_depth];
1649 i++;
1651 else if (EQ (XVECTOR (menu_items)->contents[i], Qt)
1652 && submenu_depth != 0)
1653 i += MENU_ITEMS_PANE_LENGTH;
1654 /* Ignore a nil in the item list.
1655 It's meaningful only for dialog boxes. */
1656 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
1657 i += 1;
1658 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
1660 /* Create a new pane. */
1661 Lisp_Object pane_name, prefix;
1662 char *pane_string;
1664 pane_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_NAME];
1665 prefix = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
1667 #ifndef HAVE_MULTILINGUAL_MENU
1668 if (STRINGP (pane_name) && STRING_MULTIBYTE (pane_name))
1670 pane_name = ENCODE_SYSTEM (pane_name);
1671 AREF (menu_items, i + MENU_ITEMS_PANE_NAME) = pane_name;
1673 #endif
1674 pane_string = (NILP (pane_name)
1675 ? "" : (char *) SDATA (pane_name));
1676 /* If there is just one top-level pane, put all its items directly
1677 under the top-level menu. */
1678 if (menu_items_n_panes == 1)
1679 pane_string = "";
1681 /* If the pane has a meaningful name,
1682 make the pane a top-level menu item
1683 with its items as a submenu beneath it. */
1684 if (strcmp (pane_string, ""))
1686 wv = xmalloc_widget_value ();
1687 if (save_wv)
1688 save_wv->next = wv;
1689 else
1690 first_wv->contents = wv;
1691 wv->name = pane_string;
1692 /* Ignore the @ that means "separate pane".
1693 This is a kludge, but this isn't worth more time. */
1694 if (!NILP (prefix) && wv->name[0] == '@')
1695 wv->name++;
1696 wv->value = 0;
1697 wv->enabled = 1;
1698 wv->button_type = BUTTON_TYPE_NONE;
1699 wv->help = Qnil;
1701 save_wv = wv;
1702 prev_wv = 0;
1703 i += MENU_ITEMS_PANE_LENGTH;
1705 else
1707 /* Create a new item within current pane. */
1708 Lisp_Object item_name, enable, descrip, def, type, selected;
1709 Lisp_Object help;
1711 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
1712 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
1713 descrip = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
1714 def = AREF (menu_items, i + MENU_ITEMS_ITEM_DEFINITION);
1715 type = AREF (menu_items, i + MENU_ITEMS_ITEM_TYPE);
1716 selected = AREF (menu_items, i + MENU_ITEMS_ITEM_SELECTED);
1717 help = AREF (menu_items, i + MENU_ITEMS_ITEM_HELP);
1719 #ifndef HAVE_MULTILINGUAL_MENU
1720 if (STRING_MULTIBYTE (item_name))
1722 item_name = ENCODE_MENU_STRING (item_name);
1723 AREF (menu_items, i + MENU_ITEMS_ITEM_NAME) = item_name;
1726 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
1728 descrip = ENCODE_MENU_STRING (descrip);
1729 AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY) = descrip;
1731 #endif /* not HAVE_MULTILINGUAL_MENU */
1733 wv = xmalloc_widget_value ();
1734 if (prev_wv)
1735 prev_wv->next = wv;
1736 else
1737 save_wv->contents = wv;
1739 wv->name = (char *) SDATA (item_name);
1740 if (!NILP (descrip))
1741 wv->key = (char *) SDATA (descrip);
1742 wv->value = 0;
1743 /* The EMACS_INT cast avoids a warning. There's no problem
1744 as long as pointers have enough bits to hold small integers. */
1745 wv->call_data = (!NILP (def) ? (void *) (EMACS_INT) i : 0);
1746 wv->enabled = !NILP (enable);
1748 if (NILP (type))
1749 wv->button_type = BUTTON_TYPE_NONE;
1750 else if (EQ (type, QCradio))
1751 wv->button_type = BUTTON_TYPE_RADIO;
1752 else if (EQ (type, QCtoggle))
1753 wv->button_type = BUTTON_TYPE_TOGGLE;
1754 else
1755 abort ();
1757 wv->selected = !NILP (selected);
1758 if (! STRINGP (help))
1759 help = Qnil;
1761 wv->help = help;
1763 prev_wv = wv;
1765 i += MENU_ITEMS_ITEM_LENGTH;
1769 /* If we have just one "menu item"
1770 that was originally a button, return it by itself. */
1771 if (top_level_items && first_wv->contents && first_wv->contents->next == 0)
1773 wv = first_wv->contents;
1774 free_widget_value (first_wv);
1775 return wv;
1778 return first_wv;
1781 /* Recompute all the widgets of frame F, when the menu bar has been
1782 changed. Value is non-zero if widgets were updated. */
1784 static int
1785 update_frame_menubar (f)
1786 FRAME_PTR f;
1788 #ifdef USE_GTK
1789 return xg_update_frame_menubar (f);
1790 #else
1791 struct x_output *x = f->output_data.x;
1792 int columns, rows;
1794 if (!x->menubar_widget || XtIsManaged (x->menubar_widget))
1795 return 0;
1797 BLOCK_INPUT;
1798 /* Save the size of the frame because the pane widget doesn't accept
1799 to resize itself. So force it. */
1800 columns = FRAME_COLS (f);
1801 rows = FRAME_LINES (f);
1803 /* Do the voodoo which means "I'm changing lots of things, don't try
1804 to refigure sizes until I'm done." */
1805 lw_refigure_widget (x->column_widget, False);
1807 /* The order in which children are managed is the top to bottom
1808 order in which they are displayed in the paned window. First,
1809 remove the text-area widget. */
1810 XtUnmanageChild (x->edit_widget);
1812 /* Remove the menubar that is there now, and put up the menubar that
1813 should be there. */
1814 XtManageChild (x->menubar_widget);
1815 XtMapWidget (x->menubar_widget);
1816 XtVaSetValues (x->menubar_widget, XtNmappedWhenManaged, 1, NULL);
1818 /* Re-manage the text-area widget, and then thrash the sizes. */
1819 XtManageChild (x->edit_widget);
1820 lw_refigure_widget (x->column_widget, True);
1822 /* Force the pane widget to resize itself with the right values. */
1823 EmacsFrameSetCharSize (x->edit_widget, columns, rows);
1824 UNBLOCK_INPUT;
1825 #endif
1826 return 1;
1829 /* Set the contents of the menubar widgets of frame F.
1830 The argument FIRST_TIME is currently ignored;
1831 it is set the first time this is called, from initialize_frame_menubar. */
1833 void
1834 set_frame_menubar (f, first_time, deep_p)
1835 FRAME_PTR f;
1836 int first_time;
1837 int deep_p;
1839 xt_or_gtk_widget menubar_widget = f->output_data.x->menubar_widget;
1840 #ifdef USE_X_TOOLKIT
1841 LWLIB_ID id;
1842 #endif
1843 Lisp_Object items;
1844 widget_value *wv, *first_wv, *prev_wv = 0;
1845 int i, last_i;
1846 int *submenu_start, *submenu_end;
1847 int *submenu_top_level_items, *submenu_n_panes;
1850 XSETFRAME (Vmenu_updating_frame, f);
1852 #ifdef USE_X_TOOLKIT
1853 if (f->output_data.x->id == 0)
1854 f->output_data.x->id = next_menubar_widget_id++;
1855 id = f->output_data.x->id;
1856 #endif
1858 if (! menubar_widget)
1859 deep_p = 1;
1860 else if (pending_menu_activation && !deep_p)
1861 deep_p = 1;
1862 /* Make the first call for any given frame always go deep. */
1863 else if (!f->output_data.x->saved_menu_event && !deep_p)
1865 deep_p = 1;
1866 f->output_data.x->saved_menu_event = (XEvent*)xmalloc (sizeof (XEvent));
1867 f->output_data.x->saved_menu_event->type = 0;
1870 #ifdef USE_GTK
1871 /* If we have detached menus, we must update deep so detached menus
1872 also gets updated. */
1873 deep_p = deep_p || xg_have_tear_offs ();
1874 #endif
1876 if (deep_p)
1878 /* Make a widget-value tree representing the entire menu trees. */
1880 struct buffer *prev = current_buffer;
1881 Lisp_Object buffer;
1882 int specpdl_count = SPECPDL_INDEX ();
1883 int previous_menu_items_used = f->menu_bar_items_used;
1884 Lisp_Object *previous_items
1885 = (Lisp_Object *) alloca (previous_menu_items_used
1886 * sizeof (Lisp_Object));
1888 /* If we are making a new widget, its contents are empty,
1889 do always reinitialize them. */
1890 if (! menubar_widget)
1891 previous_menu_items_used = 0;
1893 buffer = XWINDOW (FRAME_SELECTED_WINDOW (f))->buffer;
1894 specbind (Qinhibit_quit, Qt);
1895 /* Don't let the debugger step into this code
1896 because it is not reentrant. */
1897 specbind (Qdebug_on_next_call, Qnil);
1899 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
1900 record_unwind_protect (unuse_menu_items, Qnil);
1901 if (NILP (Voverriding_local_map_menu_flag))
1903 specbind (Qoverriding_terminal_local_map, Qnil);
1904 specbind (Qoverriding_local_map, Qnil);
1907 set_buffer_internal_1 (XBUFFER (buffer));
1909 /* Run the Lucid hook. */
1910 safe_run_hooks (Qactivate_menubar_hook);
1912 /* If it has changed current-menubar from previous value,
1913 really recompute the menubar from the value. */
1914 if (! NILP (Vlucid_menu_bar_dirty_flag))
1915 call0 (Qrecompute_lucid_menubar);
1916 safe_run_hooks (Qmenu_bar_update_hook);
1917 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
1919 items = FRAME_MENU_BAR_ITEMS (f);
1921 /* Save the frame's previous menu bar contents data. */
1922 if (previous_menu_items_used)
1923 bcopy (XVECTOR (f->menu_bar_vector)->contents, previous_items,
1924 previous_menu_items_used * sizeof (Lisp_Object));
1926 /* Fill in menu_items with the current menu bar contents.
1927 This can evaluate Lisp code. */
1928 menu_items = f->menu_bar_vector;
1929 menu_items_allocated = VECTORP (menu_items) ? ASIZE (menu_items) : 0;
1930 submenu_start = (int *) alloca (XVECTOR (items)->size * sizeof (int *));
1931 submenu_end = (int *) alloca (XVECTOR (items)->size * sizeof (int *));
1932 submenu_n_panes = (int *) alloca (XVECTOR (items)->size * sizeof (int));
1933 submenu_top_level_items
1934 = (int *) alloca (XVECTOR (items)->size * sizeof (int *));
1935 init_menu_items ();
1936 for (i = 0; i < XVECTOR (items)->size; i += 4)
1938 Lisp_Object key, string, maps;
1940 last_i = i;
1942 key = XVECTOR (items)->contents[i];
1943 string = XVECTOR (items)->contents[i + 1];
1944 maps = XVECTOR (items)->contents[i + 2];
1945 if (NILP (string))
1946 break;
1948 submenu_start[i] = menu_items_used;
1950 menu_items_n_panes = 0;
1951 submenu_top_level_items[i]
1952 = parse_single_submenu (key, string, maps);
1953 submenu_n_panes[i] = menu_items_n_panes;
1955 submenu_end[i] = menu_items_used;
1958 finish_menu_items ();
1960 /* Convert menu_items into widget_value trees
1961 to display the menu. This cannot evaluate Lisp code. */
1963 wv = xmalloc_widget_value ();
1964 wv->name = "menubar";
1965 wv->value = 0;
1966 wv->enabled = 1;
1967 wv->button_type = BUTTON_TYPE_NONE;
1968 wv->help = Qnil;
1969 first_wv = wv;
1971 for (i = 0; i < last_i; i += 4)
1973 menu_items_n_panes = submenu_n_panes[i];
1974 wv = digest_single_submenu (submenu_start[i], submenu_end[i],
1975 submenu_top_level_items[i]);
1976 if (prev_wv)
1977 prev_wv->next = wv;
1978 else
1979 first_wv->contents = wv;
1980 /* Don't set wv->name here; GC during the loop might relocate it. */
1981 wv->enabled = 1;
1982 wv->button_type = BUTTON_TYPE_NONE;
1983 prev_wv = wv;
1986 set_buffer_internal_1 (prev);
1987 unbind_to (specpdl_count, Qnil);
1989 /* If there has been no change in the Lisp-level contents
1990 of the menu bar, skip redisplaying it. Just exit. */
1992 for (i = 0; i < previous_menu_items_used; i++)
1993 if (menu_items_used == i
1994 || (!EQ (previous_items[i], XVECTOR (menu_items)->contents[i])))
1995 break;
1996 if (i == menu_items_used && i == previous_menu_items_used && i != 0)
1998 free_menubar_widget_value_tree (first_wv);
1999 discard_menu_items ();
2001 return;
2004 /* Now GC cannot happen during the lifetime of the widget_value,
2005 so it's safe to store data from a Lisp_String. */
2006 wv = first_wv->contents;
2007 for (i = 0; i < XVECTOR (items)->size; i += 4)
2009 Lisp_Object string;
2010 string = XVECTOR (items)->contents[i + 1];
2011 if (NILP (string))
2012 break;
2013 wv->name = (char *) SDATA (string);
2014 wv = wv->next;
2017 f->menu_bar_vector = menu_items;
2018 f->menu_bar_items_used = menu_items_used;
2019 discard_menu_items ();
2021 else
2023 /* Make a widget-value tree containing
2024 just the top level menu bar strings. */
2026 wv = xmalloc_widget_value ();
2027 wv->name = "menubar";
2028 wv->value = 0;
2029 wv->enabled = 1;
2030 wv->button_type = BUTTON_TYPE_NONE;
2031 wv->help = Qnil;
2032 first_wv = wv;
2034 items = FRAME_MENU_BAR_ITEMS (f);
2035 for (i = 0; i < XVECTOR (items)->size; i += 4)
2037 Lisp_Object string;
2039 string = XVECTOR (items)->contents[i + 1];
2040 if (NILP (string))
2041 break;
2043 wv = xmalloc_widget_value ();
2044 wv->name = (char *) SDATA (string);
2045 wv->value = 0;
2046 wv->enabled = 1;
2047 wv->button_type = BUTTON_TYPE_NONE;
2048 wv->help = Qnil;
2049 /* This prevents lwlib from assuming this
2050 menu item is really supposed to be empty. */
2051 /* The EMACS_INT cast avoids a warning.
2052 This value just has to be different from small integers. */
2053 wv->call_data = (void *) (EMACS_INT) (-1);
2055 if (prev_wv)
2056 prev_wv->next = wv;
2057 else
2058 first_wv->contents = wv;
2059 prev_wv = wv;
2062 /* Forget what we thought we knew about what is in the
2063 detailed contents of the menu bar menus.
2064 Changing the top level always destroys the contents. */
2065 f->menu_bar_items_used = 0;
2068 /* Create or update the menu bar widget. */
2070 BLOCK_INPUT;
2072 #ifdef USE_GTK
2073 xg_crazy_callback_abort = 1;
2074 if (menubar_widget)
2076 /* The fourth arg is DEEP_P, which says to consider the entire
2077 menu trees we supply, rather than just the menu bar item names. */
2078 xg_modify_menubar_widgets (menubar_widget,
2080 first_wv,
2081 deep_p,
2082 G_CALLBACK (menubar_selection_callback),
2083 G_CALLBACK (popup_deactivate_callback),
2084 G_CALLBACK (menu_highlight_callback));
2086 else
2088 GtkWidget *wvbox = f->output_data.x->vbox_widget;
2090 menubar_widget
2091 = xg_create_widget ("menubar", "menubar", f, first_wv,
2092 G_CALLBACK (menubar_selection_callback),
2093 G_CALLBACK (popup_deactivate_callback),
2094 G_CALLBACK (menu_highlight_callback));
2096 f->output_data.x->menubar_widget = menubar_widget;
2100 #else /* not USE_GTK */
2101 if (menubar_widget)
2103 /* Disable resizing (done for Motif!) */
2104 lw_allow_resizing (f->output_data.x->widget, False);
2106 /* The third arg is DEEP_P, which says to consider the entire
2107 menu trees we supply, rather than just the menu bar item names. */
2108 lw_modify_all_widgets (id, first_wv, deep_p);
2110 /* Re-enable the edit widget to resize. */
2111 lw_allow_resizing (f->output_data.x->widget, True);
2113 else
2115 menubar_widget = lw_create_widget ("menubar", "menubar", id, first_wv,
2116 f->output_data.x->column_widget,
2118 popup_activate_callback,
2119 menubar_selection_callback,
2120 popup_deactivate_callback,
2121 menu_highlight_callback);
2122 f->output_data.x->menubar_widget = menubar_widget;
2126 int menubar_size
2127 = (f->output_data.x->menubar_widget
2128 ? (f->output_data.x->menubar_widget->core.height
2129 + f->output_data.x->menubar_widget->core.border_width)
2130 : 0);
2132 #if 0 /* Experimentally, we now get the right results
2133 for -geometry -0-0 without this. 24 Aug 96, rms. */
2134 #ifdef USE_LUCID
2135 if (FRAME_EXTERNAL_MENU_BAR (f))
2137 Dimension ibw = 0;
2138 XtVaGetValues (f->output_data.x->column_widget,
2139 XtNinternalBorderWidth, &ibw, NULL);
2140 menubar_size += ibw;
2142 #endif /* USE_LUCID */
2143 #endif /* 0 */
2145 f->output_data.x->menubar_height = menubar_size;
2147 #endif /* not USE_GTK */
2149 free_menubar_widget_value_tree (first_wv);
2150 update_frame_menubar (f);
2152 #ifdef USE_GTK
2153 xg_crazy_callback_abort = 0;
2154 #endif
2156 UNBLOCK_INPUT;
2159 /* Called from Fx_create_frame to create the initial menubar of a frame
2160 before it is mapped, so that the window is mapped with the menubar already
2161 there instead of us tacking it on later and thrashing the window after it
2162 is visible. */
2164 void
2165 initialize_frame_menubar (f)
2166 FRAME_PTR f;
2168 /* This function is called before the first chance to redisplay
2169 the frame. It has to be, so the frame will have the right size. */
2170 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
2171 set_frame_menubar (f, 1, 1);
2175 /* Get rid of the menu bar of frame F, and free its storage.
2176 This is used when deleting a frame, and when turning off the menu bar.
2177 For GTK this function is in gtkutil.c. */
2179 #ifndef USE_GTK
2180 void
2181 free_frame_menubar (f)
2182 FRAME_PTR f;
2184 Widget menubar_widget;
2186 menubar_widget = f->output_data.x->menubar_widget;
2188 f->output_data.x->menubar_height = 0;
2190 if (menubar_widget)
2192 #ifdef USE_MOTIF
2193 /* Removing the menu bar magically changes the shell widget's x
2194 and y position of (0, 0) which, when the menu bar is turned
2195 on again, leads to pull-down menuss appearing in strange
2196 positions near the upper-left corner of the display. This
2197 happens only with some window managers like twm and ctwm,
2198 but not with other like Motif's mwm or kwm, because the
2199 latter generate ConfigureNotify events when the menu bar
2200 is switched off, which fixes the shell position. */
2201 Position x0, y0, x1, y1;
2202 #endif
2204 BLOCK_INPUT;
2206 #ifdef USE_MOTIF
2207 if (f->output_data.x->widget)
2208 XtVaGetValues (f->output_data.x->widget, XtNx, &x0, XtNy, &y0, NULL);
2209 #endif
2211 lw_destroy_all_widgets ((LWLIB_ID) f->output_data.x->id);
2212 f->output_data.x->menubar_widget = NULL;
2214 #ifdef USE_MOTIF
2215 if (f->output_data.x->widget)
2217 XtVaGetValues (f->output_data.x->widget, XtNx, &x1, XtNy, &y1, NULL);
2218 if (x1 == 0 && y1 == 0)
2219 XtVaSetValues (f->output_data.x->widget, XtNx, x0, XtNy, y0, NULL);
2221 #endif
2223 UNBLOCK_INPUT;
2226 #endif /* not USE_GTK */
2228 #endif /* USE_X_TOOLKIT || USE_GTK */
2230 /* xmenu_show actually displays a menu using the panes and items in menu_items
2231 and returns the value selected from it.
2232 There are two versions of xmenu_show, one for Xt and one for Xlib.
2233 Both assume input is blocked by the caller. */
2235 /* F is the frame the menu is for.
2236 X and Y are the frame-relative specified position,
2237 relative to the inside upper left corner of the frame F.
2238 FOR_CLICK is nonzero if this menu was invoked for a mouse click.
2239 KEYMAPS is 1 if this menu was specified with keymaps;
2240 in that case, we return a list containing the chosen item's value
2241 and perhaps also the pane's prefix.
2242 TITLE is the specified menu title.
2243 ERROR is a place to store an error message string in case of failure.
2244 (We return nil on failure, but the value doesn't actually matter.) */
2246 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
2248 /* The item selected in the popup menu. */
2249 static Lisp_Object *volatile menu_item_selection;
2251 #ifdef USE_GTK
2253 /* Used when position a popup menu. See menu_position_func and
2254 create_and_show_popup_menu below. */
2255 struct next_popup_x_y
2257 FRAME_PTR f;
2258 int x;
2259 int y;
2262 /* The menu position function to use if we are not putting a popup
2263 menu where the pointer is.
2264 MENU is the menu to pop up.
2265 X and Y shall on exit contain x/y where the menu shall pop up.
2266 PUSH_IN is not documented in the GTK manual.
2267 USER_DATA is any data passed in when calling gtk_menu_popup.
2268 Here it points to a struct next_popup_x_y where the coordinates
2269 to store in *X and *Y are as well as the frame for the popup.
2271 Here only X and Y are used. */
2272 static void
2273 menu_position_func (menu, x, y, push_in, user_data)
2274 GtkMenu *menu;
2275 gint *x;
2276 gint *y;
2277 gboolean *push_in;
2278 gpointer user_data;
2280 struct next_popup_x_y* data = (struct next_popup_x_y*)user_data;
2281 GtkRequisition req;
2282 int disp_width = FRAME_X_DISPLAY_INFO (data->f)->width;
2283 int disp_height = FRAME_X_DISPLAY_INFO (data->f)->height;
2285 *x = data->x;
2286 *y = data->y;
2288 /* Check if there is room for the menu. If not, adjust x/y so that
2289 the menu is fully visible. */
2290 gtk_widget_size_request (GTK_WIDGET (menu), &req);
2291 if (data->x + req.width > disp_width)
2292 *x -= data->x + req.width - disp_width;
2293 if (data->y + req.height > disp_height)
2294 *y -= data->y + req.height - disp_height;
2297 static void
2298 popup_selection_callback (widget, client_data)
2299 GtkWidget *widget;
2300 gpointer client_data;
2302 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data*) client_data;
2304 if (xg_crazy_callback_abort) return;
2305 if (cb_data) menu_item_selection = (Lisp_Object *) cb_data->call_data;
2308 /* Pop up the menu for frame F defined by FIRST_WV at X/Y and loop until the
2309 menu pops down.
2310 menu_item_selection will be set to the selection. */
2311 static void
2312 create_and_show_popup_menu (f, first_wv, x, y, for_click)
2313 FRAME_PTR f;
2314 widget_value *first_wv;
2315 int x;
2316 int y;
2317 int for_click;
2319 int i;
2320 GtkWidget *menu;
2321 GtkMenuPositionFunc pos_func = 0; /* Pop up at pointer. */
2322 struct next_popup_x_y popup_x_y;
2324 xg_crazy_callback_abort = 1;
2325 menu = xg_create_widget ("popup", first_wv->name, f, first_wv,
2326 G_CALLBACK (popup_selection_callback),
2327 G_CALLBACK (popup_deactivate_callback),
2328 G_CALLBACK (menu_highlight_callback));
2329 xg_crazy_callback_abort = 0;
2331 for (i = 0; i < 5; i++)
2332 if (FRAME_X_DISPLAY_INFO (f)->grabbed & (1 << i))
2333 break;
2335 if (! for_click)
2337 /* Not invoked by a click. pop up at x/y. */
2338 pos_func = menu_position_func;
2340 /* Adjust coordinates to be root-window-relative. */
2341 x += f->left_pos + FRAME_OUTER_TO_INNER_DIFF_X (f);
2342 y += f->top_pos + FRAME_OUTER_TO_INNER_DIFF_Y (f);
2344 popup_x_y.x = x;
2345 popup_x_y.y = y;
2346 popup_x_y.f = f;
2349 /* Display the menu. */
2350 gtk_widget_show_all (menu);
2351 gtk_menu_popup (GTK_MENU (menu), 0, 0, pos_func, &popup_x_y, i, 0);
2353 /* Set this to one. popup_widget_loop increases it by one, so it becomes
2354 two. show_help_echo uses this to detect popup menus. */
2355 popup_activated_flag = 1;
2356 /* Process events that apply to the menu. */
2357 popup_widget_loop ();
2359 gtk_widget_destroy (menu);
2361 /* Must reset this manually because the button release event is not passed
2362 to Emacs event loop. */
2363 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
2366 #else /* not USE_GTK */
2368 /* We need a unique id for each widget handled by the Lucid Widget
2369 library.
2371 For the main windows, and popup menus, we use this counter,
2372 which we increment each time after use. This starts from 1<<16.
2374 For menu bars, we use numbers starting at 0, counted in
2375 next_menubar_widget_id. */
2376 LWLIB_ID widget_id_tick;
2378 static void
2379 popup_selection_callback (widget, id, client_data)
2380 Widget widget;
2381 LWLIB_ID id;
2382 XtPointer client_data;
2384 menu_item_selection = (Lisp_Object *) client_data;
2387 /* Pop up the menu for frame F defined by FIRST_WV at X/Y and loop until the
2388 menu pops down.
2389 menu_item_selection will be set to the selection. */
2390 static void
2391 create_and_show_popup_menu (f, first_wv, x, y, for_click)
2392 FRAME_PTR f;
2393 widget_value *first_wv;
2394 int x;
2395 int y;
2396 int for_click;
2398 int i;
2399 Arg av[2];
2400 int ac = 0;
2401 XButtonPressedEvent dummy;
2402 LWLIB_ID menu_id;
2403 Widget menu;
2405 menu_id = widget_id_tick++;
2406 menu = lw_create_widget ("popup", first_wv->name, menu_id, first_wv,
2407 f->output_data.x->widget, 1, 0,
2408 popup_selection_callback,
2409 popup_deactivate_callback,
2410 menu_highlight_callback);
2412 dummy.type = ButtonPress;
2413 dummy.serial = 0;
2414 dummy.send_event = 0;
2415 dummy.display = FRAME_X_DISPLAY (f);
2416 dummy.time = CurrentTime;
2417 dummy.root = FRAME_X_DISPLAY_INFO (f)->root_window;
2418 dummy.window = dummy.root;
2419 dummy.subwindow = dummy.root;
2420 dummy.x = x;
2421 dummy.y = y;
2423 /* Adjust coordinates to be root-window-relative. */
2424 x += f->left_pos + FRAME_OUTER_TO_INNER_DIFF_X (f);
2425 y += f->top_pos + FRAME_OUTER_TO_INNER_DIFF_Y (f);
2427 dummy.x_root = x;
2428 dummy.y_root = y;
2430 dummy.state = 0;
2431 dummy.button = 0;
2432 for (i = 0; i < 5; i++)
2433 if (FRAME_X_DISPLAY_INFO (f)->grabbed & (1 << i))
2434 dummy.button = i;
2436 /* Don't allow any geometry request from the user. */
2437 XtSetArg (av[ac], XtNgeometry, 0); ac++;
2438 XtSetValues (menu, av, ac);
2440 /* Display the menu. */
2441 lw_popup_menu (menu, (XEvent *) &dummy);
2442 popup_activated_flag = 1;
2444 /* Process events that apply to the menu. */
2445 popup_get_selection ((XEvent *) 0, FRAME_X_DISPLAY_INFO (f), menu_id, 0);
2447 /* fp turned off the following statement and wrote a comment
2448 that it is unnecessary--that the menu has already disappeared.
2449 Nowadays the menu disappears ok, all right, but
2450 we need to delete the widgets or multiple ones will pile up. */
2451 lw_destroy_all_widgets (menu_id);
2454 #endif /* not USE_GTK */
2456 static Lisp_Object
2457 xmenu_show (f, x, y, for_click, keymaps, title, error)
2458 FRAME_PTR f;
2459 int x;
2460 int y;
2461 int for_click;
2462 int keymaps;
2463 Lisp_Object title;
2464 char **error;
2466 int i;
2467 widget_value *wv, *save_wv = 0, *first_wv = 0, *prev_wv = 0;
2468 widget_value **submenu_stack
2469 = (widget_value **) alloca (menu_items_used * sizeof (widget_value *));
2470 Lisp_Object *subprefix_stack
2471 = (Lisp_Object *) alloca (menu_items_used * sizeof (Lisp_Object));
2472 int submenu_depth = 0;
2474 int first_pane;
2476 *error = NULL;
2478 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
2480 *error = "Empty menu";
2481 return Qnil;
2484 /* Create a tree of widget_value objects
2485 representing the panes and their items. */
2486 wv = xmalloc_widget_value ();
2487 wv->name = "menu";
2488 wv->value = 0;
2489 wv->enabled = 1;
2490 wv->button_type = BUTTON_TYPE_NONE;
2491 wv->help =Qnil;
2492 first_wv = wv;
2493 first_pane = 1;
2495 /* Loop over all panes and items, filling in the tree. */
2496 i = 0;
2497 while (i < menu_items_used)
2499 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
2501 submenu_stack[submenu_depth++] = save_wv;
2502 save_wv = prev_wv;
2503 prev_wv = 0;
2504 first_pane = 1;
2505 i++;
2507 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
2509 prev_wv = save_wv;
2510 save_wv = submenu_stack[--submenu_depth];
2511 first_pane = 0;
2512 i++;
2514 else if (EQ (XVECTOR (menu_items)->contents[i], Qt)
2515 && submenu_depth != 0)
2516 i += MENU_ITEMS_PANE_LENGTH;
2517 /* Ignore a nil in the item list.
2518 It's meaningful only for dialog boxes. */
2519 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
2520 i += 1;
2521 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
2523 /* Create a new pane. */
2524 Lisp_Object pane_name, prefix;
2525 char *pane_string;
2527 pane_name = AREF (menu_items, i + MENU_ITEMS_PANE_NAME);
2528 prefix = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
2530 #ifndef HAVE_MULTILINGUAL_MENU
2531 if (STRINGP (pane_name) && STRING_MULTIBYTE (pane_name))
2533 pane_name = ENCODE_SYSTEM (pane_name);
2534 AREF (menu_items, i + MENU_ITEMS_PANE_NAME) = pane_name;
2536 #endif
2537 pane_string = (NILP (pane_name)
2538 ? "" : (char *) SDATA (pane_name));
2539 /* If there is just one top-level pane, put all its items directly
2540 under the top-level menu. */
2541 if (menu_items_n_panes == 1)
2542 pane_string = "";
2544 /* If the pane has a meaningful name,
2545 make the pane a top-level menu item
2546 with its items as a submenu beneath it. */
2547 if (!keymaps && strcmp (pane_string, ""))
2549 wv = xmalloc_widget_value ();
2550 if (save_wv)
2551 save_wv->next = wv;
2552 else
2553 first_wv->contents = wv;
2554 wv->name = pane_string;
2555 if (keymaps && !NILP (prefix))
2556 wv->name++;
2557 wv->value = 0;
2558 wv->enabled = 1;
2559 wv->button_type = BUTTON_TYPE_NONE;
2560 wv->help = Qnil;
2561 save_wv = wv;
2562 prev_wv = 0;
2564 else if (first_pane)
2566 save_wv = wv;
2567 prev_wv = 0;
2569 first_pane = 0;
2570 i += MENU_ITEMS_PANE_LENGTH;
2572 else
2574 /* Create a new item within current pane. */
2575 Lisp_Object item_name, enable, descrip, def, type, selected, help;
2576 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
2577 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
2578 descrip = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
2579 def = AREF (menu_items, i + MENU_ITEMS_ITEM_DEFINITION);
2580 type = AREF (menu_items, i + MENU_ITEMS_ITEM_TYPE);
2581 selected = AREF (menu_items, i + MENU_ITEMS_ITEM_SELECTED);
2582 help = AREF (menu_items, i + MENU_ITEMS_ITEM_HELP);
2584 #ifndef HAVE_MULTILINGUAL_MENU
2585 if (STRINGP (item_name) && STRING_MULTIBYTE (item_name))
2587 item_name = ENCODE_MENU_STRING (item_name);
2588 AREF (menu_items, i + MENU_ITEMS_ITEM_NAME) = item_name;
2591 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
2593 descrip = ENCODE_MENU_STRING (descrip);
2594 AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY) = descrip;
2596 #endif /* not HAVE_MULTILINGUAL_MENU */
2598 wv = xmalloc_widget_value ();
2599 if (prev_wv)
2600 prev_wv->next = wv;
2601 else
2602 save_wv->contents = wv;
2603 wv->name = (char *) SDATA (item_name);
2604 if (!NILP (descrip))
2605 wv->key = (char *) SDATA (descrip);
2606 wv->value = 0;
2607 /* If this item has a null value,
2608 make the call_data null so that it won't display a box
2609 when the mouse is on it. */
2610 wv->call_data
2611 = (!NILP (def) ? (void *) &XVECTOR (menu_items)->contents[i] : 0);
2612 wv->enabled = !NILP (enable);
2614 if (NILP (type))
2615 wv->button_type = BUTTON_TYPE_NONE;
2616 else if (EQ (type, QCtoggle))
2617 wv->button_type = BUTTON_TYPE_TOGGLE;
2618 else if (EQ (type, QCradio))
2619 wv->button_type = BUTTON_TYPE_RADIO;
2620 else
2621 abort ();
2623 wv->selected = !NILP (selected);
2625 if (! STRINGP (help))
2626 help = Qnil;
2628 wv->help = help;
2630 prev_wv = wv;
2632 i += MENU_ITEMS_ITEM_LENGTH;
2636 /* Deal with the title, if it is non-nil. */
2637 if (!NILP (title))
2639 widget_value *wv_title = xmalloc_widget_value ();
2640 widget_value *wv_sep1 = xmalloc_widget_value ();
2641 widget_value *wv_sep2 = xmalloc_widget_value ();
2643 wv_sep2->name = "--";
2644 wv_sep2->next = first_wv->contents;
2645 wv_sep2->help = Qnil;
2647 wv_sep1->name = "--";
2648 wv_sep1->next = wv_sep2;
2649 wv_sep1->help = Qnil;
2651 #ifndef HAVE_MULTILINGUAL_MENU
2652 if (STRING_MULTIBYTE (title))
2653 title = ENCODE_MENU_STRING (title);
2654 #endif
2656 wv_title->name = (char *) SDATA (title);
2657 wv_title->enabled = TRUE;
2658 wv_title->button_type = BUTTON_TYPE_NONE;
2659 wv_title->next = wv_sep1;
2660 wv_title->help = Qnil;
2661 first_wv->contents = wv_title;
2664 /* No selection has been chosen yet. */
2665 menu_item_selection = 0;
2667 /* Actually create and show the menu until popped down. */
2668 create_and_show_popup_menu (f, first_wv, x, y, for_click);
2670 /* Free the widget_value objects we used to specify the contents. */
2671 free_menubar_widget_value_tree (first_wv);
2673 /* Find the selected item, and its pane, to return
2674 the proper value. */
2675 if (menu_item_selection != 0)
2677 Lisp_Object prefix, entry;
2679 prefix = entry = Qnil;
2680 i = 0;
2681 while (i < menu_items_used)
2683 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
2685 subprefix_stack[submenu_depth++] = prefix;
2686 prefix = entry;
2687 i++;
2689 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
2691 prefix = subprefix_stack[--submenu_depth];
2692 i++;
2694 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
2696 prefix
2697 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
2698 i += MENU_ITEMS_PANE_LENGTH;
2700 /* Ignore a nil in the item list.
2701 It's meaningful only for dialog boxes. */
2702 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
2703 i += 1;
2704 else
2706 entry
2707 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
2708 if (menu_item_selection == &XVECTOR (menu_items)->contents[i])
2710 if (keymaps != 0)
2712 int j;
2714 entry = Fcons (entry, Qnil);
2715 if (!NILP (prefix))
2716 entry = Fcons (prefix, entry);
2717 for (j = submenu_depth - 1; j >= 0; j--)
2718 if (!NILP (subprefix_stack[j]))
2719 entry = Fcons (subprefix_stack[j], entry);
2721 return entry;
2723 i += MENU_ITEMS_ITEM_LENGTH;
2728 return Qnil;
2731 #ifdef USE_GTK
2732 static void
2733 dialog_selection_callback (widget, client_data)
2734 GtkWidget *widget;
2735 gpointer client_data;
2737 /* The EMACS_INT cast avoids a warning. There's no problem
2738 as long as pointers have enough bits to hold small integers. */
2739 if ((int) (EMACS_INT) client_data != -1)
2740 menu_item_selection = (Lisp_Object *) client_data;
2742 popup_activated_flag = 0;
2745 /* Pop up the dialog for frame F defined by FIRST_WV and loop until the
2746 dialog pops down.
2747 menu_item_selection will be set to the selection. */
2748 static void
2749 create_and_show_dialog (f, first_wv)
2750 FRAME_PTR f;
2751 widget_value *first_wv;
2753 GtkWidget *menu;
2755 menu = xg_create_widget ("dialog", first_wv->name, f, first_wv,
2756 G_CALLBACK (dialog_selection_callback),
2757 G_CALLBACK (popup_deactivate_callback),
2760 if (menu)
2762 /* Display the menu. */
2763 gtk_widget_show_all (menu);
2765 /* Process events that apply to the menu. */
2766 popup_widget_loop ();
2768 gtk_widget_destroy (menu);
2772 #else /* not USE_GTK */
2773 static void
2774 dialog_selection_callback (widget, id, client_data)
2775 Widget widget;
2776 LWLIB_ID id;
2777 XtPointer client_data;
2779 /* The EMACS_INT cast avoids a warning. There's no problem
2780 as long as pointers have enough bits to hold small integers. */
2781 if ((int) (EMACS_INT) client_data != -1)
2782 menu_item_selection = (Lisp_Object *) client_data;
2784 BLOCK_INPUT;
2785 lw_destroy_all_widgets (id);
2786 UNBLOCK_INPUT;
2787 popup_activated_flag = 0;
2791 /* ARG is the LWLIB ID of the dialog box, represented
2792 as a Lisp object as (HIGHPART . LOWPART). */
2794 Lisp_Object
2795 xdialog_show_unwind (arg)
2796 Lisp_Object arg;
2798 LWLIB_ID id = (XINT (XCAR (arg)) << 4 * sizeof (LWLIB_ID)
2799 | XINT (XCDR (arg)));
2800 BLOCK_INPUT;
2801 lw_destroy_all_widgets (id);
2802 UNBLOCK_INPUT;
2803 popup_activated_flag = 0;
2804 return Qnil;
2808 /* Pop up the dialog for frame F defined by FIRST_WV and loop until the
2809 dialog pops down.
2810 menu_item_selection will be set to the selection. */
2811 static void
2812 create_and_show_dialog (f, first_wv)
2813 FRAME_PTR f;
2814 widget_value *first_wv;
2816 LWLIB_ID dialog_id;
2818 dialog_id = widget_id_tick++;
2819 lw_create_widget (first_wv->name, "dialog", dialog_id, first_wv,
2820 f->output_data.x->widget, 1, 0,
2821 dialog_selection_callback, 0, 0);
2822 lw_modify_all_widgets (dialog_id, first_wv->contents, True);
2824 /* Display the dialog box. */
2825 lw_pop_up_all_widgets (dialog_id);
2826 popup_activated_flag = 1;
2828 /* Process events that apply to the dialog box.
2829 Also handle timers. */
2831 int count = SPECPDL_INDEX ();
2832 int fact = 4 * sizeof (LWLIB_ID);
2834 /* xdialog_show_unwind is responsible for popping the dialog box down. */
2835 record_unwind_protect (xdialog_show_unwind,
2836 Fcons (make_number (dialog_id >> (fact)),
2837 make_number (dialog_id & ~(-1 << (fact)))));
2839 popup_get_selection ((XEvent *) 0, FRAME_X_DISPLAY_INFO (f), dialog_id, 1);
2841 unbind_to (count, Qnil);
2845 #endif /* not USE_GTK */
2847 static char * button_names [] = {
2848 "button1", "button2", "button3", "button4", "button5",
2849 "button6", "button7", "button8", "button9", "button10" };
2851 static Lisp_Object
2852 xdialog_show (f, keymaps, title, error)
2853 FRAME_PTR f;
2854 int keymaps;
2855 Lisp_Object title;
2856 char **error;
2858 int i, nb_buttons=0;
2859 char dialog_name[6];
2861 widget_value *wv, *first_wv = 0, *prev_wv = 0;
2863 /* Number of elements seen so far, before boundary. */
2864 int left_count = 0;
2865 /* 1 means we've seen the boundary between left-hand elts and right-hand. */
2866 int boundary_seen = 0;
2868 *error = NULL;
2870 if (menu_items_n_panes > 1)
2872 *error = "Multiple panes in dialog box";
2873 return Qnil;
2876 /* Create a tree of widget_value objects
2877 representing the text label and buttons. */
2879 Lisp_Object pane_name, prefix;
2880 char *pane_string;
2881 pane_name = XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME];
2882 prefix = XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_PREFIX];
2883 pane_string = (NILP (pane_name)
2884 ? "" : (char *) SDATA (pane_name));
2885 prev_wv = xmalloc_widget_value ();
2886 prev_wv->value = pane_string;
2887 if (keymaps && !NILP (prefix))
2888 prev_wv->name++;
2889 prev_wv->enabled = 1;
2890 prev_wv->name = "message";
2891 prev_wv->help = Qnil;
2892 first_wv = prev_wv;
2894 /* Loop over all panes and items, filling in the tree. */
2895 i = MENU_ITEMS_PANE_LENGTH;
2896 while (i < menu_items_used)
2899 /* Create a new item within current pane. */
2900 Lisp_Object item_name, enable, descrip;
2901 item_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_NAME];
2902 enable = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_ENABLE];
2903 descrip
2904 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_EQUIV_KEY];
2906 if (NILP (item_name))
2908 free_menubar_widget_value_tree (first_wv);
2909 *error = "Submenu in dialog items";
2910 return Qnil;
2912 if (EQ (item_name, Qquote))
2914 /* This is the boundary between left-side elts
2915 and right-side elts. Stop incrementing right_count. */
2916 boundary_seen = 1;
2917 i++;
2918 continue;
2920 if (nb_buttons >= 9)
2922 free_menubar_widget_value_tree (first_wv);
2923 *error = "Too many dialog items";
2924 return Qnil;
2927 wv = xmalloc_widget_value ();
2928 prev_wv->next = wv;
2929 wv->name = (char *) button_names[nb_buttons];
2930 if (!NILP (descrip))
2931 wv->key = (char *) SDATA (descrip);
2932 wv->value = (char *) SDATA (item_name);
2933 wv->call_data = (void *) &XVECTOR (menu_items)->contents[i];
2934 wv->enabled = !NILP (enable);
2935 wv->help = Qnil;
2936 prev_wv = wv;
2938 if (! boundary_seen)
2939 left_count++;
2941 nb_buttons++;
2942 i += MENU_ITEMS_ITEM_LENGTH;
2945 /* If the boundary was not specified,
2946 by default put half on the left and half on the right. */
2947 if (! boundary_seen)
2948 left_count = nb_buttons - nb_buttons / 2;
2950 wv = xmalloc_widget_value ();
2951 wv->name = dialog_name;
2952 wv->help = Qnil;
2953 /* Dialog boxes use a really stupid name encoding
2954 which specifies how many buttons to use
2955 and how many buttons are on the right.
2956 The Q means something also. */
2957 dialog_name[0] = 'Q';
2958 dialog_name[1] = '0' + nb_buttons;
2959 dialog_name[2] = 'B';
2960 dialog_name[3] = 'R';
2961 /* Number of buttons to put on the right. */
2962 dialog_name[4] = '0' + nb_buttons - left_count;
2963 dialog_name[5] = 0;
2964 wv->contents = first_wv;
2965 first_wv = wv;
2968 /* No selection has been chosen yet. */
2969 menu_item_selection = 0;
2971 /* Actually create and show the dialog. */
2972 create_and_show_dialog (f, first_wv);
2974 /* Free the widget_value objects we used to specify the contents. */
2975 free_menubar_widget_value_tree (first_wv);
2977 /* Find the selected item, and its pane, to return
2978 the proper value. */
2979 if (menu_item_selection != 0)
2981 Lisp_Object prefix;
2983 prefix = Qnil;
2984 i = 0;
2985 while (i < menu_items_used)
2987 Lisp_Object entry;
2989 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
2991 prefix
2992 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
2993 i += MENU_ITEMS_PANE_LENGTH;
2995 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
2997 /* This is the boundary between left-side elts and
2998 right-side elts. */
2999 ++i;
3001 else
3003 entry
3004 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
3005 if (menu_item_selection == &XVECTOR (menu_items)->contents[i])
3007 if (keymaps != 0)
3009 entry = Fcons (entry, Qnil);
3010 if (!NILP (prefix))
3011 entry = Fcons (prefix, entry);
3013 return entry;
3015 i += MENU_ITEMS_ITEM_LENGTH;
3020 return Qnil;
3023 #else /* not USE_X_TOOLKIT && not USE_GTK */
3025 /* The frame of the last activated non-toolkit menu bar.
3026 Used to generate menu help events. */
3028 static struct frame *menu_help_frame;
3031 /* Show help HELP_STRING, or clear help if HELP_STRING is null.
3033 PANE is the pane number, and ITEM is the menu item number in
3034 the menu (currently not used).
3036 This cannot be done with generating a HELP_EVENT because
3037 XMenuActivate contains a loop that doesn't let Emacs process
3038 keyboard events. */
3040 static void
3041 menu_help_callback (help_string, pane, item)
3042 char *help_string;
3043 int pane, item;
3045 extern Lisp_Object Qmenu_item;
3046 Lisp_Object *first_item;
3047 Lisp_Object pane_name;
3048 Lisp_Object menu_object;
3050 first_item = XVECTOR (menu_items)->contents;
3051 if (EQ (first_item[0], Qt))
3052 pane_name = first_item[MENU_ITEMS_PANE_NAME];
3053 else if (EQ (first_item[0], Qquote))
3054 /* This shouldn't happen, see xmenu_show. */
3055 pane_name = empty_string;
3056 else
3057 pane_name = first_item[MENU_ITEMS_ITEM_NAME];
3059 /* (menu-item MENU-NAME PANE-NUMBER) */
3060 menu_object = Fcons (Qmenu_item,
3061 Fcons (pane_name,
3062 Fcons (make_number (pane), Qnil)));
3063 show_help_echo (help_string ? build_string (help_string) : Qnil,
3064 Qnil, menu_object, make_number (item), 1);
3068 static Lisp_Object
3069 xmenu_show (f, x, y, for_click, keymaps, title, error)
3070 FRAME_PTR f;
3071 int x, y;
3072 int for_click;
3073 int keymaps;
3074 Lisp_Object title;
3075 char **error;
3077 Window root;
3078 XMenu *menu;
3079 int pane, selidx, lpane, status;
3080 Lisp_Object entry, pane_prefix;
3081 char *datap;
3082 int ulx, uly, width, height;
3083 int dispwidth, dispheight;
3084 int i, j;
3085 int maxwidth;
3086 int dummy_int;
3087 unsigned int dummy_uint;
3089 *error = 0;
3090 if (menu_items_n_panes == 0)
3091 return Qnil;
3093 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
3095 *error = "Empty menu";
3096 return Qnil;
3099 /* Figure out which root window F is on. */
3100 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &root,
3101 &dummy_int, &dummy_int, &dummy_uint, &dummy_uint,
3102 &dummy_uint, &dummy_uint);
3104 /* Make the menu on that window. */
3105 menu = XMenuCreate (FRAME_X_DISPLAY (f), root, "emacs");
3106 if (menu == NULL)
3108 *error = "Can't create menu";
3109 return Qnil;
3112 #ifdef HAVE_X_WINDOWS
3113 /* Adjust coordinates to relative to the outer (window manager) window. */
3115 Window child;
3116 int win_x = 0, win_y = 0;
3118 /* Find the position of the outside upper-left corner of
3119 the inner window, with respect to the outer window. */
3120 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
3122 BLOCK_INPUT;
3123 XTranslateCoordinates (FRAME_X_DISPLAY (f),
3125 /* From-window, to-window. */
3126 f->output_data.x->window_desc,
3127 f->output_data.x->parent_desc,
3129 /* From-position, to-position. */
3130 0, 0, &win_x, &win_y,
3132 /* Child of window. */
3133 &child);
3134 UNBLOCK_INPUT;
3135 x += win_x;
3136 y += win_y;
3139 #endif /* HAVE_X_WINDOWS */
3141 /* Adjust coordinates to be root-window-relative. */
3142 x += f->left_pos;
3143 y += f->top_pos;
3145 /* Create all the necessary panes and their items. */
3146 i = 0;
3147 while (i < menu_items_used)
3149 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
3151 /* Create a new pane. */
3152 Lisp_Object pane_name, prefix;
3153 char *pane_string;
3155 pane_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_NAME];
3156 prefix = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
3157 pane_string = (NILP (pane_name)
3158 ? "" : (char *) SDATA (pane_name));
3159 if (keymaps && !NILP (prefix))
3160 pane_string++;
3162 lpane = XMenuAddPane (FRAME_X_DISPLAY (f), menu, pane_string, TRUE);
3163 if (lpane == XM_FAILURE)
3165 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
3166 *error = "Can't create pane";
3167 return Qnil;
3169 i += MENU_ITEMS_PANE_LENGTH;
3171 /* Find the width of the widest item in this pane. */
3172 maxwidth = 0;
3173 j = i;
3174 while (j < menu_items_used)
3176 Lisp_Object item;
3177 item = XVECTOR (menu_items)->contents[j];
3178 if (EQ (item, Qt))
3179 break;
3180 if (NILP (item))
3182 j++;
3183 continue;
3185 width = SBYTES (item);
3186 if (width > maxwidth)
3187 maxwidth = width;
3189 j += MENU_ITEMS_ITEM_LENGTH;
3192 /* Ignore a nil in the item list.
3193 It's meaningful only for dialog boxes. */
3194 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
3195 i += 1;
3196 else
3198 /* Create a new item within current pane. */
3199 Lisp_Object item_name, enable, descrip, help;
3200 unsigned char *item_data;
3201 char *help_string;
3203 item_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_NAME];
3204 enable = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_ENABLE];
3205 descrip
3206 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_EQUIV_KEY];
3207 help = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_HELP];
3208 help_string = STRINGP (help) ? SDATA (help) : NULL;
3210 if (!NILP (descrip))
3212 int gap = maxwidth - SBYTES (item_name);
3213 #ifdef C_ALLOCA
3214 Lisp_Object spacer;
3215 spacer = Fmake_string (make_number (gap), make_number (' '));
3216 item_name = concat2 (item_name, spacer);
3217 item_name = concat2 (item_name, descrip);
3218 item_data = SDATA (item_name);
3219 #else
3220 /* if alloca is fast, use that to make the space,
3221 to reduce gc needs. */
3222 item_data
3223 = (unsigned char *) alloca (maxwidth
3224 + SBYTES (descrip) + 1);
3225 bcopy (SDATA (item_name), item_data,
3226 SBYTES (item_name));
3227 for (j = SCHARS (item_name); j < maxwidth; j++)
3228 item_data[j] = ' ';
3229 bcopy (SDATA (descrip), item_data + j,
3230 SBYTES (descrip));
3231 item_data[j + SBYTES (descrip)] = 0;
3232 #endif
3234 else
3235 item_data = SDATA (item_name);
3237 if (XMenuAddSelection (FRAME_X_DISPLAY (f),
3238 menu, lpane, 0, item_data,
3239 !NILP (enable), help_string)
3240 == XM_FAILURE)
3242 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
3243 *error = "Can't add selection to menu";
3244 return Qnil;
3246 i += MENU_ITEMS_ITEM_LENGTH;
3250 /* All set and ready to fly. */
3251 XMenuRecompute (FRAME_X_DISPLAY (f), menu);
3252 dispwidth = DisplayWidth (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f));
3253 dispheight = DisplayHeight (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f));
3254 x = min (x, dispwidth);
3255 y = min (y, dispheight);
3256 x = max (x, 1);
3257 y = max (y, 1);
3258 XMenuLocate (FRAME_X_DISPLAY (f), menu, 0, 0, x, y,
3259 &ulx, &uly, &width, &height);
3260 if (ulx+width > dispwidth)
3262 x -= (ulx + width) - dispwidth;
3263 ulx = dispwidth - width;
3265 if (uly+height > dispheight)
3267 y -= (uly + height) - dispheight;
3268 uly = dispheight - height;
3270 if (ulx < 0) x -= ulx;
3271 if (uly < 0) y -= uly;
3273 XMenuSetAEQ (menu, TRUE);
3274 XMenuSetFreeze (menu, TRUE);
3275 pane = selidx = 0;
3277 /* Help display under X won't work because XMenuActivate contains
3278 a loop that doesn't give Emacs a chance to process it. */
3279 menu_help_frame = f;
3280 status = XMenuActivate (FRAME_X_DISPLAY (f), menu, &pane, &selidx,
3281 x, y, ButtonReleaseMask, &datap,
3282 menu_help_callback);
3285 #ifdef HAVE_X_WINDOWS
3286 /* Assume the mouse has moved out of the X window.
3287 If it has actually moved in, we will get an EnterNotify. */
3288 x_mouse_leave (FRAME_X_DISPLAY_INFO (f));
3289 #endif
3291 switch (status)
3293 case XM_SUCCESS:
3294 #ifdef XDEBUG
3295 fprintf (stderr, "pane= %d line = %d\n", panes, selidx);
3296 #endif
3298 /* Find the item number SELIDX in pane number PANE. */
3299 i = 0;
3300 while (i < menu_items_used)
3302 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
3304 if (pane == 0)
3305 pane_prefix
3306 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
3307 pane--;
3308 i += MENU_ITEMS_PANE_LENGTH;
3310 else
3312 if (pane == -1)
3314 if (selidx == 0)
3316 entry
3317 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
3318 if (keymaps != 0)
3320 entry = Fcons (entry, Qnil);
3321 if (!NILP (pane_prefix))
3322 entry = Fcons (pane_prefix, entry);
3324 break;
3326 selidx--;
3328 i += MENU_ITEMS_ITEM_LENGTH;
3331 break;
3333 case XM_FAILURE:
3334 *error = "Can't activate menu";
3335 case XM_IA_SELECT:
3336 case XM_NO_SELECT:
3337 entry = Qnil;
3338 break;
3340 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
3342 #ifdef HAVE_X_WINDOWS
3343 /* State that no mouse buttons are now held.
3344 (The oldXMenu code doesn't track this info for us.)
3345 That is not necessarily true, but the fiction leads to reasonable
3346 results, and it is a pain to ask which are actually held now. */
3347 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
3348 #endif
3350 return entry;
3353 #endif /* not USE_X_TOOLKIT */
3355 #endif /* HAVE_MENUS */
3357 void
3358 syms_of_xmenu ()
3360 staticpro (&menu_items);
3361 menu_items = Qnil;
3362 menu_items_inuse = Qnil;
3364 Qdebug_on_next_call = intern ("debug-on-next-call");
3365 staticpro (&Qdebug_on_next_call);
3367 DEFVAR_LISP ("menu-updating-frame", &Vmenu_updating_frame,
3368 doc: /* Frame for which we are updating a menu.
3369 The enable predicate for a menu command should check this variable. */);
3370 Vmenu_updating_frame = Qnil;
3372 #ifdef USE_X_TOOLKIT
3373 widget_id_tick = (1<<16);
3374 next_menubar_widget_id = 1;
3375 #endif
3377 defsubr (&Sx_popup_menu);
3378 #ifdef HAVE_MENUS
3379 defsubr (&Sx_popup_dialog);
3380 #endif
3383 /* arch-tag: 92ea573c-398e-496e-ac73-2436f7d63242
3384 (do not change this comment) */