1 /* X Communication module for terminals which understand the X protocol.
2 Copyright (C) 1986, 88, 93, 94, 96, 99, 2000, 2001, 2003
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
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"
57 /* This may include sys/types.h, and that somehow loses
58 if this is not done before the other system files. */
62 /* Load sys/types.h if not already loaded.
63 In some systems loading it twice is suicidal. */
65 #include <sys/types.h>
68 #include "dispextern.h"
71 /* Defining HAVE_MULTILINGUAL_MENU would mean that the toolkit menu
72 code accepts the Emacs internal encoding. */
73 #undef HAVE_MULTILINGUAL_MENU
77 #include <X11/IntrinsicP.h>
78 #include <X11/CoreP.h>
79 #include <X11/StringDefs.h>
80 #include <X11/Shell.h>
82 #include <X11/Xaw/Paned.h>
83 #endif /* USE_LUCID */
84 #include "../lwlib/lwlib.h"
85 #else /* not USE_X_TOOLKIT */
87 #include "../oldXMenu/XMenu.h"
89 #endif /* not USE_X_TOOLKIT */
90 #endif /* HAVE_X_WINDOWS */
97 Lisp_Object Vmenu_updating_frame
;
99 Lisp_Object Qdebug_on_next_call
;
101 extern Lisp_Object Qmenu_bar
;
103 extern Lisp_Object QCtoggle
, QCradio
;
105 extern Lisp_Object Voverriding_local_map
;
106 extern Lisp_Object Voverriding_local_map_menu_flag
;
108 extern Lisp_Object Qoverriding_local_map
, Qoverriding_terminal_local_map
;
110 extern Lisp_Object Qmenu_bar_update_hook
;
113 extern void set_frame_menubar ();
114 extern XtAppContext Xt_app_con
;
116 static Lisp_Object
xdialog_show ();
117 static void popup_get_selection ();
119 /* Define HAVE_BOXES if menus can handle radio and toggle buttons. */
122 #endif /* USE_X_TOOLKIT */
127 extern void set_frame_menubar ();
128 static Lisp_Object
xdialog_show ();
131 /* This is how to deal with multibyte text if HAVE_MULTILINGUAL_MENU
132 isn't defined. The use of HAVE_MULTILINGUAL_MENU could probably be
133 confined to an extended version of this with sections of code below
134 using it unconditionally. */
136 /* gtk just uses utf-8. */
137 # define ENCODE_MENU_STRING(str) ENCODE_UTF_8 (str)
139 /* I'm not convinced ENCODE_SYSTEM is defined correctly, or maybe
140 something else should be used here. Except under MS-Windows it
141 just converts to unibyte, but encoding with `locale-coding-system'
142 seems better -- X may actually display the result correctly, and
143 it's not necessarily equivalent to the unibyte text. -- fx */
144 # define ENCODE_MENU_STRING(str) ENCODE_SYSTEM (str)
147 static void push_menu_item
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
,
148 Lisp_Object
, Lisp_Object
, Lisp_Object
,
149 Lisp_Object
, Lisp_Object
));
150 static int update_frame_menubar
P_ ((struct frame
*));
151 static Lisp_Object xmenu_show
P_ ((struct frame
*, int, int, int, int,
152 Lisp_Object
, char **));
153 static void keymap_panes
P_ ((Lisp_Object
*, int, int));
154 static void single_keymap_panes
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
,
156 static void list_of_panes
P_ ((Lisp_Object
));
157 static void list_of_items
P_ ((Lisp_Object
));
159 extern EMACS_TIME timer_check
P_ ((int));
161 /* This holds a Lisp vector that holds the results of decoding
162 the keymaps or alist-of-alists that specify a menu.
164 It describes the panes and items within the panes.
166 Each pane is described by 3 elements in the vector:
167 t, the pane name, the pane's prefix key.
168 Then follow the pane's items, with 5 elements per item:
169 the item string, the enable flag, the item's value,
170 the definition, and the equivalent keyboard key's description string.
172 In some cases, multiple levels of menus may be described.
173 A single vector slot containing nil indicates the start of a submenu.
174 A single vector slot containing lambda indicates the end of a submenu.
175 The submenu follows a menu item which is the way to reach the submenu.
177 A single vector slot containing quote indicates that the
178 following items should appear on the right of a dialog box.
180 Using a Lisp vector to hold this information while we decode it
181 takes care of protecting all the data from GC. */
183 #define MENU_ITEMS_PANE_NAME 1
184 #define MENU_ITEMS_PANE_PREFIX 2
185 #define MENU_ITEMS_PANE_LENGTH 3
189 MENU_ITEMS_ITEM_NAME
= 0,
190 MENU_ITEMS_ITEM_ENABLE
,
191 MENU_ITEMS_ITEM_VALUE
,
192 MENU_ITEMS_ITEM_EQUIV_KEY
,
193 MENU_ITEMS_ITEM_DEFINITION
,
194 MENU_ITEMS_ITEM_TYPE
,
195 MENU_ITEMS_ITEM_SELECTED
,
196 MENU_ITEMS_ITEM_HELP
,
197 MENU_ITEMS_ITEM_LENGTH
200 static Lisp_Object menu_items
;
202 /* If non-nil, means that the global vars defined here are already in use.
203 Used to detect cases where we try to re-enter this non-reentrant code. */
204 static Lisp_Object menu_items_inuse
;
206 /* Number of slots currently allocated in menu_items. */
207 static int menu_items_allocated
;
209 /* This is the index in menu_items of the first empty slot. */
210 static int menu_items_used
;
212 /* The number of panes currently recorded in menu_items,
213 excluding those within submenus. */
214 static int menu_items_n_panes
;
216 /* Current depth within submenus. */
217 static int menu_items_submenu_depth
;
219 /* Flag which when set indicates a dialog or menu has been posted by
220 Xt on behalf of one of the widget sets. */
221 static int popup_activated_flag
;
223 static int next_menubar_widget_id
;
225 /* This is set nonzero after the user activates the menu bar, and set
226 to zero again after the menu bars are redisplayed by prepare_menu_bar.
227 While it is nonzero, all calls to set_frame_menubar go deep.
229 I don't understand why this is needed, but it does seem to be
230 needed on Motif, according to Marcus Daniels <marcus@sysc.pdx.edu>. */
232 int pending_menu_activation
;
236 /* Return the frame whose ->output_data.x->id equals ID, or 0 if none. */
238 static struct frame
*
239 menubar_id_to_frame (id
)
242 Lisp_Object tail
, frame
;
245 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
248 if (!GC_FRAMEP (frame
))
251 if (!FRAME_WINDOW_P (f
))
253 if (f
->output_data
.x
->id
== id
)
261 /* Initialize the menu_items structure if we haven't already done so.
262 Also mark it as currently empty. */
267 if (NILP (menu_items
))
269 menu_items_allocated
= 60;
270 menu_items
= Fmake_vector (make_number (menu_items_allocated
), Qnil
);
273 if (!NILP (menu_items_inuse
))
274 error ("Trying to use a menu from within a menu-entry");
275 menu_items_inuse
= Qt
;
277 menu_items_n_panes
= 0;
278 menu_items_submenu_depth
= 0;
281 /* Call at the end of generating the data in menu_items. */
289 unuse_menu_items (dummy
)
292 return menu_items_inuse
= Qnil
;
295 /* Call when finished using the data for the current menu
299 discard_menu_items ()
301 /* Free the structure if it is especially large.
302 Otherwise, hold on to it, to save time. */
303 if (menu_items_allocated
> 200)
306 menu_items_allocated
= 0;
308 xassert (NILP (menu_items_inuse
));
311 /* Make the menu_items vector twice as large. */
317 int old_size
= menu_items_allocated
;
320 menu_items_allocated
*= 2;
321 menu_items
= Fmake_vector (make_number (menu_items_allocated
), Qnil
);
322 bcopy (XVECTOR (old
)->contents
, XVECTOR (menu_items
)->contents
,
323 old_size
* sizeof (Lisp_Object
));
326 /* Begin a submenu. */
329 push_submenu_start ()
331 if (menu_items_used
+ 1 > menu_items_allocated
)
334 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qnil
;
335 menu_items_submenu_depth
++;
343 if (menu_items_used
+ 1 > menu_items_allocated
)
346 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qlambda
;
347 menu_items_submenu_depth
--;
350 /* Indicate boundary between left and right. */
353 push_left_right_boundary ()
355 if (menu_items_used
+ 1 > menu_items_allocated
)
358 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qquote
;
361 /* Start a new menu pane in menu_items.
362 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */
365 push_menu_pane (name
, prefix_vec
)
366 Lisp_Object name
, prefix_vec
;
368 if (menu_items_used
+ MENU_ITEMS_PANE_LENGTH
> menu_items_allocated
)
371 if (menu_items_submenu_depth
== 0)
372 menu_items_n_panes
++;
373 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qt
;
374 XVECTOR (menu_items
)->contents
[menu_items_used
++] = name
;
375 XVECTOR (menu_items
)->contents
[menu_items_used
++] = prefix_vec
;
378 /* Push one menu item into the current pane. NAME is the string to
379 display. ENABLE if non-nil means this item can be selected. KEY
380 is the key generated by choosing this item, or nil if this item
381 doesn't really have a definition. DEF is the definition of this
382 item. EQUIV is the textual description of the keyboard equivalent
383 for this item (or nil if none). TYPE is the type of this menu
384 item, one of nil, `toggle' or `radio'. */
387 push_menu_item (name
, enable
, key
, def
, equiv
, type
, selected
, help
)
388 Lisp_Object name
, enable
, key
, def
, equiv
, type
, selected
, help
;
390 if (menu_items_used
+ MENU_ITEMS_ITEM_LENGTH
> menu_items_allocated
)
393 XVECTOR (menu_items
)->contents
[menu_items_used
++] = name
;
394 XVECTOR (menu_items
)->contents
[menu_items_used
++] = enable
;
395 XVECTOR (menu_items
)->contents
[menu_items_used
++] = key
;
396 XVECTOR (menu_items
)->contents
[menu_items_used
++] = equiv
;
397 XVECTOR (menu_items
)->contents
[menu_items_used
++] = def
;
398 XVECTOR (menu_items
)->contents
[menu_items_used
++] = type
;
399 XVECTOR (menu_items
)->contents
[menu_items_used
++] = selected
;
400 XVECTOR (menu_items
)->contents
[menu_items_used
++] = help
;
403 /* Look through KEYMAPS, a vector of keymaps that is NMAPS long,
404 and generate menu panes for them in menu_items.
405 If NOTREAL is nonzero,
406 don't bother really computing whether an item is enabled. */
409 keymap_panes (keymaps
, nmaps
, notreal
)
410 Lisp_Object
*keymaps
;
418 /* Loop over the given keymaps, making a pane for each map.
419 But don't make a pane that is empty--ignore that map instead.
420 P is the number of panes we have made so far. */
421 for (mapno
= 0; mapno
< nmaps
; mapno
++)
422 single_keymap_panes (keymaps
[mapno
],
423 Fkeymap_prompt (keymaps
[mapno
]), Qnil
, notreal
, 10);
425 finish_menu_items ();
428 /* Args passed between single_keymap_panes and single_menu_item. */
431 Lisp_Object pending_maps
;
432 int maxdepth
, notreal
;
436 static void single_menu_item
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
,
439 /* This is a recursive subroutine of keymap_panes.
440 It handles one keymap, KEYMAP.
441 The other arguments are passed along
442 or point to local variables of the previous function.
443 If NOTREAL is nonzero, only check for equivalent key bindings, don't
444 evaluate expressions in menu items and don't make any menu.
446 If we encounter submenus deeper than MAXDEPTH levels, ignore them. */
449 single_keymap_panes (keymap
, pane_name
, prefix
, notreal
, maxdepth
)
451 Lisp_Object pane_name
;
459 skp
.pending_maps
= Qnil
;
460 skp
.maxdepth
= maxdepth
;
461 skp
.notreal
= notreal
;
467 push_menu_pane (pane_name
, prefix
);
470 /* Remember index for first item in this pane so we can go back and
471 add a prefix when (if) we see the first button. After that, notbuttons
472 is set to 0, to mark that we have seen a button and all non button
473 items need a prefix. */
474 skp
.notbuttons
= menu_items_used
;
477 GCPRO1 (skp
.pending_maps
);
478 map_keymap (keymap
, single_menu_item
, Qnil
, &skp
, 1);
481 /* Process now any submenus which want to be panes at this level. */
482 while (CONSP (skp
.pending_maps
))
484 Lisp_Object elt
, eltcdr
, string
;
485 elt
= XCAR (skp
.pending_maps
);
487 string
= XCAR (eltcdr
);
488 /* We no longer discard the @ from the beginning of the string here.
489 Instead, we do this in xmenu_show. */
490 single_keymap_panes (Fcar (elt
), string
,
491 XCDR (eltcdr
), notreal
, maxdepth
- 1);
492 skp
.pending_maps
= XCDR (skp
.pending_maps
);
496 /* This is a subroutine of single_keymap_panes that handles one
498 KEY is a key in a keymap and ITEM is its binding.
499 SKP->PENDING_MAPS_PTR is a list of keymaps waiting to be made into
501 If SKP->NOTREAL is nonzero, only check for equivalent key bindings, don't
502 evaluate expressions in menu items and don't make any menu.
503 If we encounter submenus deeper than SKP->MAXDEPTH levels, ignore them.
504 SKP->NOTBUTTONS is only used when simulating toggle boxes and radio
505 buttons. It keeps track of if we have seen a button in this menu or
509 single_menu_item (key
, item
, dummy
, skp_v
)
510 Lisp_Object key
, item
, dummy
;
513 Lisp_Object map
, item_string
, enabled
;
514 struct gcpro gcpro1
, gcpro2
;
516 struct skp
*skp
= skp_v
;
518 /* Parse the menu item and leave the result in item_properties. */
520 res
= parse_menu_item (item
, skp
->notreal
, 0);
523 return; /* Not a menu item. */
525 map
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_MAP
];
529 /* We don't want to make a menu, just traverse the keymaps to
530 precompute equivalent key bindings. */
532 single_keymap_panes (map
, Qnil
, key
, 1, skp
->maxdepth
- 1);
536 enabled
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_ENABLE
];
537 item_string
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_NAME
];
539 if (!NILP (map
) && SREF (item_string
, 0) == '@')
542 /* An enabled separate pane. Remember this to handle it later. */
543 skp
->pending_maps
= Fcons (Fcons (map
, Fcons (item_string
, key
)),
549 /* Simulate radio buttons and toggle boxes by putting a prefix in
552 Lisp_Object prefix
= Qnil
;
553 Lisp_Object type
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_TYPE
];
557 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_SELECTED
];
560 /* The first button. Line up previous items in this menu. */
562 int index
= skp
->notbuttons
; /* Index for first item this menu. */
565 while (index
< menu_items_used
)
568 = XVECTOR (menu_items
)->contents
[index
+ MENU_ITEMS_ITEM_NAME
];
572 submenu
++; /* Skip sub menu. */
574 else if (EQ (tem
, Qlambda
))
577 submenu
--; /* End sub menu. */
579 else if (EQ (tem
, Qt
))
580 index
+= 3; /* Skip new pane marker. */
581 else if (EQ (tem
, Qquote
))
582 index
++; /* Skip a left, right divider. */
585 if (!submenu
&& SREF (tem
, 0) != '\0'
586 && SREF (tem
, 0) != '-')
587 XVECTOR (menu_items
)->contents
[index
+ MENU_ITEMS_ITEM_NAME
]
588 = concat2 (build_string (" "), tem
);
589 index
+= MENU_ITEMS_ITEM_LENGTH
;
595 /* Calculate prefix, if any, for this item. */
596 if (EQ (type
, QCtoggle
))
597 prefix
= build_string (NILP (selected
) ? "[ ] " : "[X] ");
598 else if (EQ (type
, QCradio
))
599 prefix
= build_string (NILP (selected
) ? "( ) " : "(*) ");
601 /* Not a button. If we have earlier buttons, then we need a prefix. */
602 else if (!skp
->notbuttons
&& SREF (item_string
, 0) != '\0'
603 && SREF (item_string
, 0) != '-')
604 prefix
= build_string (" ");
607 item_string
= concat2 (prefix
, item_string
);
609 #endif /* not HAVE_BOXES */
611 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
613 /* Indicate visually that this is a submenu. */
614 item_string
= concat2 (item_string
, build_string (" >"));
617 push_menu_item (item_string
, enabled
, key
,
618 XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_DEF
],
619 XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_KEYEQ
],
620 XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_TYPE
],
621 XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_SELECTED
],
622 XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_HELP
]);
624 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
625 /* Display a submenu using the toolkit. */
626 if (! (NILP (map
) || NILP (enabled
)))
628 push_submenu_start ();
629 single_keymap_panes (map
, Qnil
, key
, 0, skp
->maxdepth
- 1);
635 /* Push all the panes and items of a menu described by the
636 alist-of-alists MENU.
637 This handles old-fashioned calls to x-popup-menu. */
647 for (tail
= menu
; !NILP (tail
); tail
= Fcdr (tail
))
649 Lisp_Object elt
, pane_name
, pane_data
;
651 pane_name
= Fcar (elt
);
652 CHECK_STRING (pane_name
);
653 push_menu_pane (ENCODE_MENU_STRING (pane_name
), Qnil
);
654 pane_data
= Fcdr (elt
);
655 CHECK_CONS (pane_data
);
656 list_of_items (pane_data
);
659 finish_menu_items ();
662 /* Push the items in a single pane defined by the alist PANE. */
668 Lisp_Object tail
, item
, item1
;
670 for (tail
= pane
; !NILP (tail
); tail
= Fcdr (tail
))
674 push_menu_item (ENCODE_MENU_STRING (item
), Qnil
, Qnil
, Qt
,
675 Qnil
, Qnil
, Qnil
, Qnil
);
676 else if (NILP (item
))
677 push_left_right_boundary ();
682 CHECK_STRING (item1
);
683 push_menu_item (ENCODE_MENU_STRING (item1
), Qt
, Fcdr (item
),
684 Qt
, Qnil
, Qnil
, Qnil
, Qnil
);
689 #ifdef HAVE_X_WINDOWS
690 /* Return the mouse position in *X and *Y. The coordinates are window
691 relative for the edit window in frame F.
692 This is for Fx_popup_menu. The mouse_position_hook can not
693 be used for X, as it returns window relative coordinates
694 for the window where the mouse is in. This could be the menu bar,
695 the scroll bar or the edit window. Fx_popup_menu needs to be
696 sure it is the edit window. */
698 mouse_position_for_popup (f
, x
, y
)
703 Window root
, dummy_window
;
708 XQueryPointer (FRAME_X_DISPLAY (f
),
709 DefaultRootWindow (FRAME_X_DISPLAY (f
)),
711 /* The root window which contains the pointer. */
714 /* Window pointer is on, not used */
717 /* The position on that root window. */
720 /* x/y in dummy_window coordinates, not used. */
723 /* Modifier keys and pointer buttons, about which
725 (unsigned int *) &dummy
);
729 /* xmenu_show expects window coordinates, not root window
730 coordinates. Translate. */
731 *x
-= f
->left_pos
+ FRAME_OUTER_TO_INNER_DIFF_X (f
);
732 *y
-= f
->top_pos
+ FRAME_OUTER_TO_INNER_DIFF_Y (f
);
735 #endif /* HAVE_X_WINDOWS */
737 DEFUN ("x-popup-menu", Fx_popup_menu
, Sx_popup_menu
, 2, 2, 0,
738 doc
: /* Pop up a deck-of-cards menu and return user's selection.
739 POSITION is a position specification. This is either a mouse button event
740 or a list ((XOFFSET YOFFSET) WINDOW)
741 where XOFFSET and YOFFSET are positions in pixels from the top left
742 corner of WINDOW's frame. (WINDOW may be a frame object instead of a window.)
743 This controls the position of the center of the first line
744 in the first pane of the menu, not 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
);
1117 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
1119 /* Loop in Xt until the menu pulldown or dialog popup has been
1120 popped down (deactivated). This is used for x-popup-menu
1121 and x-popup-dialog; it is not used for the menu bar.
1123 If DO_TIMERS is nonzero, run timers.
1124 If DOWN_ON_KEYPRESS is nonzero, pop down if a key is pressed.
1126 NOTE: All calls to popup_get_selection should be protected
1127 with BLOCK_INPUT, UNBLOCK_INPUT wrappers. */
1129 #ifdef USE_X_TOOLKIT
1131 popup_get_selection (initial_event
, dpyinfo
, id
, do_timers
, down_on_keypress
)
1132 XEvent
*initial_event
;
1133 struct x_display_info
*dpyinfo
;
1136 int down_on_keypress
;
1140 while (popup_activated_flag
)
1142 /* If we have no events to run, consider timers. */
1143 if (do_timers
&& !XtAppPending (Xt_app_con
))
1148 event
= *initial_event
;
1152 XtAppNextEvent (Xt_app_con
, &event
);
1154 /* Make sure we don't consider buttons grabbed after menu goes.
1155 And make sure to deactivate for any ButtonRelease,
1156 even if XtDispatchEvent doesn't do that. */
1157 if (event
.type
== ButtonRelease
1158 && dpyinfo
->display
== event
.xbutton
.display
)
1160 dpyinfo
->grabbed
&= ~(1 << event
.xbutton
.button
);
1161 #ifdef USE_MOTIF /* Pretending that the event came from a
1162 Btn1Down seems the only way to convince Motif to
1163 activate its callbacks; setting the XmNmenuPost
1164 isn't working. --marcus@sysc.pdx.edu. */
1165 event
.xbutton
.button
= 1;
1166 /* Motif only pops down menus when no Ctrl, Alt or Mod
1167 key is pressed and the button is released. So reset key state
1168 so Motif thinks this is the case. */
1169 event
.xbutton
.state
= 0;
1172 /* If the user presses a key that doesn't go to the menu,
1173 deactivate the menu.
1174 The user is likely to do that if we get wedged.
1175 All toolkits now pop down menus on ESC.
1176 For dialogs however, the focus may not be on the dialog, so
1177 in that case, we pop down. */
1178 else if (event
.type
== KeyPress
1180 && dpyinfo
->display
== event
.xbutton
.display
)
1182 KeySym keysym
= XLookupKeysym (&event
.xkey
, 0);
1183 if (!IsModifierKey (keysym
)
1184 && x_any_window_to_frame (dpyinfo
, event
.xany
.window
) != NULL
)
1185 popup_activated_flag
= 0;
1188 x_dispatch_event (&event
, event
.xany
.display
);
1192 #endif /* USE_X_TOOLKIT */
1195 /* Loop util popup_activated_flag is set to zero in a callback.
1196 Used for popup menus and dialogs. */
1198 popup_widget_loop ()
1200 ++popup_activated_flag
;
1202 /* Process events in the Gtk event loop until done. */
1203 while (popup_activated_flag
)
1205 gtk_main_iteration ();
1210 /* Activate the menu bar of frame F.
1211 This is called from keyboard.c when it gets the
1212 MENU_BAR_ACTIVATE_EVENT out of the Emacs event queue.
1214 To activate the menu bar, we use the X button-press event
1215 that was saved in saved_menu_event.
1216 That makes the toolkit do its thing.
1218 But first we recompute the menu bar contents (the whole tree).
1220 The reason for saving the button event until here, instead of
1221 passing it to the toolkit right away, is that we can safely
1222 execute Lisp code. */
1225 x_activate_menubar (f
)
1228 if (!f
->output_data
.x
->saved_menu_event
->type
)
1232 if (! xg_win_to_widget (FRAME_X_DISPLAY (f
),
1233 f
->output_data
.x
->saved_menu_event
->xany
.window
))
1237 set_frame_menubar (f
, 0, 1);
1240 XPutBackEvent (f
->output_data
.x
->display_info
->display
,
1241 f
->output_data
.x
->saved_menu_event
);
1242 popup_activated_flag
= 1;
1244 XtDispatchEvent (f
->output_data
.x
->saved_menu_event
);
1248 if (f
->output_data
.x
->saved_menu_event
->type
== ButtonRelease
)
1249 pending_menu_activation
= 1;
1252 /* Ignore this if we get it a second time. */
1253 f
->output_data
.x
->saved_menu_event
->type
= 0;
1256 /* Detect if a dialog or menu has been posted. */
1261 return popup_activated_flag
;
1264 /* This callback is invoked when the user selects a menubar cascade
1265 pushbutton, but before the pulldown menu is posted. */
1269 popup_activate_callback (widget
, id
, client_data
)
1272 XtPointer client_data
;
1274 popup_activated_flag
= 1;
1278 /* This callback is invoked when a dialog or menu is finished being
1279 used and has been unposted. */
1283 popup_deactivate_callback (widget
, client_data
)
1285 gpointer client_data
;
1287 popup_activated_flag
= 0;
1291 popup_deactivate_callback (widget
, id
, client_data
)
1294 XtPointer client_data
;
1296 popup_activated_flag
= 0;
1301 /* Function that finds the frame for WIDGET and shows the HELP text
1303 F is the frame if known, or NULL if not known. */
1305 show_help_event (f
, widget
, help
)
1307 xt_or_gtk_widget widget
;
1314 XSETFRAME (frame
, f
);
1315 kbd_buffer_store_help_event (frame
, help
);
1319 #if 0 /* This code doesn't do anything useful. ++kfs */
1320 /* WIDGET is the popup menu. It's parent is the frame's
1321 widget. See which frame that is. */
1322 xt_or_gtk_widget frame_widget
= XtParent (widget
);
1325 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
1327 frame
= XCAR (tail
);
1328 if (GC_FRAMEP (frame
)
1329 && (f
= XFRAME (frame
),
1330 FRAME_X_P (f
) && f
->output_data
.x
->widget
== frame_widget
))
1334 show_help_echo (help
, Qnil
, Qnil
, Qnil
, 1);
1338 /* Callback called when menu items are highlighted/unhighlighted
1339 while moving the mouse over them. WIDGET is the menu bar or menu
1340 popup widget. ID is its LWLIB_ID. CALL_DATA contains a pointer to
1341 the data structure for the menu item, or null in case of
1346 menu_highlight_callback (widget
, call_data
)
1350 xg_menu_item_cb_data
*cb_data
;
1353 cb_data
= (xg_menu_item_cb_data
*) g_object_get_data (G_OBJECT (widget
),
1355 if (! cb_data
) return;
1357 help
= call_data
? cb_data
->help
: Qnil
;
1359 /* If popup_activated_flag is greater than 1 we are in a popup menu.
1360 Don't show help for them, they won't appear before the
1361 popup is popped down. */
1362 if (popup_activated_flag
<= 1)
1363 show_help_event (cb_data
->cl_data
->f
, widget
, help
);
1367 menu_highlight_callback (widget
, id
, call_data
)
1375 widget_value
*wv
= (widget_value
*) call_data
;
1377 help
= wv
? wv
->help
: Qnil
;
1379 /* Determine the frame for the help event. */
1380 f
= menubar_id_to_frame (id
);
1382 show_help_event (f
, widget
, help
);
1386 /* Find the menu selection and store it in the keyboard buffer.
1387 F is the frame the menu is on.
1388 MENU_BAR_ITEMS_USED is the length of VECTOR.
1389 VECTOR is an array of menu events for the whole menu.
1392 find_and_call_menu_selection (f
, menu_bar_items_used
, vector
, client_data
)
1394 int menu_bar_items_used
;
1398 Lisp_Object prefix
, entry
;
1399 Lisp_Object
*subprefix_stack
;
1400 int submenu_depth
= 0;
1404 subprefix_stack
= (Lisp_Object
*) alloca (menu_bar_items_used
* sizeof (Lisp_Object
));
1408 while (i
< menu_bar_items_used
)
1410 if (EQ (XVECTOR (vector
)->contents
[i
], Qnil
))
1412 subprefix_stack
[submenu_depth
++] = prefix
;
1416 else if (EQ (XVECTOR (vector
)->contents
[i
], Qlambda
))
1418 prefix
= subprefix_stack
[--submenu_depth
];
1421 else if (EQ (XVECTOR (vector
)->contents
[i
], Qt
))
1423 prefix
= XVECTOR (vector
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
1424 i
+= MENU_ITEMS_PANE_LENGTH
;
1428 entry
= XVECTOR (vector
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
1429 /* The EMACS_INT cast avoids a warning. There's no problem
1430 as long as pointers have enough bits to hold small integers. */
1431 if ((int) (EMACS_INT
) client_data
== i
)
1434 struct input_event buf
;
1438 XSETFRAME (frame
, f
);
1439 buf
.kind
= MENU_BAR_EVENT
;
1440 buf
.frame_or_window
= frame
;
1442 kbd_buffer_store_event (&buf
);
1444 for (j
= 0; j
< submenu_depth
; j
++)
1445 if (!NILP (subprefix_stack
[j
]))
1447 buf
.kind
= MENU_BAR_EVENT
;
1448 buf
.frame_or_window
= frame
;
1449 buf
.arg
= subprefix_stack
[j
];
1450 kbd_buffer_store_event (&buf
);
1455 buf
.kind
= MENU_BAR_EVENT
;
1456 buf
.frame_or_window
= frame
;
1458 kbd_buffer_store_event (&buf
);
1461 buf
.kind
= MENU_BAR_EVENT
;
1462 buf
.frame_or_window
= frame
;
1464 kbd_buffer_store_event (&buf
);
1468 i
+= MENU_ITEMS_ITEM_LENGTH
;
1475 /* Gtk calls callbacks just because we tell it what item should be
1476 selected in a radio group. If this variable is set to a non-zero
1477 value, we are creating menus and don't want callbacks right now.
1479 static int xg_crazy_callback_abort
;
1481 /* This callback is called from the menu bar pulldown menu
1482 when the user makes a selection.
1483 Figure out what the user chose
1484 and put the appropriate events into the keyboard buffer. */
1486 menubar_selection_callback (widget
, client_data
)
1488 gpointer client_data
;
1490 xg_menu_item_cb_data
*cb_data
= (xg_menu_item_cb_data
*) client_data
;
1492 if (xg_crazy_callback_abort
)
1495 if (! cb_data
|| ! cb_data
->cl_data
|| ! cb_data
->cl_data
->f
)
1498 find_and_call_menu_selection (cb_data
->cl_data
->f
,
1499 cb_data
->cl_data
->menu_bar_items_used
,
1500 cb_data
->cl_data
->menu_bar_vector
,
1501 cb_data
->call_data
);
1504 #else /* not USE_GTK */
1506 /* This callback is called from the menu bar pulldown menu
1507 when the user makes a selection.
1508 Figure out what the user chose
1509 and put the appropriate events into the keyboard buffer. */
1511 menubar_selection_callback (widget
, id
, client_data
)
1514 XtPointer client_data
;
1518 f
= menubar_id_to_frame (id
);
1521 find_and_call_menu_selection (f
, f
->menu_bar_items_used
,
1522 f
->menu_bar_vector
, client_data
);
1524 #endif /* not USE_GTK */
1526 /* Allocate a widget_value, blocking input. */
1529 xmalloc_widget_value ()
1531 widget_value
*value
;
1534 value
= malloc_widget_value ();
1540 /* This recursively calls free_widget_value on the tree of widgets.
1541 It must free all data that was malloc'ed for these widget_values.
1542 In Emacs, many slots are pointers into the data of Lisp_Strings, and
1543 must be left alone. */
1546 free_menubar_widget_value_tree (wv
)
1551 wv
->name
= wv
->value
= wv
->key
= (char *) 0xDEADBEEF;
1553 if (wv
->contents
&& (wv
->contents
!= (widget_value
*)1))
1555 free_menubar_widget_value_tree (wv
->contents
);
1556 wv
->contents
= (widget_value
*) 0xDEADBEEF;
1560 free_menubar_widget_value_tree (wv
->next
);
1561 wv
->next
= (widget_value
*) 0xDEADBEEF;
1564 free_widget_value (wv
);
1568 /* Set up data in menu_items for a menu bar item
1569 whose event type is ITEM_KEY (with string ITEM_NAME)
1570 and whose contents come from the list of keymaps MAPS. */
1573 parse_single_submenu (item_key
, item_name
, maps
)
1574 Lisp_Object item_key
, item_name
, maps
;
1578 Lisp_Object
*mapvec
;
1580 int top_level_items
= 0;
1582 length
= Flength (maps
);
1583 len
= XINT (length
);
1585 /* Convert the list MAPS into a vector MAPVEC. */
1586 mapvec
= (Lisp_Object
*) alloca (len
* sizeof (Lisp_Object
));
1587 for (i
= 0; i
< len
; i
++)
1589 mapvec
[i
] = Fcar (maps
);
1593 /* Loop over the given keymaps, making a pane for each map.
1594 But don't make a pane that is empty--ignore that map instead. */
1595 for (i
= 0; i
< len
; i
++)
1597 if (!KEYMAPP (mapvec
[i
]))
1599 /* Here we have a command at top level in the menu bar
1600 as opposed to a submenu. */
1601 top_level_items
= 1;
1602 push_menu_pane (Qnil
, Qnil
);
1603 push_menu_item (item_name
, Qt
, item_key
, mapvec
[i
],
1604 Qnil
, Qnil
, Qnil
, Qnil
);
1609 prompt
= Fkeymap_prompt (mapvec
[i
]);
1610 single_keymap_panes (mapvec
[i
],
1611 !NILP (prompt
) ? prompt
: item_name
,
1616 return top_level_items
;
1619 /* Create a tree of widget_value objects
1620 representing the panes and items
1621 in menu_items starting at index START, up to index END. */
1623 static widget_value
*
1624 digest_single_submenu (start
, end
, top_level_items
)
1625 int start
, end
, top_level_items
;
1627 widget_value
*wv
, *prev_wv
, *save_wv
, *first_wv
;
1629 int submenu_depth
= 0;
1630 widget_value
**submenu_stack
;
1633 = (widget_value
**) alloca (menu_items_used
* sizeof (widget_value
*));
1634 wv
= xmalloc_widget_value ();
1638 wv
->button_type
= BUTTON_TYPE_NONE
;
1644 /* Loop over all panes and items made by the preceding call
1645 to parse_single_submenu and construct a tree of widget_value objects.
1646 Ignore the panes and items used by previous calls to
1647 digest_single_submenu, even though those are also in menu_items. */
1651 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
1653 submenu_stack
[submenu_depth
++] = save_wv
;
1658 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
1661 save_wv
= submenu_stack
[--submenu_depth
];
1664 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
)
1665 && submenu_depth
!= 0)
1666 i
+= MENU_ITEMS_PANE_LENGTH
;
1667 /* Ignore a nil in the item list.
1668 It's meaningful only for dialog boxes. */
1669 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
1671 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
1673 /* Create a new pane. */
1674 Lisp_Object pane_name
, prefix
;
1677 pane_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_NAME
];
1678 prefix
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
1680 #ifndef HAVE_MULTILINGUAL_MENU
1681 if (STRINGP (pane_name
) && STRING_MULTIBYTE (pane_name
))
1683 pane_name
= ENCODE_SYSTEM (pane_name
);
1684 AREF (menu_items
, i
+ MENU_ITEMS_PANE_NAME
) = pane_name
;
1687 pane_string
= (NILP (pane_name
)
1688 ? "" : (char *) SDATA (pane_name
));
1689 /* If there is just one top-level pane, put all its items directly
1690 under the top-level menu. */
1691 if (menu_items_n_panes
== 1)
1694 /* If the pane has a meaningful name,
1695 make the pane a top-level menu item
1696 with its items as a submenu beneath it. */
1697 if (strcmp (pane_string
, ""))
1699 wv
= xmalloc_widget_value ();
1703 first_wv
->contents
= wv
;
1704 wv
->name
= pane_string
;
1705 /* Ignore the @ that means "separate pane".
1706 This is a kludge, but this isn't worth more time. */
1707 if (!NILP (prefix
) && wv
->name
[0] == '@')
1711 wv
->button_type
= BUTTON_TYPE_NONE
;
1716 i
+= MENU_ITEMS_PANE_LENGTH
;
1720 /* Create a new item within current pane. */
1721 Lisp_Object item_name
, enable
, descrip
, def
, type
, selected
;
1724 item_name
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
);
1725 enable
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_ENABLE
);
1726 descrip
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
);
1727 def
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_DEFINITION
);
1728 type
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_TYPE
);
1729 selected
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_SELECTED
);
1730 help
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_HELP
);
1732 #ifndef HAVE_MULTILINGUAL_MENU
1733 if (STRING_MULTIBYTE (item_name
))
1735 item_name
= ENCODE_MENU_STRING (item_name
);
1736 AREF (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
) = item_name
;
1739 if (STRINGP (descrip
) && STRING_MULTIBYTE (descrip
))
1741 descrip
= ENCODE_MENU_STRING (descrip
);
1742 AREF (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
) = descrip
;
1744 #endif /* not HAVE_MULTILINGUAL_MENU */
1746 wv
= xmalloc_widget_value ();
1750 save_wv
->contents
= wv
;
1752 wv
->name
= (char *) SDATA (item_name
);
1753 if (!NILP (descrip
))
1754 wv
->key
= (char *) SDATA (descrip
);
1756 /* The EMACS_INT cast avoids a warning. There's no problem
1757 as long as pointers have enough bits to hold small integers. */
1758 wv
->call_data
= (!NILP (def
) ? (void *) (EMACS_INT
) i
: 0);
1759 wv
->enabled
= !NILP (enable
);
1762 wv
->button_type
= BUTTON_TYPE_NONE
;
1763 else if (EQ (type
, QCradio
))
1764 wv
->button_type
= BUTTON_TYPE_RADIO
;
1765 else if (EQ (type
, QCtoggle
))
1766 wv
->button_type
= BUTTON_TYPE_TOGGLE
;
1770 wv
->selected
= !NILP (selected
);
1771 if (! STRINGP (help
))
1778 i
+= MENU_ITEMS_ITEM_LENGTH
;
1782 /* If we have just one "menu item"
1783 that was originally a button, return it by itself. */
1784 if (top_level_items
&& first_wv
->contents
&& first_wv
->contents
->next
== 0)
1786 wv
= first_wv
->contents
;
1787 free_widget_value (first_wv
);
1794 /* Recompute all the widgets of frame F, when the menu bar has been
1795 changed. Value is non-zero if widgets were updated. */
1798 update_frame_menubar (f
)
1802 return xg_update_frame_menubar (f
);
1804 struct x_output
*x
= f
->output_data
.x
;
1807 if (!x
->menubar_widget
|| XtIsManaged (x
->menubar_widget
))
1811 /* Save the size of the frame because the pane widget doesn't accept
1812 to resize itself. So force it. */
1813 columns
= FRAME_COLS (f
);
1814 rows
= FRAME_LINES (f
);
1816 /* Do the voodoo which means "I'm changing lots of things, don't try
1817 to refigure sizes until I'm done." */
1818 lw_refigure_widget (x
->column_widget
, False
);
1820 /* The order in which children are managed is the top to bottom
1821 order in which they are displayed in the paned window. First,
1822 remove the text-area widget. */
1823 XtUnmanageChild (x
->edit_widget
);
1825 /* Remove the menubar that is there now, and put up the menubar that
1827 XtManageChild (x
->menubar_widget
);
1828 XtMapWidget (x
->menubar_widget
);
1829 XtVaSetValues (x
->menubar_widget
, XtNmappedWhenManaged
, 1, NULL
);
1831 /* Re-manage the text-area widget, and then thrash the sizes. */
1832 XtManageChild (x
->edit_widget
);
1833 lw_refigure_widget (x
->column_widget
, True
);
1835 /* Force the pane widget to resize itself with the right values. */
1836 EmacsFrameSetCharSize (x
->edit_widget
, columns
, rows
);
1842 /* Set the contents of the menubar widgets of frame F.
1843 The argument FIRST_TIME is currently ignored;
1844 it is set the first time this is called, from initialize_frame_menubar. */
1847 set_frame_menubar (f
, first_time
, deep_p
)
1852 xt_or_gtk_widget menubar_widget
= f
->output_data
.x
->menubar_widget
;
1853 #ifdef USE_X_TOOLKIT
1857 widget_value
*wv
, *first_wv
, *prev_wv
= 0;
1859 int *submenu_start
, *submenu_end
;
1860 int *submenu_top_level_items
, *submenu_n_panes
;
1863 XSETFRAME (Vmenu_updating_frame
, f
);
1865 #ifdef USE_X_TOOLKIT
1866 if (f
->output_data
.x
->id
== 0)
1867 f
->output_data
.x
->id
= next_menubar_widget_id
++;
1868 id
= f
->output_data
.x
->id
;
1871 if (! menubar_widget
)
1873 else if (pending_menu_activation
&& !deep_p
)
1875 /* Make the first call for any given frame always go deep. */
1876 else if (!f
->output_data
.x
->saved_menu_event
&& !deep_p
)
1879 f
->output_data
.x
->saved_menu_event
= (XEvent
*)xmalloc (sizeof (XEvent
));
1880 f
->output_data
.x
->saved_menu_event
->type
= 0;
1884 /* If we have detached menus, we must update deep so detached menus
1885 also gets updated. */
1886 deep_p
= deep_p
|| xg_have_tear_offs ();
1891 /* Make a widget-value tree representing the entire menu trees. */
1893 struct buffer
*prev
= current_buffer
;
1895 int specpdl_count
= SPECPDL_INDEX ();
1896 int previous_menu_items_used
= f
->menu_bar_items_used
;
1897 Lisp_Object
*previous_items
1898 = (Lisp_Object
*) alloca (previous_menu_items_used
1899 * sizeof (Lisp_Object
));
1901 /* If we are making a new widget, its contents are empty,
1902 do always reinitialize them. */
1903 if (! menubar_widget
)
1904 previous_menu_items_used
= 0;
1906 buffer
= XWINDOW (FRAME_SELECTED_WINDOW (f
))->buffer
;
1907 specbind (Qinhibit_quit
, Qt
);
1908 /* Don't let the debugger step into this code
1909 because it is not reentrant. */
1910 specbind (Qdebug_on_next_call
, Qnil
);
1912 record_unwind_protect (Fset_match_data
, Fmatch_data (Qnil
, Qnil
));
1913 record_unwind_protect (unuse_menu_items
, Qnil
);
1914 if (NILP (Voverriding_local_map_menu_flag
))
1916 specbind (Qoverriding_terminal_local_map
, Qnil
);
1917 specbind (Qoverriding_local_map
, Qnil
);
1920 set_buffer_internal_1 (XBUFFER (buffer
));
1922 /* Run the Lucid hook. */
1923 safe_run_hooks (Qactivate_menubar_hook
);
1925 /* If it has changed current-menubar from previous value,
1926 really recompute the menubar from the value. */
1927 if (! NILP (Vlucid_menu_bar_dirty_flag
))
1928 call0 (Qrecompute_lucid_menubar
);
1929 safe_run_hooks (Qmenu_bar_update_hook
);
1930 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
1932 items
= FRAME_MENU_BAR_ITEMS (f
);
1934 /* Save the frame's previous menu bar contents data. */
1935 if (previous_menu_items_used
)
1936 bcopy (XVECTOR (f
->menu_bar_vector
)->contents
, previous_items
,
1937 previous_menu_items_used
* sizeof (Lisp_Object
));
1939 /* Fill in menu_items with the current menu bar contents.
1940 This can evaluate Lisp code. */
1941 menu_items
= f
->menu_bar_vector
;
1942 menu_items_allocated
= VECTORP (menu_items
) ? ASIZE (menu_items
) : 0;
1943 submenu_start
= (int *) alloca (XVECTOR (items
)->size
* sizeof (int *));
1944 submenu_end
= (int *) alloca (XVECTOR (items
)->size
* sizeof (int *));
1945 submenu_n_panes
= (int *) alloca (XVECTOR (items
)->size
* sizeof (int));
1946 submenu_top_level_items
1947 = (int *) alloca (XVECTOR (items
)->size
* sizeof (int *));
1949 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
1951 Lisp_Object key
, string
, maps
;
1955 key
= XVECTOR (items
)->contents
[i
];
1956 string
= XVECTOR (items
)->contents
[i
+ 1];
1957 maps
= XVECTOR (items
)->contents
[i
+ 2];
1961 submenu_start
[i
] = menu_items_used
;
1963 menu_items_n_panes
= 0;
1964 submenu_top_level_items
[i
]
1965 = parse_single_submenu (key
, string
, maps
);
1966 submenu_n_panes
[i
] = menu_items_n_panes
;
1968 submenu_end
[i
] = menu_items_used
;
1971 finish_menu_items ();
1973 /* Convert menu_items into widget_value trees
1974 to display the menu. This cannot evaluate Lisp code. */
1976 wv
= xmalloc_widget_value ();
1977 wv
->name
= "menubar";
1980 wv
->button_type
= BUTTON_TYPE_NONE
;
1984 for (i
= 0; i
< last_i
; i
+= 4)
1986 menu_items_n_panes
= submenu_n_panes
[i
];
1987 wv
= digest_single_submenu (submenu_start
[i
], submenu_end
[i
],
1988 submenu_top_level_items
[i
]);
1992 first_wv
->contents
= wv
;
1993 /* Don't set wv->name here; GC during the loop might relocate it. */
1995 wv
->button_type
= BUTTON_TYPE_NONE
;
1999 set_buffer_internal_1 (prev
);
2000 unbind_to (specpdl_count
, Qnil
);
2002 /* If there has been no change in the Lisp-level contents
2003 of the menu bar, skip redisplaying it. Just exit. */
2005 for (i
= 0; i
< previous_menu_items_used
; i
++)
2006 if (menu_items_used
== i
2007 || (!EQ (previous_items
[i
], XVECTOR (menu_items
)->contents
[i
])))
2009 if (i
== menu_items_used
&& i
== previous_menu_items_used
&& i
!= 0)
2011 free_menubar_widget_value_tree (first_wv
);
2012 discard_menu_items ();
2017 /* Now GC cannot happen during the lifetime of the widget_value,
2018 so it's safe to store data from a Lisp_String. */
2019 wv
= first_wv
->contents
;
2020 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
2023 string
= XVECTOR (items
)->contents
[i
+ 1];
2026 wv
->name
= (char *) SDATA (string
);
2030 f
->menu_bar_vector
= menu_items
;
2031 f
->menu_bar_items_used
= menu_items_used
;
2032 discard_menu_items ();
2036 /* Make a widget-value tree containing
2037 just the top level menu bar strings. */
2039 wv
= xmalloc_widget_value ();
2040 wv
->name
= "menubar";
2043 wv
->button_type
= BUTTON_TYPE_NONE
;
2047 items
= FRAME_MENU_BAR_ITEMS (f
);
2048 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
2052 string
= XVECTOR (items
)->contents
[i
+ 1];
2056 wv
= xmalloc_widget_value ();
2057 wv
->name
= (char *) SDATA (string
);
2060 wv
->button_type
= BUTTON_TYPE_NONE
;
2062 /* This prevents lwlib from assuming this
2063 menu item is really supposed to be empty. */
2064 /* The EMACS_INT cast avoids a warning.
2065 This value just has to be different from small integers. */
2066 wv
->call_data
= (void *) (EMACS_INT
) (-1);
2071 first_wv
->contents
= wv
;
2075 /* Forget what we thought we knew about what is in the
2076 detailed contents of the menu bar menus.
2077 Changing the top level always destroys the contents. */
2078 f
->menu_bar_items_used
= 0;
2081 /* Create or update the menu bar widget. */
2086 xg_crazy_callback_abort
= 1;
2089 /* The fourth arg is DEEP_P, which says to consider the entire
2090 menu trees we supply, rather than just the menu bar item names. */
2091 xg_modify_menubar_widgets (menubar_widget
,
2095 G_CALLBACK (menubar_selection_callback
),
2096 G_CALLBACK (popup_deactivate_callback
),
2097 G_CALLBACK (menu_highlight_callback
));
2101 GtkWidget
*wvbox
= f
->output_data
.x
->vbox_widget
;
2104 = xg_create_widget ("menubar", "menubar", f
, first_wv
,
2105 G_CALLBACK (menubar_selection_callback
),
2106 G_CALLBACK (popup_deactivate_callback
),
2107 G_CALLBACK (menu_highlight_callback
));
2109 f
->output_data
.x
->menubar_widget
= menubar_widget
;
2113 #else /* not USE_GTK */
2116 /* Disable resizing (done for Motif!) */
2117 lw_allow_resizing (f
->output_data
.x
->widget
, False
);
2119 /* The third arg is DEEP_P, which says to consider the entire
2120 menu trees we supply, rather than just the menu bar item names. */
2121 lw_modify_all_widgets (id
, first_wv
, deep_p
);
2123 /* Re-enable the edit widget to resize. */
2124 lw_allow_resizing (f
->output_data
.x
->widget
, True
);
2128 menubar_widget
= lw_create_widget ("menubar", "menubar", id
, first_wv
,
2129 f
->output_data
.x
->column_widget
,
2131 popup_activate_callback
,
2132 menubar_selection_callback
,
2133 popup_deactivate_callback
,
2134 menu_highlight_callback
);
2135 f
->output_data
.x
->menubar_widget
= menubar_widget
;
2140 = (f
->output_data
.x
->menubar_widget
2141 ? (f
->output_data
.x
->menubar_widget
->core
.height
2142 + f
->output_data
.x
->menubar_widget
->core
.border_width
)
2145 #if 0 /* Experimentally, we now get the right results
2146 for -geometry -0-0 without this. 24 Aug 96, rms. */
2148 if (FRAME_EXTERNAL_MENU_BAR (f
))
2151 XtVaGetValues (f
->output_data
.x
->column_widget
,
2152 XtNinternalBorderWidth
, &ibw
, NULL
);
2153 menubar_size
+= ibw
;
2155 #endif /* USE_LUCID */
2158 f
->output_data
.x
->menubar_height
= menubar_size
;
2160 #endif /* not USE_GTK */
2162 free_menubar_widget_value_tree (first_wv
);
2163 update_frame_menubar (f
);
2166 xg_crazy_callback_abort
= 0;
2172 /* Called from Fx_create_frame to create the initial menubar of a frame
2173 before it is mapped, so that the window is mapped with the menubar already
2174 there instead of us tacking it on later and thrashing the window after it
2178 initialize_frame_menubar (f
)
2181 /* This function is called before the first chance to redisplay
2182 the frame. It has to be, so the frame will have the right size. */
2183 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
2184 set_frame_menubar (f
, 1, 1);
2188 /* Get rid of the menu bar of frame F, and free its storage.
2189 This is used when deleting a frame, and when turning off the menu bar.
2190 For GTK this function is in gtkutil.c. */
2194 free_frame_menubar (f
)
2197 Widget menubar_widget
;
2199 menubar_widget
= f
->output_data
.x
->menubar_widget
;
2201 f
->output_data
.x
->menubar_height
= 0;
2206 /* Removing the menu bar magically changes the shell widget's x
2207 and y position of (0, 0) which, when the menu bar is turned
2208 on again, leads to pull-down menuss appearing in strange
2209 positions near the upper-left corner of the display. This
2210 happens only with some window managers like twm and ctwm,
2211 but not with other like Motif's mwm or kwm, because the
2212 latter generate ConfigureNotify events when the menu bar
2213 is switched off, which fixes the shell position. */
2214 Position x0
, y0
, x1
, y1
;
2220 if (f
->output_data
.x
->widget
)
2221 XtVaGetValues (f
->output_data
.x
->widget
, XtNx
, &x0
, XtNy
, &y0
, NULL
);
2224 lw_destroy_all_widgets ((LWLIB_ID
) f
->output_data
.x
->id
);
2225 f
->output_data
.x
->menubar_widget
= NULL
;
2228 if (f
->output_data
.x
->widget
)
2230 XtVaGetValues (f
->output_data
.x
->widget
, XtNx
, &x1
, XtNy
, &y1
, NULL
);
2231 if (x1
== 0 && y1
== 0)
2232 XtVaSetValues (f
->output_data
.x
->widget
, XtNx
, x0
, XtNy
, y0
, NULL
);
2239 #endif /* not USE_GTK */
2241 #endif /* USE_X_TOOLKIT || USE_GTK */
2243 /* xmenu_show actually displays a menu using the panes and items in menu_items
2244 and returns the value selected from it.
2245 There are two versions of xmenu_show, one for Xt and one for Xlib.
2246 Both assume input is blocked by the caller. */
2248 /* F is the frame the menu is for.
2249 X and Y are the frame-relative specified position,
2250 relative to the inside upper left corner of the frame F.
2251 FOR_CLICK is nonzero if this menu was invoked for a mouse click.
2252 KEYMAPS is 1 if this menu was specified with keymaps;
2253 in that case, we return a list containing the chosen item's value
2254 and perhaps also the pane's prefix.
2255 TITLE is the specified menu title.
2256 ERROR is a place to store an error message string in case of failure.
2257 (We return nil on failure, but the value doesn't actually matter.) */
2259 #if defined (USE_X_TOOLKIT) || defined (USE_GTK)
2261 /* The item selected in the popup menu. */
2262 static Lisp_Object
*volatile menu_item_selection
;
2266 /* Used when position a popup menu. See menu_position_func and
2267 create_and_show_popup_menu below. */
2268 struct next_popup_x_y
2275 /* The menu position function to use if we are not putting a popup
2276 menu where the pointer is.
2277 MENU is the menu to pop up.
2278 X and Y shall on exit contain x/y where the menu shall pop up.
2279 PUSH_IN is not documented in the GTK manual.
2280 USER_DATA is any data passed in when calling gtk_menu_popup.
2281 Here it points to a struct next_popup_x_y where the coordinates
2282 to store in *X and *Y are as well as the frame for the popup.
2284 Here only X and Y are used. */
2286 menu_position_func (menu
, x
, y
, push_in
, user_data
)
2293 struct next_popup_x_y
* data
= (struct next_popup_x_y
*)user_data
;
2295 int disp_width
= FRAME_X_DISPLAY_INFO (data
->f
)->width
;
2296 int disp_height
= FRAME_X_DISPLAY_INFO (data
->f
)->height
;
2301 /* Check if there is room for the menu. If not, adjust x/y so that
2302 the menu is fully visible. */
2303 gtk_widget_size_request (GTK_WIDGET (menu
), &req
);
2304 if (data
->x
+ req
.width
> disp_width
)
2305 *x
-= data
->x
+ req
.width
- disp_width
;
2306 if (data
->y
+ req
.height
> disp_height
)
2307 *y
-= data
->y
+ req
.height
- disp_height
;
2311 popup_selection_callback (widget
, client_data
)
2313 gpointer client_data
;
2315 xg_menu_item_cb_data
*cb_data
= (xg_menu_item_cb_data
*) client_data
;
2317 if (xg_crazy_callback_abort
) return;
2318 if (cb_data
) menu_item_selection
= (Lisp_Object
*) cb_data
->call_data
;
2321 /* Pop up the menu for frame F defined by FIRST_WV at X/Y and loop until the
2323 menu_item_selection will be set to the selection. */
2325 create_and_show_popup_menu (f
, first_wv
, x
, y
, for_click
)
2327 widget_value
*first_wv
;
2334 GtkMenuPositionFunc pos_func
= 0; /* Pop up at pointer. */
2335 struct next_popup_x_y popup_x_y
;
2337 xg_crazy_callback_abort
= 1;
2338 menu
= xg_create_widget ("popup", first_wv
->name
, f
, first_wv
,
2339 G_CALLBACK (popup_selection_callback
),
2340 G_CALLBACK (popup_deactivate_callback
),
2341 G_CALLBACK (menu_highlight_callback
));
2342 xg_crazy_callback_abort
= 0;
2344 for (i
= 0; i
< 5; i
++)
2345 if (FRAME_X_DISPLAY_INFO (f
)->grabbed
& (1 << i
))
2350 /* Not invoked by a click. pop up at x/y. */
2351 pos_func
= menu_position_func
;
2353 /* Adjust coordinates to be root-window-relative. */
2354 x
+= f
->left_pos
+ FRAME_OUTER_TO_INNER_DIFF_X (f
);
2355 y
+= f
->top_pos
+ FRAME_OUTER_TO_INNER_DIFF_Y (f
);
2362 /* Display the menu. */
2363 gtk_widget_show_all (menu
);
2364 gtk_menu_popup (GTK_MENU (menu
), 0, 0, pos_func
, &popup_x_y
, i
, 0);
2366 /* Set this to one. popup_widget_loop increases it by one, so it becomes
2367 two. show_help_echo uses this to detect popup menus. */
2368 popup_activated_flag
= 1;
2369 /* Process events that apply to the menu. */
2370 popup_widget_loop ();
2372 gtk_widget_destroy (menu
);
2374 /* Must reset this manually because the button release event is not passed
2375 to Emacs event loop. */
2376 FRAME_X_DISPLAY_INFO (f
)->grabbed
= 0;
2379 #else /* not USE_GTK */
2381 /* We need a unique id for each widget handled by the Lucid Widget
2384 For the main windows, and popup menus, we use this counter,
2385 which we increment each time after use. This starts from 1<<16.
2387 For menu bars, we use numbers starting at 0, counted in
2388 next_menubar_widget_id. */
2389 LWLIB_ID widget_id_tick
;
2392 popup_selection_callback (widget
, id
, client_data
)
2395 XtPointer client_data
;
2397 menu_item_selection
= (Lisp_Object
*) client_data
;
2400 /* Pop up the menu for frame F defined by FIRST_WV at X/Y and loop until the
2402 menu_item_selection will be set to the selection. */
2404 create_and_show_popup_menu (f
, first_wv
, x
, y
, for_click
)
2406 widget_value
*first_wv
;
2414 XButtonPressedEvent dummy
;
2418 menu_id
= widget_id_tick
++;
2419 menu
= lw_create_widget ("popup", first_wv
->name
, menu_id
, first_wv
,
2420 f
->output_data
.x
->widget
, 1, 0,
2421 popup_selection_callback
,
2422 popup_deactivate_callback
,
2423 menu_highlight_callback
);
2425 dummy
.type
= ButtonPress
;
2427 dummy
.send_event
= 0;
2428 dummy
.display
= FRAME_X_DISPLAY (f
);
2429 dummy
.time
= CurrentTime
;
2430 dummy
.root
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
2431 dummy
.window
= dummy
.root
;
2432 dummy
.subwindow
= dummy
.root
;
2436 /* Adjust coordinates to be root-window-relative. */
2437 x
+= f
->left_pos
+ FRAME_OUTER_TO_INNER_DIFF_X (f
);
2438 y
+= f
->top_pos
+ FRAME_OUTER_TO_INNER_DIFF_Y (f
);
2445 for (i
= 0; i
< 5; i
++)
2446 if (FRAME_X_DISPLAY_INFO (f
)->grabbed
& (1 << i
))
2449 /* Don't allow any geometry request from the user. */
2450 XtSetArg (av
[ac
], XtNgeometry
, 0); ac
++;
2451 XtSetValues (menu
, av
, ac
);
2453 /* Display the menu. */
2454 lw_popup_menu (menu
, (XEvent
*) &dummy
);
2455 popup_activated_flag
= 1;
2457 /* Process events that apply to the menu. */
2458 popup_get_selection ((XEvent
*) 0, FRAME_X_DISPLAY_INFO (f
), menu_id
, 0, 0);
2460 /* fp turned off the following statement and wrote a comment
2461 that it is unnecessary--that the menu has already disappeared.
2462 Nowadays the menu disappears ok, all right, but
2463 we need to delete the widgets or multiple ones will pile up. */
2464 lw_destroy_all_widgets (menu_id
);
2467 #endif /* not USE_GTK */
2470 xmenu_show (f
, x
, y
, for_click
, keymaps
, title
, error
)
2480 widget_value
*wv
, *save_wv
= 0, *first_wv
= 0, *prev_wv
= 0;
2481 widget_value
**submenu_stack
2482 = (widget_value
**) alloca (menu_items_used
* sizeof (widget_value
*));
2483 Lisp_Object
*subprefix_stack
2484 = (Lisp_Object
*) alloca (menu_items_used
* sizeof (Lisp_Object
));
2485 int submenu_depth
= 0;
2491 if (menu_items_used
<= MENU_ITEMS_PANE_LENGTH
)
2493 *error
= "Empty menu";
2497 /* Create a tree of widget_value objects
2498 representing the panes and their items. */
2499 wv
= xmalloc_widget_value ();
2503 wv
->button_type
= BUTTON_TYPE_NONE
;
2508 /* Loop over all panes and items, filling in the tree. */
2510 while (i
< menu_items_used
)
2512 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
2514 submenu_stack
[submenu_depth
++] = save_wv
;
2520 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
2523 save_wv
= submenu_stack
[--submenu_depth
];
2527 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
)
2528 && submenu_depth
!= 0)
2529 i
+= MENU_ITEMS_PANE_LENGTH
;
2530 /* Ignore a nil in the item list.
2531 It's meaningful only for dialog boxes. */
2532 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
2534 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2536 /* Create a new pane. */
2537 Lisp_Object pane_name
, prefix
;
2540 pane_name
= AREF (menu_items
, i
+ MENU_ITEMS_PANE_NAME
);
2541 prefix
= AREF (menu_items
, i
+ MENU_ITEMS_PANE_PREFIX
);
2543 #ifndef HAVE_MULTILINGUAL_MENU
2544 if (STRINGP (pane_name
) && STRING_MULTIBYTE (pane_name
))
2546 pane_name
= ENCODE_SYSTEM (pane_name
);
2547 AREF (menu_items
, i
+ MENU_ITEMS_PANE_NAME
) = pane_name
;
2550 pane_string
= (NILP (pane_name
)
2551 ? "" : (char *) SDATA (pane_name
));
2552 /* If there is just one top-level pane, put all its items directly
2553 under the top-level menu. */
2554 if (menu_items_n_panes
== 1)
2557 /* If the pane has a meaningful name,
2558 make the pane a top-level menu item
2559 with its items as a submenu beneath it. */
2560 if (!keymaps
&& strcmp (pane_string
, ""))
2562 wv
= xmalloc_widget_value ();
2566 first_wv
->contents
= wv
;
2567 wv
->name
= pane_string
;
2568 if (keymaps
&& !NILP (prefix
))
2572 wv
->button_type
= BUTTON_TYPE_NONE
;
2577 else if (first_pane
)
2583 i
+= MENU_ITEMS_PANE_LENGTH
;
2587 /* Create a new item within current pane. */
2588 Lisp_Object item_name
, enable
, descrip
, def
, type
, selected
, help
;
2589 item_name
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
);
2590 enable
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_ENABLE
);
2591 descrip
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
);
2592 def
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_DEFINITION
);
2593 type
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_TYPE
);
2594 selected
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_SELECTED
);
2595 help
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_HELP
);
2597 #ifndef HAVE_MULTILINGUAL_MENU
2598 if (STRINGP (item_name
) && STRING_MULTIBYTE (item_name
))
2600 item_name
= ENCODE_MENU_STRING (item_name
);
2601 AREF (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
) = item_name
;
2604 if (STRINGP (descrip
) && STRING_MULTIBYTE (descrip
))
2606 descrip
= ENCODE_MENU_STRING (descrip
);
2607 AREF (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
) = descrip
;
2609 #endif /* not HAVE_MULTILINGUAL_MENU */
2611 wv
= xmalloc_widget_value ();
2615 save_wv
->contents
= wv
;
2616 wv
->name
= (char *) SDATA (item_name
);
2617 if (!NILP (descrip
))
2618 wv
->key
= (char *) SDATA (descrip
);
2620 /* If this item has a null value,
2621 make the call_data null so that it won't display a box
2622 when the mouse is on it. */
2624 = (!NILP (def
) ? (void *) &XVECTOR (menu_items
)->contents
[i
] : 0);
2625 wv
->enabled
= !NILP (enable
);
2628 wv
->button_type
= BUTTON_TYPE_NONE
;
2629 else if (EQ (type
, QCtoggle
))
2630 wv
->button_type
= BUTTON_TYPE_TOGGLE
;
2631 else if (EQ (type
, QCradio
))
2632 wv
->button_type
= BUTTON_TYPE_RADIO
;
2636 wv
->selected
= !NILP (selected
);
2638 if (! STRINGP (help
))
2645 i
+= MENU_ITEMS_ITEM_LENGTH
;
2649 /* Deal with the title, if it is non-nil. */
2652 widget_value
*wv_title
= xmalloc_widget_value ();
2653 widget_value
*wv_sep1
= xmalloc_widget_value ();
2654 widget_value
*wv_sep2
= xmalloc_widget_value ();
2656 wv_sep2
->name
= "--";
2657 wv_sep2
->next
= first_wv
->contents
;
2658 wv_sep2
->help
= Qnil
;
2660 wv_sep1
->name
= "--";
2661 wv_sep1
->next
= wv_sep2
;
2662 wv_sep1
->help
= Qnil
;
2664 #ifndef HAVE_MULTILINGUAL_MENU
2665 if (STRING_MULTIBYTE (title
))
2666 title
= ENCODE_MENU_STRING (title
);
2669 wv_title
->name
= (char *) SDATA (title
);
2670 wv_title
->enabled
= TRUE
;
2671 wv_title
->button_type
= BUTTON_TYPE_NONE
;
2672 wv_title
->next
= wv_sep1
;
2673 wv_title
->help
= Qnil
;
2674 first_wv
->contents
= wv_title
;
2677 /* No selection has been chosen yet. */
2678 menu_item_selection
= 0;
2680 /* Actually create and show the menu until popped down. */
2681 create_and_show_popup_menu (f
, first_wv
, x
, y
, for_click
);
2683 /* Free the widget_value objects we used to specify the contents. */
2684 free_menubar_widget_value_tree (first_wv
);
2686 /* Find the selected item, and its pane, to return
2687 the proper value. */
2688 if (menu_item_selection
!= 0)
2690 Lisp_Object prefix
, entry
;
2692 prefix
= entry
= Qnil
;
2694 while (i
< menu_items_used
)
2696 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
2698 subprefix_stack
[submenu_depth
++] = prefix
;
2702 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
2704 prefix
= subprefix_stack
[--submenu_depth
];
2707 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2710 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2711 i
+= MENU_ITEMS_PANE_LENGTH
;
2713 /* Ignore a nil in the item list.
2714 It's meaningful only for dialog boxes. */
2715 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
2720 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
2721 if (menu_item_selection
== &XVECTOR (menu_items
)->contents
[i
])
2727 entry
= Fcons (entry
, Qnil
);
2729 entry
= Fcons (prefix
, entry
);
2730 for (j
= submenu_depth
- 1; j
>= 0; j
--)
2731 if (!NILP (subprefix_stack
[j
]))
2732 entry
= Fcons (subprefix_stack
[j
], entry
);
2736 i
+= MENU_ITEMS_ITEM_LENGTH
;
2746 dialog_selection_callback (widget
, client_data
)
2748 gpointer client_data
;
2750 /* The EMACS_INT cast avoids a warning. There's no problem
2751 as long as pointers have enough bits to hold small integers. */
2752 if ((int) (EMACS_INT
) client_data
!= -1)
2753 menu_item_selection
= (Lisp_Object
*) client_data
;
2755 popup_activated_flag
= 0;
2758 /* Pop up the dialog for frame F defined by FIRST_WV and loop until the
2760 menu_item_selection will be set to the selection. */
2762 create_and_show_dialog (f
, first_wv
)
2764 widget_value
*first_wv
;
2768 menu
= xg_create_widget ("dialog", first_wv
->name
, f
, first_wv
,
2769 G_CALLBACK (dialog_selection_callback
),
2770 G_CALLBACK (popup_deactivate_callback
),
2775 /* Display the menu. */
2776 gtk_widget_show_all (menu
);
2778 /* Process events that apply to the menu. */
2779 popup_widget_loop ();
2781 gtk_widget_destroy (menu
);
2785 #else /* not USE_GTK */
2787 dialog_selection_callback (widget
, id
, client_data
)
2790 XtPointer client_data
;
2792 /* The EMACS_INT cast avoids a warning. There's no problem
2793 as long as pointers have enough bits to hold small integers. */
2794 if ((int) (EMACS_INT
) client_data
!= -1)
2795 menu_item_selection
= (Lisp_Object
*) client_data
;
2798 lw_destroy_all_widgets (id
);
2800 popup_activated_flag
= 0;
2804 /* ARG is the LWLIB ID of the dialog box, represented
2805 as a Lisp object as (HIGHPART . LOWPART). */
2808 xdialog_show_unwind (arg
)
2811 LWLIB_ID id
= (XINT (XCAR (arg
)) << 4 * sizeof (LWLIB_ID
)
2812 | XINT (XCDR (arg
)));
2814 lw_destroy_all_widgets (id
);
2816 popup_activated_flag
= 0;
2821 /* Pop up the dialog for frame F defined by FIRST_WV and loop until the
2823 menu_item_selection will be set to the selection. */
2825 create_and_show_dialog (f
, first_wv
)
2827 widget_value
*first_wv
;
2831 dialog_id
= widget_id_tick
++;
2832 lw_create_widget (first_wv
->name
, "dialog", dialog_id
, first_wv
,
2833 f
->output_data
.x
->widget
, 1, 0,
2834 dialog_selection_callback
, 0, 0);
2835 lw_modify_all_widgets (dialog_id
, first_wv
->contents
, True
);
2837 /* Display the dialog box. */
2838 lw_pop_up_all_widgets (dialog_id
);
2839 popup_activated_flag
= 1;
2841 /* Process events that apply to the dialog box.
2842 Also handle timers. */
2844 int count
= SPECPDL_INDEX ();
2845 int fact
= 4 * sizeof (LWLIB_ID
);
2847 /* xdialog_show_unwind is responsible for popping the dialog box down. */
2848 record_unwind_protect (xdialog_show_unwind
,
2849 Fcons (make_number (dialog_id
>> (fact
)),
2850 make_number (dialog_id
& ~(-1 << (fact
)))));
2852 popup_get_selection ((XEvent
*) 0, FRAME_X_DISPLAY_INFO (f
),
2855 unbind_to (count
, Qnil
);
2859 #endif /* not USE_GTK */
2861 static char * button_names
[] = {
2862 "button1", "button2", "button3", "button4", "button5",
2863 "button6", "button7", "button8", "button9", "button10" };
2866 xdialog_show (f
, keymaps
, title
, error
)
2872 int i
, nb_buttons
=0;
2873 char dialog_name
[6];
2875 widget_value
*wv
, *first_wv
= 0, *prev_wv
= 0;
2877 /* Number of elements seen so far, before boundary. */
2879 /* 1 means we've seen the boundary between left-hand elts and right-hand. */
2880 int boundary_seen
= 0;
2884 if (menu_items_n_panes
> 1)
2886 *error
= "Multiple panes in dialog box";
2890 /* Create a tree of widget_value objects
2891 representing the text label and buttons. */
2893 Lisp_Object pane_name
, prefix
;
2895 pane_name
= XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_NAME
];
2896 prefix
= XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_PREFIX
];
2897 pane_string
= (NILP (pane_name
)
2898 ? "" : (char *) SDATA (pane_name
));
2899 prev_wv
= xmalloc_widget_value ();
2900 prev_wv
->value
= pane_string
;
2901 if (keymaps
&& !NILP (prefix
))
2903 prev_wv
->enabled
= 1;
2904 prev_wv
->name
= "message";
2905 prev_wv
->help
= Qnil
;
2908 /* Loop over all panes and items, filling in the tree. */
2909 i
= MENU_ITEMS_PANE_LENGTH
;
2910 while (i
< menu_items_used
)
2913 /* Create a new item within current pane. */
2914 Lisp_Object item_name
, enable
, descrip
;
2915 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
2916 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
2918 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
2920 if (NILP (item_name
))
2922 free_menubar_widget_value_tree (first_wv
);
2923 *error
= "Submenu in dialog items";
2926 if (EQ (item_name
, Qquote
))
2928 /* This is the boundary between left-side elts
2929 and right-side elts. Stop incrementing right_count. */
2934 if (nb_buttons
>= 9)
2936 free_menubar_widget_value_tree (first_wv
);
2937 *error
= "Too many dialog items";
2941 wv
= xmalloc_widget_value ();
2943 wv
->name
= (char *) button_names
[nb_buttons
];
2944 if (!NILP (descrip
))
2945 wv
->key
= (char *) SDATA (descrip
);
2946 wv
->value
= (char *) SDATA (item_name
);
2947 wv
->call_data
= (void *) &XVECTOR (menu_items
)->contents
[i
];
2948 wv
->enabled
= !NILP (enable
);
2952 if (! boundary_seen
)
2956 i
+= MENU_ITEMS_ITEM_LENGTH
;
2959 /* If the boundary was not specified,
2960 by default put half on the left and half on the right. */
2961 if (! boundary_seen
)
2962 left_count
= nb_buttons
- nb_buttons
/ 2;
2964 wv
= xmalloc_widget_value ();
2965 wv
->name
= dialog_name
;
2967 /* Dialog boxes use a really stupid name encoding
2968 which specifies how many buttons to use
2969 and how many buttons are on the right.
2970 The Q means something also. */
2971 dialog_name
[0] = 'Q';
2972 dialog_name
[1] = '0' + nb_buttons
;
2973 dialog_name
[2] = 'B';
2974 dialog_name
[3] = 'R';
2975 /* Number of buttons to put on the right. */
2976 dialog_name
[4] = '0' + nb_buttons
- left_count
;
2978 wv
->contents
= first_wv
;
2982 /* No selection has been chosen yet. */
2983 menu_item_selection
= 0;
2985 /* Actually create and show the dialog. */
2986 create_and_show_dialog (f
, first_wv
);
2988 /* Free the widget_value objects we used to specify the contents. */
2989 free_menubar_widget_value_tree (first_wv
);
2991 /* Find the selected item, and its pane, to return
2992 the proper value. */
2993 if (menu_item_selection
!= 0)
2999 while (i
< menu_items_used
)
3003 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
3006 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
3007 i
+= MENU_ITEMS_PANE_LENGTH
;
3009 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
3011 /* This is the boundary between left-side elts and
3018 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
3019 if (menu_item_selection
== &XVECTOR (menu_items
)->contents
[i
])
3023 entry
= Fcons (entry
, Qnil
);
3025 entry
= Fcons (prefix
, entry
);
3029 i
+= MENU_ITEMS_ITEM_LENGTH
;
3037 #else /* not USE_X_TOOLKIT && not USE_GTK */
3039 /* The frame of the last activated non-toolkit menu bar.
3040 Used to generate menu help events. */
3042 static struct frame
*menu_help_frame
;
3045 /* Show help HELP_STRING, or clear help if HELP_STRING is null.
3047 PANE is the pane number, and ITEM is the menu item number in
3048 the menu (currently not used).
3050 This cannot be done with generating a HELP_EVENT because
3051 XMenuActivate contains a loop that doesn't let Emacs process
3055 menu_help_callback (help_string
, pane
, item
)
3059 extern Lisp_Object Qmenu_item
;
3060 Lisp_Object
*first_item
;
3061 Lisp_Object pane_name
;
3062 Lisp_Object menu_object
;
3064 first_item
= XVECTOR (menu_items
)->contents
;
3065 if (EQ (first_item
[0], Qt
))
3066 pane_name
= first_item
[MENU_ITEMS_PANE_NAME
];
3067 else if (EQ (first_item
[0], Qquote
))
3068 /* This shouldn't happen, see xmenu_show. */
3069 pane_name
= empty_string
;
3071 pane_name
= first_item
[MENU_ITEMS_ITEM_NAME
];
3073 /* (menu-item MENU-NAME PANE-NUMBER) */
3074 menu_object
= Fcons (Qmenu_item
,
3076 Fcons (make_number (pane
), Qnil
)));
3077 show_help_echo (help_string
? build_string (help_string
) : Qnil
,
3078 Qnil
, menu_object
, make_number (item
), 1);
3083 xmenu_show (f
, x
, y
, for_click
, keymaps
, title
, error
)
3093 int pane
, selidx
, lpane
, status
;
3094 Lisp_Object entry
, pane_prefix
;
3096 int ulx
, uly
, width
, height
;
3097 int dispwidth
, dispheight
;
3101 unsigned int dummy_uint
;
3104 if (menu_items_n_panes
== 0)
3107 if (menu_items_used
<= MENU_ITEMS_PANE_LENGTH
)
3109 *error
= "Empty menu";
3113 /* Figure out which root window F is on. */
3114 XGetGeometry (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), &root
,
3115 &dummy_int
, &dummy_int
, &dummy_uint
, &dummy_uint
,
3116 &dummy_uint
, &dummy_uint
);
3118 /* Make the menu on that window. */
3119 menu
= XMenuCreate (FRAME_X_DISPLAY (f
), root
, "emacs");
3122 *error
= "Can't create menu";
3126 #ifdef HAVE_X_WINDOWS
3127 /* Adjust coordinates to relative to the outer (window manager) window. */
3130 int win_x
= 0, win_y
= 0;
3132 /* Find the position of the outside upper-left corner of
3133 the inner window, with respect to the outer window. */
3134 if (f
->output_data
.x
->parent_desc
!= FRAME_X_DISPLAY_INFO (f
)->root_window
)
3137 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
3139 /* From-window, to-window. */
3140 f
->output_data
.x
->window_desc
,
3141 f
->output_data
.x
->parent_desc
,
3143 /* From-position, to-position. */
3144 0, 0, &win_x
, &win_y
,
3146 /* Child of window. */
3153 #endif /* HAVE_X_WINDOWS */
3155 /* Adjust coordinates to be root-window-relative. */
3159 /* Create all the necessary panes and their items. */
3161 while (i
< menu_items_used
)
3163 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
3165 /* Create a new pane. */
3166 Lisp_Object pane_name
, prefix
;
3169 pane_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_NAME
];
3170 prefix
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
3171 pane_string
= (NILP (pane_name
)
3172 ? "" : (char *) SDATA (pane_name
));
3173 if (keymaps
&& !NILP (prefix
))
3176 lpane
= XMenuAddPane (FRAME_X_DISPLAY (f
), menu
, pane_string
, TRUE
);
3177 if (lpane
== XM_FAILURE
)
3179 XMenuDestroy (FRAME_X_DISPLAY (f
), menu
);
3180 *error
= "Can't create pane";
3183 i
+= MENU_ITEMS_PANE_LENGTH
;
3185 /* Find the width of the widest item in this pane. */
3188 while (j
< menu_items_used
)
3191 item
= XVECTOR (menu_items
)->contents
[j
];
3199 width
= SBYTES (item
);
3200 if (width
> maxwidth
)
3203 j
+= MENU_ITEMS_ITEM_LENGTH
;
3206 /* Ignore a nil in the item list.
3207 It's meaningful only for dialog boxes. */
3208 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
3212 /* Create a new item within current pane. */
3213 Lisp_Object item_name
, enable
, descrip
, help
;
3214 unsigned char *item_data
;
3217 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
3218 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
3220 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
3221 help
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_HELP
];
3222 help_string
= STRINGP (help
) ? SDATA (help
) : NULL
;
3224 if (!NILP (descrip
))
3226 int gap
= maxwidth
- SBYTES (item_name
);
3229 spacer
= Fmake_string (make_number (gap
), make_number (' '));
3230 item_name
= concat2 (item_name
, spacer
);
3231 item_name
= concat2 (item_name
, descrip
);
3232 item_data
= SDATA (item_name
);
3234 /* if alloca is fast, use that to make the space,
3235 to reduce gc needs. */
3237 = (unsigned char *) alloca (maxwidth
3238 + SBYTES (descrip
) + 1);
3239 bcopy (SDATA (item_name
), item_data
,
3240 SBYTES (item_name
));
3241 for (j
= SCHARS (item_name
); j
< maxwidth
; j
++)
3243 bcopy (SDATA (descrip
), item_data
+ j
,
3245 item_data
[j
+ SBYTES (descrip
)] = 0;
3249 item_data
= SDATA (item_name
);
3251 if (XMenuAddSelection (FRAME_X_DISPLAY (f
),
3252 menu
, lpane
, 0, item_data
,
3253 !NILP (enable
), help_string
)
3256 XMenuDestroy (FRAME_X_DISPLAY (f
), menu
);
3257 *error
= "Can't add selection to menu";
3260 i
+= MENU_ITEMS_ITEM_LENGTH
;
3264 /* All set and ready to fly. */
3265 XMenuRecompute (FRAME_X_DISPLAY (f
), menu
);
3266 dispwidth
= DisplayWidth (FRAME_X_DISPLAY (f
), FRAME_X_SCREEN_NUMBER (f
));
3267 dispheight
= DisplayHeight (FRAME_X_DISPLAY (f
), FRAME_X_SCREEN_NUMBER (f
));
3268 x
= min (x
, dispwidth
);
3269 y
= min (y
, dispheight
);
3272 XMenuLocate (FRAME_X_DISPLAY (f
), menu
, 0, 0, x
, y
,
3273 &ulx
, &uly
, &width
, &height
);
3274 if (ulx
+width
> dispwidth
)
3276 x
-= (ulx
+ width
) - dispwidth
;
3277 ulx
= dispwidth
- width
;
3279 if (uly
+height
> dispheight
)
3281 y
-= (uly
+ height
) - dispheight
;
3282 uly
= dispheight
- height
;
3284 if (ulx
< 0) x
-= ulx
;
3285 if (uly
< 0) y
-= uly
;
3287 XMenuSetAEQ (menu
, TRUE
);
3288 XMenuSetFreeze (menu
, TRUE
);
3291 /* Help display under X won't work because XMenuActivate contains
3292 a loop that doesn't give Emacs a chance to process it. */
3293 menu_help_frame
= f
;
3294 status
= XMenuActivate (FRAME_X_DISPLAY (f
), menu
, &pane
, &selidx
,
3295 x
, y
, ButtonReleaseMask
, &datap
,
3296 menu_help_callback
);
3299 #ifdef HAVE_X_WINDOWS
3300 /* Assume the mouse has moved out of the X window.
3301 If it has actually moved in, we will get an EnterNotify. */
3302 x_mouse_leave (FRAME_X_DISPLAY_INFO (f
));
3309 fprintf (stderr
, "pane= %d line = %d\n", panes
, selidx
);
3312 /* Find the item number SELIDX in pane number PANE. */
3314 while (i
< menu_items_used
)
3316 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
3320 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
3322 i
+= MENU_ITEMS_PANE_LENGTH
;
3331 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
3334 entry
= Fcons (entry
, Qnil
);
3335 if (!NILP (pane_prefix
))
3336 entry
= Fcons (pane_prefix
, entry
);
3342 i
+= MENU_ITEMS_ITEM_LENGTH
;
3348 *error
= "Can't activate menu";
3354 XMenuDestroy (FRAME_X_DISPLAY (f
), menu
);
3356 #ifdef HAVE_X_WINDOWS
3357 /* State that no mouse buttons are now held.
3358 (The oldXMenu code doesn't track this info for us.)
3359 That is not necessarily true, but the fiction leads to reasonable
3360 results, and it is a pain to ask which are actually held now. */
3361 FRAME_X_DISPLAY_INFO (f
)->grabbed
= 0;
3367 #endif /* not USE_X_TOOLKIT */
3369 #endif /* HAVE_MENUS */
3374 staticpro (&menu_items
);
3376 menu_items_inuse
= Qnil
;
3378 Qdebug_on_next_call
= intern ("debug-on-next-call");
3379 staticpro (&Qdebug_on_next_call
);
3381 DEFVAR_LISP ("menu-updating-frame", &Vmenu_updating_frame
,
3382 doc
: /* Frame for which we are updating a menu.
3383 The enable predicate for a menu command should check this variable. */);
3384 Vmenu_updating_frame
= Qnil
;
3386 #ifdef USE_X_TOOLKIT
3387 widget_id_tick
= (1<<16);
3388 next_menubar_widget_id
= 1;
3391 defsubr (&Sx_popup_menu
);
3393 defsubr (&Sx_popup_dialog
);
3397 /* arch-tag: 92ea573c-398e-496e-ac73-2436f7d63242
3398 (do not change this comment) */