1 /* X Communication module for terminals which understand the X protocol.
2 Copyright (C) 1986, 1988, 1993, 1994, 1996 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* X pop-up deck-of-cards menu facility for gnuemacs.
23 * Written by Jon Arnold and Roman Budzianowski
24 * Mods and rewrite by Robert Krawitz
28 /* Modified by Fred Pierresteguy on December 93
29 to make the popup menus and menubar use the Xt. */
31 /* Rewritten for clarity and GC protection by rms in Feb 94. */
33 /* On 4.3 this loses if it comes after xterm.h. */
39 #include "termhooks.h"
43 #include "blockinput.h"
52 /* This may include sys/types.h, and that somehow loses
53 if this is not done before the other system files. */
57 /* Load sys/types.h if not already loaded.
58 In some systems loading it twice is suicidal. */
60 #include <sys/types.h>
63 #include "dispextern.h"
68 #include <X11/IntrinsicP.h>
69 #include <X11/CoreP.h>
70 #include <X11/StringDefs.h>
71 #include <X11/Shell.h>
73 #include <X11/Xaw/Paned.h>
74 #endif /* USE_LUCID */
75 #include "../lwlib/lwlib.h"
76 #else /* not USE_X_TOOLKIT */
77 #include "../oldXMenu/XMenu.h"
78 #endif /* not USE_X_TOOLKIT */
79 #endif /* HAVE_X_WINDOWS */
81 #define min(x,y) (((x) < (y)) ? (x) : (y))
82 #define max(x,y) (((x) > (y)) ? (x) : (y))
89 Lisp_Object Vmenu_updating_frame
;
91 Lisp_Object Qdebug_on_next_call
;
93 Lisp_Object Qmenu_alias
;
95 extern Lisp_Object Qmenu_enable
;
96 extern Lisp_Object Qmenu_bar
;
97 extern Lisp_Object Qmouse_click
, Qevent_kind
;
99 extern Lisp_Object Vdefine_key_rebound_commands
;
101 extern Lisp_Object Voverriding_local_map
;
102 extern Lisp_Object Voverriding_local_map_menu_flag
;
104 extern Lisp_Object Qoverriding_local_map
, Qoverriding_terminal_local_map
;
106 extern Lisp_Object Qmenu_bar_update_hook
;
109 extern void set_frame_menubar ();
110 extern void process_expose_from_menu ();
111 extern XtAppContext Xt_app_con
;
113 static Lisp_Object
xdialog_show ();
114 void popup_get_selection ();
117 static Lisp_Object
xmenu_show ();
118 static void keymap_panes ();
119 static void single_keymap_panes ();
120 static void list_of_panes ();
121 static void list_of_items ();
123 /* This holds a Lisp vector that holds the results of decoding
124 the keymaps or alist-of-alists that specify a menu.
126 It describes the panes and items within the panes.
128 Each pane is described by 3 elements in the vector:
129 t, the pane name, the pane's prefix key.
130 Then follow the pane's items, with 5 elements per item:
131 the item string, the enable flag, the item's value,
132 the definition, and the equivalent keyboard key's description string.
134 In some cases, multiple levels of menus may be described.
135 A single vector slot containing nil indicates the start of a submenu.
136 A single vector slot containing lambda indicates the end of a submenu.
137 The submenu follows a menu item which is the way to reach the submenu.
139 A single vector slot containing quote indicates that the
140 following items should appear on the right of a dialog box.
142 Using a Lisp vector to hold this information while we decode it
143 takes care of protecting all the data from GC. */
145 #define MENU_ITEMS_PANE_NAME 1
146 #define MENU_ITEMS_PANE_PREFIX 2
147 #define MENU_ITEMS_PANE_LENGTH 3
149 #define MENU_ITEMS_ITEM_NAME 0
150 #define MENU_ITEMS_ITEM_ENABLE 1
151 #define MENU_ITEMS_ITEM_VALUE 2
152 #define MENU_ITEMS_ITEM_EQUIV_KEY 3
153 #define MENU_ITEMS_ITEM_DEFINITION 4
154 #define MENU_ITEMS_ITEM_LENGTH 5
156 static Lisp_Object menu_items
;
158 /* Number of slots currently allocated in menu_items. */
159 static int menu_items_allocated
;
161 /* This is the index in menu_items of the first empty slot. */
162 static int menu_items_used
;
164 /* The number of panes currently recorded in menu_items,
165 excluding those within submenus. */
166 static int menu_items_n_panes
;
168 /* Current depth within submenus. */
169 static int menu_items_submenu_depth
;
171 /* Flag which when set indicates a dialog or menu has been posted by
172 Xt on behalf of one of the widget sets. */
173 static int popup_activated_flag
;
175 static int next_menubar_widget_id
;
177 /* This is set nonzero after the user activates the menu bar, and set
178 to zero again after the menu bars are redisplayed by prepare_menu_bar.
179 While it is nonzero, all calls to set_frame_menubar go deep.
181 I don't understand why this is needed, but it does seem to be
182 needed on Motif, according to Marcus Daniels <marcus@sysc.pdx.edu>. */
184 int pending_menu_activation
;
188 /* Return the frame whose ->output_data.x->id equals ID, or 0 if none. */
190 static struct frame
*
191 menubar_id_to_frame (id
)
194 Lisp_Object tail
, frame
;
197 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCONS (tail
)->cdr
)
199 frame
= XCONS (tail
)->car
;
200 if (!GC_FRAMEP (frame
))
203 if (f
->output_data
.nothing
== 1)
205 if (f
->output_data
.x
->id
== id
)
213 /* Initialize the menu_items structure if we haven't already done so.
214 Also mark it as currently empty. */
219 if (NILP (menu_items
))
221 menu_items_allocated
= 60;
222 menu_items
= Fmake_vector (make_number (menu_items_allocated
), Qnil
);
226 menu_items_n_panes
= 0;
227 menu_items_submenu_depth
= 0;
230 /* Call at the end of generating the data in menu_items.
231 This fills in the number of items in the last pane. */
238 /* Call when finished using the data for the current menu
242 discard_menu_items ()
244 /* Free the structure if it is especially large.
245 Otherwise, hold on to it, to save time. */
246 if (menu_items_allocated
> 200)
249 menu_items_allocated
= 0;
253 /* Make the menu_items vector twice as large. */
259 int old_size
= menu_items_allocated
;
262 menu_items_allocated
*= 2;
263 menu_items
= Fmake_vector (make_number (menu_items_allocated
), Qnil
);
264 bcopy (XVECTOR (old
)->contents
, XVECTOR (menu_items
)->contents
,
265 old_size
* sizeof (Lisp_Object
));
268 /* Begin a submenu. */
271 push_submenu_start ()
273 if (menu_items_used
+ 1 > menu_items_allocated
)
276 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qnil
;
277 menu_items_submenu_depth
++;
285 if (menu_items_used
+ 1 > menu_items_allocated
)
288 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qlambda
;
289 menu_items_submenu_depth
--;
292 /* Indicate boundary between left and right. */
295 push_left_right_boundary ()
297 if (menu_items_used
+ 1 > menu_items_allocated
)
300 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qquote
;
303 /* Start a new menu pane in menu_items..
304 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */
307 push_menu_pane (name
, prefix_vec
)
308 Lisp_Object name
, prefix_vec
;
310 if (menu_items_used
+ MENU_ITEMS_PANE_LENGTH
> menu_items_allocated
)
313 if (menu_items_submenu_depth
== 0)
314 menu_items_n_panes
++;
315 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qt
;
316 XVECTOR (menu_items
)->contents
[menu_items_used
++] = name
;
317 XVECTOR (menu_items
)->contents
[menu_items_used
++] = prefix_vec
;
320 /* Push one menu item into the current pane.
321 NAME is the string to display. ENABLE if non-nil means
322 this item can be selected. KEY is the key generated by
323 choosing this item, or nil if this item doesn't really have a definition.
324 DEF is the definition of this item.
325 EQUIV is the textual description of the keyboard equivalent for
326 this item (or nil if none). */
329 push_menu_item (name
, enable
, key
, def
, equiv
)
330 Lisp_Object name
, enable
, key
, def
, equiv
;
332 if (menu_items_used
+ MENU_ITEMS_ITEM_LENGTH
> menu_items_allocated
)
335 XVECTOR (menu_items
)->contents
[menu_items_used
++] = name
;
336 XVECTOR (menu_items
)->contents
[menu_items_used
++] = enable
;
337 XVECTOR (menu_items
)->contents
[menu_items_used
++] = key
;
338 XVECTOR (menu_items
)->contents
[menu_items_used
++] = equiv
;
339 XVECTOR (menu_items
)->contents
[menu_items_used
++] = def
;
342 /* Figure out the current keyboard equivalent of a menu item ITEM1.
343 The item string for menu display should be ITEM_STRING.
344 Store the equivalent keyboard key sequence's
345 textual description into *DESCRIP_PTR.
346 Also cache them in the item itself.
347 Return the real definition to execute. */
350 menu_item_equiv_key (item_string
, item1
, descrip_ptr
)
351 Lisp_Object item_string
;
353 Lisp_Object
*descrip_ptr
;
355 /* This is the real definition--the function to run. */
357 /* This is the sublist that records cached equiv key data
358 so we can save time. */
359 Lisp_Object cachelist
;
360 /* These are the saved equivalent keyboard key sequence
361 and its key-description. */
362 Lisp_Object savedkey
, descrip
;
365 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
367 /* If a help string follows the item string, skip it. */
368 if (CONSP (XCONS (item1
)->cdr
)
369 && STRINGP (XCONS (XCONS (item1
)->cdr
)->car
))
370 item1
= XCONS (item1
)->cdr
;
374 /* Get out the saved equivalent-keyboard-key info. */
375 cachelist
= savedkey
= descrip
= Qnil
;
376 if (CONSP (def
) && CONSP (XCONS (def
)->car
)
377 && (NILP (XCONS (XCONS (def
)->car
)->car
)
378 || VECTORP (XCONS (XCONS (def
)->car
)->car
)))
380 cachelist
= XCONS (def
)->car
;
381 def
= XCONS (def
)->cdr
;
382 savedkey
= XCONS (cachelist
)->car
;
383 descrip
= XCONS (cachelist
)->cdr
;
386 GCPRO4 (def
, def1
, savedkey
, descrip
);
388 /* Is it still valid? */
390 if (!NILP (savedkey
))
391 def1
= Fkey_binding (savedkey
, Qnil
);
392 /* If not, update it. */
394 /* If the command is an alias for another
395 (such as easymenu.el and lmenu.el set it up),
396 check if the original command matches the cached command. */
397 && !(SYMBOLP (def
) && SYMBOLP (XSYMBOL (def
)->function
)
398 && EQ (def1
, XSYMBOL (def
)->function
))
399 /* If something had no key binding before, don't recheck it
400 because that is too slow--except if we have a list of rebound
401 commands in Vdefine_key_rebound_commands, do recheck any command
402 that appears in that list. */
403 && (NILP (cachelist
) || !NILP (savedkey
)
404 || (! EQ (Qt
, Vdefine_key_rebound_commands
)
405 && !NILP (Fmemq (def
, Vdefine_key_rebound_commands
)))))
409 /* If the command is an alias for another
410 (such as easymenu.el and lmenu.el set it up),
411 see if the original command name has equivalent keys. */
412 if (SYMBOLP (def
) && SYMBOLP (XSYMBOL (def
)->function
)
413 && ! NILP (Fget (def
, Qmenu_alias
)))
414 savedkey
= Fwhere_is_internal (XSYMBOL (def
)->function
,
417 /* Otherwise look up the specified command itself.
418 We don't try both, because that makes easymenu menus slow. */
419 savedkey
= Fwhere_is_internal (def
, Qnil
, Qt
, Qnil
);
421 if (!NILP (savedkey
))
423 descrip
= Fkey_description (savedkey
);
424 descrip
= concat2 (make_string (" (", 3), descrip
);
425 descrip
= concat2 (descrip
, make_string (")", 1));
429 /* Cache the data we just got in a sublist of the menu binding. */
430 if (NILP (cachelist
))
432 CHECK_IMPURE (item1
);
433 XCONS (item1
)->cdr
= Fcons (Fcons (savedkey
, descrip
), def
);
437 XCONS (cachelist
)->car
= savedkey
;
438 XCONS (cachelist
)->cdr
= descrip
;
442 *descrip_ptr
= descrip
;
446 /* This is used as the handler when calling internal_condition_case_1. */
449 menu_item_enabled_p_1 (arg
)
452 /* If we got a quit from within the menu computation,
453 quit all the way out of it. This takes care of C-] in the debugger. */
454 if (CONSP (arg
) && EQ (XCONS (arg
)->car
, Qquit
))
455 Fsignal (Qquit
, Qnil
);
460 /* Return non-nil if the command DEF is enabled when used as a menu item.
461 This is based on looking for a menu-enable property.
462 If NOTREAL is set, don't bother really computing this. */
465 menu_item_enabled_p (def
, notreal
)
469 Lisp_Object enabled
, tem
;
476 /* No property, or nil, means enable.
477 Otherwise, enable if value is not nil. */
478 tem
= Fget (def
, Qmenu_enable
);
480 /* (condition-case nil (eval tem)
482 enabled
= internal_condition_case_1 (Feval
, tem
, Qerror
,
483 menu_item_enabled_p_1
);
488 /* Look through KEYMAPS, a vector of keymaps that is NMAPS long,
489 and generate menu panes for them in menu_items.
490 If NOTREAL is nonzero,
491 don't bother really computing whether an item is enabled. */
494 keymap_panes (keymaps
, nmaps
, notreal
)
495 Lisp_Object
*keymaps
;
503 /* Loop over the given keymaps, making a pane for each map.
504 But don't make a pane that is empty--ignore that map instead.
505 P is the number of panes we have made so far. */
506 for (mapno
= 0; mapno
< nmaps
; mapno
++)
507 single_keymap_panes (keymaps
[mapno
], Qnil
, Qnil
, notreal
, 10);
509 finish_menu_items ();
512 /* This is a recursive subroutine of keymap_panes.
513 It handles one keymap, KEYMAP.
514 The other arguments are passed along
515 or point to local variables of the previous function.
516 If NOTREAL is nonzero,
517 don't bother really computing whether an item is enabled.
519 If we encounter submenus deeper than MAXDEPTH levels, ignore them. */
522 single_keymap_panes (keymap
, pane_name
, prefix
, notreal
, maxdepth
)
524 Lisp_Object pane_name
;
529 Lisp_Object pending_maps
;
530 Lisp_Object tail
, item
, item1
, item_string
, table
;
531 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
538 push_menu_pane (pane_name
, prefix
);
540 for (tail
= keymap
; CONSP (tail
); tail
= XCONS (tail
)->cdr
)
542 /* Look at each key binding, and if it has a menu string,
543 make a menu item from it. */
544 item
= XCONS (tail
)->car
;
547 item1
= XCONS (item
)->cdr
;
550 item_string
= XCONS (item1
)->car
;
551 if (STRINGP (item_string
))
553 /* This is the real definition--the function to run. */
555 /* These are the saved equivalent keyboard key sequence
556 and its key-description. */
558 Lisp_Object tem
, enabled
;
560 /* GCPRO because ...enabled_p will call eval
561 and ..._equiv_key may autoload something.
562 Protecting KEYMAP preserves everything we use;
563 aside from that, must protect whatever might be
564 a string. Since there's no GCPRO5, we refetch
565 item_string instead of protecting it. */
566 descrip
= def
= Qnil
;
567 GCPRO4 (keymap
, pending_maps
, def
, descrip
);
569 def
= menu_item_equiv_key (item_string
, item1
, &descrip
);
570 enabled
= menu_item_enabled_p (def
, notreal
);
574 item_string
= XCONS (item1
)->car
;
576 tem
= Fkeymapp (def
);
577 if (XSTRING (item_string
)->data
[0] == '@' && !NILP (tem
))
578 pending_maps
= Fcons (Fcons (def
, Fcons (item_string
, XCONS (item
)->car
)),
583 GCPRO4 (keymap
, pending_maps
, descrip
, item_string
);
584 submap
= get_keymap_1 (def
, 0, 1);
586 #ifndef USE_X_TOOLKIT
587 /* Indicate visually that this is a submenu. */
589 item_string
= concat2 (item_string
,
590 build_string (" >"));
592 /* If definition is nil, pass nil as the key. */
593 push_menu_item (item_string
, enabled
,
594 XCONS (item
)->car
, def
,
597 /* Display a submenu using the toolkit. */
600 push_submenu_start ();
601 single_keymap_panes (submap
, Qnil
,
602 XCONS (item
)->car
, notreal
,
611 else if (VECTORP (item
))
613 /* Loop over the char values represented in the vector. */
614 int len
= XVECTOR (item
)->size
;
616 for (c
= 0; c
< len
; c
++)
618 Lisp_Object character
;
619 XSETFASTINT (character
, c
);
620 item1
= XVECTOR (item
)->contents
[c
];
623 item_string
= XCONS (item1
)->car
;
624 if (STRINGP (item_string
))
628 /* These are the saved equivalent keyboard key sequence
629 and its key-description. */
631 Lisp_Object tem
, enabled
;
633 /* GCPRO because ...enabled_p will call eval
634 and ..._equiv_key may autoload something.
635 Protecting KEYMAP preserves everything we use;
636 aside from that, must protect whatever might be
637 a string. Since there's no GCPRO5, we refetch
638 item_string instead of protecting it. */
639 GCPRO4 (keymap
, pending_maps
, def
, descrip
);
640 descrip
= def
= Qnil
;
642 def
= menu_item_equiv_key (item_string
, item1
, &descrip
);
643 enabled
= menu_item_enabled_p (def
, notreal
);
647 item_string
= XCONS (item1
)->car
;
649 tem
= Fkeymapp (def
);
650 if (XSTRING (item_string
)->data
[0] == '@' && !NILP (tem
))
651 pending_maps
= Fcons (Fcons (def
, Fcons (item_string
, character
)),
656 GCPRO4 (keymap
, pending_maps
, descrip
, item_string
);
657 submap
= get_keymap_1 (def
, 0, 1);
659 #ifndef USE_X_TOOLKIT
661 item_string
= concat2 (item_string
,
662 build_string (" >"));
664 /* If definition is nil, pass nil as the key. */
665 push_menu_item (item_string
, enabled
, character
,
670 push_submenu_start ();
671 single_keymap_panes (submap
, Qnil
,
684 /* Process now any submenus which want to be panes at this level. */
685 while (!NILP (pending_maps
))
687 Lisp_Object elt
, eltcdr
, string
;
688 elt
= Fcar (pending_maps
);
689 eltcdr
= XCONS (elt
)->cdr
;
690 string
= XCONS (eltcdr
)->car
;
691 /* We no longer discard the @ from the beginning of the string here.
692 Instead, we do this in xmenu_show. */
693 single_keymap_panes (Fcar (elt
), string
,
694 XCONS (eltcdr
)->cdr
, notreal
, maxdepth
- 1);
695 pending_maps
= Fcdr (pending_maps
);
699 /* Push all the panes and items of a menu described by the
700 alist-of-alists MENU.
701 This handles old-fashioned calls to x-popup-menu. */
711 for (tail
= menu
; !NILP (tail
); tail
= Fcdr (tail
))
713 Lisp_Object elt
, pane_name
, pane_data
;
715 pane_name
= Fcar (elt
);
716 CHECK_STRING (pane_name
, 0);
717 push_menu_pane (pane_name
, Qnil
);
718 pane_data
= Fcdr (elt
);
719 CHECK_CONS (pane_data
, 0);
720 list_of_items (pane_data
);
723 finish_menu_items ();
726 /* Push the items in a single pane defined by the alist PANE. */
732 Lisp_Object tail
, item
, item1
;
734 for (tail
= pane
; !NILP (tail
); tail
= Fcdr (tail
))
738 push_menu_item (item
, Qnil
, Qnil
, Qt
, Qnil
);
739 else if (NILP (item
))
740 push_left_right_boundary ();
743 CHECK_CONS (item
, 0);
745 CHECK_STRING (item1
, 1);
746 push_menu_item (item1
, Qt
, Fcdr (item
), Qt
, Qnil
);
751 DEFUN ("x-popup-menu", Fx_popup_menu
, Sx_popup_menu
, 2, 2, 0,
752 "Pop up a deck-of-cards menu and return user's selection.\n\
753 POSITION is a position specification. This is either a mouse button event\n\
754 or a list ((XOFFSET YOFFSET) WINDOW)\n\
755 where XOFFSET and YOFFSET are positions in pixels from the top left\n\
756 corner of WINDOW's frame. (WINDOW may be a frame object instead of a window.)\n\
757 This controls the position of the center of the first line\n\
758 in the first pane of the menu, not the top left of the menu as a whole.\n\
759 If POSITION is t, it means to use the current mouse position.\n\
761 MENU is a specifier for a menu. For the simplest case, MENU is a keymap.\n\
762 The menu items come from key bindings that have a menu string as well as\n\
763 a definition; actually, the \"definition\" in such a key binding looks like\n\
764 \(STRING . REAL-DEFINITION). To give the menu a title, put a string into\n\
765 the keymap as a top-level element.\n\n\
766 You can also use a list of keymaps as MENU.\n\
767 Then each keymap makes a separate pane.\n\
768 When MENU is a keymap or a list of keymaps, the return value\n\
769 is a list of events.\n\n\
770 Alternatively, you can specify a menu of multiple panes\n\
771 with a list of the form (TITLE PANE1 PANE2...),\n\
772 where each pane is a list of form (TITLE ITEM1 ITEM2...).\n\
773 Each ITEM is normally a cons cell (STRING . VALUE);\n\
774 but a string can appear as an item--that makes a nonselectable line\n\
776 With this form of menu, the return value is VALUE from the chosen item.\n\
778 If POSITION is nil, don't display the menu at all, just precalculate the\n\
779 cached information about equivalent key sequences.")
781 Lisp_Object position
, menu
;
783 int number_of_panes
, panes
;
784 Lisp_Object keymap
, tem
;
788 Lisp_Object selection
;
791 Lisp_Object x
, y
, window
;
797 if (! NILP (position
))
801 /* Decode the first argument: find the window and the coordinates. */
802 if (EQ (position
, Qt
)
803 || (CONSP (position
) && EQ (XCONS (position
)->car
, Qmenu_bar
)))
805 /* Use the mouse's current position. */
806 FRAME_PTR new_f
= selected_frame
;
807 Lisp_Object bar_window
;
811 if (mouse_position_hook
)
812 (*mouse_position_hook
) (&new_f
, 1, &bar_window
,
813 &part
, &x
, &y
, &time
);
815 XSETFRAME (window
, new_f
);
818 window
= selected_window
;
825 tem
= Fcar (position
);
828 window
= Fcar (Fcdr (position
));
830 y
= Fcar (Fcdr (tem
));
835 tem
= Fcar (Fcdr (position
)); /* EVENT_START (position) */
836 window
= Fcar (tem
); /* POSN_WINDOW (tem) */
837 tem
= Fcar (Fcdr (Fcdr (tem
))); /* POSN_WINDOW_POSN (tem) */
846 /* Decode where to put the menu. */
854 else if (WINDOWP (window
))
856 CHECK_LIVE_WINDOW (window
, 0);
857 f
= XFRAME (WINDOW_FRAME (XWINDOW (window
)));
859 xpos
= (FONT_WIDTH (f
->output_data
.x
->font
)
860 * XFASTINT (XWINDOW (window
)->left
));
861 ypos
= (f
->output_data
.x
->line_height
862 * XFASTINT (XWINDOW (window
)->top
));
865 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
866 but I don't want to make one now. */
867 CHECK_WINDOW (window
, 0);
872 XSETFRAME (Vmenu_updating_frame
, f
);
874 Vmenu_updating_frame
= Qnil
;
875 #endif /* HAVE_MENUS */
880 /* Decode the menu items from what was specified. */
882 keymap
= Fkeymapp (menu
);
885 tem
= Fkeymapp (Fcar (menu
));
888 /* We were given a keymap. Extract menu info from the keymap. */
890 keymap
= get_keymap (menu
);
892 /* Extract the detailed info to make one pane. */
893 keymap_panes (&menu
, 1, NILP (position
));
895 /* Search for a string appearing directly as an element of the keymap.
896 That string is the title of the menu. */
897 prompt
= map_prompt (keymap
);
898 if (NILP (title
) && !NILP (prompt
))
901 /* Make that be the pane title of the first pane. */
902 if (!NILP (prompt
) && menu_items_n_panes
>= 0)
903 XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_NAME
] = prompt
;
907 else if (!NILP (tem
))
909 /* We were given a list of keymaps. */
910 int nmaps
= XFASTINT (Flength (menu
));
912 = (Lisp_Object
*) alloca (nmaps
* sizeof (Lisp_Object
));
917 /* The first keymap that has a prompt string
918 supplies the menu title. */
919 for (tem
= menu
, i
= 0; CONSP (tem
); tem
= Fcdr (tem
))
923 maps
[i
++] = keymap
= get_keymap (Fcar (tem
));
925 prompt
= map_prompt (keymap
);
926 if (NILP (title
) && !NILP (prompt
))
930 /* Extract the detailed info to make one pane. */
931 keymap_panes (maps
, nmaps
, NILP (position
));
933 /* Make the title be the pane title of the first pane. */
934 if (!NILP (title
) && menu_items_n_panes
>= 0)
935 XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_NAME
] = title
;
941 /* We were given an old-fashioned menu. */
943 CHECK_STRING (title
, 1);
945 list_of_panes (Fcdr (menu
));
952 discard_menu_items ();
958 /* Display them in a menu. */
961 selection
= xmenu_show (f
, xpos
, ypos
, for_click
,
962 keymaps
, title
, &error_name
);
965 discard_menu_items ();
968 #endif /* HAVE_MENUS */
970 if (error_name
) error (error_name
);
976 DEFUN ("x-popup-dialog", Fx_popup_dialog
, Sx_popup_dialog
, 2, 2, 0,
977 "Pop up a dialog box and return user's selection.\n\
978 POSITION specifies which frame to use.\n\
979 This is normally a mouse button event or a window or frame.\n\
980 If POSITION is t, it means to use the frame the mouse is on.\n\
981 The dialog box appears in the middle of the specified frame.\n\
983 CONTENTS specifies the alternatives to display in the dialog box.\n\
984 It is a list of the form (TITLE ITEM1 ITEM2...).\n\
985 Each ITEM is a cons cell (STRING . VALUE).\n\
986 The return value is VALUE from the chosen item.\n\n\
987 An ITEM may also be just a string--that makes a nonselectable item.\n\
988 An ITEM may also be nil--that means to put all preceding items\n\
989 on the left of the dialog box and all following items on the right.\n\
990 \(By default, approximately half appear on each side.)")
992 Lisp_Object position
, contents
;
999 /* Decode the first argument: find the window or frame to use. */
1000 if (EQ (position
, Qt
)
1001 || (CONSP (position
) && EQ (XCONS (position
)->car
, Qmenu_bar
)))
1003 #if 0 /* Using the frame the mouse is on may not be right. */
1004 /* Use the mouse's current position. */
1005 FRAME_PTR new_f
= selected_frame
;
1006 Lisp_Object bar_window
;
1011 (*mouse_position_hook
) (&new_f
, 1, &bar_window
, &part
, &x
, &y
, &time
);
1014 XSETFRAME (window
, new_f
);
1016 window
= selected_window
;
1018 window
= selected_window
;
1020 else if (CONSP (position
))
1023 tem
= Fcar (position
);
1025 window
= Fcar (Fcdr (position
));
1028 tem
= Fcar (Fcdr (position
)); /* EVENT_START (position) */
1029 window
= Fcar (tem
); /* POSN_WINDOW (tem) */
1032 else if (WINDOWP (position
) || FRAMEP (position
))
1037 /* Decode where to put the menu. */
1039 if (FRAMEP (window
))
1040 f
= XFRAME (window
);
1041 else if (WINDOWP (window
))
1043 CHECK_LIVE_WINDOW (window
, 0);
1044 f
= XFRAME (WINDOW_FRAME (XWINDOW (window
)));
1047 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
1048 but I don't want to make one now. */
1049 CHECK_WINDOW (window
, 0);
1051 #ifndef USE_X_TOOLKIT
1052 /* Display a menu with these alternatives
1053 in the middle of frame F. */
1055 Lisp_Object x
, y
, frame
, newpos
;
1056 XSETFRAME (frame
, f
);
1057 XSETINT (x
, x_pixel_width (f
) / 2);
1058 XSETINT (y
, x_pixel_height (f
) / 2);
1059 newpos
= Fcons (Fcons (x
, Fcons (y
, Qnil
)), Fcons (frame
, Qnil
));
1061 return Fx_popup_menu (newpos
,
1062 Fcons (Fcar (contents
), Fcons (contents
, Qnil
)));
1068 Lisp_Object selection
;
1070 /* Decode the dialog items from what was specified. */
1071 title
= Fcar (contents
);
1072 CHECK_STRING (title
, 1);
1074 list_of_panes (Fcons (contents
, Qnil
));
1076 /* Display them in a dialog box. */
1078 selection
= xdialog_show (f
, 0, title
, &error_name
);
1081 discard_menu_items ();
1083 if (error_name
) error (error_name
);
1089 #ifdef USE_X_TOOLKIT
1091 /* Loop in Xt until the menu pulldown or dialog popup has been
1092 popped down (deactivated). This is used for x-popup-menu
1093 and x-popup-dialog; it is not used for the menu bar any more.
1095 NOTE: All calls to popup_get_selection should be protected
1096 with BLOCK_INPUT, UNBLOCK_INPUT wrappers. */
1099 popup_get_selection (initial_event
, dpyinfo
, id
)
1100 XEvent
*initial_event
;
1101 struct x_display_info
*dpyinfo
;
1106 /* Define a queue to save up for later unreading
1107 all X events that don't pertain to the menu. */
1111 struct event_queue
*next
;
1114 struct event_queue
*queue
= NULL
;
1115 struct event_queue
*queue_tmp
;
1118 event
= *initial_event
;
1120 XtAppNextEvent (Xt_app_con
, &event
);
1124 /* Handle expose events for editor frames right away. */
1125 if (event
.type
== Expose
)
1126 process_expose_from_menu (event
);
1127 /* Make sure we don't consider buttons grabbed after menu goes.
1128 And make sure to deactivate for any ButtonRelease,
1129 even if XtDispatchEvent doesn't do that. */
1130 else if (event
.type
== ButtonRelease
1131 && dpyinfo
->display
== event
.xbutton
.display
)
1133 dpyinfo
->grabbed
&= ~(1 << event
.xbutton
.button
);
1134 popup_activated_flag
= 0;
1135 #ifdef USE_MOTIF /* Pretending that the event came from a
1136 Btn1Down seems the only way to convince Motif to
1137 activate its callbacks; setting the XmNmenuPost
1138 isn't working. --marcus@sysc.pdx.edu. */
1139 event
.xbutton
.button
= 1;
1142 /* If the user presses a key, deactivate the menu.
1143 The user is likely to do that if we get wedged. */
1144 else if (event
.type
== KeyPress
1145 && dpyinfo
->display
== event
.xbutton
.display
)
1147 popup_activated_flag
= 0;
1150 /* Button presses outside the menu also pop it down. */
1151 else if (event
.type
== ButtonPress
1152 && event
.xany
.display
== dpyinfo
->display
1153 && x_any_window_to_frame (dpyinfo
, event
.xany
.window
))
1155 popup_activated_flag
= 0;
1159 /* Queue all events not for this popup,
1160 except for Expose, which we've already handled, and ButtonRelease.
1161 Note that the X window is associated with the frame if this
1162 is a menu bar popup, but not if it's a dialog box. So we use
1163 x_non_menubar_window_to_frame, not x_any_window_to_frame. */
1164 if (event
.type
!= Expose
1165 && !(event
.type
== ButtonRelease
1166 && dpyinfo
->display
== event
.xbutton
.display
)
1167 && (event
.xany
.display
!= dpyinfo
->display
1168 || x_non_menubar_window_to_frame (dpyinfo
, event
.xany
.window
)))
1170 queue_tmp
= (struct event_queue
*) malloc (sizeof (struct event_queue
));
1172 if (queue_tmp
!= NULL
)
1174 queue_tmp
->event
= event
;
1175 queue_tmp
->next
= queue
;
1180 XtDispatchEvent (&event
);
1182 if (!popup_activated ())
1184 XtAppNextEvent (Xt_app_con
, &event
);
1187 /* Unread any events that we got but did not handle. */
1188 while (queue
!= NULL
)
1191 XPutBackEvent (queue_tmp
->event
.xany
.display
, &queue_tmp
->event
);
1192 queue
= queue_tmp
->next
;
1193 free ((char *)queue_tmp
);
1194 /* Cause these events to get read as soon as we UNBLOCK_INPUT. */
1195 interrupt_input_pending
= 1;
1199 /* Activate the menu bar of frame F.
1200 This is called from keyboard.c when it gets the
1201 menu_bar_activate_event out of the Emacs event queue.
1203 To activate the menu bar, we use the X button-press event
1204 that was saved in saved_menu_event.
1205 That makes the toolkit do its thing.
1207 But first we recompute the menu bar contents (the whole tree).
1209 The reason for saving the button event until here, instead of
1210 passing it to the toolkit right away, is that we can safely
1211 execute Lisp code. */
1213 x_activate_menubar (f
)
1216 if (!f
->output_data
.x
->saved_menu_event
->type
)
1219 set_frame_menubar (f
, 0, 1);
1221 XtDispatchEvent ((XEvent
*) f
->output_data
.x
->saved_menu_event
);
1224 if (f
->output_data
.x
->saved_menu_event
->type
== ButtonRelease
)
1225 pending_menu_activation
= 1;
1228 /* Ignore this if we get it a second time. */
1229 f
->output_data
.x
->saved_menu_event
->type
= 0;
1232 /* Detect if a dialog or menu has been posted. */
1237 return popup_activated_flag
;
1241 /* This callback is invoked when the user selects a menubar cascade
1242 pushbutton, but before the pulldown menu is posted. */
1245 popup_activate_callback (widget
, id
, client_data
)
1248 XtPointer client_data
;
1250 popup_activated_flag
= 1;
1253 /* This callback is called from the menu bar pulldown menu
1254 when the user makes a selection.
1255 Figure out what the user chose
1256 and put the appropriate events into the keyboard buffer. */
1259 menubar_selection_callback (widget
, id
, client_data
)
1262 XtPointer client_data
;
1264 Lisp_Object prefix
, entry
;
1265 FRAME_PTR f
= menubar_id_to_frame (id
);
1267 Lisp_Object
*subprefix_stack
;
1268 int submenu_depth
= 0;
1273 subprefix_stack
= (Lisp_Object
*) alloca (f
->menu_bar_items_used
* sizeof (Lisp_Object
));
1274 vector
= f
->menu_bar_vector
;
1277 while (i
< f
->menu_bar_items_used
)
1279 if (EQ (XVECTOR (vector
)->contents
[i
], Qnil
))
1281 subprefix_stack
[submenu_depth
++] = prefix
;
1285 else if (EQ (XVECTOR (vector
)->contents
[i
], Qlambda
))
1287 prefix
= subprefix_stack
[--submenu_depth
];
1290 else if (EQ (XVECTOR (vector
)->contents
[i
], Qt
))
1292 prefix
= XVECTOR (vector
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
1293 i
+= MENU_ITEMS_PANE_LENGTH
;
1297 entry
= XVECTOR (vector
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
1298 /* The EMACS_INT cast avoids a warning. There's no problem
1299 as long as pointers have enough bits to hold small integers. */
1300 if ((int) (EMACS_INT
) client_data
== i
)
1303 struct input_event buf
;
1306 XSETFRAME (frame
, f
);
1307 buf
.kind
= menu_bar_event
;
1308 buf
.frame_or_window
= Fcons (frame
, Fcons (Qmenu_bar
, Qnil
));
1309 kbd_buffer_store_event (&buf
);
1311 for (j
= 0; j
< submenu_depth
; j
++)
1312 if (!NILP (subprefix_stack
[j
]))
1314 buf
.kind
= menu_bar_event
;
1315 buf
.frame_or_window
= Fcons (frame
, subprefix_stack
[j
]);
1316 kbd_buffer_store_event (&buf
);
1321 buf
.kind
= menu_bar_event
;
1322 buf
.frame_or_window
= Fcons (frame
, prefix
);
1323 kbd_buffer_store_event (&buf
);
1326 buf
.kind
= menu_bar_event
;
1327 buf
.frame_or_window
= Fcons (frame
, entry
);
1328 kbd_buffer_store_event (&buf
);
1332 i
+= MENU_ITEMS_ITEM_LENGTH
;
1337 /* This callback is invoked when a dialog or menu is finished being
1338 used and has been unposted. */
1341 popup_deactivate_callback (widget
, id
, client_data
)
1344 XtPointer client_data
;
1346 popup_activated_flag
= 0;
1349 /* Allocate a widget_value, blocking input. */
1352 xmalloc_widget_value ()
1354 widget_value
*value
;
1357 value
= malloc_widget_value ();
1363 /* This recursively calls free_widget_value on the tree of widgets.
1364 It must free all data that was malloc'ed for these widget_values.
1365 In Emacs, many slots are pointers into the data of Lisp_Strings, and
1366 must be left alone. */
1369 free_menubar_widget_value_tree (wv
)
1374 wv
->name
= wv
->value
= wv
->key
= (char *) 0xDEADBEEF;
1376 if (wv
->contents
&& (wv
->contents
!= (widget_value
*)1))
1378 free_menubar_widget_value_tree (wv
->contents
);
1379 wv
->contents
= (widget_value
*) 0xDEADBEEF;
1383 free_menubar_widget_value_tree (wv
->next
);
1384 wv
->next
= (widget_value
*) 0xDEADBEEF;
1387 free_widget_value (wv
);
1391 /* Return a tree of widget_value structures for a menu bar item
1392 whose event type is ITEM_KEY (with string ITEM_NAME)
1393 and whose contents come from the list of keymaps MAPS. */
1395 static widget_value
*
1396 single_submenu (item_key
, item_name
, maps
)
1397 Lisp_Object item_key
, item_name
, maps
;
1399 widget_value
*wv
, *prev_wv
, *save_wv
, *first_wv
;
1401 int submenu_depth
= 0;
1404 Lisp_Object
*mapvec
;
1405 widget_value
**submenu_stack
;
1407 int previous_items
= menu_items_used
;
1408 int top_level_items
= 0;
1410 length
= Flength (maps
);
1411 len
= XINT (length
);
1413 /* Convert the list MAPS into a vector MAPVEC. */
1414 mapvec
= (Lisp_Object
*) alloca (len
* sizeof (Lisp_Object
));
1415 for (i
= 0; i
< len
; i
++)
1417 mapvec
[i
] = Fcar (maps
);
1421 menu_items_n_panes
= 0;
1423 /* Loop over the given keymaps, making a pane for each map.
1424 But don't make a pane that is empty--ignore that map instead. */
1425 for (i
= 0; i
< len
; i
++)
1427 if (SYMBOLP (mapvec
[i
])
1428 || (CONSP (mapvec
[i
])
1429 && NILP (Fkeymapp (mapvec
[i
]))))
1431 /* Here we have a command at top level in the menu bar
1432 as opposed to a submenu. */
1433 top_level_items
= 1;
1434 push_menu_pane (Qnil
, Qnil
);
1435 push_menu_item (item_name
, Qt
, item_key
, mapvec
[i
], Qnil
);
1438 single_keymap_panes (mapvec
[i
], item_name
, item_key
, 0, 10);
1441 /* Create a tree of widget_value objects
1442 representing the panes and their items. */
1445 = (widget_value
**) alloca (menu_items_used
* sizeof (widget_value
*));
1446 wv
= xmalloc_widget_value ();
1454 /* Loop over all panes and items made during this call
1455 and construct a tree of widget_value objects.
1456 Ignore the panes and items made by previous calls to
1457 single_submenu, even though those are also in menu_items. */
1459 while (i
< menu_items_used
)
1461 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
1463 submenu_stack
[submenu_depth
++] = save_wv
;
1468 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
1471 save_wv
= submenu_stack
[--submenu_depth
];
1474 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
)
1475 && submenu_depth
!= 0)
1476 i
+= MENU_ITEMS_PANE_LENGTH
;
1477 /* Ignore a nil in the item list.
1478 It's meaningful only for dialog boxes. */
1479 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
1481 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
1483 /* Create a new pane. */
1484 Lisp_Object pane_name
, prefix
;
1486 pane_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_NAME
];
1487 prefix
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
1488 pane_string
= (NILP (pane_name
)
1489 ? "" : (char *) XSTRING (pane_name
)->data
);
1490 /* If there is just one top-level pane, put all its items directly
1491 under the top-level menu. */
1492 if (menu_items_n_panes
== 1)
1495 /* If the pane has a meaningful name,
1496 make the pane a top-level menu item
1497 with its items as a submenu beneath it. */
1498 if (strcmp (pane_string
, ""))
1500 wv
= xmalloc_widget_value ();
1504 first_wv
->contents
= wv
;
1505 wv
->name
= pane_string
;
1506 /* Ignore the @ that means "separate pane".
1507 This is a kludge, but this isn't worth more time. */
1508 if (!NILP (prefix
) && wv
->name
[0] == '@')
1515 i
+= MENU_ITEMS_PANE_LENGTH
;
1519 /* Create a new item within current pane. */
1520 Lisp_Object item_name
, enable
, descrip
, def
;
1521 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
1522 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
1524 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
1525 def
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_DEFINITION
];
1527 wv
= xmalloc_widget_value ();
1531 save_wv
->contents
= wv
;
1533 wv
->name
= (char *) XSTRING (item_name
)->data
;
1534 if (!NILP (descrip
))
1535 wv
->key
= (char *) XSTRING (descrip
)->data
;
1537 /* The EMACS_INT cast avoids a warning. There's no problem
1538 as long as pointers have enough bits to hold small integers. */
1539 wv
->call_data
= (!NILP (def
) ? (void *) (EMACS_INT
) i
: 0);
1540 wv
->enabled
= !NILP (enable
);
1543 i
+= MENU_ITEMS_ITEM_LENGTH
;
1547 /* If we have just one "menu item"
1548 that was originally a button, return it by itself. */
1549 if (top_level_items
&& first_wv
->contents
&& first_wv
->contents
->next
== 0)
1551 wv
= first_wv
->contents
;
1552 free_widget_value (first_wv
);
1559 extern void EmacsFrameSetCharSize ();
1561 /* Recompute all the widgets of frame F, when the menu bar
1562 has been changed. */
1565 update_frame_menubar (f
)
1568 struct x_output
*x
= f
->output_data
.x
;
1570 int menubar_changed
;
1572 Dimension shell_height
;
1574 /* We assume the menubar contents has changed if the global flag is set,
1575 or if the current buffer has changed, or if the menubar has never
1576 been updated before.
1578 menubar_changed
= (x
->menubar_widget
1579 && !XtIsManaged (x
->menubar_widget
));
1581 if (! (menubar_changed
))
1585 /* Save the size of the frame because the pane widget doesn't accept to
1586 resize itself. So force it. */
1590 /* Do the voodoo which means "I'm changing lots of things, don't try to
1591 refigure sizes until I'm done." */
1592 lw_refigure_widget (x
->column_widget
, False
);
1594 /* the order in which children are managed is the top to
1595 bottom order in which they are displayed in the paned window.
1596 First, remove the text-area widget.
1598 XtUnmanageChild (x
->edit_widget
);
1600 /* remove the menubar that is there now, and put up the menubar that
1603 if (menubar_changed
)
1605 XtManageChild (x
->menubar_widget
);
1606 XtMapWidget (x
->menubar_widget
);
1607 XtVaSetValues (x
->menubar_widget
, XtNmappedWhenManaged
, 1, 0);
1610 /* Re-manage the text-area widget, and then thrash the sizes. */
1611 XtManageChild (x
->edit_widget
);
1612 lw_refigure_widget (x
->column_widget
, True
);
1614 /* Force the pane widget to resize itself with the right values. */
1615 EmacsFrameSetCharSize (x
->edit_widget
, columns
, rows
);
1620 /* Set the contents of the menubar widgets of frame F.
1621 The argument FIRST_TIME is currently ignored;
1622 it is set the first time this is called, from initialize_frame_menubar. */
1625 set_frame_menubar (f
, first_time
, deep_p
)
1630 Widget menubar_widget
= f
->output_data
.x
->menubar_widget
;
1631 Lisp_Object tail
, items
, frame
;
1632 widget_value
*wv
, *first_wv
, *prev_wv
= 0;
1636 XSETFRAME (Vmenu_updating_frame
, f
);
1638 if (f
->output_data
.x
->id
== 0)
1639 f
->output_data
.x
->id
= next_menubar_widget_id
++;
1640 id
= f
->output_data
.x
->id
;
1642 if (! menubar_widget
)
1644 else if (pending_menu_activation
&& !deep_p
)
1646 /* Make the first call for any given frame always go deep. */
1647 else if (!f
->output_data
.x
->saved_menu_event
&& !deep_p
)
1650 f
->output_data
.x
->saved_menu_event
= (XEvent
*)xmalloc (sizeof (XEvent
));
1651 f
->output_data
.x
->saved_menu_event
->type
= 0;
1654 wv
= xmalloc_widget_value ();
1655 wv
->name
= "menubar";
1662 /* Make a widget-value tree representing the entire menu trees. */
1664 struct buffer
*prev
= current_buffer
;
1666 int specpdl_count
= specpdl_ptr
- specpdl
;
1667 int previous_menu_items_used
= f
->menu_bar_items_used
;
1668 Lisp_Object
*previous_items
1669 = (Lisp_Object
*) alloca (previous_menu_items_used
1670 * sizeof (Lisp_Object
));
1672 buffer
= XWINDOW (FRAME_SELECTED_WINDOW (f
))->buffer
;
1673 specbind (Qinhibit_quit
, Qt
);
1674 /* Don't let the debugger step into this code
1675 because it is not reentrant. */
1676 specbind (Qdebug_on_next_call
, Qnil
);
1678 record_unwind_protect (Fstore_match_data
, Fmatch_data (Qnil
, Qnil
));
1679 if (NILP (Voverriding_local_map_menu_flag
))
1681 specbind (Qoverriding_terminal_local_map
, Qnil
);
1682 specbind (Qoverriding_local_map
, Qnil
);
1685 set_buffer_internal_1 (XBUFFER (buffer
));
1687 /* Run the Lucid hook. */
1688 call1 (Vrun_hooks
, Qactivate_menubar_hook
);
1689 /* If it has changed current-menubar from previous value,
1690 really recompute the menubar from the value. */
1691 if (! NILP (Vlucid_menu_bar_dirty_flag
))
1692 call0 (Qrecompute_lucid_menubar
);
1693 safe_run_hooks (Qmenu_bar_update_hook
);
1694 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
1696 items
= FRAME_MENU_BAR_ITEMS (f
);
1698 inhibit_garbage_collection ();
1700 /* Save the frame's previous menu bar contents data. */
1701 bcopy (XVECTOR (f
->menu_bar_vector
)->contents
, previous_items
,
1702 previous_menu_items_used
* sizeof (Lisp_Object
));
1704 /* Fill in the current menu bar contents. */
1705 menu_items
= f
->menu_bar_vector
;
1706 menu_items_allocated
= XVECTOR (menu_items
)->size
;
1708 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
1710 Lisp_Object key
, string
, maps
;
1712 key
= XVECTOR (items
)->contents
[i
];
1713 string
= XVECTOR (items
)->contents
[i
+ 1];
1714 maps
= XVECTOR (items
)->contents
[i
+ 2];
1718 wv
= single_submenu (key
, string
, maps
);
1722 first_wv
->contents
= wv
;
1723 /* Don't set wv->name here; GC during the loop might relocate it. */
1728 finish_menu_items ();
1730 set_buffer_internal_1 (prev
);
1731 unbind_to (specpdl_count
, Qnil
);
1733 /* If there has been no change in the Lisp-level contents
1734 of the menu bar, skip redisplaying it. Just exit. */
1736 for (i
= 0; i
< previous_menu_items_used
; i
++)
1737 if (menu_items_used
== i
1738 || (!EQ (previous_items
[i
], XVECTOR (menu_items
)->contents
[i
])))
1740 if (i
== menu_items_used
&& i
== previous_menu_items_used
&& i
!= 0)
1742 free_menubar_widget_value_tree (first_wv
);
1748 /* Now GC cannot happen during the lifetime of the widget_value,
1749 so it's safe to store data from a Lisp_String. */
1750 wv
= first_wv
->contents
;
1751 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
1754 string
= XVECTOR (items
)->contents
[i
+ 1];
1757 wv
->name
= (char *) XSTRING (string
)->data
;
1761 f
->menu_bar_vector
= menu_items
;
1762 f
->menu_bar_items_used
= menu_items_used
;
1767 /* Make a widget-value tree containing
1768 just the top level menu bar strings. */
1770 items
= FRAME_MENU_BAR_ITEMS (f
);
1771 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
1775 string
= XVECTOR (items
)->contents
[i
+ 1];
1779 wv
= xmalloc_widget_value ();
1780 wv
->name
= (char *) XSTRING (string
)->data
;
1783 /* This prevents lwlib from assuming this
1784 menu item is really supposed to be empty. */
1785 /* The EMACS_INT cast avoids a warning.
1786 This value just has to be different from small integers. */
1787 wv
->call_data
= (void *) (EMACS_INT
) (-1);
1792 first_wv
->contents
= wv
;
1796 /* Forget what we thought we knew about what is in the
1797 detailed contents of the menu bar menus.
1798 Changing the top level always destroys the contents. */
1799 f
->menu_bar_items_used
= 0;
1802 /* Create or update the menu bar widget. */
1808 /* Disable resizing (done for Motif!) */
1809 lw_allow_resizing (f
->output_data
.x
->widget
, False
);
1811 /* The third arg is DEEP_P, which says to consider the entire
1812 menu trees we supply, rather than just the menu bar item names. */
1813 lw_modify_all_widgets (id
, first_wv
, deep_p
);
1815 /* Re-enable the edit widget to resize. */
1816 lw_allow_resizing (f
->output_data
.x
->widget
, True
);
1820 menubar_widget
= lw_create_widget ("menubar", "menubar", id
, first_wv
,
1821 f
->output_data
.x
->column_widget
,
1823 popup_activate_callback
,
1824 menubar_selection_callback
,
1825 popup_deactivate_callback
);
1826 f
->output_data
.x
->menubar_widget
= menubar_widget
;
1831 = (f
->output_data
.x
->menubar_widget
1832 ? (f
->output_data
.x
->menubar_widget
->core
.height
1833 + f
->output_data
.x
->menubar_widget
->core
.border_width
)
1836 #if 0 /* Experimentally, we now get the right results
1837 for -geometry -0-0 without this. 24 Aug 96, rms. */
1839 if (FRAME_EXTERNAL_MENU_BAR (f
))
1842 XtVaGetValues (f
->output_data
.x
->column_widget
,
1843 XtNinternalBorderWidth
, &ibw
, NULL
);
1844 menubar_size
+= ibw
;
1846 #endif /* USE_LUCID */
1849 f
->output_data
.x
->menubar_height
= menubar_size
;
1852 free_menubar_widget_value_tree (first_wv
);
1854 update_frame_menubar (f
);
1859 /* Called from Fx_create_frame to create the initial menubar of a frame
1860 before it is mapped, so that the window is mapped with the menubar already
1861 there instead of us tacking it on later and thrashing the window after it
1865 initialize_frame_menubar (f
)
1868 /* This function is called before the first chance to redisplay
1869 the frame. It has to be, so the frame will have the right size. */
1870 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
1871 set_frame_menubar (f
, 1, 1);
1874 /* Get rid of the menu bar of frame F, and free its storage.
1875 This is used when deleting a frame, and when turning off the menu bar. */
1878 free_frame_menubar (f
)
1881 Widget menubar_widget
;
1884 menubar_widget
= f
->output_data
.x
->menubar_widget
;
1889 lw_destroy_all_widgets ((LWLIB_ID
) f
->output_data
.x
->id
);
1894 #endif /* USE_X_TOOLKIT */
1896 /* xmenu_show actually displays a menu using the panes and items in menu_items
1897 and returns the value selected from it.
1898 There are two versions of xmenu_show, one for Xt and one for Xlib.
1899 Both assume input is blocked by the caller. */
1901 /* F is the frame the menu is for.
1902 X and Y are the frame-relative specified position,
1903 relative to the inside upper left corner of the frame F.
1904 FOR_CLICK is nonzero if this menu was invoked for a mouse click.
1905 KEYMAPS is 1 if this menu was specified with keymaps;
1906 in that case, we return a list containing the chosen item's value
1907 and perhaps also the pane's prefix.
1908 TITLE is the specified menu title.
1909 ERROR is a place to store an error message string in case of failure.
1910 (We return nil on failure, but the value doesn't actually matter.) */
1912 #ifdef USE_X_TOOLKIT
1914 /* We need a unique id for each widget handled by the Lucid Widget
1917 For the main windows, and popup menus, we use this counter,
1918 which we increment each time after use. This starts from 1<<16.
1920 For menu bars, we use numbers starting at 0, counted in
1921 next_menubar_widget_id. */
1922 LWLIB_ID widget_id_tick
;
1925 static Lisp_Object
*volatile menu_item_selection
;
1927 static Lisp_Object
*menu_item_selection
;
1931 popup_selection_callback (widget
, id
, client_data
)
1934 XtPointer client_data
;
1936 menu_item_selection
= (Lisp_Object
*) client_data
;
1940 xmenu_show (f
, x
, y
, for_click
, keymaps
, title
, error
)
1954 widget_value
*wv
, *save_wv
= 0, *first_wv
= 0, *prev_wv
= 0;
1955 widget_value
**submenu_stack
1956 = (widget_value
**) alloca (menu_items_used
* sizeof (widget_value
*));
1957 Lisp_Object
*subprefix_stack
1958 = (Lisp_Object
*) alloca (menu_items_used
* sizeof (Lisp_Object
));
1959 int submenu_depth
= 0;
1960 XButtonPressedEvent dummy
;
1963 int next_release_must_exit
= 0;
1967 if (menu_items_used
<= MENU_ITEMS_PANE_LENGTH
)
1969 *error
= "Empty menu";
1973 /* Create a tree of widget_value objects
1974 representing the panes and their items. */
1975 wv
= xmalloc_widget_value ();
1982 /* Loop over all panes and items, filling in the tree. */
1984 while (i
< menu_items_used
)
1986 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
1988 submenu_stack
[submenu_depth
++] = save_wv
;
1994 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
1997 save_wv
= submenu_stack
[--submenu_depth
];
2001 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
)
2002 && submenu_depth
!= 0)
2003 i
+= MENU_ITEMS_PANE_LENGTH
;
2004 /* Ignore a nil in the item list.
2005 It's meaningful only for dialog boxes. */
2006 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
2008 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2010 /* Create a new pane. */
2011 Lisp_Object pane_name
, prefix
;
2013 pane_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_NAME
];
2014 prefix
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2015 pane_string
= (NILP (pane_name
)
2016 ? "" : (char *) XSTRING (pane_name
)->data
);
2017 /* If there is just one top-level pane, put all its items directly
2018 under the top-level menu. */
2019 if (menu_items_n_panes
== 1)
2022 /* If the pane has a meaningful name,
2023 make the pane a top-level menu item
2024 with its items as a submenu beneath it. */
2025 if (!keymaps
&& strcmp (pane_string
, ""))
2027 wv
= xmalloc_widget_value ();
2031 first_wv
->contents
= wv
;
2032 wv
->name
= pane_string
;
2033 if (keymaps
&& !NILP (prefix
))
2040 else if (first_pane
)
2046 i
+= MENU_ITEMS_PANE_LENGTH
;
2050 /* Create a new item within current pane. */
2051 Lisp_Object item_name
, enable
, descrip
, def
;
2052 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
2053 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
2055 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
2056 def
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_DEFINITION
];
2058 wv
= xmalloc_widget_value ();
2062 save_wv
->contents
= wv
;
2063 wv
->name
= (char *) XSTRING (item_name
)->data
;
2064 if (!NILP (descrip
))
2065 wv
->key
= (char *) XSTRING (descrip
)->data
;
2067 /* If this item has a null value,
2068 make the call_data null so that it won't display a box
2069 when the mouse is on it. */
2071 = (!NILP (def
) ? (void *) &XVECTOR (menu_items
)->contents
[i
] : 0);
2072 wv
->enabled
= !NILP (enable
);
2075 i
+= MENU_ITEMS_ITEM_LENGTH
;
2079 /* Deal with the title, if it is non-nil. */
2082 widget_value
*wv_title
= xmalloc_widget_value ();
2083 widget_value
*wv_sep1
= xmalloc_widget_value ();
2084 widget_value
*wv_sep2
= xmalloc_widget_value ();
2086 wv_sep2
->name
= "--";
2087 wv_sep2
->next
= first_wv
->contents
;
2089 wv_sep1
->name
= "--";
2090 wv_sep1
->next
= wv_sep2
;
2092 wv_title
->name
= (char *) XSTRING (title
)->data
;
2093 wv_title
->enabled
= True
;
2094 wv_title
->next
= wv_sep1
;
2095 first_wv
->contents
= wv_title
;
2098 /* Actually create the menu. */
2099 menu_id
= widget_id_tick
++;
2100 menu
= lw_create_widget ("popup", first_wv
->name
, menu_id
, first_wv
,
2101 f
->output_data
.x
->widget
, 1, 0,
2102 popup_selection_callback
,
2103 popup_deactivate_callback
);
2105 /* Adjust coordinates to relative to the outer (window manager) window. */
2108 int win_x
= 0, win_y
= 0;
2110 /* Find the position of the outside upper-left corner of
2111 the inner window, with respect to the outer window. */
2112 if (f
->output_data
.x
->parent_desc
!= FRAME_X_DISPLAY_INFO (f
)->root_window
)
2115 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
2117 /* From-window, to-window. */
2118 f
->output_data
.x
->window_desc
,
2119 f
->output_data
.x
->parent_desc
,
2121 /* From-position, to-position. */
2122 0, 0, &win_x
, &win_y
,
2124 /* Child of window. */
2132 /* Adjust coordinates to be root-window-relative. */
2133 x
+= f
->output_data
.x
->left_pos
;
2134 y
+= f
->output_data
.x
->top_pos
;
2136 dummy
.type
= ButtonPress
;
2138 dummy
.send_event
= 0;
2139 dummy
.display
= FRAME_X_DISPLAY (f
);
2140 dummy
.time
= CurrentTime
;
2141 dummy
.root
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
2142 dummy
.window
= dummy
.root
;
2143 dummy
.subwindow
= dummy
.root
;
2148 dummy
.state
= (FRAME_X_DISPLAY_INFO (f
)->grabbed
>> 1) * Button1Mask
;
2150 for (i
= 0; i
< 5; i
++)
2151 if (FRAME_X_DISPLAY_INFO (f
)->grabbed
& (1 << i
))
2154 /* Don't allow any geometry request from the user. */
2155 XtSetArg (av
[ac
], XtNgeometry
, 0); ac
++;
2156 XtSetValues (menu
, av
, ac
);
2158 /* Free the widget_value objects we used to specify the contents. */
2159 free_menubar_widget_value_tree (first_wv
);
2161 /* No selection has been chosen yet. */
2162 menu_item_selection
= 0;
2164 /* Display the menu. */
2165 lw_popup_menu (menu
, &dummy
);
2166 popup_activated_flag
= 1;
2168 /* Process events that apply to the menu. */
2169 popup_get_selection ((XEvent
*) 0, FRAME_X_DISPLAY_INFO (f
), menu_id
);
2171 /* fp turned off the following statement and wrote a comment
2172 that it is unnecessary--that the menu has already disappeared.
2173 Nowadays the menu disappears ok, all right, but
2174 we need to delete the widgets or multiple ones will pile up. */
2175 lw_destroy_all_widgets (menu_id
);
2177 /* Find the selected item, and its pane, to return
2178 the proper value. */
2179 if (menu_item_selection
!= 0)
2181 Lisp_Object prefix
, entry
;
2185 while (i
< menu_items_used
)
2187 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
2189 subprefix_stack
[submenu_depth
++] = prefix
;
2193 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
2195 prefix
= subprefix_stack
[--submenu_depth
];
2198 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2201 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2202 i
+= MENU_ITEMS_PANE_LENGTH
;
2204 /* Ignore a nil in the item list.
2205 It's meaningful only for dialog boxes. */
2206 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
2211 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
2212 if (menu_item_selection
== &XVECTOR (menu_items
)->contents
[i
])
2218 entry
= Fcons (entry
, Qnil
);
2220 entry
= Fcons (prefix
, entry
);
2221 for (j
= submenu_depth
- 1; j
>= 0; j
--)
2222 if (!NILP (subprefix_stack
[j
]))
2223 entry
= Fcons (subprefix_stack
[j
], entry
);
2227 i
+= MENU_ITEMS_ITEM_LENGTH
;
2236 dialog_selection_callback (widget
, id
, client_data
)
2239 XtPointer client_data
;
2241 /* The EMACS_INT cast avoids a warning. There's no problem
2242 as long as pointers have enough bits to hold small integers. */
2243 if ((int) (EMACS_INT
) client_data
!= -1)
2244 menu_item_selection
= (Lisp_Object
*) client_data
;
2246 lw_destroy_all_widgets (id
);
2248 popup_activated_flag
= 0;
2251 static char * button_names
[] = {
2252 "button1", "button2", "button3", "button4", "button5",
2253 "button6", "button7", "button8", "button9", "button10" };
2256 xdialog_show (f
, keymaps
, title
, error
)
2262 int i
, nb_buttons
=0;
2265 char dialog_name
[6];
2267 widget_value
*wv
, *save_wv
= 0, *first_wv
= 0, *prev_wv
= 0;
2269 /* Number of elements seen so far, before boundary. */
2271 /* 1 means we've seen the boundary between left-hand elts and right-hand. */
2272 int boundary_seen
= 0;
2276 if (menu_items_n_panes
> 1)
2278 *error
= "Multiple panes in dialog box";
2282 /* Create a tree of widget_value objects
2283 representing the text label and buttons. */
2285 Lisp_Object pane_name
, prefix
;
2287 pane_name
= XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_NAME
];
2288 prefix
= XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_PREFIX
];
2289 pane_string
= (NILP (pane_name
)
2290 ? "" : (char *) XSTRING (pane_name
)->data
);
2291 prev_wv
= xmalloc_widget_value ();
2292 prev_wv
->value
= pane_string
;
2293 if (keymaps
&& !NILP (prefix
))
2295 prev_wv
->enabled
= 1;
2296 prev_wv
->name
= "message";
2299 /* Loop over all panes and items, filling in the tree. */
2300 i
= MENU_ITEMS_PANE_LENGTH
;
2301 while (i
< menu_items_used
)
2304 /* Create a new item within current pane. */
2305 Lisp_Object item_name
, enable
, descrip
;
2306 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
2307 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
2309 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
2311 if (NILP (item_name
))
2313 free_menubar_widget_value_tree (first_wv
);
2314 *error
= "Submenu in dialog items";
2317 if (EQ (item_name
, Qquote
))
2319 /* This is the boundary between left-side elts
2320 and right-side elts. Stop incrementing right_count. */
2325 if (nb_buttons
>= 9)
2327 free_menubar_widget_value_tree (first_wv
);
2328 *error
= "Too many dialog items";
2332 wv
= xmalloc_widget_value ();
2334 wv
->name
= (char *) button_names
[nb_buttons
];
2335 if (!NILP (descrip
))
2336 wv
->key
= (char *) XSTRING (descrip
)->data
;
2337 wv
->value
= (char *) XSTRING (item_name
)->data
;
2338 wv
->call_data
= (void *) &XVECTOR (menu_items
)->contents
[i
];
2339 wv
->enabled
= !NILP (enable
);
2342 if (! boundary_seen
)
2346 i
+= MENU_ITEMS_ITEM_LENGTH
;
2349 /* If the boundary was not specified,
2350 by default put half on the left and half on the right. */
2351 if (! boundary_seen
)
2352 left_count
= nb_buttons
- nb_buttons
/ 2;
2354 wv
= xmalloc_widget_value ();
2355 wv
->name
= dialog_name
;
2357 /* Dialog boxes use a really stupid name encoding
2358 which specifies how many buttons to use
2359 and how many buttons are on the right.
2360 The Q means something also. */
2361 dialog_name
[0] = 'Q';
2362 dialog_name
[1] = '0' + nb_buttons
;
2363 dialog_name
[2] = 'B';
2364 dialog_name
[3] = 'R';
2365 /* Number of buttons to put on the right. */
2366 dialog_name
[4] = '0' + nb_buttons
- left_count
;
2368 wv
->contents
= first_wv
;
2372 /* Actually create the dialog. */
2373 dialog_id
= widget_id_tick
++;
2374 menu
= lw_create_widget (first_wv
->name
, "dialog", dialog_id
, first_wv
,
2375 f
->output_data
.x
->widget
, 1, 0,
2376 dialog_selection_callback
, 0);
2377 lw_modify_all_widgets (dialog_id
, first_wv
->contents
, True
);
2378 /* Free the widget_value objects we used to specify the contents. */
2379 free_menubar_widget_value_tree (first_wv
);
2381 /* No selection has been chosen yet. */
2382 menu_item_selection
= 0;
2384 /* Display the menu. */
2385 lw_pop_up_all_widgets (dialog_id
);
2386 popup_activated_flag
= 1;
2388 /* Process events that apply to the menu. */
2389 popup_get_selection ((XEvent
*) 0, FRAME_X_DISPLAY_INFO (f
), dialog_id
);
2391 lw_destroy_all_widgets (dialog_id
);
2393 /* Find the selected item, and its pane, to return
2394 the proper value. */
2395 if (menu_item_selection
!= 0)
2401 while (i
< menu_items_used
)
2405 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2408 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2409 i
+= MENU_ITEMS_PANE_LENGTH
;
2414 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
2415 if (menu_item_selection
== &XVECTOR (menu_items
)->contents
[i
])
2419 entry
= Fcons (entry
, Qnil
);
2421 entry
= Fcons (prefix
, entry
);
2425 i
+= MENU_ITEMS_ITEM_LENGTH
;
2432 #else /* not USE_X_TOOLKIT */
2435 xmenu_show (f
, x
, y
, for_click
, keymaps
, title
, error
)
2445 int pane
, selidx
, lpane
, status
;
2446 Lisp_Object entry
, pane_prefix
;
2448 int ulx
, uly
, width
, height
;
2449 int dispwidth
, dispheight
;
2453 unsigned int dummy_uint
;
2456 if (menu_items_n_panes
== 0)
2459 if (menu_items_used
<= MENU_ITEMS_PANE_LENGTH
)
2461 *error
= "Empty menu";
2465 /* Figure out which root window F is on. */
2466 XGetGeometry (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), &root
,
2467 &dummy_int
, &dummy_int
, &dummy_uint
, &dummy_uint
,
2468 &dummy_uint
, &dummy_uint
);
2470 /* Make the menu on that window. */
2471 menu
= XMenuCreate (FRAME_X_DISPLAY (f
), root
, "emacs");
2474 *error
= "Can't create menu";
2478 #ifdef HAVE_X_WINDOWS
2479 /* Adjust coordinates to relative to the outer (window manager) window. */
2482 int win_x
= 0, win_y
= 0;
2484 /* Find the position of the outside upper-left corner of
2485 the inner window, with respect to the outer window. */
2486 if (f
->output_data
.x
->parent_desc
!= FRAME_X_DISPLAY_INFO (f
)->root_window
)
2489 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
2491 /* From-window, to-window. */
2492 f
->output_data
.x
->window_desc
,
2493 f
->output_data
.x
->parent_desc
,
2495 /* From-position, to-position. */
2496 0, 0, &win_x
, &win_y
,
2498 /* Child of window. */
2505 #endif /* HAVE_X_WINDOWS */
2507 /* Adjust coordinates to be root-window-relative. */
2508 x
+= f
->output_data
.x
->left_pos
;
2509 y
+= f
->output_data
.x
->top_pos
;
2511 /* Create all the necessary panes and their items. */
2513 while (i
< menu_items_used
)
2515 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2517 /* Create a new pane. */
2518 Lisp_Object pane_name
, prefix
;
2521 pane_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_NAME
];
2522 prefix
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2523 pane_string
= (NILP (pane_name
)
2524 ? "" : (char *) XSTRING (pane_name
)->data
);
2525 if (keymaps
&& !NILP (prefix
))
2528 lpane
= XMenuAddPane (FRAME_X_DISPLAY (f
), menu
, pane_string
, TRUE
);
2529 if (lpane
== XM_FAILURE
)
2531 XMenuDestroy (FRAME_X_DISPLAY (f
), menu
);
2532 *error
= "Can't create pane";
2535 i
+= MENU_ITEMS_PANE_LENGTH
;
2537 /* Find the width of the widest item in this pane. */
2540 while (j
< menu_items_used
)
2543 item
= XVECTOR (menu_items
)->contents
[j
];
2551 width
= XSTRING (item
)->size
;
2552 if (width
> maxwidth
)
2555 j
+= MENU_ITEMS_ITEM_LENGTH
;
2558 /* Ignore a nil in the item list.
2559 It's meaningful only for dialog boxes. */
2560 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
2564 /* Create a new item within current pane. */
2565 Lisp_Object item_name
, enable
, descrip
;
2566 unsigned char *item_data
;
2568 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
2569 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
2571 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
2572 if (!NILP (descrip
))
2574 int gap
= maxwidth
- XSTRING (item_name
)->size
;
2577 spacer
= Fmake_string (make_number (gap
), make_number (' '));
2578 item_name
= concat2 (item_name
, spacer
);
2579 item_name
= concat2 (item_name
, descrip
);
2580 item_data
= XSTRING (item_name
)->data
;
2582 /* if alloca is fast, use that to make the space,
2583 to reduce gc needs. */
2585 = (unsigned char *) alloca (maxwidth
2586 + XSTRING (descrip
)->size
+ 1);
2587 bcopy (XSTRING (item_name
)->data
, item_data
,
2588 XSTRING (item_name
)->size
);
2589 for (j
= XSTRING (item_name
)->size
; j
< maxwidth
; j
++)
2591 bcopy (XSTRING (descrip
)->data
, item_data
+ j
,
2592 XSTRING (descrip
)->size
);
2593 item_data
[j
+ XSTRING (descrip
)->size
] = 0;
2597 item_data
= XSTRING (item_name
)->data
;
2599 if (XMenuAddSelection (FRAME_X_DISPLAY (f
),
2600 menu
, lpane
, 0, item_data
,
2604 XMenuDestroy (FRAME_X_DISPLAY (f
), menu
);
2605 *error
= "Can't add selection to menu";
2608 i
+= MENU_ITEMS_ITEM_LENGTH
;
2612 /* All set and ready to fly. */
2613 XMenuRecompute (FRAME_X_DISPLAY (f
), menu
);
2614 dispwidth
= DisplayWidth (FRAME_X_DISPLAY (f
),
2615 XScreenNumberOfScreen (FRAME_X_SCREEN (f
)));
2616 dispheight
= DisplayHeight (FRAME_X_DISPLAY (f
),
2617 XScreenNumberOfScreen (FRAME_X_SCREEN (f
)));
2618 x
= min (x
, dispwidth
);
2619 y
= min (y
, dispheight
);
2622 XMenuLocate (FRAME_X_DISPLAY (f
), menu
, 0, 0, x
, y
,
2623 &ulx
, &uly
, &width
, &height
);
2624 if (ulx
+width
> dispwidth
)
2626 x
-= (ulx
+ width
) - dispwidth
;
2627 ulx
= dispwidth
- width
;
2629 if (uly
+height
> dispheight
)
2631 y
-= (uly
+ height
) - dispheight
;
2632 uly
= dispheight
- height
;
2634 if (ulx
< 0) x
-= ulx
;
2635 if (uly
< 0) y
-= uly
;
2637 XMenuSetAEQ (menu
, TRUE
);
2638 XMenuSetFreeze (menu
, TRUE
);
2641 status
= XMenuActivate (FRAME_X_DISPLAY (f
), menu
, &pane
, &selidx
,
2642 x
, y
, ButtonReleaseMask
, &datap
);
2645 #ifdef HAVE_X_WINDOWS
2646 /* Assume the mouse has moved out of the X window.
2647 If it has actually moved in, we will get an EnterNotify. */
2648 x_mouse_leave (FRAME_X_DISPLAY_INFO (f
));
2655 fprintf (stderr
, "pane= %d line = %d\n", panes
, selidx
);
2658 /* Find the item number SELIDX in pane number PANE. */
2660 while (i
< menu_items_used
)
2662 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2666 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2668 i
+= MENU_ITEMS_PANE_LENGTH
;
2677 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
2680 entry
= Fcons (entry
, Qnil
);
2681 if (!NILP (pane_prefix
))
2682 entry
= Fcons (pane_prefix
, entry
);
2688 i
+= MENU_ITEMS_ITEM_LENGTH
;
2694 *error
= "Can't activate menu";
2700 XMenuDestroy (FRAME_X_DISPLAY (f
), menu
);
2702 #ifdef HAVE_X_WINDOWS
2703 /* State that no mouse buttons are now held.
2704 (The oldXMenu code doesn't track this info for us.)
2705 That is not necessarily true, but the fiction leads to reasonable
2706 results, and it is a pain to ask which are actually held now. */
2707 FRAME_X_DISPLAY_INFO (f
)->grabbed
= 0;
2713 #endif /* not USE_X_TOOLKIT */
2715 #endif /* HAVE_MENUS */
2719 staticpro (&menu_items
);
2722 Qmenu_alias
= intern ("menu-alias");
2723 staticpro (&Qmenu_alias
);
2725 Qdebug_on_next_call
= intern ("debug-on-next-call");
2726 staticpro (&Qdebug_on_next_call
);
2728 DEFVAR_LISP ("menu-updating-frame", &Vmenu_updating_frame
,
2729 "Frame for which we are updating a menu.\n\
2730 The enable predicate for a menu command should check this variable.");
2731 Vmenu_updating_frame
= Qnil
;
2733 #ifdef USE_X_TOOLKIT
2734 widget_id_tick
= (1<<16);
2735 next_menubar_widget_id
= 1;
2738 defsubr (&Sx_popup_menu
);
2740 defsubr (&Sx_popup_dialog
);