1 /* X Communication module for terminals which understand the X protocol.
2 Copyright (C) 1986, 88, 93, 94, 96, 99, 2000, 2001
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 gnuemacs.
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. */
41 #include "termhooks.h"
45 #include "blockinput.h"
53 /* This may include sys/types.h, and that somehow loses
54 if this is not done before the other system files. */
58 /* Load sys/types.h if not already loaded.
59 In some systems loading it twice is suicidal. */
61 #include <sys/types.h>
64 #include "dispextern.h"
67 #undef HAVE_MULTILINGUAL_MENU
70 #include <X11/IntrinsicP.h>
71 #include <X11/CoreP.h>
72 #include <X11/StringDefs.h>
73 #include <X11/Shell.h>
75 #include <X11/Xaw/Paned.h>
76 #endif /* USE_LUCID */
77 #include "../lwlib/lwlib.h"
78 #else /* not USE_X_TOOLKIT */
79 #include "../oldXMenu/XMenu.h"
80 #endif /* not USE_X_TOOLKIT */
81 #endif /* HAVE_X_WINDOWS */
84 #include <Xm/Xm.h> /* for LESSTIF_VERSION */
87 #define min(x,y) (((x) < (y)) ? (x) : (y))
88 #define max(x,y) (((x) > (y)) ? (x) : (y))
95 Lisp_Object Vmenu_updating_frame
;
97 Lisp_Object Qdebug_on_next_call
;
99 extern Lisp_Object Qmenu_bar
;
100 extern Lisp_Object Qmouse_click
, Qevent_kind
;
102 extern Lisp_Object QCtoggle
, QCradio
;
104 extern Lisp_Object Voverriding_local_map
;
105 extern Lisp_Object Voverriding_local_map_menu_flag
;
107 extern Lisp_Object Qoverriding_local_map
, Qoverriding_terminal_local_map
;
109 extern Lisp_Object Qmenu_bar_update_hook
;
112 extern void set_frame_menubar ();
113 extern void process_expose_from_menu ();
114 extern XtAppContext Xt_app_con
;
116 static Lisp_Object
xdialog_show ();
117 void popup_get_selection ();
122 /* Define HAVE_BOXES if meus can handle radio and toggle buttons. */
127 static void push_menu_item
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
,
128 Lisp_Object
, Lisp_Object
, Lisp_Object
,
129 Lisp_Object
, Lisp_Object
));
130 static Lisp_Object
xmenu_show ();
131 static void keymap_panes ();
132 static void single_keymap_panes ();
133 static void single_menu_item ();
134 static void list_of_panes ();
135 static void list_of_items ();
137 /* This holds a Lisp vector that holds the results of decoding
138 the keymaps or alist-of-alists that specify a menu.
140 It describes the panes and items within the panes.
142 Each pane is described by 3 elements in the vector:
143 t, the pane name, the pane's prefix key.
144 Then follow the pane's items, with 5 elements per item:
145 the item string, the enable flag, the item's value,
146 the definition, and the equivalent keyboard key's description string.
148 In some cases, multiple levels of menus may be described.
149 A single vector slot containing nil indicates the start of a submenu.
150 A single vector slot containing lambda indicates the end of a submenu.
151 The submenu follows a menu item which is the way to reach the submenu.
153 A single vector slot containing quote indicates that the
154 following items should appear on the right of a dialog box.
156 Using a Lisp vector to hold this information while we decode it
157 takes care of protecting all the data from GC. */
159 #define MENU_ITEMS_PANE_NAME 1
160 #define MENU_ITEMS_PANE_PREFIX 2
161 #define MENU_ITEMS_PANE_LENGTH 3
165 MENU_ITEMS_ITEM_NAME
= 0,
166 MENU_ITEMS_ITEM_ENABLE
,
167 MENU_ITEMS_ITEM_VALUE
,
168 MENU_ITEMS_ITEM_EQUIV_KEY
,
169 MENU_ITEMS_ITEM_DEFINITION
,
170 MENU_ITEMS_ITEM_TYPE
,
171 MENU_ITEMS_ITEM_SELECTED
,
172 MENU_ITEMS_ITEM_HELP
,
173 MENU_ITEMS_ITEM_LENGTH
176 static Lisp_Object menu_items
;
178 /* Number of slots currently allocated in menu_items. */
179 static int menu_items_allocated
;
181 /* This is the index in menu_items of the first empty slot. */
182 static int menu_items_used
;
184 /* The number of panes currently recorded in menu_items,
185 excluding those within submenus. */
186 static int menu_items_n_panes
;
188 /* Current depth within submenus. */
189 static int menu_items_submenu_depth
;
191 /* Flag which when set indicates a dialog or menu has been posted by
192 Xt on behalf of one of the widget sets. */
193 int popup_activated_flag
;
195 static int next_menubar_widget_id
;
197 /* This is set nonzero after the user activates the menu bar, and set
198 to zero again after the menu bars are redisplayed by prepare_menu_bar.
199 While it is nonzero, all calls to set_frame_menubar go deep.
201 I don't understand why this is needed, but it does seem to be
202 needed on Motif, according to Marcus Daniels <marcus@sysc.pdx.edu>. */
204 int pending_menu_activation
;
208 /* Return the frame whose ->output_data.x->id equals ID, or 0 if none. */
210 static struct frame
*
211 menubar_id_to_frame (id
)
214 Lisp_Object tail
, frame
;
217 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
220 if (!GC_FRAMEP (frame
))
223 if (!FRAME_WINDOW_P (f
))
225 if (f
->output_data
.x
->id
== id
)
233 /* Initialize the menu_items structure if we haven't already done so.
234 Also mark it as currently empty. */
239 if (NILP (menu_items
))
241 menu_items_allocated
= 60;
242 menu_items
= Fmake_vector (make_number (menu_items_allocated
), Qnil
);
246 menu_items_n_panes
= 0;
247 menu_items_submenu_depth
= 0;
250 /* Call at the end of generating the data in menu_items.
251 This fills in the number of items in the last pane. */
258 /* Call when finished using the data for the current menu
262 discard_menu_items ()
264 /* Free the structure if it is especially large.
265 Otherwise, hold on to it, to save time. */
266 if (menu_items_allocated
> 200)
269 menu_items_allocated
= 0;
273 /* Make the menu_items vector twice as large. */
279 int old_size
= menu_items_allocated
;
282 menu_items_allocated
*= 2;
283 menu_items
= Fmake_vector (make_number (menu_items_allocated
), Qnil
);
284 bcopy (XVECTOR (old
)->contents
, XVECTOR (menu_items
)->contents
,
285 old_size
* sizeof (Lisp_Object
));
288 /* Begin a submenu. */
291 push_submenu_start ()
293 if (menu_items_used
+ 1 > menu_items_allocated
)
296 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qnil
;
297 menu_items_submenu_depth
++;
305 if (menu_items_used
+ 1 > menu_items_allocated
)
308 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qlambda
;
309 menu_items_submenu_depth
--;
312 /* Indicate boundary between left and right. */
315 push_left_right_boundary ()
317 if (menu_items_used
+ 1 > menu_items_allocated
)
320 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qquote
;
323 /* Start a new menu pane in menu_items..
324 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */
327 push_menu_pane (name
, prefix_vec
)
328 Lisp_Object name
, prefix_vec
;
330 if (menu_items_used
+ MENU_ITEMS_PANE_LENGTH
> menu_items_allocated
)
333 if (menu_items_submenu_depth
== 0)
334 menu_items_n_panes
++;
335 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qt
;
336 XVECTOR (menu_items
)->contents
[menu_items_used
++] = name
;
337 XVECTOR (menu_items
)->contents
[menu_items_used
++] = prefix_vec
;
340 /* Push one menu item into the current pane. NAME is the string to
341 display. ENABLE if non-nil means this item can be selected. KEY
342 is the key generated by choosing this item, or nil if this item
343 doesn't really have a definition. DEF is the definition of this
344 item. EQUIV is the textual description of the keyboard equivalent
345 for this item (or nil if none). TYPE is the type of this menu
346 item, one of nil, `toggle' or `radio'. */
349 push_menu_item (name
, enable
, key
, def
, equiv
, type
, selected
, help
)
350 Lisp_Object name
, enable
, key
, def
, equiv
, type
, selected
, help
;
352 if (menu_items_used
+ MENU_ITEMS_ITEM_LENGTH
> menu_items_allocated
)
355 XVECTOR (menu_items
)->contents
[menu_items_used
++] = name
;
356 XVECTOR (menu_items
)->contents
[menu_items_used
++] = enable
;
357 XVECTOR (menu_items
)->contents
[menu_items_used
++] = key
;
358 XVECTOR (menu_items
)->contents
[menu_items_used
++] = equiv
;
359 XVECTOR (menu_items
)->contents
[menu_items_used
++] = def
;
360 XVECTOR (menu_items
)->contents
[menu_items_used
++] = type
;
361 XVECTOR (menu_items
)->contents
[menu_items_used
++] = selected
;
362 XVECTOR (menu_items
)->contents
[menu_items_used
++] = help
;
365 /* Look through KEYMAPS, a vector of keymaps that is NMAPS long,
366 and generate menu panes for them in menu_items.
367 If NOTREAL is nonzero,
368 don't bother really computing whether an item is enabled. */
371 keymap_panes (keymaps
, nmaps
, notreal
)
372 Lisp_Object
*keymaps
;
380 /* Loop over the given keymaps, making a pane for each map.
381 But don't make a pane that is empty--ignore that map instead.
382 P is the number of panes we have made so far. */
383 for (mapno
= 0; mapno
< nmaps
; mapno
++)
384 single_keymap_panes (keymaps
[mapno
],
385 map_prompt (keymaps
[mapno
]), Qnil
, notreal
, 10);
387 finish_menu_items ();
390 /* This is a recursive subroutine of keymap_panes.
391 It handles one keymap, KEYMAP.
392 The other arguments are passed along
393 or point to local variables of the previous function.
394 If NOTREAL is nonzero, only check for equivalent key bindings, don't
395 evaluate expressions in menu items and don't make any menu.
397 If we encounter submenus deeper than MAXDEPTH levels, ignore them. */
400 single_keymap_panes (keymap
, pane_name
, prefix
, notreal
, maxdepth
)
402 Lisp_Object pane_name
;
407 Lisp_Object pending_maps
= Qnil
;
408 Lisp_Object tail
, item
;
409 struct gcpro gcpro1
, gcpro2
;
415 push_menu_pane (pane_name
, prefix
);
418 /* Remember index for first item in this pane so we can go back and
419 add a prefix when (if) we see the first button. After that, notbuttons
420 is set to 0, to mark that we have seen a button and all non button
421 items need a prefix. */
422 notbuttons
= menu_items_used
;
425 for (tail
= keymap
; CONSP (tail
); tail
= XCDR (tail
))
427 GCPRO2 (keymap
, pending_maps
);
428 /* Look at each key binding, and if it is a menu item add it
432 single_menu_item (XCAR (item
), XCDR (item
),
433 &pending_maps
, notreal
, maxdepth
, ¬buttons
);
434 else if (VECTORP (item
))
436 /* Loop over the char values represented in the vector. */
437 int len
= XVECTOR (item
)->size
;
439 for (c
= 0; c
< len
; c
++)
441 Lisp_Object character
;
442 XSETFASTINT (character
, c
);
443 single_menu_item (character
, XVECTOR (item
)->contents
[c
],
444 &pending_maps
, notreal
, maxdepth
, ¬buttons
);
450 /* Process now any submenus which want to be panes at this level. */
451 while (!NILP (pending_maps
))
453 Lisp_Object elt
, eltcdr
, string
;
454 elt
= Fcar (pending_maps
);
456 string
= XCAR (eltcdr
);
457 /* We no longer discard the @ from the beginning of the string here.
458 Instead, we do this in xmenu_show. */
459 single_keymap_panes (Fcar (elt
), string
,
460 XCDR (eltcdr
), notreal
, maxdepth
- 1);
461 pending_maps
= Fcdr (pending_maps
);
465 /* This is a subroutine of single_keymap_panes that handles one
467 KEY is a key in a keymap and ITEM is its binding.
468 PENDING_MAPS_PTR points to a list of keymaps waiting to be made into
470 If NOTREAL is nonzero, only check for equivalent key bindings, don't
471 evaluate expressions in menu items and don't make any menu.
472 If we encounter submenus deeper than MAXDEPTH levels, ignore them.
473 NOTBUTTONS_PTR is only used when simulating toggle boxes and radio
474 buttons. It points to variable notbuttons in single_keymap_panes,
475 which keeps track of if we have seen a button in this menu or not. */
478 single_menu_item (key
, item
, pending_maps_ptr
, notreal
, maxdepth
,
480 Lisp_Object key
, item
;
481 Lisp_Object
*pending_maps_ptr
;
482 int maxdepth
, notreal
;
485 Lisp_Object map
, item_string
, enabled
;
486 struct gcpro gcpro1
, gcpro2
;
489 /* Parse the menu item and leave the result in item_properties. */
491 res
= parse_menu_item (item
, notreal
, 0);
494 return; /* Not a menu item. */
496 map
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_MAP
];
500 /* We don't want to make a menu, just traverse the keymaps to
501 precompute equivalent key bindings. */
503 single_keymap_panes (map
, Qnil
, key
, 1, maxdepth
- 1);
507 enabled
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_ENABLE
];
508 item_string
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_NAME
];
510 if (!NILP (map
) && XSTRING (item_string
)->data
[0] == '@')
513 /* An enabled separate pane. Remember this to handle it later. */
514 *pending_maps_ptr
= Fcons (Fcons (map
, Fcons (item_string
, key
)),
520 /* Simulate radio buttons and toggle boxes by putting a prefix in
523 Lisp_Object prefix
= Qnil
;
524 Lisp_Object type
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_TYPE
];
528 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_SELECTED
];
531 /* The first button. Line up previous items in this menu. */
533 int index
= *notbuttons_ptr
; /* Index for first item this menu. */
536 while (index
< menu_items_used
)
539 = XVECTOR (menu_items
)->contents
[index
+ MENU_ITEMS_ITEM_NAME
];
543 submenu
++; /* Skip sub menu. */
545 else if (EQ (tem
, Qlambda
))
548 submenu
--; /* End sub menu. */
550 else if (EQ (tem
, Qt
))
551 index
+= 3; /* Skip new pane marker. */
552 else if (EQ (tem
, Qquote
))
553 index
++; /* Skip a left, right divider. */
556 if (!submenu
&& XSTRING (tem
)->data
[0] != '\0'
557 && XSTRING (tem
)->data
[0] != '-')
558 XVECTOR (menu_items
)->contents
[index
+ MENU_ITEMS_ITEM_NAME
]
559 = concat2 (build_string (" "), tem
);
560 index
+= MENU_ITEMS_ITEM_LENGTH
;
566 /* Calculate prefix, if any, for this item. */
567 if (EQ (type
, QCtoggle
))
568 prefix
= build_string (NILP (selected
) ? "[ ] " : "[X] ");
569 else if (EQ (type
, QCradio
))
570 prefix
= build_string (NILP (selected
) ? "( ) " : "(*) ");
572 /* Not a button. If we have earlier buttons, then we need a prefix. */
573 else if (!*notbuttons_ptr
&& XSTRING (item_string
)->data
[0] != '\0'
574 && XSTRING (item_string
)->data
[0] != '-')
575 prefix
= build_string (" ");
578 item_string
= concat2 (prefix
, item_string
);
580 #endif /* not HAVE_BOXES */
582 #ifndef USE_X_TOOLKIT
584 /* Indicate visually that this is a submenu. */
585 item_string
= concat2 (item_string
, build_string (" >"));
588 push_menu_item (item_string
, enabled
, key
,
589 XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_DEF
],
590 XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_KEYEQ
],
591 XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_TYPE
],
592 XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_SELECTED
],
593 XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_HELP
]);
596 /* Display a submenu using the toolkit. */
597 if (! (NILP (map
) || NILP (enabled
)))
599 push_submenu_start ();
600 single_keymap_panes (map
, Qnil
, key
, 0, maxdepth
- 1);
606 /* Push all the panes and items of a menu described by the
607 alist-of-alists MENU.
608 This handles old-fashioned calls to x-popup-menu. */
618 for (tail
= menu
; !NILP (tail
); tail
= Fcdr (tail
))
620 Lisp_Object elt
, pane_name
, pane_data
;
622 pane_name
= Fcar (elt
);
623 CHECK_STRING (pane_name
, 0);
624 push_menu_pane (pane_name
, Qnil
);
625 pane_data
= Fcdr (elt
);
626 CHECK_CONS (pane_data
, 0);
627 list_of_items (pane_data
);
630 finish_menu_items ();
633 /* Push the items in a single pane defined by the alist PANE. */
639 Lisp_Object tail
, item
, item1
;
641 for (tail
= pane
; !NILP (tail
); tail
= Fcdr (tail
))
645 push_menu_item (item
, Qnil
, Qnil
, Qt
, Qnil
, Qnil
, Qnil
, Qnil
);
646 else if (NILP (item
))
647 push_left_right_boundary ();
650 CHECK_CONS (item
, 0);
652 CHECK_STRING (item1
, 1);
653 push_menu_item (item1
, Qt
, Fcdr (item
), Qt
, Qnil
, Qnil
, Qnil
, Qnil
);
658 DEFUN ("x-popup-menu", Fx_popup_menu
, Sx_popup_menu
, 2, 2, 0,
659 "Pop up a deck-of-cards menu and return user's selection.\n\
660 POSITION is a position specification. This is either a mouse button event\n\
661 or a list ((XOFFSET YOFFSET) WINDOW)\n\
662 where XOFFSET and YOFFSET are positions in pixels from the top left\n\
663 corner of WINDOW's frame. (WINDOW may be a frame object instead of a window.)\n\
664 This controls the position of the center of the first line\n\
665 in the first pane of the menu, not the top left of the menu as a whole.\n\
666 If POSITION is t, it means to use the current mouse position.\n\
668 MENU is a specifier for a menu. For the simplest case, MENU is a keymap.\n\
669 The menu items come from key bindings that have a menu string as well as\n\
670 a definition; actually, the \"definition\" in such a key binding looks like\n\
671 \(STRING . REAL-DEFINITION). To give the menu a title, put a string into\n\
672 the keymap as a top-level element.\n\n\
673 If REAL-DEFINITION is nil, that puts a nonselectable string in the menu.\n\
674 Otherwise, REAL-DEFINITION should be a valid key binding definition.\n\
676 You can also use a list of keymaps as MENU.\n\
677 Then each keymap makes a separate pane.\n\
678 When MENU is a keymap or a list of keymaps, the return value\n\
679 is a list of events.\n\n\
681 Alternatively, you can specify a menu of multiple panes\n\
682 with a list of the form (TITLE PANE1 PANE2...),\n\
683 where each pane is a list of form (TITLE ITEM1 ITEM2...).\n\
684 Each ITEM is normally a cons cell (STRING . VALUE);\n\
685 but a string can appear as an item--that makes a nonselectable line\n\
687 With this form of menu, the return value is VALUE from the chosen item.\n\
689 If POSITION is nil, don't display the menu at all, just precalculate the\n\
690 cached information about equivalent key sequences.")
692 Lisp_Object position
, menu
;
694 Lisp_Object keymap
, tem
;
695 int xpos
= 0, ypos
= 0;
698 Lisp_Object selection
;
699 struct frame
*f
= NULL
;
700 Lisp_Object x
, y
, window
;
706 if (! NILP (position
))
710 /* Decode the first argument: find the window and the coordinates. */
711 if (EQ (position
, Qt
)
712 || (CONSP (position
) && (EQ (XCAR (position
), Qmenu_bar
)
713 || EQ (XCAR (position
), Qtool_bar
))))
715 /* Use the mouse's current position. */
716 FRAME_PTR new_f
= SELECTED_FRAME ();
717 Lisp_Object bar_window
;
718 enum scroll_bar_part part
;
721 if (mouse_position_hook
)
722 (*mouse_position_hook
) (&new_f
, 1, &bar_window
,
723 &part
, &x
, &y
, &time
);
725 XSETFRAME (window
, new_f
);
728 window
= selected_window
;
735 tem
= Fcar (position
);
738 window
= Fcar (Fcdr (position
));
740 y
= Fcar (Fcdr (tem
));
745 tem
= Fcar (Fcdr (position
)); /* EVENT_START (position) */
746 window
= Fcar (tem
); /* POSN_WINDOW (tem) */
747 tem
= Fcar (Fcdr (Fcdr (tem
))); /* POSN_WINDOW_POSN (tem) */
756 /* Decode where to put the menu. */
764 else if (WINDOWP (window
))
766 CHECK_LIVE_WINDOW (window
, 0);
767 f
= XFRAME (WINDOW_FRAME (XWINDOW (window
)));
769 xpos
= (FONT_WIDTH (f
->output_data
.x
->font
)
770 * XFASTINT (XWINDOW (window
)->left
));
771 ypos
= (f
->output_data
.x
->line_height
772 * XFASTINT (XWINDOW (window
)->top
));
775 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
776 but I don't want to make one now. */
777 CHECK_WINDOW (window
, 0);
782 XSETFRAME (Vmenu_updating_frame
, f
);
784 Vmenu_updating_frame
= Qnil
;
785 #endif /* HAVE_MENUS */
790 /* Decode the menu items from what was specified. */
792 keymap
= get_keymap (menu
, 0, 0);
795 /* We were given a keymap. Extract menu info from the keymap. */
798 /* Extract the detailed info to make one pane. */
799 keymap_panes (&menu
, 1, NILP (position
));
801 /* Search for a string appearing directly as an element of the keymap.
802 That string is the title of the menu. */
803 prompt
= map_prompt (keymap
);
804 if (NILP (title
) && !NILP (prompt
))
807 /* Make that be the pane title of the first pane. */
808 if (!NILP (prompt
) && menu_items_n_panes
>= 0)
809 XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_NAME
] = prompt
;
813 else if (CONSP (menu
) && KEYMAPP (XCAR (menu
)))
815 /* We were given a list of keymaps. */
816 int nmaps
= XFASTINT (Flength (menu
));
818 = (Lisp_Object
*) alloca (nmaps
* sizeof (Lisp_Object
));
823 /* The first keymap that has a prompt string
824 supplies the menu title. */
825 for (tem
= menu
, i
= 0; CONSP (tem
); tem
= Fcdr (tem
))
829 maps
[i
++] = keymap
= get_keymap (Fcar (tem
), 1, 0);
831 prompt
= map_prompt (keymap
);
832 if (NILP (title
) && !NILP (prompt
))
836 /* Extract the detailed info to make one pane. */
837 keymap_panes (maps
, nmaps
, NILP (position
));
839 /* Make the title be the pane title of the first pane. */
840 if (!NILP (title
) && menu_items_n_panes
>= 0)
841 XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_NAME
] = title
;
847 /* We were given an old-fashioned menu. */
849 CHECK_STRING (title
, 1);
851 list_of_panes (Fcdr (menu
));
858 discard_menu_items ();
864 /* Display them in a menu. */
867 selection
= xmenu_show (f
, xpos
, ypos
, for_click
,
868 keymaps
, title
, &error_name
);
871 discard_menu_items ();
874 #endif /* HAVE_MENUS */
876 if (error_name
) error (error_name
);
882 DEFUN ("x-popup-dialog", Fx_popup_dialog
, Sx_popup_dialog
, 2, 2, 0,
883 "Pop up a dialog box and return user's selection.\n\
884 POSITION specifies which frame to use.\n\
885 This is normally a mouse button event or a window or frame.\n\
886 If POSITION is t, it means to use the frame the mouse is on.\n\
887 The dialog box appears in the middle of the specified frame.\n\
889 CONTENTS specifies the alternatives to display in the dialog box.\n\
890 It is a list of the form (TITLE ITEM1 ITEM2...).\n\
891 Each ITEM is a cons cell (STRING . VALUE).\n\
892 The return value is VALUE from the chosen item.\n\n\
893 An ITEM may also be just a string--that makes a nonselectable item.\n\
894 An ITEM may also be nil--that means to put all preceding items\n\
895 on the left of the dialog box and all following items on the right.\n\
896 \(By default, approximately half appear on each side.)")
898 Lisp_Object position
, contents
;
900 struct frame
* f
= NULL
;
905 /* Decode the first argument: find the window or frame to use. */
906 if (EQ (position
, Qt
)
907 || (CONSP (position
) && (EQ (XCAR (position
), Qmenu_bar
)
908 || EQ (XCAR (position
), Qtool_bar
))))
910 #if 0 /* Using the frame the mouse is on may not be right. */
911 /* Use the mouse's current position. */
912 FRAME_PTR new_f
= SELECTED_FRAME ();
913 Lisp_Object bar_window
;
918 (*mouse_position_hook
) (&new_f
, 1, &bar_window
, &part
, &x
, &y
, &time
);
921 XSETFRAME (window
, new_f
);
923 window
= selected_window
;
925 window
= selected_window
;
927 else if (CONSP (position
))
930 tem
= Fcar (position
);
932 window
= Fcar (Fcdr (position
));
935 tem
= Fcar (Fcdr (position
)); /* EVENT_START (position) */
936 window
= Fcar (tem
); /* POSN_WINDOW (tem) */
939 else if (WINDOWP (position
) || FRAMEP (position
))
944 /* Decode where to put the menu. */
948 else if (WINDOWP (window
))
950 CHECK_LIVE_WINDOW (window
, 0);
951 f
= XFRAME (WINDOW_FRAME (XWINDOW (window
)));
954 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
955 but I don't want to make one now. */
956 CHECK_WINDOW (window
, 0);
958 #ifndef USE_X_TOOLKIT
959 /* Display a menu with these alternatives
960 in the middle of frame F. */
962 Lisp_Object x
, y
, frame
, newpos
;
963 XSETFRAME (frame
, f
);
964 XSETINT (x
, x_pixel_width (f
) / 2);
965 XSETINT (y
, x_pixel_height (f
) / 2);
966 newpos
= Fcons (Fcons (x
, Fcons (y
, Qnil
)), Fcons (frame
, Qnil
));
968 return Fx_popup_menu (newpos
,
969 Fcons (Fcar (contents
), Fcons (contents
, Qnil
)));
975 Lisp_Object selection
;
977 /* Decode the dialog items from what was specified. */
978 title
= Fcar (contents
);
979 CHECK_STRING (title
, 1);
981 list_of_panes (Fcons (contents
, Qnil
));
983 /* Display them in a dialog box. */
985 selection
= xdialog_show (f
, 0, title
, &error_name
);
988 discard_menu_items ();
990 if (error_name
) error (error_name
);
998 /* Loop in Xt until the menu pulldown or dialog popup has been
999 popped down (deactivated). This is used for x-popup-menu
1000 and x-popup-dialog; it is not used for the menu bar any more.
1002 NOTE: All calls to popup_get_selection should be protected
1003 with BLOCK_INPUT, UNBLOCK_INPUT wrappers. */
1006 popup_get_selection (initial_event
, dpyinfo
, id
)
1007 XEvent
*initial_event
;
1008 struct x_display_info
*dpyinfo
;
1013 /* Define a queue to save up for later unreading
1014 all X events that don't pertain to the menu. */
1018 struct event_queue
*next
;
1021 struct event_queue
*queue
= NULL
;
1022 struct event_queue
*queue_tmp
;
1025 event
= *initial_event
;
1027 XtAppNextEvent (Xt_app_con
, &event
);
1031 /* Handle expose events for editor frames right away. */
1032 if (event
.type
== Expose
)
1033 process_expose_from_menu (event
);
1034 /* Make sure we don't consider buttons grabbed after menu goes.
1035 And make sure to deactivate for any ButtonRelease,
1036 even if XtDispatchEvent doesn't do that. */
1037 else if (event
.type
== ButtonRelease
1038 && dpyinfo
->display
== event
.xbutton
.display
)
1040 dpyinfo
->grabbed
&= ~(1 << event
.xbutton
.button
);
1041 popup_activated_flag
= 0;
1042 #ifdef USE_MOTIF /* Pretending that the event came from a
1043 Btn1Down seems the only way to convince Motif to
1044 activate its callbacks; setting the XmNmenuPost
1045 isn't working. --marcus@sysc.pdx.edu. */
1046 event
.xbutton
.button
= 1;
1049 /* If the user presses a key, deactivate the menu.
1050 The user is likely to do that if we get wedged. */
1051 else if (event
.type
== KeyPress
1052 && dpyinfo
->display
== event
.xbutton
.display
)
1054 KeySym keysym
= XLookupKeysym (&event
.xkey
, 0);
1055 if (!IsModifierKey (keysym
))
1057 popup_activated_flag
= 0;
1061 /* Button presses outside the menu also pop it down. */
1062 else if (event
.type
== ButtonPress
1063 && event
.xany
.display
== dpyinfo
->display
1064 && x_any_window_to_frame (dpyinfo
, event
.xany
.window
))
1066 popup_activated_flag
= 0;
1070 /* Queue all events not for this popup,
1071 except for Expose, which we've already handled, and ButtonRelease.
1072 Note that the X window is associated with the frame if this
1073 is a menu bar popup, but not if it's a dialog box. So we use
1074 x_non_menubar_window_to_frame, not x_any_window_to_frame. */
1075 if (event
.type
!= Expose
1076 && !(event
.type
== ButtonRelease
1077 && dpyinfo
->display
== event
.xbutton
.display
)
1078 && (event
.xany
.display
!= dpyinfo
->display
1079 || x_non_menubar_window_to_frame (dpyinfo
, event
.xany
.window
)))
1081 queue_tmp
= (struct event_queue
*) xmalloc (sizeof *queue_tmp
);
1082 queue_tmp
->event
= event
;
1083 queue_tmp
->next
= queue
;
1087 XtDispatchEvent (&event
);
1089 if (!popup_activated ())
1091 XtAppNextEvent (Xt_app_con
, &event
);
1094 /* Unread any events that we got but did not handle. */
1095 while (queue
!= NULL
)
1098 XPutBackEvent (queue_tmp
->event
.xany
.display
, &queue_tmp
->event
);
1099 queue
= queue_tmp
->next
;
1100 xfree ((char *)queue_tmp
);
1101 /* Cause these events to get read as soon as we UNBLOCK_INPUT. */
1102 interrupt_input_pending
= 1;
1106 /* Activate the menu bar of frame F.
1107 This is called from keyboard.c when it gets the
1108 menu_bar_activate_event out of the Emacs event queue.
1110 To activate the menu bar, we use the X button-press event
1111 that was saved in saved_menu_event.
1112 That makes the toolkit do its thing.
1114 But first we recompute the menu bar contents (the whole tree).
1116 The reason for saving the button event until here, instead of
1117 passing it to the toolkit right away, is that we can safely
1118 execute Lisp code. */
1121 x_activate_menubar (f
)
1124 if (!f
->output_data
.x
->saved_menu_event
->type
)
1127 set_frame_menubar (f
, 0, 1);
1129 XtDispatchEvent ((XEvent
*) f
->output_data
.x
->saved_menu_event
);
1132 if (f
->output_data
.x
->saved_menu_event
->type
== ButtonRelease
)
1133 pending_menu_activation
= 1;
1136 /* Ignore this if we get it a second time. */
1137 f
->output_data
.x
->saved_menu_event
->type
= 0;
1140 /* Detect if a dialog or menu has been posted. */
1145 return popup_activated_flag
;
1148 /* This callback is invoked when the user selects a menubar cascade
1149 pushbutton, but before the pulldown menu is posted. */
1152 popup_activate_callback (widget
, id
, client_data
)
1155 XtPointer client_data
;
1158 ++popup_activated_flag
;
1160 popup_activated_flag
= 1;
1164 /* This callback is invoked when a dialog or menu is finished being
1165 used and has been unposted. */
1168 popup_deactivate_callback (widget
, id
, client_data
)
1171 XtPointer client_data
;
1174 --popup_activated_flag
;
1176 popup_activated_flag
= 0;
1180 /* Lwlib callback called when menu items are highlighted/unhighlighted
1181 while moving the mouse over them. WIDGET is the menu bar or menu
1182 popup widget. ID is its LWLIB_ID. CALL_DATA contains a pointer to
1183 the widget_value structure for the menu item, or null in case of
1187 menu_highlight_callback (widget
, id
, call_data
)
1192 widget_value
*wv
= (widget_value
*) call_data
;
1194 Lisp_Object frame
, help
;
1196 help
= wv
&& wv
->help
? build_string (wv
->help
) : Qnil
;
1198 /* Determine the frame for the help event. */
1199 f
= menubar_id_to_frame (id
);
1202 XSETFRAME (frame
, f
);
1203 kbd_buffer_store_help_event (frame
, help
);
1207 /* WIDGET is the popup menu. It's parent is the frame's
1208 widget. See which frame that is. */
1209 Widget frame_widget
= XtParent (widget
);
1212 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
1214 frame
= XCAR (tail
);
1215 if (GC_FRAMEP (frame
)
1216 && (f
= XFRAME (frame
),
1217 FRAME_X_P (f
) && f
->output_data
.x
->widget
== frame_widget
))
1221 show_help_echo (help
, Qnil
, Qnil
, Qnil
, 1);
1225 /* This callback is called from the menu bar pulldown menu
1226 when the user makes a selection.
1227 Figure out what the user chose
1228 and put the appropriate events into the keyboard buffer. */
1231 menubar_selection_callback (widget
, id
, client_data
)
1234 XtPointer client_data
;
1236 Lisp_Object prefix
, entry
;
1237 FRAME_PTR f
= menubar_id_to_frame (id
);
1239 Lisp_Object
*subprefix_stack
;
1240 int submenu_depth
= 0;
1246 subprefix_stack
= (Lisp_Object
*) alloca (f
->menu_bar_items_used
* sizeof (Lisp_Object
));
1247 vector
= f
->menu_bar_vector
;
1250 while (i
< f
->menu_bar_items_used
)
1252 if (EQ (XVECTOR (vector
)->contents
[i
], Qnil
))
1254 subprefix_stack
[submenu_depth
++] = prefix
;
1258 else if (EQ (XVECTOR (vector
)->contents
[i
], Qlambda
))
1260 prefix
= subprefix_stack
[--submenu_depth
];
1263 else if (EQ (XVECTOR (vector
)->contents
[i
], Qt
))
1265 prefix
= XVECTOR (vector
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
1266 i
+= MENU_ITEMS_PANE_LENGTH
;
1270 entry
= XVECTOR (vector
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
1271 /* The EMACS_INT cast avoids a warning. There's no problem
1272 as long as pointers have enough bits to hold small integers. */
1273 if ((int) (EMACS_INT
) client_data
== i
)
1276 struct input_event buf
;
1279 XSETFRAME (frame
, f
);
1280 buf
.kind
= MENU_BAR_EVENT
;
1281 buf
.frame_or_window
= frame
;
1283 kbd_buffer_store_event (&buf
);
1285 for (j
= 0; j
< submenu_depth
; j
++)
1286 if (!NILP (subprefix_stack
[j
]))
1288 buf
.kind
= MENU_BAR_EVENT
;
1289 buf
.frame_or_window
= frame
;
1290 buf
.arg
= subprefix_stack
[j
];
1291 kbd_buffer_store_event (&buf
);
1296 buf
.kind
= MENU_BAR_EVENT
;
1297 buf
.frame_or_window
= frame
;
1299 kbd_buffer_store_event (&buf
);
1302 buf
.kind
= MENU_BAR_EVENT
;
1303 buf
.frame_or_window
= frame
;
1305 kbd_buffer_store_event (&buf
);
1309 i
+= MENU_ITEMS_ITEM_LENGTH
;
1314 /* Allocate a widget_value, blocking input. */
1317 xmalloc_widget_value ()
1319 widget_value
*value
;
1322 value
= malloc_widget_value ();
1328 /* This recursively calls free_widget_value on the tree of widgets.
1329 It must free all data that was malloc'ed for these widget_values.
1330 In Emacs, many slots are pointers into the data of Lisp_Strings, and
1331 must be left alone. */
1334 free_menubar_widget_value_tree (wv
)
1339 wv
->name
= wv
->value
= wv
->key
= (char *) 0xDEADBEEF;
1341 if (wv
->contents
&& (wv
->contents
!= (widget_value
*)1))
1343 free_menubar_widget_value_tree (wv
->contents
);
1344 wv
->contents
= (widget_value
*) 0xDEADBEEF;
1348 free_menubar_widget_value_tree (wv
->next
);
1349 wv
->next
= (widget_value
*) 0xDEADBEEF;
1352 free_widget_value (wv
);
1356 /* Return a tree of widget_value structures for a menu bar item
1357 whose event type is ITEM_KEY (with string ITEM_NAME)
1358 and whose contents come from the list of keymaps MAPS. */
1360 static widget_value
*
1361 single_submenu (item_key
, item_name
, maps
)
1362 Lisp_Object item_key
, item_name
, maps
;
1364 widget_value
*wv
, *prev_wv
, *save_wv
, *first_wv
;
1366 int submenu_depth
= 0;
1369 Lisp_Object
*mapvec
;
1370 widget_value
**submenu_stack
;
1371 int previous_items
= menu_items_used
;
1372 int top_level_items
= 0;
1374 length
= Flength (maps
);
1375 len
= XINT (length
);
1377 /* Convert the list MAPS into a vector MAPVEC. */
1378 mapvec
= (Lisp_Object
*) alloca (len
* sizeof (Lisp_Object
));
1379 for (i
= 0; i
< len
; i
++)
1381 mapvec
[i
] = Fcar (maps
);
1385 menu_items_n_panes
= 0;
1387 /* Loop over the given keymaps, making a pane for each map.
1388 But don't make a pane that is empty--ignore that map instead. */
1389 for (i
= 0; i
< len
; i
++)
1391 if (SYMBOLP (mapvec
[i
])
1392 || (CONSP (mapvec
[i
]) && !KEYMAPP (mapvec
[i
])))
1394 /* Here we have a command at top level in the menu bar
1395 as opposed to a submenu. */
1396 top_level_items
= 1;
1397 push_menu_pane (Qnil
, Qnil
);
1398 push_menu_item (item_name
, Qt
, item_key
, mapvec
[i
],
1399 Qnil
, Qnil
, Qnil
, Qnil
);
1402 single_keymap_panes (mapvec
[i
], item_name
, item_key
, 0, 10);
1405 /* Create a tree of widget_value objects
1406 representing the panes and their items. */
1409 = (widget_value
**) alloca (menu_items_used
* sizeof (widget_value
*));
1410 wv
= xmalloc_widget_value ();
1414 wv
->button_type
= BUTTON_TYPE_NONE
;
1419 /* Loop over all panes and items made during this call
1420 and construct a tree of widget_value objects.
1421 Ignore the panes and items made by previous calls to
1422 single_submenu, even though those are also in menu_items. */
1424 while (i
< menu_items_used
)
1426 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
1428 submenu_stack
[submenu_depth
++] = save_wv
;
1433 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
1436 save_wv
= submenu_stack
[--submenu_depth
];
1439 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
)
1440 && submenu_depth
!= 0)
1441 i
+= MENU_ITEMS_PANE_LENGTH
;
1442 /* Ignore a nil in the item list.
1443 It's meaningful only for dialog boxes. */
1444 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
1446 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
1448 /* Create a new pane. */
1449 Lisp_Object pane_name
, prefix
;
1451 pane_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_NAME
];
1452 prefix
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
1453 #ifndef HAVE_MULTILINGUAL_MENU
1454 if (STRINGP (pane_name
) && STRING_MULTIBYTE (pane_name
))
1455 pane_name
= string_make_unibyte (pane_name
);
1457 pane_string
= (NILP (pane_name
)
1458 ? "" : (char *) XSTRING (pane_name
)->data
);
1459 /* If there is just one top-level pane, put all its items directly
1460 under the top-level menu. */
1461 if (menu_items_n_panes
== 1)
1464 /* If the pane has a meaningful name,
1465 make the pane a top-level menu item
1466 with its items as a submenu beneath it. */
1467 if (strcmp (pane_string
, ""))
1469 wv
= xmalloc_widget_value ();
1473 first_wv
->contents
= wv
;
1474 wv
->name
= pane_string
;
1475 /* Ignore the @ that means "separate pane".
1476 This is a kludge, but this isn't worth more time. */
1477 if (!NILP (prefix
) && wv
->name
[0] == '@')
1481 wv
->button_type
= BUTTON_TYPE_NONE
;
1485 i
+= MENU_ITEMS_PANE_LENGTH
;
1489 /* Create a new item within current pane. */
1490 Lisp_Object item_name
, enable
, descrip
, def
, type
, selected
;
1493 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
1494 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
1496 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
1497 def
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_DEFINITION
];
1498 type
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_TYPE
];
1499 selected
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_SELECTED
];
1500 help
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_HELP
];
1502 #ifndef HAVE_MULTILINGUAL_MENU
1503 if (STRING_MULTIBYTE (item_name
))
1504 item_name
= string_make_unibyte (item_name
);
1505 if (STRINGP (descrip
) && STRING_MULTIBYTE (descrip
))
1506 descrip
= string_make_unibyte (descrip
);
1509 wv
= xmalloc_widget_value ();
1513 save_wv
->contents
= wv
;
1515 wv
->name
= (char *) XSTRING (item_name
)->data
;
1516 if (!NILP (descrip
))
1517 wv
->key
= (char *) XSTRING (descrip
)->data
;
1519 /* The EMACS_INT cast avoids a warning. There's no problem
1520 as long as pointers have enough bits to hold small integers. */
1521 wv
->call_data
= (!NILP (def
) ? (void *) (EMACS_INT
) i
: 0);
1522 wv
->enabled
= !NILP (enable
);
1525 wv
->button_type
= BUTTON_TYPE_NONE
;
1526 else if (EQ (type
, QCradio
))
1527 wv
->button_type
= BUTTON_TYPE_RADIO
;
1528 else if (EQ (type
, QCtoggle
))
1529 wv
->button_type
= BUTTON_TYPE_TOGGLE
;
1533 wv
->selected
= !NILP (selected
);
1535 wv
->help
= XSTRING (help
)->data
;
1539 i
+= MENU_ITEMS_ITEM_LENGTH
;
1543 /* If we have just one "menu item"
1544 that was originally a button, return it by itself. */
1545 if (top_level_items
&& first_wv
->contents
&& first_wv
->contents
->next
== 0)
1547 wv
= first_wv
->contents
;
1548 free_widget_value (first_wv
);
1555 extern void EmacsFrameSetCharSize ();
1557 /* Recompute all the widgets of frame F, when the menu bar
1558 has been changed. */
1561 update_frame_menubar (f
)
1564 struct x_output
*x
= f
->output_data
.x
;
1566 int menubar_changed
;
1568 /* We assume the menubar contents has changed if the global flag is set,
1569 or if the current buffer has changed, or if the menubar has never
1570 been updated before.
1572 menubar_changed
= (x
->menubar_widget
1573 && !XtIsManaged (x
->menubar_widget
));
1575 if (! (menubar_changed
))
1579 /* Save the size of the frame because the pane widget doesn't accept to
1580 resize itself. So force it. */
1584 /* Do the voodoo which means "I'm changing lots of things, don't try to
1585 refigure sizes until I'm done." */
1586 lw_refigure_widget (x
->column_widget
, False
);
1588 /* the order in which children are managed is the top to
1589 bottom order in which they are displayed in the paned window.
1590 First, remove the text-area widget.
1592 XtUnmanageChild (x
->edit_widget
);
1594 /* remove the menubar that is there now, and put up the menubar that
1597 if (menubar_changed
)
1599 XtManageChild (x
->menubar_widget
);
1600 XtMapWidget (x
->menubar_widget
);
1601 XtVaSetValues (x
->menubar_widget
, XtNmappedWhenManaged
, 1, NULL
);
1604 /* Re-manage the text-area widget, and then thrash the sizes. */
1605 XtManageChild (x
->edit_widget
);
1606 x_set_menu_resources_from_menu_face (f
, x
->menubar_widget
);
1607 lw_refigure_widget (x
->column_widget
, True
);
1609 /* Force the pane widget to resize itself with the right values. */
1610 EmacsFrameSetCharSize (x
->edit_widget
, columns
, rows
);
1614 /* Set the contents of the menubar widgets of frame F.
1615 The argument FIRST_TIME is currently ignored;
1616 it is set the first time this is called, from initialize_frame_menubar. */
1619 set_frame_menubar (f
, first_time
, deep_p
)
1624 Widget menubar_widget
= f
->output_data
.x
->menubar_widget
;
1626 widget_value
*wv
, *first_wv
, *prev_wv
= 0;
1630 XSETFRAME (Vmenu_updating_frame
, f
);
1632 if (f
->output_data
.x
->id
== 0)
1633 f
->output_data
.x
->id
= next_menubar_widget_id
++;
1634 id
= f
->output_data
.x
->id
;
1636 if (! menubar_widget
)
1638 else if (pending_menu_activation
&& !deep_p
)
1640 /* Make the first call for any given frame always go deep. */
1641 else if (!f
->output_data
.x
->saved_menu_event
&& !deep_p
)
1644 f
->output_data
.x
->saved_menu_event
= (XEvent
*)xmalloc (sizeof (XEvent
));
1645 f
->output_data
.x
->saved_menu_event
->type
= 0;
1648 wv
= xmalloc_widget_value ();
1649 wv
->name
= "menubar";
1652 wv
->button_type
= BUTTON_TYPE_NONE
;
1657 /* Make a widget-value tree representing the entire menu trees. */
1659 struct buffer
*prev
= current_buffer
;
1661 int specpdl_count
= specpdl_ptr
- specpdl
;
1662 int previous_menu_items_used
= f
->menu_bar_items_used
;
1663 Lisp_Object
*previous_items
1664 = (Lisp_Object
*) alloca (previous_menu_items_used
1665 * sizeof (Lisp_Object
));
1667 /* If we are making a new widget, its contents are empty,
1668 do always reinitialize them. */
1669 if (! menubar_widget
)
1670 previous_menu_items_used
= 0;
1672 buffer
= XWINDOW (FRAME_SELECTED_WINDOW (f
))->buffer
;
1673 specbind (Qinhibit_quit
, Qt
);
1674 /* Don't let the debugger step into this code
1675 because it is not reentrant. */
1676 specbind (Qdebug_on_next_call
, Qnil
);
1678 record_unwind_protect (Fset_match_data
, Fmatch_data (Qnil
, Qnil
));
1679 if (NILP (Voverriding_local_map_menu_flag
))
1681 specbind (Qoverriding_terminal_local_map
, Qnil
);
1682 specbind (Qoverriding_local_map
, Qnil
);
1685 set_buffer_internal_1 (XBUFFER (buffer
));
1687 /* Run the Lucid hook. */
1688 safe_run_hooks (Qactivate_menubar_hook
);
1690 /* If it has changed current-menubar from previous value,
1691 really recompute the menubar from the value. */
1692 if (! NILP (Vlucid_menu_bar_dirty_flag
))
1693 call0 (Qrecompute_lucid_menubar
);
1694 safe_run_hooks (Qmenu_bar_update_hook
);
1695 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
1697 items
= FRAME_MENU_BAR_ITEMS (f
);
1699 inhibit_garbage_collection ();
1701 /* Save the frame's previous menu bar contents data. */
1702 bcopy (XVECTOR (f
->menu_bar_vector
)->contents
, previous_items
,
1703 previous_menu_items_used
* sizeof (Lisp_Object
));
1705 /* Fill in the current menu bar contents. */
1706 menu_items
= f
->menu_bar_vector
;
1707 menu_items_allocated
= XVECTOR (menu_items
)->size
;
1709 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
1711 Lisp_Object key
, string
, maps
;
1713 key
= XVECTOR (items
)->contents
[i
];
1714 string
= XVECTOR (items
)->contents
[i
+ 1];
1715 maps
= XVECTOR (items
)->contents
[i
+ 2];
1719 wv
= single_submenu (key
, string
, maps
);
1723 first_wv
->contents
= wv
;
1724 /* Don't set wv->name here; GC during the loop might relocate it. */
1726 wv
->button_type
= BUTTON_TYPE_NONE
;
1730 finish_menu_items ();
1732 set_buffer_internal_1 (prev
);
1733 unbind_to (specpdl_count
, Qnil
);
1735 /* If there has been no change in the Lisp-level contents
1736 of the menu bar, skip redisplaying it. Just exit. */
1738 for (i
= 0; i
< previous_menu_items_used
; i
++)
1739 if (menu_items_used
== i
1740 || (!EQ (previous_items
[i
], XVECTOR (menu_items
)->contents
[i
])))
1742 if (i
== menu_items_used
&& i
== previous_menu_items_used
&& i
!= 0)
1744 free_menubar_widget_value_tree (first_wv
);
1750 /* Now GC cannot happen during the lifetime of the widget_value,
1751 so it's safe to store data from a Lisp_String. */
1752 wv
= first_wv
->contents
;
1753 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
1756 string
= XVECTOR (items
)->contents
[i
+ 1];
1759 wv
->name
= (char *) XSTRING (string
)->data
;
1763 f
->menu_bar_vector
= menu_items
;
1764 f
->menu_bar_items_used
= menu_items_used
;
1769 /* Make a widget-value tree containing
1770 just the top level menu bar strings. */
1772 items
= FRAME_MENU_BAR_ITEMS (f
);
1773 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
1777 string
= XVECTOR (items
)->contents
[i
+ 1];
1781 wv
= xmalloc_widget_value ();
1782 wv
->name
= (char *) XSTRING (string
)->data
;
1785 wv
->button_type
= BUTTON_TYPE_NONE
;
1786 /* This prevents lwlib from assuming this
1787 menu item is really supposed to be empty. */
1788 /* The EMACS_INT cast avoids a warning.
1789 This value just has to be different from small integers. */
1790 wv
->call_data
= (void *) (EMACS_INT
) (-1);
1795 first_wv
->contents
= wv
;
1799 /* Forget what we thought we knew about what is in the
1800 detailed contents of the menu bar menus.
1801 Changing the top level always destroys the contents. */
1802 f
->menu_bar_items_used
= 0;
1805 /* Create or update the menu bar widget. */
1811 /* Disable resizing (done for Motif!) */
1812 lw_allow_resizing (f
->output_data
.x
->widget
, False
);
1814 /* The third arg is DEEP_P, which says to consider the entire
1815 menu trees we supply, rather than just the menu bar item names. */
1816 lw_modify_all_widgets (id
, first_wv
, deep_p
);
1818 /* Re-enable the edit widget to resize. */
1819 lw_allow_resizing (f
->output_data
.x
->widget
, True
);
1823 menubar_widget
= lw_create_widget ("menubar", "menubar", id
, first_wv
,
1824 f
->output_data
.x
->column_widget
,
1826 popup_activate_callback
,
1827 menubar_selection_callback
,
1828 popup_deactivate_callback
,
1829 menu_highlight_callback
);
1830 f
->output_data
.x
->menubar_widget
= menubar_widget
;
1835 = (f
->output_data
.x
->menubar_widget
1836 ? (f
->output_data
.x
->menubar_widget
->core
.height
1837 + f
->output_data
.x
->menubar_widget
->core
.border_width
)
1840 #if 0 /* Experimentally, we now get the right results
1841 for -geometry -0-0 without this. 24 Aug 96, rms. */
1843 if (FRAME_EXTERNAL_MENU_BAR (f
))
1846 XtVaGetValues (f
->output_data
.x
->column_widget
,
1847 XtNinternalBorderWidth
, &ibw
, NULL
);
1848 menubar_size
+= ibw
;
1850 #endif /* USE_LUCID */
1853 f
->output_data
.x
->menubar_height
= menubar_size
;
1856 free_menubar_widget_value_tree (first_wv
);
1857 update_frame_menubar (f
);
1862 /* Called from Fx_create_frame to create the initial menubar of a frame
1863 before it is mapped, so that the window is mapped with the menubar already
1864 there instead of us tacking it on later and thrashing the window after it
1868 initialize_frame_menubar (f
)
1871 /* This function is called before the first chance to redisplay
1872 the frame. It has to be, so the frame will have the right size. */
1873 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
1874 set_frame_menubar (f
, 1, 1);
1877 /* Get rid of the menu bar of frame F, and free its storage.
1878 This is used when deleting a frame, and when turning off the menu bar. */
1881 free_frame_menubar (f
)
1884 Widget menubar_widget
;
1886 menubar_widget
= f
->output_data
.x
->menubar_widget
;
1888 f
->output_data
.x
->menubar_height
= 0;
1893 lw_destroy_all_widgets ((LWLIB_ID
) f
->output_data
.x
->id
);
1898 #endif /* USE_X_TOOLKIT */
1900 /* xmenu_show actually displays a menu using the panes and items in menu_items
1901 and returns the value selected from it.
1902 There are two versions of xmenu_show, one for Xt and one for Xlib.
1903 Both assume input is blocked by the caller. */
1905 /* F is the frame the menu is for.
1906 X and Y are the frame-relative specified position,
1907 relative to the inside upper left corner of the frame F.
1908 FOR_CLICK is nonzero if this menu was invoked for a mouse click.
1909 KEYMAPS is 1 if this menu was specified with keymaps;
1910 in that case, we return a list containing the chosen item's value
1911 and perhaps also the pane's prefix.
1912 TITLE is the specified menu title.
1913 ERROR is a place to store an error message string in case of failure.
1914 (We return nil on failure, but the value doesn't actually matter.) */
1916 #ifdef USE_X_TOOLKIT
1918 /* We need a unique id for each widget handled by the Lucid Widget
1921 For the main windows, and popup menus, we use this counter,
1922 which we increment each time after use. This starts from 1<<16.
1924 For menu bars, we use numbers starting at 0, counted in
1925 next_menubar_widget_id. */
1926 LWLIB_ID widget_id_tick
;
1928 static Lisp_Object
*volatile menu_item_selection
;
1931 popup_selection_callback (widget
, id
, client_data
)
1934 XtPointer client_data
;
1936 menu_item_selection
= (Lisp_Object
*) client_data
;
1940 xmenu_show (f
, x
, y
, for_click
, keymaps
, title
, error
)
1954 widget_value
*wv
, *save_wv
= 0, *first_wv
= 0, *prev_wv
= 0;
1955 widget_value
**submenu_stack
1956 = (widget_value
**) alloca (menu_items_used
* sizeof (widget_value
*));
1957 Lisp_Object
*subprefix_stack
1958 = (Lisp_Object
*) alloca (menu_items_used
* sizeof (Lisp_Object
));
1959 int submenu_depth
= 0;
1960 XButtonPressedEvent dummy
;
1966 if (menu_items_used
<= MENU_ITEMS_PANE_LENGTH
)
1968 *error
= "Empty menu";
1972 /* Create a tree of widget_value objects
1973 representing the panes and their items. */
1974 wv
= xmalloc_widget_value ();
1978 wv
->button_type
= BUTTON_TYPE_NONE
;
1982 /* Loop over all panes and items, filling in the tree. */
1984 while (i
< menu_items_used
)
1986 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
1988 submenu_stack
[submenu_depth
++] = save_wv
;
1994 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
1997 save_wv
= submenu_stack
[--submenu_depth
];
2001 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
)
2002 && submenu_depth
!= 0)
2003 i
+= MENU_ITEMS_PANE_LENGTH
;
2004 /* Ignore a nil in the item list.
2005 It's meaningful only for dialog boxes. */
2006 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
2008 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2010 /* Create a new pane. */
2011 Lisp_Object pane_name
, prefix
;
2013 pane_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_NAME
];
2014 prefix
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2015 #ifndef HAVE_MULTILINGUAL_MENU
2016 if (!NILP (pane_name
) && STRING_MULTIBYTE (pane_name
))
2017 pane_name
= string_make_unibyte (pane_name
);
2019 pane_string
= (NILP (pane_name
)
2020 ? "" : (char *) XSTRING (pane_name
)->data
);
2021 /* If there is just one top-level pane, put all its items directly
2022 under the top-level menu. */
2023 if (menu_items_n_panes
== 1)
2026 /* If the pane has a meaningful name,
2027 make the pane a top-level menu item
2028 with its items as a submenu beneath it. */
2029 if (!keymaps
&& strcmp (pane_string
, ""))
2031 wv
= xmalloc_widget_value ();
2035 first_wv
->contents
= wv
;
2036 wv
->name
= pane_string
;
2037 if (keymaps
&& !NILP (prefix
))
2041 wv
->button_type
= BUTTON_TYPE_NONE
;
2045 else if (first_pane
)
2051 i
+= MENU_ITEMS_PANE_LENGTH
;
2055 /* Create a new item within current pane. */
2056 Lisp_Object item_name
, enable
, descrip
, def
, type
, selected
, help
;
2057 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
2058 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
2060 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
2061 def
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_DEFINITION
];
2062 type
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_TYPE
];
2063 selected
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_SELECTED
];
2064 help
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_HELP
];
2066 #ifndef HAVE_MULTILINGUAL_MENU
2067 if (STRINGP (item_name
) && STRING_MULTIBYTE (item_name
))
2068 item_name
= string_make_unibyte (item_name
);
2069 if (STRINGP (descrip
) && STRING_MULTIBYTE (descrip
))
2070 item_name
= string_make_unibyte (descrip
);
2073 wv
= xmalloc_widget_value ();
2077 save_wv
->contents
= wv
;
2078 wv
->name
= (char *) XSTRING (item_name
)->data
;
2079 if (!NILP (descrip
))
2080 wv
->key
= (char *) XSTRING (descrip
)->data
;
2082 /* If this item has a null value,
2083 make the call_data null so that it won't display a box
2084 when the mouse is on it. */
2086 = (!NILP (def
) ? (void *) &XVECTOR (menu_items
)->contents
[i
] : 0);
2087 wv
->enabled
= !NILP (enable
);
2090 wv
->button_type
= BUTTON_TYPE_NONE
;
2091 else if (EQ (type
, QCtoggle
))
2092 wv
->button_type
= BUTTON_TYPE_TOGGLE
;
2093 else if (EQ (type
, QCradio
))
2094 wv
->button_type
= BUTTON_TYPE_RADIO
;
2098 wv
->selected
= !NILP (selected
);
2100 wv
->help
= XSTRING (help
)->data
;
2104 i
+= MENU_ITEMS_ITEM_LENGTH
;
2108 /* Deal with the title, if it is non-nil. */
2111 widget_value
*wv_title
= xmalloc_widget_value ();
2112 widget_value
*wv_sep1
= xmalloc_widget_value ();
2113 widget_value
*wv_sep2
= xmalloc_widget_value ();
2115 wv_sep2
->name
= "--";
2116 wv_sep2
->next
= first_wv
->contents
;
2118 wv_sep1
->name
= "--";
2119 wv_sep1
->next
= wv_sep2
;
2121 #ifndef HAVE_MULTILINGUAL_MENU
2122 if (STRING_MULTIBYTE (title
))
2123 title
= string_make_unibyte (title
);
2125 wv_title
->name
= (char *) XSTRING (title
)->data
;
2126 wv_title
->enabled
= True
;
2127 wv_title
->button_type
= BUTTON_TYPE_NONE
;
2128 wv_title
->next
= wv_sep1
;
2129 first_wv
->contents
= wv_title
;
2132 /* Actually create the menu. */
2133 menu_id
= widget_id_tick
++;
2134 menu
= lw_create_widget ("popup", first_wv
->name
, menu_id
, first_wv
,
2135 f
->output_data
.x
->widget
, 1, 0,
2136 popup_selection_callback
,
2137 popup_deactivate_callback
,
2138 menu_highlight_callback
);
2140 /* Adjust coordinates to relative to the outer (window manager) window. */
2143 int win_x
= 0, win_y
= 0;
2145 /* Find the position of the outside upper-left corner of
2146 the inner window, with respect to the outer window. */
2147 if (f
->output_data
.x
->parent_desc
!= FRAME_X_DISPLAY_INFO (f
)->root_window
)
2150 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
2152 /* From-window, to-window. */
2153 f
->output_data
.x
->window_desc
,
2154 f
->output_data
.x
->parent_desc
,
2156 /* From-position, to-position. */
2157 0, 0, &win_x
, &win_y
,
2159 /* Child of window. */
2167 /* Adjust coordinates to be root-window-relative. */
2168 x
+= f
->output_data
.x
->left_pos
;
2169 y
+= f
->output_data
.x
->top_pos
;
2171 dummy
.type
= ButtonPress
;
2173 dummy
.send_event
= 0;
2174 dummy
.display
= FRAME_X_DISPLAY (f
);
2175 dummy
.time
= CurrentTime
;
2176 dummy
.root
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
2177 dummy
.window
= dummy
.root
;
2178 dummy
.subwindow
= dummy
.root
;
2183 dummy
.state
= (FRAME_X_DISPLAY_INFO (f
)->grabbed
>> 1) * Button1Mask
;
2185 for (i
= 0; i
< 5; i
++)
2186 if (FRAME_X_DISPLAY_INFO (f
)->grabbed
& (1 << i
))
2189 /* Don't allow any geometry request from the user. */
2190 XtSetArg (av
[ac
], XtNgeometry
, 0); ac
++;
2191 XtSetValues (menu
, av
, ac
);
2193 /* Free the widget_value objects we used to specify the contents. */
2194 free_menubar_widget_value_tree (first_wv
);
2196 /* Override any default settings with ones from the `menu' face. */
2197 x_set_menu_resources_from_menu_face (f
, menu
);
2199 /* No selection has been chosen yet. */
2200 menu_item_selection
= 0;
2202 /* Display the menu. */
2203 lw_popup_menu (menu
, (XEvent
*) &dummy
);
2204 popup_activated_flag
= 1;
2206 /* Process events that apply to the menu. */
2207 popup_get_selection ((XEvent
*) 0, FRAME_X_DISPLAY_INFO (f
), menu_id
);
2209 #ifdef LESSTIF_VERSION
2210 /* Nov 1998: For an unknown reason a button grab remains active
2211 after the popup menu has gone. */
2212 XUngrabButton (XtDisplay (f
->output_data
.x
->widget
),
2213 AnyButton
, AnyModifier
,
2214 XtWindow (f
->output_data
.x
->widget
));
2215 XUngrabButton (XtDisplay (f
->output_data
.x
->edit_widget
),
2216 AnyButton
, AnyModifier
,
2217 XtWindow (f
->output_data
.x
->edit_widget
));
2218 #endif /* LESSTIF_VERSION */
2220 /* fp turned off the following statement and wrote a comment
2221 that it is unnecessary--that the menu has already disappeared.
2222 Nowadays the menu disappears ok, all right, but
2223 we need to delete the widgets or multiple ones will pile up. */
2224 lw_destroy_all_widgets (menu_id
);
2226 /* Find the selected item, and its pane, to return
2227 the proper value. */
2228 if (menu_item_selection
!= 0)
2230 Lisp_Object prefix
, entry
;
2232 prefix
= entry
= Qnil
;
2234 while (i
< menu_items_used
)
2236 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
2238 subprefix_stack
[submenu_depth
++] = prefix
;
2242 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
2244 prefix
= subprefix_stack
[--submenu_depth
];
2247 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2250 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2251 i
+= MENU_ITEMS_PANE_LENGTH
;
2253 /* Ignore a nil in the item list.
2254 It's meaningful only for dialog boxes. */
2255 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
2260 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
2261 if (menu_item_selection
== &XVECTOR (menu_items
)->contents
[i
])
2267 entry
= Fcons (entry
, Qnil
);
2269 entry
= Fcons (prefix
, entry
);
2270 for (j
= submenu_depth
- 1; j
>= 0; j
--)
2271 if (!NILP (subprefix_stack
[j
]))
2272 entry
= Fcons (subprefix_stack
[j
], entry
);
2276 i
+= MENU_ITEMS_ITEM_LENGTH
;
2285 dialog_selection_callback (widget
, id
, client_data
)
2288 XtPointer client_data
;
2290 /* The EMACS_INT cast avoids a warning. There's no problem
2291 as long as pointers have enough bits to hold small integers. */
2292 if ((int) (EMACS_INT
) client_data
!= -1)
2293 menu_item_selection
= (Lisp_Object
*) client_data
;
2295 lw_destroy_all_widgets (id
);
2297 popup_activated_flag
= 0;
2300 static char * button_names
[] = {
2301 "button1", "button2", "button3", "button4", "button5",
2302 "button6", "button7", "button8", "button9", "button10" };
2305 xdialog_show (f
, keymaps
, title
, error
)
2311 int i
, nb_buttons
=0;
2314 char dialog_name
[6];
2316 widget_value
*wv
, *first_wv
= 0, *prev_wv
= 0;
2318 /* Number of elements seen so far, before boundary. */
2320 /* 1 means we've seen the boundary between left-hand elts and right-hand. */
2321 int boundary_seen
= 0;
2325 if (menu_items_n_panes
> 1)
2327 *error
= "Multiple panes in dialog box";
2331 /* Create a tree of widget_value objects
2332 representing the text label and buttons. */
2334 Lisp_Object pane_name
, prefix
;
2336 pane_name
= XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_NAME
];
2337 prefix
= XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_PREFIX
];
2338 pane_string
= (NILP (pane_name
)
2339 ? "" : (char *) XSTRING (pane_name
)->data
);
2340 prev_wv
= xmalloc_widget_value ();
2341 prev_wv
->value
= pane_string
;
2342 if (keymaps
&& !NILP (prefix
))
2344 prev_wv
->enabled
= 1;
2345 prev_wv
->name
= "message";
2348 /* Loop over all panes and items, filling in the tree. */
2349 i
= MENU_ITEMS_PANE_LENGTH
;
2350 while (i
< menu_items_used
)
2353 /* Create a new item within current pane. */
2354 Lisp_Object item_name
, enable
, descrip
;
2355 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
2356 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
2358 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
2360 if (NILP (item_name
))
2362 free_menubar_widget_value_tree (first_wv
);
2363 *error
= "Submenu in dialog items";
2366 if (EQ (item_name
, Qquote
))
2368 /* This is the boundary between left-side elts
2369 and right-side elts. Stop incrementing right_count. */
2374 if (nb_buttons
>= 9)
2376 free_menubar_widget_value_tree (first_wv
);
2377 *error
= "Too many dialog items";
2381 wv
= xmalloc_widget_value ();
2383 wv
->name
= (char *) button_names
[nb_buttons
];
2384 if (!NILP (descrip
))
2385 wv
->key
= (char *) XSTRING (descrip
)->data
;
2386 wv
->value
= (char *) XSTRING (item_name
)->data
;
2387 wv
->call_data
= (void *) &XVECTOR (menu_items
)->contents
[i
];
2388 wv
->enabled
= !NILP (enable
);
2391 if (! boundary_seen
)
2395 i
+= MENU_ITEMS_ITEM_LENGTH
;
2398 /* If the boundary was not specified,
2399 by default put half on the left and half on the right. */
2400 if (! boundary_seen
)
2401 left_count
= nb_buttons
- nb_buttons
/ 2;
2403 wv
= xmalloc_widget_value ();
2404 wv
->name
= dialog_name
;
2406 /* Dialog boxes use a really stupid name encoding
2407 which specifies how many buttons to use
2408 and how many buttons are on the right.
2409 The Q means something also. */
2410 dialog_name
[0] = 'Q';
2411 dialog_name
[1] = '0' + nb_buttons
;
2412 dialog_name
[2] = 'B';
2413 dialog_name
[3] = 'R';
2414 /* Number of buttons to put on the right. */
2415 dialog_name
[4] = '0' + nb_buttons
- left_count
;
2417 wv
->contents
= first_wv
;
2421 /* Actually create the dialog. */
2422 dialog_id
= widget_id_tick
++;
2423 menu
= lw_create_widget (first_wv
->name
, "dialog", dialog_id
, first_wv
,
2424 f
->output_data
.x
->widget
, 1, 0,
2425 dialog_selection_callback
, 0, 0);
2426 lw_modify_all_widgets (dialog_id
, first_wv
->contents
, True
);
2427 /* Free the widget_value objects we used to specify the contents. */
2428 free_menubar_widget_value_tree (first_wv
);
2430 /* No selection has been chosen yet. */
2431 menu_item_selection
= 0;
2433 /* Display the menu. */
2434 lw_pop_up_all_widgets (dialog_id
);
2435 popup_activated_flag
= 1;
2437 /* Process events that apply to the menu. */
2438 popup_get_selection ((XEvent
*) 0, FRAME_X_DISPLAY_INFO (f
), dialog_id
);
2440 lw_destroy_all_widgets (dialog_id
);
2442 /* Find the selected item, and its pane, to return
2443 the proper value. */
2444 if (menu_item_selection
!= 0)
2450 while (i
< menu_items_used
)
2454 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2457 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2458 i
+= MENU_ITEMS_PANE_LENGTH
;
2460 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
2462 /* This is the boundary between left-side elts and
2469 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
2470 if (menu_item_selection
== &XVECTOR (menu_items
)->contents
[i
])
2474 entry
= Fcons (entry
, Qnil
);
2476 entry
= Fcons (prefix
, entry
);
2480 i
+= MENU_ITEMS_ITEM_LENGTH
;
2488 #else /* not USE_X_TOOLKIT */
2490 /* The frame of the last activated non-toolkit menu bar.
2491 Used to generate menu help events. */
2493 static struct frame
*menu_help_frame
;
2496 /* Show help HELP_STRING, or clear help if HELP_STRING is null.
2498 PANE is the pane number, and ITEM is the menu item number in
2499 the menu (currently not used).
2501 This cannot be done with generating a HELP_EVENT because
2502 XMenuActivate contains a loop that doesn't let Emacs process
2506 menu_help_callback (help_string
, pane
, item
)
2510 extern Lisp_Object Qmenu_item
;
2511 Lisp_Object
*first_item
;
2512 Lisp_Object pane_name
;
2513 Lisp_Object menu_object
;
2515 first_item
= XVECTOR (menu_items
)->contents
;
2516 if (EQ (first_item
[0], Qt
))
2517 pane_name
= first_item
[MENU_ITEMS_PANE_NAME
];
2518 else if (EQ (first_item
[0], Qquote
))
2519 /* This shouldn't happen, see xmenu_show. */
2520 pane_name
= build_string ("");
2522 pane_name
= first_item
[MENU_ITEMS_ITEM_NAME
];
2524 /* (menu-item MENU-NAME PANE-NUMBER) */
2525 menu_object
= Fcons (Qmenu_item
,
2527 Fcons (make_number (pane
), Qnil
)));
2528 show_help_echo (help_string
? build_string (help_string
) : Qnil
,
2529 Qnil
, menu_object
, make_number (item
), 1);
2534 xmenu_show (f
, x
, y
, for_click
, keymaps
, title
, error
)
2544 int pane
, selidx
, lpane
, status
;
2545 Lisp_Object entry
, pane_prefix
;
2547 int ulx
, uly
, width
, height
;
2548 int dispwidth
, dispheight
;
2552 unsigned int dummy_uint
;
2555 if (menu_items_n_panes
== 0)
2558 if (menu_items_used
<= MENU_ITEMS_PANE_LENGTH
)
2560 *error
= "Empty menu";
2564 /* Figure out which root window F is on. */
2565 XGetGeometry (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), &root
,
2566 &dummy_int
, &dummy_int
, &dummy_uint
, &dummy_uint
,
2567 &dummy_uint
, &dummy_uint
);
2569 /* Make the menu on that window. */
2570 menu
= XMenuCreate (FRAME_X_DISPLAY (f
), root
, "emacs");
2573 *error
= "Can't create menu";
2577 #ifdef HAVE_X_WINDOWS
2578 /* Adjust coordinates to relative to the outer (window manager) window. */
2581 int win_x
= 0, win_y
= 0;
2583 /* Find the position of the outside upper-left corner of
2584 the inner window, with respect to the outer window. */
2585 if (f
->output_data
.x
->parent_desc
!= FRAME_X_DISPLAY_INFO (f
)->root_window
)
2588 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
2590 /* From-window, to-window. */
2591 f
->output_data
.x
->window_desc
,
2592 f
->output_data
.x
->parent_desc
,
2594 /* From-position, to-position. */
2595 0, 0, &win_x
, &win_y
,
2597 /* Child of window. */
2604 #endif /* HAVE_X_WINDOWS */
2606 /* Adjust coordinates to be root-window-relative. */
2607 x
+= f
->output_data
.x
->left_pos
;
2608 y
+= f
->output_data
.x
->top_pos
;
2610 /* Create all the necessary panes and their items. */
2612 while (i
< menu_items_used
)
2614 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2616 /* Create a new pane. */
2617 Lisp_Object pane_name
, prefix
;
2620 pane_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_NAME
];
2621 prefix
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2622 pane_string
= (NILP (pane_name
)
2623 ? "" : (char *) XSTRING (pane_name
)->data
);
2624 if (keymaps
&& !NILP (prefix
))
2627 lpane
= XMenuAddPane (FRAME_X_DISPLAY (f
), menu
, pane_string
, TRUE
);
2628 if (lpane
== XM_FAILURE
)
2630 XMenuDestroy (FRAME_X_DISPLAY (f
), menu
);
2631 *error
= "Can't create pane";
2634 i
+= MENU_ITEMS_PANE_LENGTH
;
2636 /* Find the width of the widest item in this pane. */
2639 while (j
< menu_items_used
)
2642 item
= XVECTOR (menu_items
)->contents
[j
];
2650 width
= STRING_BYTES (XSTRING (item
));
2651 if (width
> maxwidth
)
2654 j
+= MENU_ITEMS_ITEM_LENGTH
;
2657 /* Ignore a nil in the item list.
2658 It's meaningful only for dialog boxes. */
2659 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
2663 /* Create a new item within current pane. */
2664 Lisp_Object item_name
, enable
, descrip
, help
;
2665 unsigned char *item_data
;
2668 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
2669 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
2671 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
2672 help
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_HELP
];
2673 help_string
= STRINGP (help
) ? XSTRING (help
)->data
: NULL
;
2675 if (!NILP (descrip
))
2677 int gap
= maxwidth
- STRING_BYTES (XSTRING (item_name
));
2680 spacer
= Fmake_string (make_number (gap
), make_number (' '));
2681 item_name
= concat2 (item_name
, spacer
);
2682 item_name
= concat2 (item_name
, descrip
);
2683 item_data
= XSTRING (item_name
)->data
;
2685 /* if alloca is fast, use that to make the space,
2686 to reduce gc needs. */
2688 = (unsigned char *) alloca (maxwidth
2689 + STRING_BYTES (XSTRING (descrip
)) + 1);
2690 bcopy (XSTRING (item_name
)->data
, item_data
,
2691 STRING_BYTES (XSTRING (item_name
)));
2692 for (j
= XSTRING (item_name
)->size
; j
< maxwidth
; j
++)
2694 bcopy (XSTRING (descrip
)->data
, item_data
+ j
,
2695 STRING_BYTES (XSTRING (descrip
)));
2696 item_data
[j
+ STRING_BYTES (XSTRING (descrip
))] = 0;
2700 item_data
= XSTRING (item_name
)->data
;
2702 if (XMenuAddSelection (FRAME_X_DISPLAY (f
),
2703 menu
, lpane
, 0, item_data
,
2704 !NILP (enable
), help_string
)
2707 XMenuDestroy (FRAME_X_DISPLAY (f
), menu
);
2708 *error
= "Can't add selection to menu";
2711 i
+= MENU_ITEMS_ITEM_LENGTH
;
2715 /* All set and ready to fly. */
2716 XMenuRecompute (FRAME_X_DISPLAY (f
), menu
);
2717 dispwidth
= DisplayWidth (FRAME_X_DISPLAY (f
),
2718 XScreenNumberOfScreen (FRAME_X_SCREEN (f
)));
2719 dispheight
= DisplayHeight (FRAME_X_DISPLAY (f
),
2720 XScreenNumberOfScreen (FRAME_X_SCREEN (f
)));
2721 x
= min (x
, dispwidth
);
2722 y
= min (y
, dispheight
);
2725 XMenuLocate (FRAME_X_DISPLAY (f
), menu
, 0, 0, x
, y
,
2726 &ulx
, &uly
, &width
, &height
);
2727 if (ulx
+width
> dispwidth
)
2729 x
-= (ulx
+ width
) - dispwidth
;
2730 ulx
= dispwidth
- width
;
2732 if (uly
+height
> dispheight
)
2734 y
-= (uly
+ height
) - dispheight
;
2735 uly
= dispheight
- height
;
2737 if (ulx
< 0) x
-= ulx
;
2738 if (uly
< 0) y
-= uly
;
2740 XMenuSetAEQ (menu
, TRUE
);
2741 XMenuSetFreeze (menu
, TRUE
);
2744 /* Help display under X won't work because XMenuActivate contains
2745 a loop that doesn't give Emacs a chance to process it. */
2746 menu_help_frame
= f
;
2747 status
= XMenuActivate (FRAME_X_DISPLAY (f
), menu
, &pane
, &selidx
,
2748 x
, y
, ButtonReleaseMask
, &datap
,
2749 menu_help_callback
);
2752 #ifdef HAVE_X_WINDOWS
2753 /* Assume the mouse has moved out of the X window.
2754 If it has actually moved in, we will get an EnterNotify. */
2755 x_mouse_leave (FRAME_X_DISPLAY_INFO (f
));
2762 fprintf (stderr
, "pane= %d line = %d\n", panes
, selidx
);
2765 /* Find the item number SELIDX in pane number PANE. */
2767 while (i
< menu_items_used
)
2769 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2773 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2775 i
+= MENU_ITEMS_PANE_LENGTH
;
2784 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
2787 entry
= Fcons (entry
, Qnil
);
2788 if (!NILP (pane_prefix
))
2789 entry
= Fcons (pane_prefix
, entry
);
2795 i
+= MENU_ITEMS_ITEM_LENGTH
;
2801 *error
= "Can't activate menu";
2807 XMenuDestroy (FRAME_X_DISPLAY (f
), menu
);
2809 #ifdef HAVE_X_WINDOWS
2810 /* State that no mouse buttons are now held.
2811 (The oldXMenu code doesn't track this info for us.)
2812 That is not necessarily true, but the fiction leads to reasonable
2813 results, and it is a pain to ask which are actually held now. */
2814 FRAME_X_DISPLAY_INFO (f
)->grabbed
= 0;
2820 #endif /* not USE_X_TOOLKIT */
2822 #endif /* HAVE_MENUS */
2827 staticpro (&menu_items
);
2830 Qdebug_on_next_call
= intern ("debug-on-next-call");
2831 staticpro (&Qdebug_on_next_call
);
2833 DEFVAR_LISP ("menu-updating-frame", &Vmenu_updating_frame
,
2834 "Frame for which we are updating a menu.\n\
2835 The enable predicate for a menu command should check this variable.");
2836 Vmenu_updating_frame
= Qnil
;
2838 #ifdef USE_X_TOOLKIT
2839 widget_id_tick
= (1<<16);
2840 next_menubar_widget_id
= 1;
2843 defsubr (&Sx_popup_menu
);
2845 defsubr (&Sx_popup_dialog
);