1 /* X Communication module for terminals which understand the X protocol.
2 Copyright (C) 1986, 1988, 1993, 1994, 1996, 1999, 2000, 2001, 2003, 2004
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)
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. */
36 /* On 4.3 this loses if it comes after xterm.h. */
42 #include "termhooks.h"
47 #include "blockinput.h"
51 #include "sysselect.h"
58 /* This may include sys/types.h, and that somehow loses
59 if this is not done before the other system files. */
63 /* Load sys/types.h if not already loaded.
64 In some systems loading it twice is suicidal. */
66 #include <sys/types.h>
69 #include "dispextern.h"
72 /* Defining HAVE_MULTILINGUAL_MENU would mean that the toolkit menu
73 code accepts the Emacs internal encoding. */
74 #undef HAVE_MULTILINGUAL_MENU
78 #include <X11/IntrinsicP.h>
79 #include <X11/CoreP.h>
80 #include <X11/StringDefs.h>
81 #include <X11/Shell.h>
83 #include <X11/Xaw/Paned.h>
84 #endif /* USE_LUCID */
85 #include "../lwlib/lwlib.h"
86 #else /* not USE_X_TOOLKIT */
88 #include "../oldXMenu/XMenu.h"
90 #endif /* not USE_X_TOOLKIT */
91 #endif /* HAVE_X_WINDOWS */
98 Lisp_Object Vmenu_updating_frame
;
100 Lisp_Object Qdebug_on_next_call
;
102 extern Lisp_Object Qmenu_bar
;
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
;
114 extern void set_frame_menubar
P_ ((FRAME_PTR
, int, int));
115 extern XtAppContext Xt_app_con
;
117 static Lisp_Object xdialog_show
P_ ((FRAME_PTR
, int, Lisp_Object
, char **));
118 static void popup_get_selection
P_ ((XEvent
*, struct x_display_info
*,
121 /* Define HAVE_BOXES if menus can handle radio and toggle buttons. */
124 #endif /* USE_X_TOOLKIT */
129 extern void set_frame_menubar
P_ ((FRAME_PTR
, int, int));
130 static Lisp_Object xdialog_show
P_ ((FRAME_PTR
, int, Lisp_Object
, char **));
133 /* This is how to deal with multibyte text if HAVE_MULTILINGUAL_MENU
134 isn't defined. The use of HAVE_MULTILINGUAL_MENU could probably be
135 confined to an extended version of this with sections of code below
136 using it unconditionally. */
138 /* gtk just uses utf-8. */
139 # define ENCODE_MENU_STRING(str) ENCODE_UTF_8 (str)
141 /* I'm not convinced ENCODE_SYSTEM is defined correctly, or maybe
142 something else should be used here. Except under MS-Windows it
143 just converts to unibyte, but encoding with `locale-coding-system'
144 seems better -- X may actually display the result correctly, and
145 it's not necessarily equivalent to the unibyte text. -- fx */
146 # define ENCODE_MENU_STRING(str) ENCODE_SYSTEM (str)
149 static void push_menu_item
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
,
150 Lisp_Object
, Lisp_Object
, Lisp_Object
,
151 Lisp_Object
, Lisp_Object
));
152 static int update_frame_menubar
P_ ((struct frame
*));
153 static Lisp_Object xmenu_show
P_ ((struct frame
*, int, int, int, int,
154 Lisp_Object
, char **));
155 static void keymap_panes
P_ ((Lisp_Object
*, int, int));
156 static void single_keymap_panes
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
,
158 static void list_of_panes
P_ ((Lisp_Object
));
159 static void list_of_items
P_ ((Lisp_Object
));
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
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
;
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
)
243 Lisp_Object tail
, frame
;
246 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
249 if (!GC_FRAMEP (frame
))
252 if (!FRAME_WINDOW_P (f
))
254 if (f
->output_data
.x
->id
== id
)
262 /* Initialize the menu_items structure if we haven't already done so.
263 Also mark it as currently empty. */
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
;
278 menu_items_n_panes
= 0;
279 menu_items_submenu_depth
= 0;
282 /* Call at the end of generating the data in menu_items. */
290 unuse_menu_items (dummy
)
293 return menu_items_inuse
= Qnil
;
296 /* Call when finished using the data for the current menu
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)
307 menu_items_allocated
= 0;
309 xassert (NILP (menu_items_inuse
));
312 /* Make the menu_items vector twice as large. */
318 int old_size
= menu_items_allocated
;
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. */
330 push_submenu_start ()
332 if (menu_items_used
+ 1 > menu_items_allocated
)
335 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qnil
;
336 menu_items_submenu_depth
++;
344 if (menu_items_used
+ 1 > menu_items_allocated
)
347 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qlambda
;
348 menu_items_submenu_depth
--;
351 /* Indicate boundary between left and right. */
354 push_left_right_boundary ()
356 if (menu_items_used
+ 1 > menu_items_allocated
)
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. */
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
)
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'. */
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
)
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. */
410 keymap_panes (keymaps
, nmaps
, notreal
)
411 Lisp_Object
*keymaps
;
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. */
432 Lisp_Object pending_maps
;
433 int maxdepth
, notreal
;
437 static void single_menu_item
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
,
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. */
450 single_keymap_panes (keymap
, pane_name
, prefix
, notreal
, maxdepth
)
452 Lisp_Object pane_name
;
460 skp
.pending_maps
= Qnil
;
461 skp
.maxdepth
= maxdepth
;
462 skp
.notreal
= notreal
;
468 push_menu_pane (pane_name
, prefix
);
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
;
478 GCPRO1 (skp
.pending_maps
);
479 map_keymap (keymap
, single_menu_item
, Qnil
, &skp
, 1);
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
);
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
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
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
510 single_menu_item (key
, item
, dummy
, skp_v
)
511 Lisp_Object key
, item
, dummy
;
514 Lisp_Object map
, item_string
, enabled
;
515 struct gcpro gcpro1
, gcpro2
;
517 struct skp
*skp
= skp_v
;
519 /* Parse the menu item and leave the result in item_properties. */
521 res
= parse_menu_item (item
, skp
->notreal
, 0);
524 return; /* Not a menu item. */
526 map
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_MAP
];
530 /* We don't want to make a menu, just traverse the keymaps to
531 precompute equivalent key bindings. */
533 single_keymap_panes (map
, Qnil
, key
, 1, skp
->maxdepth
- 1);
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) == '@')
543 /* An enabled separate pane. Remember this to handle it later. */
544 skp
->pending_maps
= Fcons (Fcons (map
, Fcons (item_string
, key
)),
550 /* Simulate radio buttons and toggle boxes by putting a prefix in
553 Lisp_Object prefix
= Qnil
;
554 Lisp_Object type
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_TYPE
];
558 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_SELECTED
];
561 /* The first button. Line up previous items in this menu. */
563 int index
= skp
->notbuttons
; /* Index for first item this menu. */
566 while (index
< menu_items_used
)
569 = XVECTOR (menu_items
)->contents
[index
+ MENU_ITEMS_ITEM_NAME
];
573 submenu
++; /* Skip sub menu. */
575 else if (EQ (tem
, Qlambda
))
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. */
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
;
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 (" ");
608 item_string
= concat2 (prefix
, item_string
);
610 #endif /* not HAVE_BOXES */
612 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
614 /* Indicate visually that this is a submenu. */
615 item_string
= concat2 (item_string
, build_string (" >"));
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);
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. */
648 for (tail
= menu
; !NILP (tail
); tail
= Fcdr (tail
))
650 Lisp_Object elt
, pane_name
, pane_data
;
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. */
669 Lisp_Object tail
, item
, item1
;
671 for (tail
= pane
; !NILP (tail
); tail
= Fcdr (tail
))
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 ();
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. */
699 mouse_position_for_popup (f
, x
, y
)
704 Window root
, dummy_window
;
709 XQueryPointer (FRAME_X_DISPLAY (f
),
710 DefaultRootWindow (FRAME_X_DISPLAY (f
)),
712 /* The root window which contains the pointer. */
715 /* Window pointer is on, not used */
718 /* The position on that root window. */
721 /* x/y in dummy_window coordinates, not used. */
724 /* Modifier keys and pointer buttons, about which
726 (unsigned int *) &dummy
);
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 top left of the menu as a whole.
745 If POSITION is t, it means to use the current mouse position.
747 MENU is a specifier for a menu. For the simplest case, MENU is a keymap.
748 The menu items come from key bindings that have a menu string as well as
749 a definition; actually, the "definition" in such a key binding looks like
750 \(STRING . REAL-DEFINITION). To give the menu a title, put a string into
751 the keymap as a top-level element.
753 If REAL-DEFINITION is nil, that puts a nonselectable string in the menu.
754 Otherwise, REAL-DEFINITION should be a valid key binding definition.
756 You can also use a list of keymaps as MENU.
757 Then each keymap makes a separate pane.
758 When MENU is a keymap or a list of keymaps, the return value
761 Alternatively, you can specify a menu of multiple panes
762 with a list of the form (TITLE PANE1 PANE2...),
763 where each pane is a list of form (TITLE ITEM1 ITEM2...).
764 Each ITEM is normally a cons cell (STRING . VALUE);
765 but a string can appear as an item--that makes a nonselectable line
767 With this form of menu, the return value is VALUE from the chosen item.
769 If POSITION is nil, don't display the menu at all, just precalculate the
770 cached information about equivalent key sequences. */)
772 Lisp_Object position
, menu
;
774 Lisp_Object keymap
, tem
;
775 int xpos
= 0, ypos
= 0;
778 Lisp_Object selection
;
780 Lisp_Object x
, y
, window
;
783 int specpdl_count
= SPECPDL_INDEX ();
787 if (! NILP (position
))
789 int get_current_pos_p
= 0;
792 /* Decode the first argument: find the window and the coordinates. */
793 if (EQ (position
, Qt
)
794 || (CONSP (position
) && (EQ (XCAR (position
), Qmenu_bar
)
795 || EQ (XCAR (position
), Qtool_bar
))))
797 get_current_pos_p
= 1;
801 tem
= Fcar (position
);
804 window
= Fcar (Fcdr (position
));
806 y
= Fcar (Fcdr (tem
));
811 tem
= Fcar (Fcdr (position
)); /* EVENT_START (position) */
812 window
= Fcar (tem
); /* POSN_WINDOW (tem) */
813 tem
= Fcar (Fcdr (Fcdr (tem
))); /* POSN_WINDOW_POSN (tem) */
818 /* If a click happens in an external tool bar or a detached
819 tool bar, x and y is NIL. In that case, use the current
820 mouse position. This happens for the help button in the
821 tool bar. Ideally popup-menu should pass NIL to
822 this function, but it doesn't. */
823 if (NILP (x
) && NILP (y
))
824 get_current_pos_p
= 1;
827 if (get_current_pos_p
)
829 /* Use the mouse's current position. */
830 FRAME_PTR new_f
= SELECTED_FRAME ();
831 #ifdef HAVE_X_WINDOWS
832 /* Can't use mouse_position_hook for X since it returns
833 coordinates relative to the window the mouse is in,
834 we need coordinates relative to the edit widget always. */
839 mouse_position_for_popup (new_f
, &cur_x
, &cur_y
);
840 /* cur_x/y may be negative, so use make_number. */
841 x
= make_number (cur_x
);
842 y
= make_number (cur_y
);
845 #else /* not HAVE_X_WINDOWS */
846 Lisp_Object bar_window
;
847 enum scroll_bar_part part
;
850 if (mouse_position_hook
)
851 (*mouse_position_hook
) (&new_f
, 1, &bar_window
,
852 &part
, &x
, &y
, &time
);
853 #endif /* not HAVE_X_WINDOWS */
856 XSETFRAME (window
, new_f
);
859 window
= selected_window
;
868 /* Decode where to put the menu. */
876 else if (WINDOWP (window
))
878 CHECK_LIVE_WINDOW (window
);
879 f
= XFRAME (WINDOW_FRAME (XWINDOW (window
)));
881 xpos
= WINDOW_LEFT_EDGE_X (XWINDOW (window
));
882 ypos
= WINDOW_TOP_EDGE_Y (XWINDOW (window
));
885 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
886 but I don't want to make one now. */
887 CHECK_WINDOW (window
);
892 Vmenu_updating_frame
= Qnil
;
893 #endif /* HAVE_MENUS */
895 record_unwind_protect (unuse_menu_items
, Qnil
);
899 /* Decode the menu items from what was specified. */
901 keymap
= get_keymap (menu
, 0, 0);
904 /* We were given a keymap. Extract menu info from the keymap. */
907 /* Extract the detailed info to make one pane. */
908 keymap_panes (&menu
, 1, NILP (position
));
910 /* Search for a string appearing directly as an element of the keymap.
911 That string is the title of the menu. */
912 prompt
= Fkeymap_prompt (keymap
);
913 if (NILP (title
) && !NILP (prompt
))
916 /* Make that be the pane title of the first pane. */
917 if (!NILP (prompt
) && menu_items_n_panes
>= 0)
918 XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_NAME
] = prompt
;
922 else if (CONSP (menu
) && KEYMAPP (XCAR (menu
)))
924 /* We were given a list of keymaps. */
925 int nmaps
= XFASTINT (Flength (menu
));
927 = (Lisp_Object
*) alloca (nmaps
* sizeof (Lisp_Object
));
932 /* The first keymap that has a prompt string
933 supplies the menu title. */
934 for (tem
= menu
, i
= 0; CONSP (tem
); tem
= Fcdr (tem
))
938 maps
[i
++] = keymap
= get_keymap (Fcar (tem
), 1, 0);
940 prompt
= Fkeymap_prompt (keymap
);
941 if (NILP (title
) && !NILP (prompt
))
945 /* Extract the detailed info to make one pane. */
946 keymap_panes (maps
, nmaps
, NILP (position
));
948 /* Make the title be the pane title of the first pane. */
949 if (!NILP (title
) && menu_items_n_panes
>= 0)
950 XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_NAME
] = title
;
956 /* We were given an old-fashioned menu. */
958 CHECK_STRING (title
);
960 list_of_panes (Fcdr (menu
));
965 unbind_to (specpdl_count
, Qnil
);
969 discard_menu_items ();
975 /* Display them in a menu. */
978 selection
= xmenu_show (f
, xpos
, ypos
, for_click
,
979 keymaps
, title
, &error_name
);
982 discard_menu_items ();
985 #endif /* HAVE_MENUS */
987 if (error_name
) error (error_name
);
993 DEFUN ("x-popup-dialog", Fx_popup_dialog
, Sx_popup_dialog
, 2, 2, 0,
994 doc
: /* Pop up a dialog box and return user's selection.
995 POSITION specifies which frame to use.
996 This is normally a mouse button event or a window or frame.
997 If POSITION is t, it means to use the frame the mouse is on.
998 The dialog box appears in the middle of the specified frame.
1000 CONTENTS specifies the alternatives to display in the dialog box.
1001 It is a list of the form (TITLE ITEM1 ITEM2...).
1002 Each ITEM is a cons cell (STRING . VALUE).
1003 The return value is VALUE from the chosen item.
1005 An ITEM may also be just a string--that makes a nonselectable item.
1006 An ITEM may also be nil--that means to put all preceding items
1007 on the left of the dialog box and all following items on the right.
1008 \(By default, approximately half appear on each side.) */)
1009 (position
, contents
)
1010 Lisp_Object position
, contents
;
1017 /* Decode the first argument: find the window or frame to use. */
1018 if (EQ (position
, Qt
)
1019 || (CONSP (position
) && (EQ (XCAR (position
), Qmenu_bar
)
1020 || EQ (XCAR (position
), Qtool_bar
))))
1022 #if 0 /* Using the frame the mouse is on may not be right. */
1023 /* Use the mouse's current position. */
1024 FRAME_PTR new_f
= SELECTED_FRAME ();
1025 Lisp_Object bar_window
;
1026 enum scroll_bar_part part
;
1030 (*mouse_position_hook
) (&new_f
, 1, &bar_window
, &part
, &x
, &y
, &time
);
1033 XSETFRAME (window
, new_f
);
1035 window
= selected_window
;
1037 window
= selected_window
;
1039 else if (CONSP (position
))
1042 tem
= Fcar (position
);
1044 window
= Fcar (Fcdr (position
));
1047 tem
= Fcar (Fcdr (position
)); /* EVENT_START (position) */
1048 window
= Fcar (tem
); /* POSN_WINDOW (tem) */
1051 else if (WINDOWP (position
) || FRAMEP (position
))
1056 /* Decode where to put the menu. */
1058 if (FRAMEP (window
))
1059 f
= XFRAME (window
);
1060 else if (WINDOWP (window
))
1062 CHECK_LIVE_WINDOW (window
);
1063 f
= XFRAME (WINDOW_FRAME (XWINDOW (window
)));
1066 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
1067 but I don't want to make one now. */
1068 CHECK_WINDOW (window
);
1070 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
1071 /* Display a menu with these alternatives
1072 in the middle of frame F. */
1074 Lisp_Object x
, y
, frame
, newpos
;
1075 XSETFRAME (frame
, f
);
1076 XSETINT (x
, x_pixel_width (f
) / 2);
1077 XSETINT (y
, x_pixel_height (f
) / 2);
1078 newpos
= Fcons (Fcons (x
, Fcons (y
, Qnil
)), Fcons (frame
, Qnil
));
1080 return Fx_popup_menu (newpos
,
1081 Fcons (Fcar (contents
), Fcons (contents
, Qnil
)));
1087 Lisp_Object selection
;
1088 int specpdl_count
= SPECPDL_INDEX ();
1090 /* Decode the dialog items from what was specified. */
1091 title
= Fcar (contents
);
1092 CHECK_STRING (title
);
1093 record_unwind_protect (unuse_menu_items
, Qnil
);
1095 if (NILP (Fcar (Fcdr (contents
))))
1096 /* No buttons specified, add an "Ok" button so users can pop down
1097 the dialog. Also, the lesstif/motif version crashes if there are
1099 contents
= Fcons (title
, Fcons (Fcons (build_string ("Ok"), Qt
), Qnil
));
1101 list_of_panes (Fcons (contents
, Qnil
));
1103 /* Display them in a dialog box. */
1105 selection
= xdialog_show (f
, 0, title
, &error_name
);
1108 unbind_to (specpdl_count
, Qnil
);
1109 discard_menu_items ();
1111 if (error_name
) error (error_name
);
1120 /* Set menu_items_inuse so no other popup menu or dialog is created. */
1123 x_menu_set_in_use (in_use
)
1126 menu_items_inuse
= in_use
? Qt
: Qnil
;
1127 popup_activated_flag
= in_use
;
1130 /* Wait for an X event to arrive or for a timer to expire. */
1133 x_menu_wait_for_event (void *data
)
1135 extern EMACS_TIME timer_check
P_ ((int));
1137 /* Another way to do this is to register a timer callback, that can be
1138 done in GTK and Xt. But we have to do it like this when using only X
1139 anyway, and with callbacks we would have three variants for timer handling
1140 instead of the small ifdefs below. */
1143 #ifdef USE_X_TOOLKIT
1144 ! XtAppPending (Xt_app_con
)
1145 #elif defined USE_GTK
1146 ! gtk_events_pending ()
1148 ! XPending ((Display
*) data
)
1152 EMACS_TIME next_time
= timer_check (1);
1153 long secs
= EMACS_SECS (next_time
);
1154 long usecs
= EMACS_USECS (next_time
);
1155 SELECT_TYPE read_fds
;
1156 struct x_display_info
*dpyinfo
;
1159 FD_ZERO (&read_fds
);
1160 for (dpyinfo
= x_display_list
; dpyinfo
; dpyinfo
= dpyinfo
->next
)
1162 int fd
= ConnectionNumber (dpyinfo
->display
);
1163 FD_SET (fd
, &read_fds
);
1167 if (secs
< 0 || (secs
== 0 && usecs
== 0))
1169 /* Sometimes timer_check returns -1 (no timers) even if there are
1170 timers. So do a timeout anyway. */
1171 EMACS_SET_SECS (next_time
, 1);
1172 EMACS_SET_USECS (next_time
, 0);
1175 select (n
+ 1, &read_fds
, (SELECT_TYPE
*)0, (SELECT_TYPE
*)0, &next_time
);
1178 #endif /* ! MSDOS */
1181 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
1183 #ifdef USE_X_TOOLKIT
1185 /* Loop in Xt until the menu pulldown or dialog popup has been
1186 popped down (deactivated). This is used for x-popup-menu
1187 and x-popup-dialog; it is not used for the menu bar.
1189 NOTE: All calls to popup_get_selection should be protected
1190 with BLOCK_INPUT, UNBLOCK_INPUT wrappers. */
1193 popup_get_selection (initial_event
, dpyinfo
, id
, do_timers
)
1194 XEvent
*initial_event
;
1195 struct x_display_info
*dpyinfo
;
1201 while (popup_activated_flag
)
1205 event
= *initial_event
;
1210 if (do_timers
) x_menu_wait_for_event (0);
1211 XtAppNextEvent (Xt_app_con
, &event
);
1214 /* Make sure we don't consider buttons grabbed after menu goes.
1215 And make sure to deactivate for any ButtonRelease,
1216 even if XtDispatchEvent doesn't do that. */
1217 if (event
.type
== ButtonRelease
1218 && dpyinfo
->display
== event
.xbutton
.display
)
1220 dpyinfo
->grabbed
&= ~(1 << event
.xbutton
.button
);
1221 #ifdef USE_MOTIF /* Pretending that the event came from a
1222 Btn1Down seems the only way to convince Motif to
1223 activate its callbacks; setting the XmNmenuPost
1224 isn't working. --marcus@sysc.pdx.edu. */
1225 event
.xbutton
.button
= 1;
1226 /* Motif only pops down menus when no Ctrl, Alt or Mod
1227 key is pressed and the button is released. So reset key state
1228 so Motif thinks this is the case. */
1229 event
.xbutton
.state
= 0;
1232 /* Pop down on C-g and Escape. */
1233 else if (event
.type
== KeyPress
1234 && dpyinfo
->display
== event
.xbutton
.display
)
1236 KeySym keysym
= XLookupKeysym (&event
.xkey
, 0);
1238 if ((keysym
== XK_g
&& (event
.xkey
.state
& ControlMask
) != 0)
1239 || keysym
== XK_Escape
) /* Any escape, ignore modifiers. */
1240 popup_activated_flag
= 0;
1243 x_dispatch_event (&event
, event
.xany
.display
);
1247 #endif /* USE_X_TOOLKIT */
1250 /* Loop util popup_activated_flag is set to zero in a callback.
1251 Used for popup menus and dialogs. */
1254 popup_widget_loop (do_timers
, widget
)
1258 ++popup_activated_flag
;
1260 /* Process events in the Gtk event loop until done. */
1261 while (popup_activated_flag
)
1263 if (do_timers
) x_menu_wait_for_event (0);
1264 gtk_main_iteration ();
1269 /* Activate the menu bar of frame F.
1270 This is called from keyboard.c when it gets the
1271 MENU_BAR_ACTIVATE_EVENT out of the Emacs event queue.
1273 To activate the menu bar, we use the X button-press event
1274 that was saved in saved_menu_event.
1275 That makes the toolkit do its thing.
1277 But first we recompute the menu bar contents (the whole tree).
1279 The reason for saving the button event until here, instead of
1280 passing it to the toolkit right away, is that we can safely
1281 execute Lisp code. */
1284 x_activate_menubar (f
)
1287 if (!f
->output_data
.x
->saved_menu_event
->type
)
1291 if (! xg_win_to_widget (FRAME_X_DISPLAY (f
),
1292 f
->output_data
.x
->saved_menu_event
->xany
.window
))
1296 set_frame_menubar (f
, 0, 1);
1299 XPutBackEvent (f
->output_data
.x
->display_info
->display
,
1300 f
->output_data
.x
->saved_menu_event
);
1301 popup_activated_flag
= 1;
1303 XtDispatchEvent (f
->output_data
.x
->saved_menu_event
);
1307 if (f
->output_data
.x
->saved_menu_event
->type
== ButtonRelease
)
1308 pending_menu_activation
= 1;
1311 /* Ignore this if we get it a second time. */
1312 f
->output_data
.x
->saved_menu_event
->type
= 0;
1315 /* Detect if a dialog or menu has been posted. */
1320 return popup_activated_flag
;
1323 /* This callback is invoked when the user selects a menubar cascade
1324 pushbutton, but before the pulldown menu is posted. */
1328 popup_activate_callback (widget
, id
, client_data
)
1331 XtPointer client_data
;
1333 popup_activated_flag
= 1;
1337 /* This callback is invoked when a dialog or menu is finished being
1338 used and has been unposted. */
1342 popup_deactivate_callback (widget
, client_data
)
1344 gpointer client_data
;
1346 popup_activated_flag
= 0;
1350 popup_deactivate_callback (widget
, id
, client_data
)
1353 XtPointer client_data
;
1355 popup_activated_flag
= 0;
1360 /* Function that finds the frame for WIDGET and shows the HELP text
1362 F is the frame if known, or NULL if not known. */
1364 show_help_event (f
, widget
, help
)
1366 xt_or_gtk_widget widget
;
1373 XSETFRAME (frame
, f
);
1374 kbd_buffer_store_help_event (frame
, help
);
1378 #if 0 /* This code doesn't do anything useful. ++kfs */
1379 /* WIDGET is the popup menu. It's parent is the frame's
1380 widget. See which frame that is. */
1381 xt_or_gtk_widget frame_widget
= XtParent (widget
);
1384 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
1386 frame
= XCAR (tail
);
1387 if (GC_FRAMEP (frame
)
1388 && (f
= XFRAME (frame
),
1389 FRAME_X_P (f
) && f
->output_data
.x
->widget
== frame_widget
))
1393 show_help_echo (help
, Qnil
, Qnil
, Qnil
, 1);
1397 /* Callback called when menu items are highlighted/unhighlighted
1398 while moving the mouse over them. WIDGET is the menu bar or menu
1399 popup widget. ID is its LWLIB_ID. CALL_DATA contains a pointer to
1400 the data structure for the menu item, or null in case of
1405 menu_highlight_callback (widget
, call_data
)
1409 xg_menu_item_cb_data
*cb_data
;
1412 cb_data
= (xg_menu_item_cb_data
*) g_object_get_data (G_OBJECT (widget
),
1414 if (! cb_data
) return;
1416 help
= call_data
? cb_data
->help
: Qnil
;
1418 /* If popup_activated_flag is greater than 1 we are in a popup menu.
1419 Don't show help for them, they won't appear before the
1420 popup is popped down. */
1421 if (popup_activated_flag
<= 1)
1422 show_help_event (cb_data
->cl_data
->f
, widget
, help
);
1426 menu_highlight_callback (widget
, id
, call_data
)
1434 widget_value
*wv
= (widget_value
*) call_data
;
1436 help
= wv
? wv
->help
: Qnil
;
1438 /* Determine the frame for the help event. */
1439 f
= menubar_id_to_frame (id
);
1441 show_help_event (f
, widget
, help
);
1445 /* Find the menu selection and store it in the keyboard buffer.
1446 F is the frame the menu is on.
1447 MENU_BAR_ITEMS_USED is the length of VECTOR.
1448 VECTOR is an array of menu events for the whole menu.
1451 find_and_call_menu_selection (f
, menu_bar_items_used
, vector
, client_data
)
1453 int menu_bar_items_used
;
1457 Lisp_Object prefix
, entry
;
1458 Lisp_Object
*subprefix_stack
;
1459 int submenu_depth
= 0;
1463 subprefix_stack
= (Lisp_Object
*) alloca (menu_bar_items_used
* sizeof (Lisp_Object
));
1467 while (i
< menu_bar_items_used
)
1469 if (EQ (XVECTOR (vector
)->contents
[i
], Qnil
))
1471 subprefix_stack
[submenu_depth
++] = prefix
;
1475 else if (EQ (XVECTOR (vector
)->contents
[i
], Qlambda
))
1477 prefix
= subprefix_stack
[--submenu_depth
];
1480 else if (EQ (XVECTOR (vector
)->contents
[i
], Qt
))
1482 prefix
= XVECTOR (vector
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
1483 i
+= MENU_ITEMS_PANE_LENGTH
;
1487 entry
= XVECTOR (vector
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
1488 /* The EMACS_INT cast avoids a warning. There's no problem
1489 as long as pointers have enough bits to hold small integers. */
1490 if ((int) (EMACS_INT
) client_data
== i
)
1493 struct input_event buf
;
1497 XSETFRAME (frame
, f
);
1498 buf
.kind
= MENU_BAR_EVENT
;
1499 buf
.frame_or_window
= frame
;
1501 kbd_buffer_store_event (&buf
);
1503 for (j
= 0; j
< submenu_depth
; j
++)
1504 if (!NILP (subprefix_stack
[j
]))
1506 buf
.kind
= MENU_BAR_EVENT
;
1507 buf
.frame_or_window
= frame
;
1508 buf
.arg
= subprefix_stack
[j
];
1509 kbd_buffer_store_event (&buf
);
1514 buf
.kind
= MENU_BAR_EVENT
;
1515 buf
.frame_or_window
= frame
;
1517 kbd_buffer_store_event (&buf
);
1520 buf
.kind
= MENU_BAR_EVENT
;
1521 buf
.frame_or_window
= frame
;
1523 kbd_buffer_store_event (&buf
);
1527 i
+= MENU_ITEMS_ITEM_LENGTH
;
1534 /* Gtk calls callbacks just because we tell it what item should be
1535 selected in a radio group. If this variable is set to a non-zero
1536 value, we are creating menus and don't want callbacks right now.
1538 static int xg_crazy_callback_abort
;
1540 /* This callback is called from the menu bar pulldown menu
1541 when the user makes a selection.
1542 Figure out what the user chose
1543 and put the appropriate events into the keyboard buffer. */
1545 menubar_selection_callback (widget
, client_data
)
1547 gpointer client_data
;
1549 xg_menu_item_cb_data
*cb_data
= (xg_menu_item_cb_data
*) client_data
;
1551 if (xg_crazy_callback_abort
)
1554 if (! cb_data
|| ! cb_data
->cl_data
|| ! cb_data
->cl_data
->f
)
1557 find_and_call_menu_selection (cb_data
->cl_data
->f
,
1558 cb_data
->cl_data
->menu_bar_items_used
,
1559 cb_data
->cl_data
->menu_bar_vector
,
1560 cb_data
->call_data
);
1563 #else /* not USE_GTK */
1565 /* This callback is called from the menu bar pulldown menu
1566 when the user makes a selection.
1567 Figure out what the user chose
1568 and put the appropriate events into the keyboard buffer. */
1570 menubar_selection_callback (widget
, id
, client_data
)
1573 XtPointer client_data
;
1577 f
= menubar_id_to_frame (id
);
1580 find_and_call_menu_selection (f
, f
->menu_bar_items_used
,
1581 f
->menu_bar_vector
, client_data
);
1583 #endif /* not USE_GTK */
1585 /* Allocate a widget_value, blocking input. */
1588 xmalloc_widget_value ()
1590 widget_value
*value
;
1593 value
= malloc_widget_value ();
1599 /* This recursively calls free_widget_value on the tree of widgets.
1600 It must free all data that was malloc'ed for these widget_values.
1601 In Emacs, many slots are pointers into the data of Lisp_Strings, and
1602 must be left alone. */
1605 free_menubar_widget_value_tree (wv
)
1610 wv
->name
= wv
->value
= wv
->key
= (char *) 0xDEADBEEF;
1612 if (wv
->contents
&& (wv
->contents
!= (widget_value
*)1))
1614 free_menubar_widget_value_tree (wv
->contents
);
1615 wv
->contents
= (widget_value
*) 0xDEADBEEF;
1619 free_menubar_widget_value_tree (wv
->next
);
1620 wv
->next
= (widget_value
*) 0xDEADBEEF;
1623 free_widget_value (wv
);
1627 /* Set up data in menu_items for a menu bar item
1628 whose event type is ITEM_KEY (with string ITEM_NAME)
1629 and whose contents come from the list of keymaps MAPS. */
1632 parse_single_submenu (item_key
, item_name
, maps
)
1633 Lisp_Object item_key
, item_name
, maps
;
1637 Lisp_Object
*mapvec
;
1639 int top_level_items
= 0;
1641 length
= Flength (maps
);
1642 len
= XINT (length
);
1644 /* Convert the list MAPS into a vector MAPVEC. */
1645 mapvec
= (Lisp_Object
*) alloca (len
* sizeof (Lisp_Object
));
1646 for (i
= 0; i
< len
; i
++)
1648 mapvec
[i
] = Fcar (maps
);
1652 /* Loop over the given keymaps, making a pane for each map.
1653 But don't make a pane that is empty--ignore that map instead. */
1654 for (i
= 0; i
< len
; i
++)
1656 if (!KEYMAPP (mapvec
[i
]))
1658 /* Here we have a command at top level in the menu bar
1659 as opposed to a submenu. */
1660 top_level_items
= 1;
1661 push_menu_pane (Qnil
, Qnil
);
1662 push_menu_item (item_name
, Qt
, item_key
, mapvec
[i
],
1663 Qnil
, Qnil
, Qnil
, Qnil
);
1668 prompt
= Fkeymap_prompt (mapvec
[i
]);
1669 single_keymap_panes (mapvec
[i
],
1670 !NILP (prompt
) ? prompt
: item_name
,
1675 return top_level_items
;
1678 /* Create a tree of widget_value objects
1679 representing the panes and items
1680 in menu_items starting at index START, up to index END. */
1682 static widget_value
*
1683 digest_single_submenu (start
, end
, top_level_items
)
1684 int start
, end
, top_level_items
;
1686 widget_value
*wv
, *prev_wv
, *save_wv
, *first_wv
;
1688 int submenu_depth
= 0;
1689 widget_value
**submenu_stack
;
1692 = (widget_value
**) alloca (menu_items_used
* sizeof (widget_value
*));
1693 wv
= xmalloc_widget_value ();
1697 wv
->button_type
= BUTTON_TYPE_NONE
;
1703 /* Loop over all panes and items made by the preceding call
1704 to parse_single_submenu and construct a tree of widget_value objects.
1705 Ignore the panes and items used by previous calls to
1706 digest_single_submenu, even though those are also in menu_items. */
1710 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
1712 submenu_stack
[submenu_depth
++] = save_wv
;
1717 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
1720 save_wv
= submenu_stack
[--submenu_depth
];
1723 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
)
1724 && submenu_depth
!= 0)
1725 i
+= MENU_ITEMS_PANE_LENGTH
;
1726 /* Ignore a nil in the item list.
1727 It's meaningful only for dialog boxes. */
1728 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
1730 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
1732 /* Create a new pane. */
1733 Lisp_Object pane_name
, prefix
;
1736 pane_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_NAME
];
1737 prefix
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
1739 #ifndef HAVE_MULTILINGUAL_MENU
1740 if (STRINGP (pane_name
) && STRING_MULTIBYTE (pane_name
))
1742 pane_name
= ENCODE_SYSTEM (pane_name
);
1743 AREF (menu_items
, i
+ MENU_ITEMS_PANE_NAME
) = pane_name
;
1746 pane_string
= (NILP (pane_name
)
1747 ? "" : (char *) SDATA (pane_name
));
1748 /* If there is just one top-level pane, put all its items directly
1749 under the top-level menu. */
1750 if (menu_items_n_panes
== 1)
1753 /* If the pane has a meaningful name,
1754 make the pane a top-level menu item
1755 with its items as a submenu beneath it. */
1756 if (strcmp (pane_string
, ""))
1758 wv
= xmalloc_widget_value ();
1762 first_wv
->contents
= wv
;
1763 wv
->lname
= pane_name
;
1764 /* Set value to 1 so update_submenu_strings can handle '@' */
1765 wv
->value
= (char *)1;
1767 wv
->button_type
= BUTTON_TYPE_NONE
;
1772 i
+= MENU_ITEMS_PANE_LENGTH
;
1776 /* Create a new item within current pane. */
1777 Lisp_Object item_name
, enable
, descrip
, def
, type
, selected
;
1780 item_name
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
);
1781 enable
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_ENABLE
);
1782 descrip
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
);
1783 def
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_DEFINITION
);
1784 type
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_TYPE
);
1785 selected
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_SELECTED
);
1786 help
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_HELP
);
1788 #ifndef HAVE_MULTILINGUAL_MENU
1789 if (STRING_MULTIBYTE (item_name
))
1791 item_name
= ENCODE_MENU_STRING (item_name
);
1792 AREF (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
) = item_name
;
1795 if (STRINGP (descrip
) && STRING_MULTIBYTE (descrip
))
1797 descrip
= ENCODE_MENU_STRING (descrip
);
1798 AREF (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
) = descrip
;
1800 #endif /* not HAVE_MULTILINGUAL_MENU */
1802 wv
= xmalloc_widget_value ();
1806 save_wv
->contents
= wv
;
1808 wv
->lname
= item_name
;
1809 if (!NILP (descrip
))
1812 /* The EMACS_INT cast avoids a warning. There's no problem
1813 as long as pointers have enough bits to hold small integers. */
1814 wv
->call_data
= (!NILP (def
) ? (void *) (EMACS_INT
) i
: 0);
1815 wv
->enabled
= !NILP (enable
);
1818 wv
->button_type
= BUTTON_TYPE_NONE
;
1819 else if (EQ (type
, QCradio
))
1820 wv
->button_type
= BUTTON_TYPE_RADIO
;
1821 else if (EQ (type
, QCtoggle
))
1822 wv
->button_type
= BUTTON_TYPE_TOGGLE
;
1826 wv
->selected
= !NILP (selected
);
1827 if (! STRINGP (help
))
1834 i
+= MENU_ITEMS_ITEM_LENGTH
;
1838 /* If we have just one "menu item"
1839 that was originally a button, return it by itself. */
1840 if (top_level_items
&& first_wv
->contents
&& first_wv
->contents
->next
== 0)
1842 wv
= first_wv
->contents
;
1843 free_widget_value (first_wv
);
1850 /* Walk through the widget_value tree starting at FIRST_WV and update
1851 the char * pointers from the corresponding lisp values.
1852 We do this after building the whole tree, since GC may happen while the
1853 tree is constructed, and small strings are relocated. So we must wait
1854 until no GC can happen before storing pointers into lisp values. */
1856 update_submenu_strings (first_wv
)
1857 widget_value
*first_wv
;
1861 for (wv
= first_wv
; wv
; wv
= wv
->next
)
1863 if (STRINGP (wv
->lname
))
1865 wv
->name
= SDATA (wv
->lname
);
1867 /* Ignore the @ that means "separate pane".
1868 This is a kludge, but this isn't worth more time. */
1869 if (wv
->value
== (char *)1)
1871 if (wv
->name
[0] == '@')
1877 if (STRINGP (wv
->lkey
))
1878 wv
->key
= SDATA (wv
->lkey
);
1881 update_submenu_strings (wv
->contents
);
1886 /* Recompute all the widgets of frame F, when the menu bar has been
1887 changed. Value is non-zero if widgets were updated. */
1890 update_frame_menubar (f
)
1894 return xg_update_frame_menubar (f
);
1896 struct x_output
*x
= f
->output_data
.x
;
1899 if (!x
->menubar_widget
|| XtIsManaged (x
->menubar_widget
))
1903 /* Save the size of the frame because the pane widget doesn't accept
1904 to resize itself. So force it. */
1905 columns
= FRAME_COLS (f
);
1906 rows
= FRAME_LINES (f
);
1908 /* Do the voodoo which means "I'm changing lots of things, don't try
1909 to refigure sizes until I'm done." */
1910 lw_refigure_widget (x
->column_widget
, False
);
1912 /* The order in which children are managed is the top to bottom
1913 order in which they are displayed in the paned window. First,
1914 remove the text-area widget. */
1915 XtUnmanageChild (x
->edit_widget
);
1917 /* Remove the menubar that is there now, and put up the menubar that
1919 XtManageChild (x
->menubar_widget
);
1920 XtMapWidget (x
->menubar_widget
);
1921 XtVaSetValues (x
->menubar_widget
, XtNmappedWhenManaged
, 1, NULL
);
1923 /* Re-manage the text-area widget, and then thrash the sizes. */
1924 XtManageChild (x
->edit_widget
);
1925 lw_refigure_widget (x
->column_widget
, True
);
1927 /* Force the pane widget to resize itself with the right values. */
1928 EmacsFrameSetCharSize (x
->edit_widget
, columns
, rows
);
1934 /* Set the contents of the menubar widgets of frame F.
1935 The argument FIRST_TIME is currently ignored;
1936 it is set the first time this is called, from initialize_frame_menubar. */
1939 set_frame_menubar (f
, first_time
, deep_p
)
1944 xt_or_gtk_widget menubar_widget
= f
->output_data
.x
->menubar_widget
;
1945 #ifdef USE_X_TOOLKIT
1949 widget_value
*wv
, *first_wv
, *prev_wv
= 0;
1951 int *submenu_start
, *submenu_end
;
1952 int *submenu_top_level_items
, *submenu_n_panes
;
1955 XSETFRAME (Vmenu_updating_frame
, f
);
1957 #ifdef USE_X_TOOLKIT
1958 if (f
->output_data
.x
->id
== 0)
1959 f
->output_data
.x
->id
= next_menubar_widget_id
++;
1960 id
= f
->output_data
.x
->id
;
1963 if (! menubar_widget
)
1965 else if (pending_menu_activation
&& !deep_p
)
1967 /* Make the first call for any given frame always go deep. */
1968 else if (!f
->output_data
.x
->saved_menu_event
&& !deep_p
)
1971 f
->output_data
.x
->saved_menu_event
= (XEvent
*)xmalloc (sizeof (XEvent
));
1972 f
->output_data
.x
->saved_menu_event
->type
= 0;
1976 /* If we have detached menus, we must update deep so detached menus
1977 also gets updated. */
1978 deep_p
= deep_p
|| xg_have_tear_offs ();
1983 /* Make a widget-value tree representing the entire menu trees. */
1985 struct buffer
*prev
= current_buffer
;
1987 int specpdl_count
= SPECPDL_INDEX ();
1988 int previous_menu_items_used
= f
->menu_bar_items_used
;
1989 Lisp_Object
*previous_items
1990 = (Lisp_Object
*) alloca (previous_menu_items_used
1991 * sizeof (Lisp_Object
));
1993 /* If we are making a new widget, its contents are empty,
1994 do always reinitialize them. */
1995 if (! menubar_widget
)
1996 previous_menu_items_used
= 0;
1998 buffer
= XWINDOW (FRAME_SELECTED_WINDOW (f
))->buffer
;
1999 specbind (Qinhibit_quit
, Qt
);
2000 /* Don't let the debugger step into this code
2001 because it is not reentrant. */
2002 specbind (Qdebug_on_next_call
, Qnil
);
2004 record_unwind_protect (Fset_match_data
, Fmatch_data (Qnil
, Qnil
));
2005 record_unwind_protect (unuse_menu_items
, Qnil
);
2006 if (NILP (Voverriding_local_map_menu_flag
))
2008 specbind (Qoverriding_terminal_local_map
, Qnil
);
2009 specbind (Qoverriding_local_map
, Qnil
);
2012 set_buffer_internal_1 (XBUFFER (buffer
));
2014 /* Run the Lucid hook. */
2015 safe_run_hooks (Qactivate_menubar_hook
);
2017 /* If it has changed current-menubar from previous value,
2018 really recompute the menubar from the value. */
2019 if (! NILP (Vlucid_menu_bar_dirty_flag
))
2020 call0 (Qrecompute_lucid_menubar
);
2021 safe_run_hooks (Qmenu_bar_update_hook
);
2022 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
2024 items
= FRAME_MENU_BAR_ITEMS (f
);
2026 /* Save the frame's previous menu bar contents data. */
2027 if (previous_menu_items_used
)
2028 bcopy (XVECTOR (f
->menu_bar_vector
)->contents
, previous_items
,
2029 previous_menu_items_used
* sizeof (Lisp_Object
));
2031 /* Fill in menu_items with the current menu bar contents.
2032 This can evaluate Lisp code. */
2033 menu_items
= f
->menu_bar_vector
;
2034 menu_items_allocated
= VECTORP (menu_items
) ? ASIZE (menu_items
) : 0;
2035 submenu_start
= (int *) alloca (XVECTOR (items
)->size
* sizeof (int *));
2036 submenu_end
= (int *) alloca (XVECTOR (items
)->size
* sizeof (int *));
2037 submenu_n_panes
= (int *) alloca (XVECTOR (items
)->size
* sizeof (int));
2038 submenu_top_level_items
2039 = (int *) alloca (XVECTOR (items
)->size
* sizeof (int *));
2041 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
2043 Lisp_Object key
, string
, maps
;
2047 key
= XVECTOR (items
)->contents
[i
];
2048 string
= XVECTOR (items
)->contents
[i
+ 1];
2049 maps
= XVECTOR (items
)->contents
[i
+ 2];
2053 submenu_start
[i
] = menu_items_used
;
2055 menu_items_n_panes
= 0;
2056 submenu_top_level_items
[i
]
2057 = parse_single_submenu (key
, string
, maps
);
2058 submenu_n_panes
[i
] = menu_items_n_panes
;
2060 submenu_end
[i
] = menu_items_used
;
2063 finish_menu_items ();
2065 /* Convert menu_items into widget_value trees
2066 to display the menu. This cannot evaluate Lisp code. */
2068 wv
= xmalloc_widget_value ();
2069 wv
->name
= "menubar";
2072 wv
->button_type
= BUTTON_TYPE_NONE
;
2076 for (i
= 0; i
< last_i
; i
+= 4)
2078 menu_items_n_panes
= submenu_n_panes
[i
];
2079 wv
= digest_single_submenu (submenu_start
[i
], submenu_end
[i
],
2080 submenu_top_level_items
[i
]);
2084 first_wv
->contents
= wv
;
2085 /* Don't set wv->name here; GC during the loop might relocate it. */
2087 wv
->button_type
= BUTTON_TYPE_NONE
;
2091 set_buffer_internal_1 (prev
);
2092 unbind_to (specpdl_count
, Qnil
);
2094 /* If there has been no change in the Lisp-level contents
2095 of the menu bar, skip redisplaying it. Just exit. */
2097 for (i
= 0; i
< previous_menu_items_used
; i
++)
2098 if (menu_items_used
== i
2099 || (!EQ (previous_items
[i
], XVECTOR (menu_items
)->contents
[i
])))
2101 if (i
== menu_items_used
&& i
== previous_menu_items_used
&& i
!= 0)
2103 free_menubar_widget_value_tree (first_wv
);
2104 discard_menu_items ();
2109 /* Now GC cannot happen during the lifetime of the widget_value,
2110 so it's safe to store data from a Lisp_String. */
2111 wv
= first_wv
->contents
;
2112 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
2115 string
= XVECTOR (items
)->contents
[i
+ 1];
2118 wv
->name
= (char *) SDATA (string
);
2119 update_submenu_strings (wv
->contents
);
2123 f
->menu_bar_vector
= menu_items
;
2124 f
->menu_bar_items_used
= menu_items_used
;
2125 discard_menu_items ();
2129 /* Make a widget-value tree containing
2130 just the top level menu bar strings. */
2132 wv
= xmalloc_widget_value ();
2133 wv
->name
= "menubar";
2136 wv
->button_type
= BUTTON_TYPE_NONE
;
2140 items
= FRAME_MENU_BAR_ITEMS (f
);
2141 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
2145 string
= XVECTOR (items
)->contents
[i
+ 1];
2149 wv
= xmalloc_widget_value ();
2150 wv
->name
= (char *) SDATA (string
);
2153 wv
->button_type
= BUTTON_TYPE_NONE
;
2155 /* This prevents lwlib from assuming this
2156 menu item is really supposed to be empty. */
2157 /* The EMACS_INT cast avoids a warning.
2158 This value just has to be different from small integers. */
2159 wv
->call_data
= (void *) (EMACS_INT
) (-1);
2164 first_wv
->contents
= wv
;
2168 /* Forget what we thought we knew about what is in the
2169 detailed contents of the menu bar menus.
2170 Changing the top level always destroys the contents. */
2171 f
->menu_bar_items_used
= 0;
2174 /* Create or update the menu bar widget. */
2179 xg_crazy_callback_abort
= 1;
2182 /* The fourth arg is DEEP_P, which says to consider the entire
2183 menu trees we supply, rather than just the menu bar item names. */
2184 xg_modify_menubar_widgets (menubar_widget
,
2188 G_CALLBACK (menubar_selection_callback
),
2189 G_CALLBACK (popup_deactivate_callback
),
2190 G_CALLBACK (menu_highlight_callback
));
2194 GtkWidget
*wvbox
= f
->output_data
.x
->vbox_widget
;
2197 = xg_create_widget ("menubar", "menubar", f
, first_wv
,
2198 G_CALLBACK (menubar_selection_callback
),
2199 G_CALLBACK (popup_deactivate_callback
),
2200 G_CALLBACK (menu_highlight_callback
));
2202 f
->output_data
.x
->menubar_widget
= menubar_widget
;
2206 #else /* not USE_GTK */
2209 /* Disable resizing (done for Motif!) */
2210 lw_allow_resizing (f
->output_data
.x
->widget
, False
);
2212 /* The third arg is DEEP_P, which says to consider the entire
2213 menu trees we supply, rather than just the menu bar item names. */
2214 lw_modify_all_widgets (id
, first_wv
, deep_p
);
2216 /* Re-enable the edit widget to resize. */
2217 lw_allow_resizing (f
->output_data
.x
->widget
, True
);
2221 char menuOverride
[] = "Ctrl<KeyPress>g: MenuGadgetEscape()";
2222 XtTranslations override
= XtParseTranslationTable (menuOverride
);
2224 menubar_widget
= lw_create_widget ("menubar", "menubar", id
, first_wv
,
2225 f
->output_data
.x
->column_widget
,
2227 popup_activate_callback
,
2228 menubar_selection_callback
,
2229 popup_deactivate_callback
,
2230 menu_highlight_callback
);
2231 f
->output_data
.x
->menubar_widget
= menubar_widget
;
2233 /* Make menu pop down on C-g. */
2234 XtOverrideTranslations (menubar_widget
, override
);
2239 = (f
->output_data
.x
->menubar_widget
2240 ? (f
->output_data
.x
->menubar_widget
->core
.height
2241 + f
->output_data
.x
->menubar_widget
->core
.border_width
)
2244 #if 0 /* Experimentally, we now get the right results
2245 for -geometry -0-0 without this. 24 Aug 96, rms. */
2247 if (FRAME_EXTERNAL_MENU_BAR (f
))
2250 XtVaGetValues (f
->output_data
.x
->column_widget
,
2251 XtNinternalBorderWidth
, &ibw
, NULL
);
2252 menubar_size
+= ibw
;
2254 #endif /* USE_LUCID */
2257 f
->output_data
.x
->menubar_height
= menubar_size
;
2259 #endif /* not USE_GTK */
2261 free_menubar_widget_value_tree (first_wv
);
2262 update_frame_menubar (f
);
2265 xg_crazy_callback_abort
= 0;
2271 /* Called from Fx_create_frame to create the initial menubar of a frame
2272 before it is mapped, so that the window is mapped with the menubar already
2273 there instead of us tacking it on later and thrashing the window after it
2277 initialize_frame_menubar (f
)
2280 /* This function is called before the first chance to redisplay
2281 the frame. It has to be, so the frame will have the right size. */
2282 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
2283 set_frame_menubar (f
, 1, 1);
2287 /* Get rid of the menu bar of frame F, and free its storage.
2288 This is used when deleting a frame, and when turning off the menu bar.
2289 For GTK this function is in gtkutil.c. */
2293 free_frame_menubar (f
)
2296 Widget menubar_widget
;
2298 menubar_widget
= f
->output_data
.x
->menubar_widget
;
2300 f
->output_data
.x
->menubar_height
= 0;
2305 /* Removing the menu bar magically changes the shell widget's x
2306 and y position of (0, 0) which, when the menu bar is turned
2307 on again, leads to pull-down menuss appearing in strange
2308 positions near the upper-left corner of the display. This
2309 happens only with some window managers like twm and ctwm,
2310 but not with other like Motif's mwm or kwm, because the
2311 latter generate ConfigureNotify events when the menu bar
2312 is switched off, which fixes the shell position. */
2313 Position x0
, y0
, x1
, y1
;
2319 if (f
->output_data
.x
->widget
)
2320 XtVaGetValues (f
->output_data
.x
->widget
, XtNx
, &x0
, XtNy
, &y0
, NULL
);
2323 lw_destroy_all_widgets ((LWLIB_ID
) f
->output_data
.x
->id
);
2324 f
->output_data
.x
->menubar_widget
= NULL
;
2327 if (f
->output_data
.x
->widget
)
2329 XtVaGetValues (f
->output_data
.x
->widget
, XtNx
, &x1
, XtNy
, &y1
, NULL
);
2330 if (x1
== 0 && y1
== 0)
2331 XtVaSetValues (f
->output_data
.x
->widget
, XtNx
, x0
, XtNy
, y0
, NULL
);
2338 #endif /* not USE_GTK */
2340 #endif /* USE_X_TOOLKIT || USE_GTK */
2342 /* xmenu_show actually displays a menu using the panes and items in menu_items
2343 and returns the value selected from it.
2344 There are two versions of xmenu_show, one for Xt and one for Xlib.
2345 Both assume input is blocked by the caller. */
2347 /* F is the frame the menu is for.
2348 X and Y are the frame-relative specified position,
2349 relative to the inside upper left corner of the frame F.
2350 FOR_CLICK is nonzero if this menu was invoked for a mouse click.
2351 KEYMAPS is 1 if this menu was specified with keymaps;
2352 in that case, we return a list containing the chosen item's value
2353 and perhaps also the pane's prefix.
2354 TITLE is the specified menu title.
2355 ERROR is a place to store an error message string in case of failure.
2356 (We return nil on failure, but the value doesn't actually matter.) */
2358 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
2360 /* The item selected in the popup menu. */
2361 static Lisp_Object
*volatile menu_item_selection
;
2365 /* Used when position a popup menu. See menu_position_func and
2366 create_and_show_popup_menu below. */
2367 struct next_popup_x_y
2374 /* The menu position function to use if we are not putting a popup
2375 menu where the pointer is.
2376 MENU is the menu to pop up.
2377 X and Y shall on exit contain x/y where the menu shall pop up.
2378 PUSH_IN is not documented in the GTK manual.
2379 USER_DATA is any data passed in when calling gtk_menu_popup.
2380 Here it points to a struct next_popup_x_y where the coordinates
2381 to store in *X and *Y are as well as the frame for the popup.
2383 Here only X and Y are used. */
2385 menu_position_func (menu
, x
, y
, push_in
, user_data
)
2392 struct next_popup_x_y
* data
= (struct next_popup_x_y
*)user_data
;
2394 int disp_width
= FRAME_X_DISPLAY_INFO (data
->f
)->width
;
2395 int disp_height
= FRAME_X_DISPLAY_INFO (data
->f
)->height
;
2400 /* Check if there is room for the menu. If not, adjust x/y so that
2401 the menu is fully visible. */
2402 gtk_widget_size_request (GTK_WIDGET (menu
), &req
);
2403 if (data
->x
+ req
.width
> disp_width
)
2404 *x
-= data
->x
+ req
.width
- disp_width
;
2405 if (data
->y
+ req
.height
> disp_height
)
2406 *y
-= data
->y
+ req
.height
- disp_height
;
2410 popup_selection_callback (widget
, client_data
)
2412 gpointer client_data
;
2414 xg_menu_item_cb_data
*cb_data
= (xg_menu_item_cb_data
*) client_data
;
2416 if (xg_crazy_callback_abort
) return;
2417 if (cb_data
) menu_item_selection
= (Lisp_Object
*) cb_data
->call_data
;
2424 struct Lisp_Save_Value
*p
= XSAVE_VALUE (arg
);
2426 popup_activated_flag
= 0;
2428 gtk_widget_destroy (GTK_WIDGET (p
->pointer
));
2433 /* Pop up the menu for frame F defined by FIRST_WV at X/Y and loop until the
2435 menu_item_selection will be set to the selection. */
2437 create_and_show_popup_menu (f
, first_wv
, x
, y
, for_click
)
2439 widget_value
*first_wv
;
2446 GtkMenuPositionFunc pos_func
= 0; /* Pop up at pointer. */
2447 struct next_popup_x_y popup_x_y
;
2448 int specpdl_count
= SPECPDL_INDEX ();
2450 xg_crazy_callback_abort
= 1;
2451 menu
= xg_create_widget ("popup", first_wv
->name
, f
, first_wv
,
2452 G_CALLBACK (popup_selection_callback
),
2453 G_CALLBACK (popup_deactivate_callback
),
2454 G_CALLBACK (menu_highlight_callback
));
2455 xg_crazy_callback_abort
= 0;
2459 /* Not invoked by a click. pop up at x/y. */
2460 pos_func
= menu_position_func
;
2462 /* Adjust coordinates to be root-window-relative. */
2463 x
+= f
->left_pos
+ FRAME_OUTER_TO_INNER_DIFF_X (f
);
2464 y
+= f
->top_pos
+ FRAME_OUTER_TO_INNER_DIFF_Y (f
);
2470 i
= 0; /* gtk_menu_popup needs this to be 0 for a non-button popup. */
2474 for (i
= 0; i
< 5; i
++)
2475 if (FRAME_X_DISPLAY_INFO (f
)->grabbed
& (1 << i
))
2479 /* Display the menu. */
2480 gtk_widget_show_all (menu
);
2481 gtk_menu_popup (GTK_MENU (menu
), 0, 0, pos_func
, &popup_x_y
, i
, 0);
2483 record_unwind_protect (pop_down_menu
, make_save_value (menu
, 0));
2485 /* Set this to one. popup_widget_loop increases it by one, so it becomes
2486 two. show_help_echo uses this to detect popup menus. */
2487 popup_activated_flag
= 1;
2488 /* Process events that apply to the menu. */
2489 popup_widget_loop (1, menu
);
2491 unbind_to (specpdl_count
, Qnil
);
2493 /* Must reset this manually because the button release event is not passed
2494 to Emacs event loop. */
2495 FRAME_X_DISPLAY_INFO (f
)->grabbed
= 0;
2498 #else /* not USE_GTK */
2500 /* We need a unique id for each widget handled by the Lucid Widget
2503 For the main windows, and popup menus, we use this counter,
2504 which we increment each time after use. This starts from 1<<16.
2506 For menu bars, we use numbers starting at 0, counted in
2507 next_menubar_widget_id. */
2508 LWLIB_ID widget_id_tick
;
2511 popup_selection_callback (widget
, id
, client_data
)
2514 XtPointer client_data
;
2516 menu_item_selection
= (Lisp_Object
*) client_data
;
2519 /* ARG is the LWLIB ID of the dialog box, represented
2520 as a Lisp object as (HIGHPART . LOWPART). */
2526 LWLIB_ID id
= (XINT (XCAR (arg
)) << 4 * sizeof (LWLIB_ID
)
2527 | XINT (XCDR (arg
)));
2530 lw_destroy_all_widgets (id
);
2532 popup_activated_flag
= 0;
2537 /* Pop up the menu for frame F defined by FIRST_WV at X/Y and loop until the
2539 menu_item_selection will be set to the selection. */
2541 create_and_show_popup_menu (f
, first_wv
, x
, y
, for_click
)
2543 widget_value
*first_wv
;
2551 XButtonPressedEvent dummy
;
2555 menu_id
= widget_id_tick
++;
2556 menu
= lw_create_widget ("popup", first_wv
->name
, menu_id
, first_wv
,
2557 f
->output_data
.x
->widget
, 1, 0,
2558 popup_selection_callback
,
2559 popup_deactivate_callback
,
2560 menu_highlight_callback
);
2562 dummy
.type
= ButtonPress
;
2564 dummy
.send_event
= 0;
2565 dummy
.display
= FRAME_X_DISPLAY (f
);
2566 dummy
.time
= CurrentTime
;
2567 dummy
.root
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
2568 dummy
.window
= dummy
.root
;
2569 dummy
.subwindow
= dummy
.root
;
2573 /* Adjust coordinates to be root-window-relative. */
2574 x
+= f
->left_pos
+ FRAME_OUTER_TO_INNER_DIFF_X (f
);
2575 y
+= f
->top_pos
+ FRAME_OUTER_TO_INNER_DIFF_Y (f
);
2582 for (i
= 0; i
< 5; i
++)
2583 if (FRAME_X_DISPLAY_INFO (f
)->grabbed
& (1 << i
))
2586 /* Don't allow any geometry request from the user. */
2587 XtSetArg (av
[ac
], XtNgeometry
, 0); ac
++;
2588 XtSetValues (menu
, av
, ac
);
2590 /* Display the menu. */
2591 lw_popup_menu (menu
, (XEvent
*) &dummy
);
2592 popup_activated_flag
= 1;
2595 int fact
= 4 * sizeof (LWLIB_ID
);
2596 int specpdl_count
= SPECPDL_INDEX ();
2597 record_unwind_protect (pop_down_menu
,
2598 Fcons (make_number (menu_id
>> (fact
)),
2599 make_number (menu_id
& ~(-1 << (fact
)))));
2601 /* Process events that apply to the menu. */
2602 popup_get_selection ((XEvent
*) 0, FRAME_X_DISPLAY_INFO (f
), menu_id
, 1);
2604 unbind_to (specpdl_count
, Qnil
);
2608 #endif /* not USE_GTK */
2611 xmenu_show (f
, x
, y
, for_click
, keymaps
, title
, error
)
2621 widget_value
*wv
, *save_wv
= 0, *first_wv
= 0, *prev_wv
= 0;
2622 widget_value
**submenu_stack
2623 = (widget_value
**) alloca (menu_items_used
* sizeof (widget_value
*));
2624 Lisp_Object
*subprefix_stack
2625 = (Lisp_Object
*) alloca (menu_items_used
* sizeof (Lisp_Object
));
2626 int submenu_depth
= 0;
2632 if (menu_items_used
<= MENU_ITEMS_PANE_LENGTH
)
2634 *error
= "Empty menu";
2638 /* Create a tree of widget_value objects
2639 representing the panes and their items. */
2640 wv
= xmalloc_widget_value ();
2644 wv
->button_type
= BUTTON_TYPE_NONE
;
2649 /* Loop over all panes and items, filling in the tree. */
2651 while (i
< menu_items_used
)
2653 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
2655 submenu_stack
[submenu_depth
++] = save_wv
;
2661 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
2664 save_wv
= submenu_stack
[--submenu_depth
];
2668 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
)
2669 && submenu_depth
!= 0)
2670 i
+= MENU_ITEMS_PANE_LENGTH
;
2671 /* Ignore a nil in the item list.
2672 It's meaningful only for dialog boxes. */
2673 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
2675 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2677 /* Create a new pane. */
2678 Lisp_Object pane_name
, prefix
;
2681 pane_name
= AREF (menu_items
, i
+ MENU_ITEMS_PANE_NAME
);
2682 prefix
= AREF (menu_items
, i
+ MENU_ITEMS_PANE_PREFIX
);
2684 #ifndef HAVE_MULTILINGUAL_MENU
2685 if (STRINGP (pane_name
) && STRING_MULTIBYTE (pane_name
))
2687 pane_name
= ENCODE_SYSTEM (pane_name
);
2688 AREF (menu_items
, i
+ MENU_ITEMS_PANE_NAME
) = pane_name
;
2691 pane_string
= (NILP (pane_name
)
2692 ? "" : (char *) SDATA (pane_name
));
2693 /* If there is just one top-level pane, put all its items directly
2694 under the top-level menu. */
2695 if (menu_items_n_panes
== 1)
2698 /* If the pane has a meaningful name,
2699 make the pane a top-level menu item
2700 with its items as a submenu beneath it. */
2701 if (!keymaps
&& strcmp (pane_string
, ""))
2703 wv
= xmalloc_widget_value ();
2707 first_wv
->contents
= wv
;
2708 wv
->name
= pane_string
;
2709 if (keymaps
&& !NILP (prefix
))
2713 wv
->button_type
= BUTTON_TYPE_NONE
;
2718 else if (first_pane
)
2724 i
+= MENU_ITEMS_PANE_LENGTH
;
2728 /* Create a new item within current pane. */
2729 Lisp_Object item_name
, enable
, descrip
, def
, type
, selected
, help
;
2730 item_name
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
);
2731 enable
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_ENABLE
);
2732 descrip
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
);
2733 def
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_DEFINITION
);
2734 type
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_TYPE
);
2735 selected
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_SELECTED
);
2736 help
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_HELP
);
2738 #ifndef HAVE_MULTILINGUAL_MENU
2739 if (STRINGP (item_name
) && STRING_MULTIBYTE (item_name
))
2741 item_name
= ENCODE_MENU_STRING (item_name
);
2742 AREF (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
) = item_name
;
2745 if (STRINGP (descrip
) && STRING_MULTIBYTE (descrip
))
2747 descrip
= ENCODE_MENU_STRING (descrip
);
2748 AREF (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
) = descrip
;
2750 #endif /* not HAVE_MULTILINGUAL_MENU */
2752 wv
= xmalloc_widget_value ();
2756 save_wv
->contents
= wv
;
2757 wv
->name
= (char *) SDATA (item_name
);
2758 if (!NILP (descrip
))
2759 wv
->key
= (char *) SDATA (descrip
);
2761 /* If this item has a null value,
2762 make the call_data null so that it won't display a box
2763 when the mouse is on it. */
2765 = (!NILP (def
) ? (void *) &XVECTOR (menu_items
)->contents
[i
] : 0);
2766 wv
->enabled
= !NILP (enable
);
2769 wv
->button_type
= BUTTON_TYPE_NONE
;
2770 else if (EQ (type
, QCtoggle
))
2771 wv
->button_type
= BUTTON_TYPE_TOGGLE
;
2772 else if (EQ (type
, QCradio
))
2773 wv
->button_type
= BUTTON_TYPE_RADIO
;
2777 wv
->selected
= !NILP (selected
);
2779 if (! STRINGP (help
))
2786 i
+= MENU_ITEMS_ITEM_LENGTH
;
2790 /* Deal with the title, if it is non-nil. */
2793 widget_value
*wv_title
= xmalloc_widget_value ();
2794 widget_value
*wv_sep1
= xmalloc_widget_value ();
2795 widget_value
*wv_sep2
= xmalloc_widget_value ();
2797 wv_sep2
->name
= "--";
2798 wv_sep2
->next
= first_wv
->contents
;
2799 wv_sep2
->help
= Qnil
;
2801 wv_sep1
->name
= "--";
2802 wv_sep1
->next
= wv_sep2
;
2803 wv_sep1
->help
= Qnil
;
2805 #ifndef HAVE_MULTILINGUAL_MENU
2806 if (STRING_MULTIBYTE (title
))
2807 title
= ENCODE_MENU_STRING (title
);
2810 wv_title
->name
= (char *) SDATA (title
);
2811 wv_title
->enabled
= TRUE
;
2812 wv_title
->button_type
= BUTTON_TYPE_NONE
;
2813 wv_title
->next
= wv_sep1
;
2814 wv_title
->help
= Qnil
;
2815 first_wv
->contents
= wv_title
;
2818 /* No selection has been chosen yet. */
2819 menu_item_selection
= 0;
2821 /* Actually create and show the menu until popped down. */
2822 create_and_show_popup_menu (f
, first_wv
, x
, y
, for_click
);
2824 /* Free the widget_value objects we used to specify the contents. */
2825 free_menubar_widget_value_tree (first_wv
);
2827 /* Find the selected item, and its pane, to return
2828 the proper value. */
2829 if (menu_item_selection
!= 0)
2831 Lisp_Object prefix
, entry
;
2833 prefix
= entry
= Qnil
;
2835 while (i
< menu_items_used
)
2837 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
2839 subprefix_stack
[submenu_depth
++] = prefix
;
2843 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
2845 prefix
= subprefix_stack
[--submenu_depth
];
2848 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2851 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2852 i
+= MENU_ITEMS_PANE_LENGTH
;
2854 /* Ignore a nil in the item list.
2855 It's meaningful only for dialog boxes. */
2856 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
2861 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
2862 if (menu_item_selection
== &XVECTOR (menu_items
)->contents
[i
])
2868 entry
= Fcons (entry
, Qnil
);
2870 entry
= Fcons (prefix
, entry
);
2871 for (j
= submenu_depth
- 1; j
>= 0; j
--)
2872 if (!NILP (subprefix_stack
[j
]))
2873 entry
= Fcons (subprefix_stack
[j
], entry
);
2877 i
+= MENU_ITEMS_ITEM_LENGTH
;
2887 dialog_selection_callback (widget
, client_data
)
2889 gpointer client_data
;
2891 /* The EMACS_INT cast avoids a warning. There's no problem
2892 as long as pointers have enough bits to hold small integers. */
2893 if ((int) (EMACS_INT
) client_data
!= -1)
2894 menu_item_selection
= (Lisp_Object
*) client_data
;
2896 popup_activated_flag
= 0;
2899 /* Pop up the dialog for frame F defined by FIRST_WV and loop until the
2901 menu_item_selection will be set to the selection. */
2903 create_and_show_dialog (f
, first_wv
)
2905 widget_value
*first_wv
;
2909 menu
= xg_create_widget ("dialog", first_wv
->name
, f
, first_wv
,
2910 G_CALLBACK (dialog_selection_callback
),
2911 G_CALLBACK (popup_deactivate_callback
),
2916 int specpdl_count
= SPECPDL_INDEX ();
2917 record_unwind_protect (pop_down_menu
, make_save_value (menu
, 0));
2919 /* Display the menu. */
2920 gtk_widget_show_all (menu
);
2922 /* Process events that apply to the menu. */
2923 popup_widget_loop (1, menu
);
2925 unbind_to (specpdl_count
, Qnil
);
2929 #else /* not USE_GTK */
2931 dialog_selection_callback (widget
, id
, client_data
)
2934 XtPointer client_data
;
2936 /* The EMACS_INT cast avoids a warning. There's no problem
2937 as long as pointers have enough bits to hold small integers. */
2938 if ((int) (EMACS_INT
) client_data
!= -1)
2939 menu_item_selection
= (Lisp_Object
*) client_data
;
2942 lw_destroy_all_widgets (id
);
2944 popup_activated_flag
= 0;
2948 /* Pop up the dialog for frame F defined by FIRST_WV and loop until the
2950 menu_item_selection will be set to the selection. */
2952 create_and_show_dialog (f
, first_wv
)
2954 widget_value
*first_wv
;
2958 dialog_id
= widget_id_tick
++;
2959 lw_create_widget (first_wv
->name
, "dialog", dialog_id
, first_wv
,
2960 f
->output_data
.x
->widget
, 1, 0,
2961 dialog_selection_callback
, 0, 0);
2962 lw_modify_all_widgets (dialog_id
, first_wv
->contents
, True
);
2964 /* Display the dialog box. */
2965 lw_pop_up_all_widgets (dialog_id
);
2966 popup_activated_flag
= 1;
2968 /* Process events that apply to the dialog box.
2969 Also handle timers. */
2971 int count
= SPECPDL_INDEX ();
2972 int fact
= 4 * sizeof (LWLIB_ID
);
2974 /* xdialog_show_unwind is responsible for popping the dialog box down. */
2975 record_unwind_protect (pop_down_menu
,
2976 Fcons (make_number (dialog_id
>> (fact
)),
2977 make_number (dialog_id
& ~(-1 << (fact
)))));
2979 popup_get_selection ((XEvent
*) 0, FRAME_X_DISPLAY_INFO (f
),
2982 unbind_to (count
, Qnil
);
2986 #endif /* not USE_GTK */
2988 static char * button_names
[] = {
2989 "button1", "button2", "button3", "button4", "button5",
2990 "button6", "button7", "button8", "button9", "button10" };
2993 xdialog_show (f
, keymaps
, title
, error
)
2999 int i
, nb_buttons
=0;
3000 char dialog_name
[6];
3002 widget_value
*wv
, *first_wv
= 0, *prev_wv
= 0;
3004 /* Number of elements seen so far, before boundary. */
3006 /* 1 means we've seen the boundary between left-hand elts and right-hand. */
3007 int boundary_seen
= 0;
3011 if (menu_items_n_panes
> 1)
3013 *error
= "Multiple panes in dialog box";
3017 /* Create a tree of widget_value objects
3018 representing the text label and buttons. */
3020 Lisp_Object pane_name
, prefix
;
3022 pane_name
= XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_NAME
];
3023 prefix
= XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_PREFIX
];
3024 pane_string
= (NILP (pane_name
)
3025 ? "" : (char *) SDATA (pane_name
));
3026 prev_wv
= xmalloc_widget_value ();
3027 prev_wv
->value
= pane_string
;
3028 if (keymaps
&& !NILP (prefix
))
3030 prev_wv
->enabled
= 1;
3031 prev_wv
->name
= "message";
3032 prev_wv
->help
= Qnil
;
3035 /* Loop over all panes and items, filling in the tree. */
3036 i
= MENU_ITEMS_PANE_LENGTH
;
3037 while (i
< menu_items_used
)
3040 /* Create a new item within current pane. */
3041 Lisp_Object item_name
, enable
, descrip
;
3042 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
3043 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
3045 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
3047 if (NILP (item_name
))
3049 free_menubar_widget_value_tree (first_wv
);
3050 *error
= "Submenu in dialog items";
3053 if (EQ (item_name
, Qquote
))
3055 /* This is the boundary between left-side elts
3056 and right-side elts. Stop incrementing right_count. */
3061 if (nb_buttons
>= 9)
3063 free_menubar_widget_value_tree (first_wv
);
3064 *error
= "Too many dialog items";
3068 wv
= xmalloc_widget_value ();
3070 wv
->name
= (char *) button_names
[nb_buttons
];
3071 if (!NILP (descrip
))
3072 wv
->key
= (char *) SDATA (descrip
);
3073 wv
->value
= (char *) SDATA (item_name
);
3074 wv
->call_data
= (void *) &XVECTOR (menu_items
)->contents
[i
];
3075 wv
->enabled
= !NILP (enable
);
3079 if (! boundary_seen
)
3083 i
+= MENU_ITEMS_ITEM_LENGTH
;
3086 /* If the boundary was not specified,
3087 by default put half on the left and half on the right. */
3088 if (! boundary_seen
)
3089 left_count
= nb_buttons
- nb_buttons
/ 2;
3091 wv
= xmalloc_widget_value ();
3092 wv
->name
= dialog_name
;
3094 /* Dialog boxes use a really stupid name encoding
3095 which specifies how many buttons to use
3096 and how many buttons are on the right.
3097 The Q means something also. */
3098 dialog_name
[0] = 'Q';
3099 dialog_name
[1] = '0' + nb_buttons
;
3100 dialog_name
[2] = 'B';
3101 dialog_name
[3] = 'R';
3102 /* Number of buttons to put on the right. */
3103 dialog_name
[4] = '0' + nb_buttons
- left_count
;
3105 wv
->contents
= first_wv
;
3109 /* No selection has been chosen yet. */
3110 menu_item_selection
= 0;
3112 /* Actually create and show the dialog. */
3113 create_and_show_dialog (f
, first_wv
);
3115 /* Free the widget_value objects we used to specify the contents. */
3116 free_menubar_widget_value_tree (first_wv
);
3118 /* Find the selected item, and its pane, to return
3119 the proper value. */
3120 if (menu_item_selection
!= 0)
3126 while (i
< menu_items_used
)
3130 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
3133 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
3134 i
+= MENU_ITEMS_PANE_LENGTH
;
3136 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
3138 /* This is the boundary between left-side elts and
3145 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
3146 if (menu_item_selection
== &XVECTOR (menu_items
)->contents
[i
])
3150 entry
= Fcons (entry
, Qnil
);
3152 entry
= Fcons (prefix
, entry
);
3156 i
+= MENU_ITEMS_ITEM_LENGTH
;
3161 /* Make "Cancel" equivalent to C-g. */
3162 Fsignal (Qquit
, Qnil
);
3167 #else /* not USE_X_TOOLKIT && not USE_GTK */
3169 /* The frame of the last activated non-toolkit menu bar.
3170 Used to generate menu help events. */
3172 static struct frame
*menu_help_frame
;
3175 /* Show help HELP_STRING, or clear help if HELP_STRING is null.
3177 PANE is the pane number, and ITEM is the menu item number in
3178 the menu (currently not used).
3180 This cannot be done with generating a HELP_EVENT because
3181 XMenuActivate contains a loop that doesn't let Emacs process
3185 menu_help_callback (help_string
, pane
, item
)
3189 extern Lisp_Object Qmenu_item
;
3190 Lisp_Object
*first_item
;
3191 Lisp_Object pane_name
;
3192 Lisp_Object menu_object
;
3194 first_item
= XVECTOR (menu_items
)->contents
;
3195 if (EQ (first_item
[0], Qt
))
3196 pane_name
= first_item
[MENU_ITEMS_PANE_NAME
];
3197 else if (EQ (first_item
[0], Qquote
))
3198 /* This shouldn't happen, see xmenu_show. */
3199 pane_name
= empty_string
;
3201 pane_name
= first_item
[MENU_ITEMS_ITEM_NAME
];
3203 /* (menu-item MENU-NAME PANE-NUMBER) */
3204 menu_object
= Fcons (Qmenu_item
,
3206 Fcons (make_number (pane
), Qnil
)));
3207 show_help_echo (help_string
? build_string (help_string
) : Qnil
,
3208 Qnil
, menu_object
, make_number (item
), 1);
3215 struct Lisp_Save_Value
*p1
= XSAVE_VALUE (Fcar (arg
));
3216 struct Lisp_Save_Value
*p2
= XSAVE_VALUE (Fcdr (arg
));
3218 FRAME_PTR f
= p1
->pointer
;
3219 XMenu
*menu
= p2
->pointer
;
3223 XUngrabPointer (FRAME_X_DISPLAY (f
), CurrentTime
);
3224 XUngrabKeyboard (FRAME_X_DISPLAY (f
), CurrentTime
);
3226 XMenuDestroy (FRAME_X_DISPLAY (f
), menu
);
3228 #ifdef HAVE_X_WINDOWS
3229 /* Assume the mouse has moved out of the X window.
3230 If it has actually moved in, we will get an EnterNotify. */
3231 x_mouse_leave (FRAME_X_DISPLAY_INFO (f
));
3233 /* State that no mouse buttons are now held.
3234 (The oldXMenu code doesn't track this info for us.)
3235 That is not necessarily true, but the fiction leads to reasonable
3236 results, and it is a pain to ask which are actually held now. */
3237 FRAME_X_DISPLAY_INFO (f
)->grabbed
= 0;
3239 #endif /* HAVE_X_WINDOWS */
3248 xmenu_show (f
, x
, y
, for_click
, keymaps
, title
, error
)
3258 int pane
, selidx
, lpane
, status
;
3259 Lisp_Object entry
, pane_prefix
;
3261 int ulx
, uly
, width
, height
;
3262 int dispwidth
, dispheight
;
3263 int i
, j
, lines
, maxlines
;
3266 unsigned int dummy_uint
;
3267 int specpdl_count
= SPECPDL_INDEX ();
3270 if (menu_items_n_panes
== 0)
3273 if (menu_items_used
<= MENU_ITEMS_PANE_LENGTH
)
3275 *error
= "Empty menu";
3279 /* Figure out which root window F is on. */
3280 XGetGeometry (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), &root
,
3281 &dummy_int
, &dummy_int
, &dummy_uint
, &dummy_uint
,
3282 &dummy_uint
, &dummy_uint
);
3284 /* Make the menu on that window. */
3285 menu
= XMenuCreate (FRAME_X_DISPLAY (f
), root
, "emacs");
3288 *error
= "Can't create menu";
3292 #ifdef HAVE_X_WINDOWS
3293 /* Adjust coordinates to relative to the outer (window manager) window. */
3294 x
+= FRAME_OUTER_TO_INNER_DIFF_X (f
);
3295 y
+= FRAME_OUTER_TO_INNER_DIFF_Y (f
);
3296 #endif /* HAVE_X_WINDOWS */
3298 /* Adjust coordinates to be root-window-relative. */
3302 /* Create all the necessary panes and their items. */
3303 maxlines
= lines
= i
= 0;
3304 while (i
< menu_items_used
)
3306 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
3308 /* Create a new pane. */
3309 Lisp_Object pane_name
, prefix
;
3312 maxlines
= max (maxlines
, lines
);
3314 pane_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_NAME
];
3315 prefix
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
3316 pane_string
= (NILP (pane_name
)
3317 ? "" : (char *) SDATA (pane_name
));
3318 if (keymaps
&& !NILP (prefix
))
3321 lpane
= XMenuAddPane (FRAME_X_DISPLAY (f
), menu
, pane_string
, TRUE
);
3322 if (lpane
== XM_FAILURE
)
3324 XMenuDestroy (FRAME_X_DISPLAY (f
), menu
);
3325 *error
= "Can't create pane";
3328 i
+= MENU_ITEMS_PANE_LENGTH
;
3330 /* Find the width of the widest item in this pane. */
3333 while (j
< menu_items_used
)
3336 item
= XVECTOR (menu_items
)->contents
[j
];
3344 width
= SBYTES (item
);
3345 if (width
> maxwidth
)
3348 j
+= MENU_ITEMS_ITEM_LENGTH
;
3351 /* Ignore a nil in the item list.
3352 It's meaningful only for dialog boxes. */
3353 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
3357 /* Create a new item within current pane. */
3358 Lisp_Object item_name
, enable
, descrip
, help
;
3359 unsigned char *item_data
;
3362 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
3363 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
3365 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
3366 help
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_HELP
];
3367 help_string
= STRINGP (help
) ? SDATA (help
) : NULL
;
3369 if (!NILP (descrip
))
3371 int gap
= maxwidth
- SBYTES (item_name
);
3374 spacer
= Fmake_string (make_number (gap
), make_number (' '));
3375 item_name
= concat2 (item_name
, spacer
);
3376 item_name
= concat2 (item_name
, descrip
);
3377 item_data
= SDATA (item_name
);
3379 /* if alloca is fast, use that to make the space,
3380 to reduce gc needs. */
3382 = (unsigned char *) alloca (maxwidth
3383 + SBYTES (descrip
) + 1);
3384 bcopy (SDATA (item_name
), item_data
,
3385 SBYTES (item_name
));
3386 for (j
= SCHARS (item_name
); j
< maxwidth
; j
++)
3388 bcopy (SDATA (descrip
), item_data
+ j
,
3390 item_data
[j
+ SBYTES (descrip
)] = 0;
3394 item_data
= SDATA (item_name
);
3396 if (XMenuAddSelection (FRAME_X_DISPLAY (f
),
3397 menu
, lpane
, 0, item_data
,
3398 !NILP (enable
), help_string
)
3401 XMenuDestroy (FRAME_X_DISPLAY (f
), menu
);
3402 *error
= "Can't add selection to menu";
3405 i
+= MENU_ITEMS_ITEM_LENGTH
;
3410 maxlines
= max (maxlines
, lines
);
3412 /* All set and ready to fly. */
3413 XMenuRecompute (FRAME_X_DISPLAY (f
), menu
);
3414 dispwidth
= DisplayWidth (FRAME_X_DISPLAY (f
), FRAME_X_SCREEN_NUMBER (f
));
3415 dispheight
= DisplayHeight (FRAME_X_DISPLAY (f
), FRAME_X_SCREEN_NUMBER (f
));
3416 x
= min (x
, dispwidth
);
3417 y
= min (y
, dispheight
);
3420 XMenuLocate (FRAME_X_DISPLAY (f
), menu
, 0, 0, x
, y
,
3421 &ulx
, &uly
, &width
, &height
);
3422 if (ulx
+width
> dispwidth
)
3424 x
-= (ulx
+ width
) - dispwidth
;
3425 ulx
= dispwidth
- width
;
3427 if (uly
+height
> dispheight
)
3429 y
-= (uly
+ height
) - dispheight
;
3430 uly
= dispheight
- height
;
3432 if (ulx
< 0) x
-= ulx
;
3433 if (uly
< 0) y
-= uly
;
3437 /* If position was not given by a mouse click, adjust so upper left
3438 corner of the menu as a whole ends up at given coordinates. This
3439 is what x-popup-menu says in its documentation. */
3441 y
+= 1.5*height
/(maxlines
+2);
3444 XMenuSetAEQ (menu
, TRUE
);
3445 XMenuSetFreeze (menu
, TRUE
);
3449 XMenuActivateSetWaitFunction (x_menu_wait_for_event
, FRAME_X_DISPLAY (f
));
3452 record_unwind_protect (pop_down_menu
,
3453 Fcons (make_save_value (f
, 0),
3454 make_save_value (menu
, 0)));
3456 /* Help display under X won't work because XMenuActivate contains
3457 a loop that doesn't give Emacs a chance to process it. */
3458 menu_help_frame
= f
;
3459 status
= XMenuActivate (FRAME_X_DISPLAY (f
), menu
, &pane
, &selidx
,
3460 x
, y
, ButtonReleaseMask
, &datap
,
3461 menu_help_callback
);
3467 fprintf (stderr
, "pane= %d line = %d\n", panes
, selidx
);
3470 /* Find the item number SELIDX in pane number PANE. */
3472 while (i
< menu_items_used
)
3474 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
3478 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
3480 i
+= MENU_ITEMS_PANE_LENGTH
;
3489 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
3492 entry
= Fcons (entry
, Qnil
);
3493 if (!NILP (pane_prefix
))
3494 entry
= Fcons (pane_prefix
, entry
);
3500 i
+= MENU_ITEMS_ITEM_LENGTH
;
3506 *error
= "Can't activate menu";
3511 /* Make "Cancel" equivalent to C-g unless this menu was popped up by
3514 Fsignal (Qquit
, Qnil
);
3519 unbind_to (specpdl_count
, Qnil
);
3524 #endif /* not USE_X_TOOLKIT */
3526 #endif /* HAVE_MENUS */
3531 staticpro (&menu_items
);
3533 menu_items_inuse
= Qnil
;
3535 Qdebug_on_next_call
= intern ("debug-on-next-call");
3536 staticpro (&Qdebug_on_next_call
);
3538 DEFVAR_LISP ("menu-updating-frame", &Vmenu_updating_frame
,
3539 doc
: /* Frame for which we are updating a menu.
3540 The enable predicate for a menu command should check this variable. */);
3541 Vmenu_updating_frame
= Qnil
;
3543 #ifdef USE_X_TOOLKIT
3544 widget_id_tick
= (1<<16);
3545 next_menubar_widget_id
= 1;
3548 defsubr (&Sx_popup_menu
);
3550 defsubr (&Sx_popup_dialog
);
3554 /* arch-tag: 92ea573c-398e-496e-ac73-2436f7d63242
3555 (do not change this comment) */