1 /* X Communication module for terminals which understand the X protocol.
2 Copyright (C) 1986, 88, 93, 94, 96, 99, 2000 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* X pop-up deck-of-cards menu facility for gnuemacs.
23 * Written by Jon Arnold and Roman Budzianowski
24 * Mods and rewrite by Robert Krawitz
28 /* Modified by Fred Pierresteguy on December 93
29 to make the popup menus and menubar use the Xt. */
31 /* Rewritten for clarity and GC protection by rms in Feb 94. */
35 /* On 4.3 this loses if it comes after xterm.h. */
40 #include "termhooks.h"
44 #include "blockinput.h"
52 /* This may include sys/types.h, and that somehow loses
53 if this is not done before the other system files. */
57 /* Load sys/types.h if not already loaded.
58 In some systems loading it twice is suicidal. */
60 #include <sys/types.h>
63 #include "dispextern.h"
66 #undef HAVE_MULTILINGUAL_MENU
69 #include <X11/IntrinsicP.h>
70 #include <X11/CoreP.h>
71 #include <X11/StringDefs.h>
72 #include <X11/Shell.h>
74 #include <X11/Xaw/Paned.h>
75 #endif /* USE_LUCID */
76 #include "../lwlib/lwlib.h"
77 #else /* not USE_X_TOOLKIT */
78 #include "../oldXMenu/XMenu.h"
79 #endif /* not USE_X_TOOLKIT */
80 #endif /* HAVE_X_WINDOWS */
83 #include <Xm/Xm.h> /* for LESSTIF_VERSION */
86 #define min(x,y) (((x) < (y)) ? (x) : (y))
87 #define max(x,y) (((x) > (y)) ? (x) : (y))
94 Lisp_Object Vmenu_updating_frame
;
96 Lisp_Object Qdebug_on_next_call
;
98 extern Lisp_Object Qmenu_bar
;
99 extern Lisp_Object Qmouse_click
, Qevent_kind
;
101 extern Lisp_Object QCtoggle
, QCradio
;
103 extern Lisp_Object Voverriding_local_map
;
104 extern Lisp_Object Voverriding_local_map_menu_flag
;
106 extern Lisp_Object Qoverriding_local_map
, Qoverriding_terminal_local_map
;
108 extern Lisp_Object Qmenu_bar_update_hook
;
111 extern void set_frame_menubar ();
112 extern void process_expose_from_menu ();
113 extern XtAppContext Xt_app_con
;
115 static Lisp_Object
xdialog_show ();
116 void popup_get_selection ();
121 /* Define HAVE_BOXES if meus can handle radio and toggle buttons. */
126 static void push_menu_item
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
,
127 Lisp_Object
, Lisp_Object
, Lisp_Object
,
128 Lisp_Object
, Lisp_Object
));
129 static Lisp_Object
xmenu_show ();
130 static void keymap_panes ();
131 static void single_keymap_panes ();
132 static void single_menu_item ();
133 static void list_of_panes ();
134 static void list_of_items ();
136 /* This holds a Lisp vector that holds the results of decoding
137 the keymaps or alist-of-alists that specify a menu.
139 It describes the panes and items within the panes.
141 Each pane is described by 3 elements in the vector:
142 t, the pane name, the pane's prefix key.
143 Then follow the pane's items, with 5 elements per item:
144 the item string, the enable flag, the item's value,
145 the definition, and the equivalent keyboard key's description string.
147 In some cases, multiple levels of menus may be described.
148 A single vector slot containing nil indicates the start of a submenu.
149 A single vector slot containing lambda indicates the end of a submenu.
150 The submenu follows a menu item which is the way to reach the submenu.
152 A single vector slot containing quote indicates that the
153 following items should appear on the right of a dialog box.
155 Using a Lisp vector to hold this information while we decode it
156 takes care of protecting all the data from GC. */
158 #define MENU_ITEMS_PANE_NAME 1
159 #define MENU_ITEMS_PANE_PREFIX 2
160 #define MENU_ITEMS_PANE_LENGTH 3
164 MENU_ITEMS_ITEM_NAME
= 0,
165 MENU_ITEMS_ITEM_ENABLE
,
166 MENU_ITEMS_ITEM_VALUE
,
167 MENU_ITEMS_ITEM_EQUIV_KEY
,
168 MENU_ITEMS_ITEM_DEFINITION
,
169 MENU_ITEMS_ITEM_TYPE
,
170 MENU_ITEMS_ITEM_SELECTED
,
171 MENU_ITEMS_ITEM_HELP
,
172 MENU_ITEMS_ITEM_LENGTH
175 static Lisp_Object menu_items
;
177 /* Number of slots currently allocated in menu_items. */
178 static int menu_items_allocated
;
180 /* This is the index in menu_items of the first empty slot. */
181 static int menu_items_used
;
183 /* The number of panes currently recorded in menu_items,
184 excluding those within submenus. */
185 static int menu_items_n_panes
;
187 /* Current depth within submenus. */
188 static int menu_items_submenu_depth
;
190 /* Flag which when set indicates a dialog or menu has been posted by
191 Xt on behalf of one of the widget sets. */
192 int popup_activated_flag
;
194 static int next_menubar_widget_id
;
196 /* This is set nonzero after the user activates the menu bar, and set
197 to zero again after the menu bars are redisplayed by prepare_menu_bar.
198 While it is nonzero, all calls to set_frame_menubar go deep.
200 I don't understand why this is needed, but it does seem to be
201 needed on Motif, according to Marcus Daniels <marcus@sysc.pdx.edu>. */
203 int pending_menu_activation
;
207 /* Return the frame whose ->output_data.x->id equals ID, or 0 if none. */
209 static struct frame
*
210 menubar_id_to_frame (id
)
213 Lisp_Object tail
, frame
;
216 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
219 if (!GC_FRAMEP (frame
))
222 if (!FRAME_WINDOW_P (f
))
224 if (f
->output_data
.x
->id
== id
)
232 /* Initialize the menu_items structure if we haven't already done so.
233 Also mark it as currently empty. */
238 if (NILP (menu_items
))
240 menu_items_allocated
= 60;
241 menu_items
= Fmake_vector (make_number (menu_items_allocated
), Qnil
);
245 menu_items_n_panes
= 0;
246 menu_items_submenu_depth
= 0;
249 /* Call at the end of generating the data in menu_items.
250 This fills in the number of items in the last pane. */
257 /* Call when finished using the data for the current menu
261 discard_menu_items ()
263 /* Free the structure if it is especially large.
264 Otherwise, hold on to it, to save time. */
265 if (menu_items_allocated
> 200)
268 menu_items_allocated
= 0;
272 /* Make the menu_items vector twice as large. */
278 int old_size
= menu_items_allocated
;
281 menu_items_allocated
*= 2;
282 menu_items
= Fmake_vector (make_number (menu_items_allocated
), Qnil
);
283 bcopy (XVECTOR (old
)->contents
, XVECTOR (menu_items
)->contents
,
284 old_size
* sizeof (Lisp_Object
));
287 /* Begin a submenu. */
290 push_submenu_start ()
292 if (menu_items_used
+ 1 > menu_items_allocated
)
295 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qnil
;
296 menu_items_submenu_depth
++;
304 if (menu_items_used
+ 1 > menu_items_allocated
)
307 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qlambda
;
308 menu_items_submenu_depth
--;
311 /* Indicate boundary between left and right. */
314 push_left_right_boundary ()
316 if (menu_items_used
+ 1 > menu_items_allocated
)
319 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qquote
;
322 /* Start a new menu pane in menu_items..
323 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */
326 push_menu_pane (name
, prefix_vec
)
327 Lisp_Object name
, prefix_vec
;
329 if (menu_items_used
+ MENU_ITEMS_PANE_LENGTH
> menu_items_allocated
)
332 if (menu_items_submenu_depth
== 0)
333 menu_items_n_panes
++;
334 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qt
;
335 XVECTOR (menu_items
)->contents
[menu_items_used
++] = name
;
336 XVECTOR (menu_items
)->contents
[menu_items_used
++] = prefix_vec
;
339 /* Push one menu item into the current pane. NAME is the string to
340 display. ENABLE if non-nil means this item can be selected. KEY
341 is the key generated by choosing this item, or nil if this item
342 doesn't really have a definition. DEF is the definition of this
343 item. EQUIV is the textual description of the keyboard equivalent
344 for this item (or nil if none). TYPE is the type of this menu
345 item, one of nil, `toggle' or `radio'. */
348 push_menu_item (name
, enable
, key
, def
, equiv
, type
, selected
, help
)
349 Lisp_Object name
, enable
, key
, def
, equiv
, type
, selected
, help
;
351 if (menu_items_used
+ MENU_ITEMS_ITEM_LENGTH
> menu_items_allocated
)
354 XVECTOR (menu_items
)->contents
[menu_items_used
++] = name
;
355 XVECTOR (menu_items
)->contents
[menu_items_used
++] = enable
;
356 XVECTOR (menu_items
)->contents
[menu_items_used
++] = key
;
357 XVECTOR (menu_items
)->contents
[menu_items_used
++] = equiv
;
358 XVECTOR (menu_items
)->contents
[menu_items_used
++] = def
;
359 XVECTOR (menu_items
)->contents
[menu_items_used
++] = type
;
360 XVECTOR (menu_items
)->contents
[menu_items_used
++] = selected
;
361 XVECTOR (menu_items
)->contents
[menu_items_used
++] = help
;
364 /* Look through KEYMAPS, a vector of keymaps that is NMAPS long,
365 and generate menu panes for them in menu_items.
366 If NOTREAL is nonzero,
367 don't bother really computing whether an item is enabled. */
370 keymap_panes (keymaps
, nmaps
, notreal
)
371 Lisp_Object
*keymaps
;
379 /* Loop over the given keymaps, making a pane for each map.
380 But don't make a pane that is empty--ignore that map instead.
381 P is the number of panes we have made so far. */
382 for (mapno
= 0; mapno
< nmaps
; mapno
++)
383 single_keymap_panes (keymaps
[mapno
],
384 map_prompt (keymaps
[mapno
]), Qnil
, notreal
, 10);
386 finish_menu_items ();
389 /* This is a recursive subroutine of keymap_panes.
390 It handles one keymap, KEYMAP.
391 The other arguments are passed along
392 or point to local variables of the previous function.
393 If NOTREAL is nonzero, only check for equivalent key bindings, don't
394 evaluate expressions in menu items and don't make any menu.
396 If we encounter submenus deeper than MAXDEPTH levels, ignore them. */
399 single_keymap_panes (keymap
, pane_name
, prefix
, notreal
, maxdepth
)
401 Lisp_Object pane_name
;
406 Lisp_Object pending_maps
= Qnil
;
407 Lisp_Object tail
, item
;
408 struct gcpro gcpro1
, gcpro2
;
414 push_menu_pane (pane_name
, prefix
);
417 /* Remember index for first item in this pane so we can go back and
418 add a prefix when (if) we see the first button. After that, notbuttons
419 is set to 0, to mark that we have seen a button and all non button
420 items need a prefix. */
421 notbuttons
= menu_items_used
;
424 for (tail
= keymap
; CONSP (tail
); tail
= XCDR (tail
))
426 GCPRO2 (keymap
, pending_maps
);
427 /* Look at each key binding, and if it is a menu item add it
431 single_menu_item (XCAR (item
), XCDR (item
),
432 &pending_maps
, notreal
, maxdepth
, ¬buttons
);
433 else if (VECTORP (item
))
435 /* Loop over the char values represented in the vector. */
436 int len
= XVECTOR (item
)->size
;
438 for (c
= 0; c
< len
; c
++)
440 Lisp_Object character
;
441 XSETFASTINT (character
, c
);
442 single_menu_item (character
, XVECTOR (item
)->contents
[c
],
443 &pending_maps
, notreal
, maxdepth
, ¬buttons
);
449 /* Process now any submenus which want to be panes at this level. */
450 while (!NILP (pending_maps
))
452 Lisp_Object elt
, eltcdr
, string
;
453 elt
= Fcar (pending_maps
);
455 string
= XCAR (eltcdr
);
456 /* We no longer discard the @ from the beginning of the string here.
457 Instead, we do this in xmenu_show. */
458 single_keymap_panes (Fcar (elt
), string
,
459 XCDR (eltcdr
), notreal
, maxdepth
- 1);
460 pending_maps
= Fcdr (pending_maps
);
464 /* This is a subroutine of single_keymap_panes that handles one
466 KEY is a key in a keymap and ITEM is its binding.
467 PENDING_MAPS_PTR points to a list of keymaps waiting to be made into
469 If NOTREAL is nonzero, only check for equivalent key bindings, don't
470 evaluate expressions in menu items and don't make any menu.
471 If we encounter submenus deeper than MAXDEPTH levels, ignore them.
472 NOTBUTTONS_PTR is only used when simulating toggle boxes and radio
473 buttons. It points to variable notbuttons in single_keymap_panes,
474 which keeps track of if we have seen a button in this menu or not. */
477 single_menu_item (key
, item
, pending_maps_ptr
, notreal
, maxdepth
,
479 Lisp_Object key
, item
;
480 Lisp_Object
*pending_maps_ptr
;
481 int maxdepth
, notreal
;
484 Lisp_Object map
, item_string
, enabled
;
485 struct gcpro gcpro1
, gcpro2
;
488 /* Parse the menu item and leave the result in item_properties. */
490 res
= parse_menu_item (item
, notreal
, 0);
493 return; /* Not a menu item. */
495 map
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_MAP
];
499 /* We don't want to make a menu, just traverse the keymaps to
500 precompute equivalent key bindings. */
502 single_keymap_panes (map
, Qnil
, key
, 1, maxdepth
- 1);
506 enabled
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_ENABLE
];
507 item_string
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_NAME
];
509 if (!NILP (map
) && XSTRING (item_string
)->data
[0] == '@')
512 /* An enabled separate pane. Remember this to handle it later. */
513 *pending_maps_ptr
= Fcons (Fcons (map
, Fcons (item_string
, key
)),
519 /* Simulate radio buttons and toggle boxes by putting a prefix in
522 Lisp_Object prefix
= Qnil
;
523 Lisp_Object type
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_TYPE
];
527 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_SELECTED
];
530 /* The first button. Line up previous items in this menu. */
532 int index
= *notbuttons_ptr
; /* Index for first item this menu. */
535 while (index
< menu_items_used
)
538 = XVECTOR (menu_items
)->contents
[index
+ MENU_ITEMS_ITEM_NAME
];
542 submenu
++; /* Skip sub menu. */
544 else if (EQ (tem
, Qlambda
))
547 submenu
--; /* End sub menu. */
549 else if (EQ (tem
, Qt
))
550 index
+= 3; /* Skip new pane marker. */
551 else if (EQ (tem
, Qquote
))
552 index
++; /* Skip a left, right divider. */
555 if (!submenu
&& XSTRING (tem
)->data
[0] != '\0'
556 && XSTRING (tem
)->data
[0] != '-')
557 XVECTOR (menu_items
)->contents
[index
+ MENU_ITEMS_ITEM_NAME
]
558 = concat2 (build_string (" "), tem
);
559 index
+= MENU_ITEMS_ITEM_LENGTH
;
565 /* Calculate prefix, if any, for this item. */
566 if (EQ (type
, QCtoggle
))
567 prefix
= build_string (NILP (selected
) ? "[ ] " : "[X] ");
568 else if (EQ (type
, QCradio
))
569 prefix
= build_string (NILP (selected
) ? "( ) " : "(*) ");
571 /* Not a button. If we have earlier buttons, then we need a prefix. */
572 else if (!*notbuttons_ptr
&& XSTRING (item_string
)->data
[0] != '\0'
573 && XSTRING (item_string
)->data
[0] != '-')
574 prefix
= build_string (" ");
577 item_string
= concat2 (prefix
, item_string
);
579 #endif /* not HAVE_BOXES */
581 #ifndef USE_X_TOOLKIT
583 /* Indicate visually that this is a submenu. */
584 item_string
= concat2 (item_string
, build_string (" >"));
587 push_menu_item (item_string
, enabled
, key
,
588 XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_DEF
],
589 XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_KEYEQ
],
590 XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_TYPE
],
591 XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_SELECTED
],
592 XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_HELP
]);
595 /* Display a submenu using the toolkit. */
596 if (! (NILP (map
) || NILP (enabled
)))
598 push_submenu_start ();
599 single_keymap_panes (map
, Qnil
, key
, 0, maxdepth
- 1);
605 /* Push all the panes and items of a menu described by the
606 alist-of-alists MENU.
607 This handles old-fashioned calls to x-popup-menu. */
617 for (tail
= menu
; !NILP (tail
); tail
= Fcdr (tail
))
619 Lisp_Object elt
, pane_name
, pane_data
;
621 pane_name
= Fcar (elt
);
622 CHECK_STRING (pane_name
, 0);
623 push_menu_pane (pane_name
, Qnil
);
624 pane_data
= Fcdr (elt
);
625 CHECK_CONS (pane_data
, 0);
626 list_of_items (pane_data
);
629 finish_menu_items ();
632 /* Push the items in a single pane defined by the alist PANE. */
638 Lisp_Object tail
, item
, item1
;
640 for (tail
= pane
; !NILP (tail
); tail
= Fcdr (tail
))
644 push_menu_item (item
, Qnil
, Qnil
, Qt
, Qnil
, Qnil
, Qnil
, Qnil
);
645 else if (NILP (item
))
646 push_left_right_boundary ();
649 CHECK_CONS (item
, 0);
651 CHECK_STRING (item1
, 1);
652 push_menu_item (item1
, Qt
, Fcdr (item
), Qt
, Qnil
, Qnil
, Qnil
, Qnil
);
657 DEFUN ("x-popup-menu", Fx_popup_menu
, Sx_popup_menu
, 2, 2, 0,
658 "Pop up a deck-of-cards menu and return user's selection.\n\
659 POSITION is a position specification. This is either a mouse button event\n\
660 or a list ((XOFFSET YOFFSET) WINDOW)\n\
661 where XOFFSET and YOFFSET are positions in pixels from the top left\n\
662 corner of WINDOW's frame. (WINDOW may be a frame object instead of a window.)\n\
663 This controls the position of the center of the first line\n\
664 in the first pane of the menu, not the top left of the menu as a whole.\n\
665 If POSITION is t, it means to use the current mouse position.\n\
667 MENU is a specifier for a menu. For the simplest case, MENU is a keymap.\n\
668 The menu items come from key bindings that have a menu string as well as\n\
669 a definition; actually, the \"definition\" in such a key binding looks like\n\
670 \(STRING . REAL-DEFINITION). To give the menu a title, put a string into\n\
671 the keymap as a top-level element.\n\n\
672 If REAL-DEFINITION is nil, that puts a nonselectable string in the menu.\n\
673 Otherwise, REAL-DEFINITION should be a valid key binding definition.\n\
675 You can also use a list of keymaps as MENU.\n\
676 Then each keymap makes a separate pane.\n\
677 When MENU is a keymap or a list of keymaps, the return value\n\
678 is a list of events.\n\n\
680 Alternatively, you can specify a menu of multiple panes\n\
681 with a list of the form (TITLE PANE1 PANE2...),\n\
682 where each pane is a list of form (TITLE ITEM1 ITEM2...).\n\
683 Each ITEM is normally a cons cell (STRING . VALUE);\n\
684 but a string can appear as an item--that makes a nonselectable line\n\
686 With this form of menu, the return value is VALUE from the chosen item.\n\
688 If POSITION is nil, don't display the menu at all, just precalculate the\n\
689 cached information about equivalent key sequences.")
691 Lisp_Object position
, menu
;
693 Lisp_Object keymap
, tem
;
694 int xpos
= 0, ypos
= 0;
697 Lisp_Object selection
;
698 struct frame
*f
= NULL
;
699 Lisp_Object x
, y
, window
;
705 if (! NILP (position
))
709 /* Decode the first argument: find the window and the coordinates. */
710 if (EQ (position
, Qt
)
711 || (CONSP (position
) && (EQ (XCAR (position
), Qmenu_bar
)
712 || EQ (XCAR (position
), Qtool_bar
))))
714 /* Use the mouse's current position. */
715 FRAME_PTR new_f
= SELECTED_FRAME ();
716 Lisp_Object bar_window
;
717 enum scroll_bar_part part
;
720 if (mouse_position_hook
)
721 (*mouse_position_hook
) (&new_f
, 1, &bar_window
,
722 &part
, &x
, &y
, &time
);
724 XSETFRAME (window
, new_f
);
727 window
= selected_window
;
734 tem
= Fcar (position
);
737 window
= Fcar (Fcdr (position
));
739 y
= Fcar (Fcdr (tem
));
744 tem
= Fcar (Fcdr (position
)); /* EVENT_START (position) */
745 window
= Fcar (tem
); /* POSN_WINDOW (tem) */
746 tem
= Fcar (Fcdr (Fcdr (tem
))); /* POSN_WINDOW_POSN (tem) */
755 /* Decode where to put the menu. */
763 else if (WINDOWP (window
))
765 CHECK_LIVE_WINDOW (window
, 0);
766 f
= XFRAME (WINDOW_FRAME (XWINDOW (window
)));
768 xpos
= (FONT_WIDTH (f
->output_data
.x
->font
)
769 * XFASTINT (XWINDOW (window
)->left
));
770 ypos
= (f
->output_data
.x
->line_height
771 * XFASTINT (XWINDOW (window
)->top
));
774 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
775 but I don't want to make one now. */
776 CHECK_WINDOW (window
, 0);
781 XSETFRAME (Vmenu_updating_frame
, f
);
783 Vmenu_updating_frame
= Qnil
;
784 #endif /* HAVE_MENUS */
789 /* Decode the menu items from what was specified. */
791 keymap
= get_keymap (menu
, 0, 0);
794 /* We were given a keymap. Extract menu info from the keymap. */
797 /* Extract the detailed info to make one pane. */
798 keymap_panes (&menu
, 1, NILP (position
));
800 /* Search for a string appearing directly as an element of the keymap.
801 That string is the title of the menu. */
802 prompt
= map_prompt (keymap
);
803 if (NILP (title
) && !NILP (prompt
))
806 /* Make that be the pane title of the first pane. */
807 if (!NILP (prompt
) && menu_items_n_panes
>= 0)
808 XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_NAME
] = prompt
;
812 else if (CONSP (menu
) && KEYMAPP (XCAR (menu
)))
814 /* We were given a list of keymaps. */
815 int nmaps
= XFASTINT (Flength (menu
));
817 = (Lisp_Object
*) alloca (nmaps
* sizeof (Lisp_Object
));
822 /* The first keymap that has a prompt string
823 supplies the menu title. */
824 for (tem
= menu
, i
= 0; CONSP (tem
); tem
= Fcdr (tem
))
828 maps
[i
++] = keymap
= get_keymap (Fcar (tem
), 1, 0);
830 prompt
= map_prompt (keymap
);
831 if (NILP (title
) && !NILP (prompt
))
835 /* Extract the detailed info to make one pane. */
836 keymap_panes (maps
, nmaps
, NILP (position
));
838 /* Make the title be the pane title of the first pane. */
839 if (!NILP (title
) && menu_items_n_panes
>= 0)
840 XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_NAME
] = title
;
846 /* We were given an old-fashioned menu. */
848 CHECK_STRING (title
, 1);
850 list_of_panes (Fcdr (menu
));
857 discard_menu_items ();
863 /* Display them in a menu. */
866 selection
= xmenu_show (f
, xpos
, ypos
, for_click
,
867 keymaps
, title
, &error_name
);
870 discard_menu_items ();
873 #endif /* HAVE_MENUS */
875 if (error_name
) error (error_name
);
881 DEFUN ("x-popup-dialog", Fx_popup_dialog
, Sx_popup_dialog
, 2, 2, 0,
882 "Pop up a dialog box and return user's selection.\n\
883 POSITION specifies which frame to use.\n\
884 This is normally a mouse button event or a window or frame.\n\
885 If POSITION is t, it means to use the frame the mouse is on.\n\
886 The dialog box appears in the middle of the specified frame.\n\
888 CONTENTS specifies the alternatives to display in the dialog box.\n\
889 It is a list of the form (TITLE ITEM1 ITEM2...).\n\
890 Each ITEM is a cons cell (STRING . VALUE).\n\
891 The return value is VALUE from the chosen item.\n\n\
892 An ITEM may also be just a string--that makes a nonselectable item.\n\
893 An ITEM may also be nil--that means to put all preceding items\n\
894 on the left of the dialog box and all following items on the right.\n\
895 \(By default, approximately half appear on each side.)")
897 Lisp_Object position
, contents
;
899 struct frame
* f
= NULL
;
904 /* Decode the first argument: find the window or frame to use. */
905 if (EQ (position
, Qt
)
906 || (CONSP (position
) && (EQ (XCAR (position
), Qmenu_bar
)
907 || EQ (XCAR (position
), Qtool_bar
))))
909 #if 0 /* Using the frame the mouse is on may not be right. */
910 /* Use the mouse's current position. */
911 FRAME_PTR new_f
= SELECTED_FRAME ();
912 Lisp_Object bar_window
;
917 (*mouse_position_hook
) (&new_f
, 1, &bar_window
, &part
, &x
, &y
, &time
);
920 XSETFRAME (window
, new_f
);
922 window
= selected_window
;
924 window
= selected_window
;
926 else if (CONSP (position
))
929 tem
= Fcar (position
);
931 window
= Fcar (Fcdr (position
));
934 tem
= Fcar (Fcdr (position
)); /* EVENT_START (position) */
935 window
= Fcar (tem
); /* POSN_WINDOW (tem) */
938 else if (WINDOWP (position
) || FRAMEP (position
))
943 /* Decode where to put the menu. */
947 else if (WINDOWP (window
))
949 CHECK_LIVE_WINDOW (window
, 0);
950 f
= XFRAME (WINDOW_FRAME (XWINDOW (window
)));
953 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
954 but I don't want to make one now. */
955 CHECK_WINDOW (window
, 0);
957 #ifndef USE_X_TOOLKIT
958 /* Display a menu with these alternatives
959 in the middle of frame F. */
961 Lisp_Object x
, y
, frame
, newpos
;
962 XSETFRAME (frame
, f
);
963 XSETINT (x
, x_pixel_width (f
) / 2);
964 XSETINT (y
, x_pixel_height (f
) / 2);
965 newpos
= Fcons (Fcons (x
, Fcons (y
, Qnil
)), Fcons (frame
, Qnil
));
967 return Fx_popup_menu (newpos
,
968 Fcons (Fcar (contents
), Fcons (contents
, Qnil
)));
974 Lisp_Object selection
;
976 /* Decode the dialog items from what was specified. */
977 title
= Fcar (contents
);
978 CHECK_STRING (title
, 1);
980 list_of_panes (Fcons (contents
, Qnil
));
982 /* Display them in a dialog box. */
984 selection
= xdialog_show (f
, 0, title
, &error_name
);
987 discard_menu_items ();
989 if (error_name
) error (error_name
);
997 /* Loop in Xt until the menu pulldown or dialog popup has been
998 popped down (deactivated). This is used for x-popup-menu
999 and x-popup-dialog; it is not used for the menu bar any more.
1001 NOTE: All calls to popup_get_selection should be protected
1002 with BLOCK_INPUT, UNBLOCK_INPUT wrappers. */
1005 popup_get_selection (initial_event
, dpyinfo
, id
)
1006 XEvent
*initial_event
;
1007 struct x_display_info
*dpyinfo
;
1012 /* Define a queue to save up for later unreading
1013 all X events that don't pertain to the menu. */
1017 struct event_queue
*next
;
1020 struct event_queue
*queue
= NULL
;
1021 struct event_queue
*queue_tmp
;
1024 event
= *initial_event
;
1026 XtAppNextEvent (Xt_app_con
, &event
);
1030 /* Handle expose events for editor frames right away. */
1031 if (event
.type
== Expose
)
1032 process_expose_from_menu (event
);
1033 /* Make sure we don't consider buttons grabbed after menu goes.
1034 And make sure to deactivate for any ButtonRelease,
1035 even if XtDispatchEvent doesn't do that. */
1036 else if (event
.type
== ButtonRelease
1037 && dpyinfo
->display
== event
.xbutton
.display
)
1039 dpyinfo
->grabbed
&= ~(1 << event
.xbutton
.button
);
1040 popup_activated_flag
= 0;
1041 #ifdef USE_MOTIF /* Pretending that the event came from a
1042 Btn1Down seems the only way to convince Motif to
1043 activate its callbacks; setting the XmNmenuPost
1044 isn't working. --marcus@sysc.pdx.edu. */
1045 event
.xbutton
.button
= 1;
1048 /* If the user presses a key, deactivate the menu.
1049 The user is likely to do that if we get wedged. */
1050 else if (event
.type
== KeyPress
1051 && dpyinfo
->display
== event
.xbutton
.display
)
1053 KeySym keysym
= XLookupKeysym (&event
.xkey
, 0);
1054 if (!IsModifierKey (keysym
))
1056 popup_activated_flag
= 0;
1060 /* Button presses outside the menu also pop it down. */
1061 else if (event
.type
== ButtonPress
1062 && event
.xany
.display
== dpyinfo
->display
1063 && x_any_window_to_frame (dpyinfo
, event
.xany
.window
))
1065 popup_activated_flag
= 0;
1069 /* Queue all events not for this popup,
1070 except for Expose, which we've already handled, and ButtonRelease.
1071 Note that the X window is associated with the frame if this
1072 is a menu bar popup, but not if it's a dialog box. So we use
1073 x_non_menubar_window_to_frame, not x_any_window_to_frame. */
1074 if (event
.type
!= Expose
1075 && !(event
.type
== ButtonRelease
1076 && dpyinfo
->display
== event
.xbutton
.display
)
1077 && (event
.xany
.display
!= dpyinfo
->display
1078 || x_non_menubar_window_to_frame (dpyinfo
, event
.xany
.window
)))
1080 queue_tmp
= (struct event_queue
*) xmalloc (sizeof *queue_tmp
);
1081 queue_tmp
->event
= event
;
1082 queue_tmp
->next
= queue
;
1086 XtDispatchEvent (&event
);
1088 if (!popup_activated ())
1090 XtAppNextEvent (Xt_app_con
, &event
);
1093 /* Unread any events that we got but did not handle. */
1094 while (queue
!= NULL
)
1097 XPutBackEvent (queue_tmp
->event
.xany
.display
, &queue_tmp
->event
);
1098 queue
= queue_tmp
->next
;
1099 xfree ((char *)queue_tmp
);
1100 /* Cause these events to get read as soon as we UNBLOCK_INPUT. */
1101 interrupt_input_pending
= 1;
1105 /* Activate the menu bar of frame F.
1106 This is called from keyboard.c when it gets the
1107 menu_bar_activate_event out of the Emacs event queue.
1109 To activate the menu bar, we use the X button-press event
1110 that was saved in saved_menu_event.
1111 That makes the toolkit do its thing.
1113 But first we recompute the menu bar contents (the whole tree).
1115 The reason for saving the button event until here, instead of
1116 passing it to the toolkit right away, is that we can safely
1117 execute Lisp code. */
1120 x_activate_menubar (f
)
1123 if (!f
->output_data
.x
->saved_menu_event
->type
)
1126 set_frame_menubar (f
, 0, 1);
1128 XtDispatchEvent ((XEvent
*) f
->output_data
.x
->saved_menu_event
);
1131 if (f
->output_data
.x
->saved_menu_event
->type
== ButtonRelease
)
1132 pending_menu_activation
= 1;
1135 /* Ignore this if we get it a second time. */
1136 f
->output_data
.x
->saved_menu_event
->type
= 0;
1139 /* Detect if a dialog or menu has been posted. */
1144 return popup_activated_flag
;
1147 /* This callback is invoked when the user selects a menubar cascade
1148 pushbutton, but before the pulldown menu is posted. */
1151 popup_activate_callback (widget
, id
, client_data
)
1154 XtPointer client_data
;
1157 ++popup_activated_flag
;
1159 popup_activated_flag
= 1;
1163 /* This callback is invoked when a dialog or menu is finished being
1164 used and has been unposted. */
1167 popup_deactivate_callback (widget
, id
, client_data
)
1170 XtPointer client_data
;
1173 --popup_activated_flag
;
1175 popup_activated_flag
= 0;
1179 /* Lwlib callback called when menu items are highlighted/unhighlighted
1180 while moving the mouse over them. WIDGET is the menu bar or menu
1181 popup widget. ID is its LWLIB_ID. CALL_DATA contains a pointer to
1182 the widget_value structure for the menu item, or null in case of
1186 menu_highlight_callback (widget
, id
, call_data
)
1191 widget_value
*wv
= (widget_value
*) call_data
;
1193 Lisp_Object frame
, help
;
1195 help
= wv
&& wv
->help
? build_string (wv
->help
) : Qnil
;
1197 /* Determine the frame for the help event. */
1198 f
= menubar_id_to_frame (id
);
1201 XSETFRAME (frame
, f
);
1202 kbd_buffer_store_help_event (frame
, help
);
1206 /* WIDGET is the popup menu. It's parent is the frame's
1207 widget. See which frame that is. */
1208 Widget frame_widget
= XtParent (widget
);
1211 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
1213 frame
= XCAR (tail
);
1214 if (GC_FRAMEP (frame
)
1215 && (f
= XFRAME (frame
),
1216 FRAME_X_P (f
) && f
->output_data
.x
->widget
== frame_widget
))
1220 show_help_echo (help
, Qnil
, Qnil
, Qnil
, 1);
1224 /* This callback is called from the menu bar pulldown menu
1225 when the user makes a selection.
1226 Figure out what the user chose
1227 and put the appropriate events into the keyboard buffer. */
1230 menubar_selection_callback (widget
, id
, client_data
)
1233 XtPointer client_data
;
1235 Lisp_Object prefix
, entry
;
1236 FRAME_PTR f
= menubar_id_to_frame (id
);
1238 Lisp_Object
*subprefix_stack
;
1239 int submenu_depth
= 0;
1245 subprefix_stack
= (Lisp_Object
*) alloca (f
->menu_bar_items_used
* sizeof (Lisp_Object
));
1246 vector
= f
->menu_bar_vector
;
1249 while (i
< f
->menu_bar_items_used
)
1251 if (EQ (XVECTOR (vector
)->contents
[i
], Qnil
))
1253 subprefix_stack
[submenu_depth
++] = prefix
;
1257 else if (EQ (XVECTOR (vector
)->contents
[i
], Qlambda
))
1259 prefix
= subprefix_stack
[--submenu_depth
];
1262 else if (EQ (XVECTOR (vector
)->contents
[i
], Qt
))
1264 prefix
= XVECTOR (vector
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
1265 i
+= MENU_ITEMS_PANE_LENGTH
;
1269 entry
= XVECTOR (vector
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
1270 /* The EMACS_INT cast avoids a warning. There's no problem
1271 as long as pointers have enough bits to hold small integers. */
1272 if ((int) (EMACS_INT
) client_data
== i
)
1275 struct input_event buf
;
1278 XSETFRAME (frame
, f
);
1279 buf
.kind
= MENU_BAR_EVENT
;
1280 buf
.frame_or_window
= frame
;
1282 kbd_buffer_store_event (&buf
);
1284 for (j
= 0; j
< submenu_depth
; j
++)
1285 if (!NILP (subprefix_stack
[j
]))
1287 buf
.kind
= MENU_BAR_EVENT
;
1288 buf
.frame_or_window
= frame
;
1289 buf
.arg
= subprefix_stack
[j
];
1290 kbd_buffer_store_event (&buf
);
1295 buf
.kind
= MENU_BAR_EVENT
;
1296 buf
.frame_or_window
= frame
;
1298 kbd_buffer_store_event (&buf
);
1301 buf
.kind
= MENU_BAR_EVENT
;
1302 buf
.frame_or_window
= frame
;
1304 kbd_buffer_store_event (&buf
);
1308 i
+= MENU_ITEMS_ITEM_LENGTH
;
1313 /* Allocate a widget_value, blocking input. */
1316 xmalloc_widget_value ()
1318 widget_value
*value
;
1321 value
= malloc_widget_value ();
1327 /* This recursively calls free_widget_value on the tree of widgets.
1328 It must free all data that was malloc'ed for these widget_values.
1329 In Emacs, many slots are pointers into the data of Lisp_Strings, and
1330 must be left alone. */
1333 free_menubar_widget_value_tree (wv
)
1338 wv
->name
= wv
->value
= wv
->key
= (char *) 0xDEADBEEF;
1340 if (wv
->contents
&& (wv
->contents
!= (widget_value
*)1))
1342 free_menubar_widget_value_tree (wv
->contents
);
1343 wv
->contents
= (widget_value
*) 0xDEADBEEF;
1347 free_menubar_widget_value_tree (wv
->next
);
1348 wv
->next
= (widget_value
*) 0xDEADBEEF;
1351 free_widget_value (wv
);
1355 /* Return a tree of widget_value structures for a menu bar item
1356 whose event type is ITEM_KEY (with string ITEM_NAME)
1357 and whose contents come from the list of keymaps MAPS. */
1359 static widget_value
*
1360 single_submenu (item_key
, item_name
, maps
)
1361 Lisp_Object item_key
, item_name
, maps
;
1363 widget_value
*wv
, *prev_wv
, *save_wv
, *first_wv
;
1365 int submenu_depth
= 0;
1368 Lisp_Object
*mapvec
;
1369 widget_value
**submenu_stack
;
1370 int previous_items
= menu_items_used
;
1371 int top_level_items
= 0;
1373 length
= Flength (maps
);
1374 len
= XINT (length
);
1376 /* Convert the list MAPS into a vector MAPVEC. */
1377 mapvec
= (Lisp_Object
*) alloca (len
* sizeof (Lisp_Object
));
1378 for (i
= 0; i
< len
; i
++)
1380 mapvec
[i
] = Fcar (maps
);
1384 menu_items_n_panes
= 0;
1386 /* Loop over the given keymaps, making a pane for each map.
1387 But don't make a pane that is empty--ignore that map instead. */
1388 for (i
= 0; i
< len
; i
++)
1390 if (SYMBOLP (mapvec
[i
])
1391 || (CONSP (mapvec
[i
]) && !KEYMAPP (mapvec
[i
])))
1393 /* Here we have a command at top level in the menu bar
1394 as opposed to a submenu. */
1395 top_level_items
= 1;
1396 push_menu_pane (Qnil
, Qnil
);
1397 push_menu_item (item_name
, Qt
, item_key
, mapvec
[i
],
1398 Qnil
, Qnil
, Qnil
, Qnil
);
1401 single_keymap_panes (mapvec
[i
], item_name
, item_key
, 0, 10);
1404 /* Create a tree of widget_value objects
1405 representing the panes and their items. */
1408 = (widget_value
**) alloca (menu_items_used
* sizeof (widget_value
*));
1409 wv
= xmalloc_widget_value ();
1413 wv
->button_type
= BUTTON_TYPE_NONE
;
1418 /* Loop over all panes and items made during this call
1419 and construct a tree of widget_value objects.
1420 Ignore the panes and items made by previous calls to
1421 single_submenu, even though those are also in menu_items. */
1423 while (i
< menu_items_used
)
1425 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
1427 submenu_stack
[submenu_depth
++] = save_wv
;
1432 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
1435 save_wv
= submenu_stack
[--submenu_depth
];
1438 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
)
1439 && submenu_depth
!= 0)
1440 i
+= MENU_ITEMS_PANE_LENGTH
;
1441 /* Ignore a nil in the item list.
1442 It's meaningful only for dialog boxes. */
1443 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
1445 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
1447 /* Create a new pane. */
1448 Lisp_Object pane_name
, prefix
;
1450 pane_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_NAME
];
1451 prefix
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
1452 #ifndef HAVE_MULTILINGUAL_MENU
1453 if (STRINGP (pane_name
) && STRING_MULTIBYTE (pane_name
))
1454 pane_name
= string_make_unibyte (pane_name
);
1456 pane_string
= (NILP (pane_name
)
1457 ? "" : (char *) XSTRING (pane_name
)->data
);
1458 /* If there is just one top-level pane, put all its items directly
1459 under the top-level menu. */
1460 if (menu_items_n_panes
== 1)
1463 /* If the pane has a meaningful name,
1464 make the pane a top-level menu item
1465 with its items as a submenu beneath it. */
1466 if (strcmp (pane_string
, ""))
1468 wv
= xmalloc_widget_value ();
1472 first_wv
->contents
= wv
;
1473 wv
->name
= pane_string
;
1474 /* Ignore the @ that means "separate pane".
1475 This is a kludge, but this isn't worth more time. */
1476 if (!NILP (prefix
) && wv
->name
[0] == '@')
1480 wv
->button_type
= BUTTON_TYPE_NONE
;
1484 i
+= MENU_ITEMS_PANE_LENGTH
;
1488 /* Create a new item within current pane. */
1489 Lisp_Object item_name
, enable
, descrip
, def
, type
, selected
;
1492 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
1493 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
1495 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
1496 def
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_DEFINITION
];
1497 type
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_TYPE
];
1498 selected
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_SELECTED
];
1499 help
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_HELP
];
1501 #ifndef HAVE_MULTILINGUAL_MENU
1502 if (STRING_MULTIBYTE (item_name
))
1503 item_name
= string_make_unibyte (item_name
);
1504 if (STRINGP (descrip
) && STRING_MULTIBYTE (descrip
))
1505 descrip
= string_make_unibyte (descrip
);
1508 wv
= xmalloc_widget_value ();
1512 save_wv
->contents
= wv
;
1514 wv
->name
= (char *) XSTRING (item_name
)->data
;
1515 if (!NILP (descrip
))
1516 wv
->key
= (char *) XSTRING (descrip
)->data
;
1518 /* The EMACS_INT cast avoids a warning. There's no problem
1519 as long as pointers have enough bits to hold small integers. */
1520 wv
->call_data
= (!NILP (def
) ? (void *) (EMACS_INT
) i
: 0);
1521 wv
->enabled
= !NILP (enable
);
1524 wv
->button_type
= BUTTON_TYPE_NONE
;
1525 else if (EQ (type
, QCradio
))
1526 wv
->button_type
= BUTTON_TYPE_RADIO
;
1527 else if (EQ (type
, QCtoggle
))
1528 wv
->button_type
= BUTTON_TYPE_TOGGLE
;
1532 wv
->selected
= !NILP (selected
);
1534 wv
->help
= XSTRING (help
)->data
;
1538 i
+= MENU_ITEMS_ITEM_LENGTH
;
1542 /* If we have just one "menu item"
1543 that was originally a button, return it by itself. */
1544 if (top_level_items
&& first_wv
->contents
&& first_wv
->contents
->next
== 0)
1546 wv
= first_wv
->contents
;
1547 free_widget_value (first_wv
);
1554 extern void EmacsFrameSetCharSize ();
1556 /* Recompute all the widgets of frame F, when the menu bar
1557 has been changed. */
1560 update_frame_menubar (f
)
1563 struct x_output
*x
= f
->output_data
.x
;
1565 int menubar_changed
;
1567 /* We assume the menubar contents has changed if the global flag is set,
1568 or if the current buffer has changed, or if the menubar has never
1569 been updated before.
1571 menubar_changed
= (x
->menubar_widget
1572 && !XtIsManaged (x
->menubar_widget
));
1574 if (! (menubar_changed
))
1578 /* Save the size of the frame because the pane widget doesn't accept to
1579 resize itself. So force it. */
1583 /* Do the voodoo which means "I'm changing lots of things, don't try to
1584 refigure sizes until I'm done." */
1585 lw_refigure_widget (x
->column_widget
, False
);
1587 /* the order in which children are managed is the top to
1588 bottom order in which they are displayed in the paned window.
1589 First, remove the text-area widget.
1591 XtUnmanageChild (x
->edit_widget
);
1593 /* remove the menubar that is there now, and put up the menubar that
1596 if (menubar_changed
)
1598 XtManageChild (x
->menubar_widget
);
1599 XtMapWidget (x
->menubar_widget
);
1600 XtVaSetValues (x
->menubar_widget
, XtNmappedWhenManaged
, 1, NULL
);
1603 /* Re-manage the text-area widget, and then thrash the sizes. */
1604 XtManageChild (x
->edit_widget
);
1605 x_set_menu_resources_from_menu_face (f
, x
->menubar_widget
);
1606 lw_refigure_widget (x
->column_widget
, True
);
1608 /* Force the pane widget to resize itself with the right values. */
1609 EmacsFrameSetCharSize (x
->edit_widget
, columns
, rows
);
1613 /* Set the contents of the menubar widgets of frame F.
1614 The argument FIRST_TIME is currently ignored;
1615 it is set the first time this is called, from initialize_frame_menubar. */
1618 set_frame_menubar (f
, first_time
, deep_p
)
1623 Widget menubar_widget
= f
->output_data
.x
->menubar_widget
;
1625 widget_value
*wv
, *first_wv
, *prev_wv
= 0;
1629 XSETFRAME (Vmenu_updating_frame
, f
);
1631 if (f
->output_data
.x
->id
== 0)
1632 f
->output_data
.x
->id
= next_menubar_widget_id
++;
1633 id
= f
->output_data
.x
->id
;
1635 if (! menubar_widget
)
1637 else if (pending_menu_activation
&& !deep_p
)
1639 /* Make the first call for any given frame always go deep. */
1640 else if (!f
->output_data
.x
->saved_menu_event
&& !deep_p
)
1643 f
->output_data
.x
->saved_menu_event
= (XEvent
*)xmalloc (sizeof (XEvent
));
1644 f
->output_data
.x
->saved_menu_event
->type
= 0;
1647 wv
= xmalloc_widget_value ();
1648 wv
->name
= "menubar";
1651 wv
->button_type
= BUTTON_TYPE_NONE
;
1656 /* Make a widget-value tree representing the entire menu trees. */
1658 struct buffer
*prev
= current_buffer
;
1660 int specpdl_count
= specpdl_ptr
- specpdl
;
1661 int previous_menu_items_used
= f
->menu_bar_items_used
;
1662 Lisp_Object
*previous_items
1663 = (Lisp_Object
*) alloca (previous_menu_items_used
1664 * sizeof (Lisp_Object
));
1666 /* If we are making a new widget, its contents are empty,
1667 do always reinitialize them. */
1668 if (! menubar_widget
)
1669 previous_menu_items_used
= 0;
1671 buffer
= XWINDOW (FRAME_SELECTED_WINDOW (f
))->buffer
;
1672 specbind (Qinhibit_quit
, Qt
);
1673 /* Don't let the debugger step into this code
1674 because it is not reentrant. */
1675 specbind (Qdebug_on_next_call
, Qnil
);
1677 record_unwind_protect (Fset_match_data
, Fmatch_data (Qnil
, Qnil
));
1678 if (NILP (Voverriding_local_map_menu_flag
))
1680 specbind (Qoverriding_terminal_local_map
, Qnil
);
1681 specbind (Qoverriding_local_map
, Qnil
);
1684 set_buffer_internal_1 (XBUFFER (buffer
));
1686 /* Run the Lucid hook. */
1687 call1 (Vrun_hooks
, Qactivate_menubar_hook
);
1688 /* If it has changed current-menubar from previous value,
1689 really recompute the menubar from the value. */
1690 if (! NILP (Vlucid_menu_bar_dirty_flag
))
1691 call0 (Qrecompute_lucid_menubar
);
1692 safe_run_hooks (Qmenu_bar_update_hook
);
1693 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
1695 items
= FRAME_MENU_BAR_ITEMS (f
);
1697 inhibit_garbage_collection ();
1699 /* Save the frame's previous menu bar contents data. */
1700 bcopy (XVECTOR (f
->menu_bar_vector
)->contents
, previous_items
,
1701 previous_menu_items_used
* sizeof (Lisp_Object
));
1703 /* Fill in the current menu bar contents. */
1704 menu_items
= f
->menu_bar_vector
;
1705 menu_items_allocated
= XVECTOR (menu_items
)->size
;
1707 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
1709 Lisp_Object key
, string
, maps
;
1711 key
= XVECTOR (items
)->contents
[i
];
1712 string
= XVECTOR (items
)->contents
[i
+ 1];
1713 maps
= XVECTOR (items
)->contents
[i
+ 2];
1717 wv
= single_submenu (key
, string
, maps
);
1721 first_wv
->contents
= wv
;
1722 /* Don't set wv->name here; GC during the loop might relocate it. */
1724 wv
->button_type
= BUTTON_TYPE_NONE
;
1728 finish_menu_items ();
1730 set_buffer_internal_1 (prev
);
1731 unbind_to (specpdl_count
, Qnil
);
1733 /* If there has been no change in the Lisp-level contents
1734 of the menu bar, skip redisplaying it. Just exit. */
1736 for (i
= 0; i
< previous_menu_items_used
; i
++)
1737 if (menu_items_used
== i
1738 || (!EQ (previous_items
[i
], XVECTOR (menu_items
)->contents
[i
])))
1740 if (i
== menu_items_used
&& i
== previous_menu_items_used
&& i
!= 0)
1742 free_menubar_widget_value_tree (first_wv
);
1748 /* Now GC cannot happen during the lifetime of the widget_value,
1749 so it's safe to store data from a Lisp_String. */
1750 wv
= first_wv
->contents
;
1751 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
1754 string
= XVECTOR (items
)->contents
[i
+ 1];
1757 wv
->name
= (char *) XSTRING (string
)->data
;
1761 f
->menu_bar_vector
= menu_items
;
1762 f
->menu_bar_items_used
= menu_items_used
;
1767 /* Make a widget-value tree containing
1768 just the top level menu bar strings. */
1770 items
= FRAME_MENU_BAR_ITEMS (f
);
1771 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
1775 string
= XVECTOR (items
)->contents
[i
+ 1];
1779 wv
= xmalloc_widget_value ();
1780 wv
->name
= (char *) XSTRING (string
)->data
;
1783 wv
->button_type
= BUTTON_TYPE_NONE
;
1784 /* This prevents lwlib from assuming this
1785 menu item is really supposed to be empty. */
1786 /* The EMACS_INT cast avoids a warning.
1787 This value just has to be different from small integers. */
1788 wv
->call_data
= (void *) (EMACS_INT
) (-1);
1793 first_wv
->contents
= wv
;
1797 /* Forget what we thought we knew about what is in the
1798 detailed contents of the menu bar menus.
1799 Changing the top level always destroys the contents. */
1800 f
->menu_bar_items_used
= 0;
1803 /* Create or update the menu bar widget. */
1809 /* Disable resizing (done for Motif!) */
1810 lw_allow_resizing (f
->output_data
.x
->widget
, False
);
1812 /* The third arg is DEEP_P, which says to consider the entire
1813 menu trees we supply, rather than just the menu bar item names. */
1814 lw_modify_all_widgets (id
, first_wv
, deep_p
);
1816 /* Re-enable the edit widget to resize. */
1817 lw_allow_resizing (f
->output_data
.x
->widget
, True
);
1821 menubar_widget
= lw_create_widget ("menubar", "menubar", id
, first_wv
,
1822 f
->output_data
.x
->column_widget
,
1824 popup_activate_callback
,
1825 menubar_selection_callback
,
1826 popup_deactivate_callback
,
1827 menu_highlight_callback
);
1828 f
->output_data
.x
->menubar_widget
= menubar_widget
;
1833 = (f
->output_data
.x
->menubar_widget
1834 ? (f
->output_data
.x
->menubar_widget
->core
.height
1835 + f
->output_data
.x
->menubar_widget
->core
.border_width
)
1838 #if 0 /* Experimentally, we now get the right results
1839 for -geometry -0-0 without this. 24 Aug 96, rms. */
1841 if (FRAME_EXTERNAL_MENU_BAR (f
))
1844 XtVaGetValues (f
->output_data
.x
->column_widget
,
1845 XtNinternalBorderWidth
, &ibw
, NULL
);
1846 menubar_size
+= ibw
;
1848 #endif /* USE_LUCID */
1851 f
->output_data
.x
->menubar_height
= menubar_size
;
1854 free_menubar_widget_value_tree (first_wv
);
1855 update_frame_menubar (f
);
1860 /* Called from Fx_create_frame to create the initial menubar of a frame
1861 before it is mapped, so that the window is mapped with the menubar already
1862 there instead of us tacking it on later and thrashing the window after it
1866 initialize_frame_menubar (f
)
1869 /* This function is called before the first chance to redisplay
1870 the frame. It has to be, so the frame will have the right size. */
1871 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
1872 set_frame_menubar (f
, 1, 1);
1875 /* Get rid of the menu bar of frame F, and free its storage.
1876 This is used when deleting a frame, and when turning off the menu bar. */
1879 free_frame_menubar (f
)
1882 Widget menubar_widget
;
1884 menubar_widget
= f
->output_data
.x
->menubar_widget
;
1886 f
->output_data
.x
->menubar_height
= 0;
1891 lw_destroy_all_widgets ((LWLIB_ID
) f
->output_data
.x
->id
);
1896 #endif /* USE_X_TOOLKIT */
1898 /* xmenu_show actually displays a menu using the panes and items in menu_items
1899 and returns the value selected from it.
1900 There are two versions of xmenu_show, one for Xt and one for Xlib.
1901 Both assume input is blocked by the caller. */
1903 /* F is the frame the menu is for.
1904 X and Y are the frame-relative specified position,
1905 relative to the inside upper left corner of the frame F.
1906 FOR_CLICK is nonzero if this menu was invoked for a mouse click.
1907 KEYMAPS is 1 if this menu was specified with keymaps;
1908 in that case, we return a list containing the chosen item's value
1909 and perhaps also the pane's prefix.
1910 TITLE is the specified menu title.
1911 ERROR is a place to store an error message string in case of failure.
1912 (We return nil on failure, but the value doesn't actually matter.) */
1914 #ifdef USE_X_TOOLKIT
1916 /* We need a unique id for each widget handled by the Lucid Widget
1919 For the main windows, and popup menus, we use this counter,
1920 which we increment each time after use. This starts from 1<<16.
1922 For menu bars, we use numbers starting at 0, counted in
1923 next_menubar_widget_id. */
1924 LWLIB_ID widget_id_tick
;
1926 static Lisp_Object
*volatile menu_item_selection
;
1929 popup_selection_callback (widget
, id
, client_data
)
1932 XtPointer client_data
;
1934 menu_item_selection
= (Lisp_Object
*) client_data
;
1938 xmenu_show (f
, x
, y
, for_click
, keymaps
, title
, error
)
1952 widget_value
*wv
, *save_wv
= 0, *first_wv
= 0, *prev_wv
= 0;
1953 widget_value
**submenu_stack
1954 = (widget_value
**) alloca (menu_items_used
* sizeof (widget_value
*));
1955 Lisp_Object
*subprefix_stack
1956 = (Lisp_Object
*) alloca (menu_items_used
* sizeof (Lisp_Object
));
1957 int submenu_depth
= 0;
1958 XButtonPressedEvent dummy
;
1964 if (menu_items_used
<= MENU_ITEMS_PANE_LENGTH
)
1966 *error
= "Empty menu";
1970 /* Create a tree of widget_value objects
1971 representing the panes and their items. */
1972 wv
= xmalloc_widget_value ();
1976 wv
->button_type
= BUTTON_TYPE_NONE
;
1980 /* Loop over all panes and items, filling in the tree. */
1982 while (i
< menu_items_used
)
1984 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
1986 submenu_stack
[submenu_depth
++] = save_wv
;
1992 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
1995 save_wv
= submenu_stack
[--submenu_depth
];
1999 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
)
2000 && submenu_depth
!= 0)
2001 i
+= MENU_ITEMS_PANE_LENGTH
;
2002 /* Ignore a nil in the item list.
2003 It's meaningful only for dialog boxes. */
2004 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
2006 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2008 /* Create a new pane. */
2009 Lisp_Object pane_name
, prefix
;
2011 pane_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_NAME
];
2012 prefix
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2013 #ifndef HAVE_MULTILINGUAL_MENU
2014 if (!NILP (pane_name
) && STRING_MULTIBYTE (pane_name
))
2015 pane_name
= string_make_unibyte (pane_name
);
2017 pane_string
= (NILP (pane_name
)
2018 ? "" : (char *) XSTRING (pane_name
)->data
);
2019 /* If there is just one top-level pane, put all its items directly
2020 under the top-level menu. */
2021 if (menu_items_n_panes
== 1)
2024 /* If the pane has a meaningful name,
2025 make the pane a top-level menu item
2026 with its items as a submenu beneath it. */
2027 if (!keymaps
&& strcmp (pane_string
, ""))
2029 wv
= xmalloc_widget_value ();
2033 first_wv
->contents
= wv
;
2034 wv
->name
= pane_string
;
2035 if (keymaps
&& !NILP (prefix
))
2039 wv
->button_type
= BUTTON_TYPE_NONE
;
2043 else if (first_pane
)
2049 i
+= MENU_ITEMS_PANE_LENGTH
;
2053 /* Create a new item within current pane. */
2054 Lisp_Object item_name
, enable
, descrip
, def
, type
, selected
, help
;
2055 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
2056 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
2058 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
2059 def
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_DEFINITION
];
2060 type
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_TYPE
];
2061 selected
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_SELECTED
];
2062 help
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_HELP
];
2064 #ifndef HAVE_MULTILINGUAL_MENU
2065 if (STRINGP (item_name
) && STRING_MULTIBYTE (item_name
))
2066 item_name
= string_make_unibyte (item_name
);
2067 if (STRINGP (descrip
) && STRING_MULTIBYTE (descrip
))
2068 item_name
= string_make_unibyte (descrip
);
2071 wv
= xmalloc_widget_value ();
2075 save_wv
->contents
= wv
;
2076 wv
->name
= (char *) XSTRING (item_name
)->data
;
2077 if (!NILP (descrip
))
2078 wv
->key
= (char *) XSTRING (descrip
)->data
;
2080 /* If this item has a null value,
2081 make the call_data null so that it won't display a box
2082 when the mouse is on it. */
2084 = (!NILP (def
) ? (void *) &XVECTOR (menu_items
)->contents
[i
] : 0);
2085 wv
->enabled
= !NILP (enable
);
2088 wv
->button_type
= BUTTON_TYPE_NONE
;
2089 else if (EQ (type
, QCtoggle
))
2090 wv
->button_type
= BUTTON_TYPE_TOGGLE
;
2091 else if (EQ (type
, QCradio
))
2092 wv
->button_type
= BUTTON_TYPE_RADIO
;
2096 wv
->selected
= !NILP (selected
);
2098 wv
->help
= XSTRING (help
)->data
;
2102 i
+= MENU_ITEMS_ITEM_LENGTH
;
2106 /* Deal with the title, if it is non-nil. */
2109 widget_value
*wv_title
= xmalloc_widget_value ();
2110 widget_value
*wv_sep1
= xmalloc_widget_value ();
2111 widget_value
*wv_sep2
= xmalloc_widget_value ();
2113 wv_sep2
->name
= "--";
2114 wv_sep2
->next
= first_wv
->contents
;
2116 wv_sep1
->name
= "--";
2117 wv_sep1
->next
= wv_sep2
;
2119 #ifndef HAVE_MULTILINGUAL_MENU
2120 if (STRING_MULTIBYTE (title
))
2121 title
= string_make_unibyte (title
);
2123 wv_title
->name
= (char *) XSTRING (title
)->data
;
2124 wv_title
->enabled
= True
;
2125 wv_title
->button_type
= BUTTON_TYPE_NONE
;
2126 wv_title
->next
= wv_sep1
;
2127 first_wv
->contents
= wv_title
;
2130 /* Actually create the menu. */
2131 menu_id
= widget_id_tick
++;
2132 menu
= lw_create_widget ("popup", first_wv
->name
, menu_id
, first_wv
,
2133 f
->output_data
.x
->widget
, 1, 0,
2134 popup_selection_callback
,
2135 popup_deactivate_callback
,
2136 menu_highlight_callback
);
2138 /* Adjust coordinates to relative to the outer (window manager) window. */
2141 int win_x
= 0, win_y
= 0;
2143 /* Find the position of the outside upper-left corner of
2144 the inner window, with respect to the outer window. */
2145 if (f
->output_data
.x
->parent_desc
!= FRAME_X_DISPLAY_INFO (f
)->root_window
)
2148 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
2150 /* From-window, to-window. */
2151 f
->output_data
.x
->window_desc
,
2152 f
->output_data
.x
->parent_desc
,
2154 /* From-position, to-position. */
2155 0, 0, &win_x
, &win_y
,
2157 /* Child of window. */
2165 /* Adjust coordinates to be root-window-relative. */
2166 x
+= f
->output_data
.x
->left_pos
;
2167 y
+= f
->output_data
.x
->top_pos
;
2169 dummy
.type
= ButtonPress
;
2171 dummy
.send_event
= 0;
2172 dummy
.display
= FRAME_X_DISPLAY (f
);
2173 dummy
.time
= CurrentTime
;
2174 dummy
.root
= FRAME_X_DISPLAY_INFO (f
)->root_window
;
2175 dummy
.window
= dummy
.root
;
2176 dummy
.subwindow
= dummy
.root
;
2181 dummy
.state
= (FRAME_X_DISPLAY_INFO (f
)->grabbed
>> 1) * Button1Mask
;
2183 for (i
= 0; i
< 5; i
++)
2184 if (FRAME_X_DISPLAY_INFO (f
)->grabbed
& (1 << i
))
2187 /* Don't allow any geometry request from the user. */
2188 XtSetArg (av
[ac
], XtNgeometry
, 0); ac
++;
2189 XtSetValues (menu
, av
, ac
);
2191 /* Free the widget_value objects we used to specify the contents. */
2192 free_menubar_widget_value_tree (first_wv
);
2194 /* Override any default settings with ones from the `menu' face. */
2195 x_set_menu_resources_from_menu_face (f
, menu
);
2197 /* No selection has been chosen yet. */
2198 menu_item_selection
= 0;
2200 /* Display the menu. */
2201 lw_popup_menu (menu
, (XEvent
*) &dummy
);
2202 popup_activated_flag
= 1;
2204 /* Process events that apply to the menu. */
2205 popup_get_selection ((XEvent
*) 0, FRAME_X_DISPLAY_INFO (f
), menu_id
);
2207 #ifdef LESSTIF_VERSION
2208 /* Nov 1998: For an unknown reason a button grab remains active
2209 after the popup menu has gone. */
2210 XUngrabButton (XtDisplay (f
->output_data
.x
->widget
),
2211 AnyButton
, AnyModifier
,
2212 XtWindow (f
->output_data
.x
->widget
));
2213 XUngrabButton (XtDisplay (f
->output_data
.x
->edit_widget
),
2214 AnyButton
, AnyModifier
,
2215 XtWindow (f
->output_data
.x
->edit_widget
));
2216 #endif /* LESSTIF_VERSION */
2218 /* fp turned off the following statement and wrote a comment
2219 that it is unnecessary--that the menu has already disappeared.
2220 Nowadays the menu disappears ok, all right, but
2221 we need to delete the widgets or multiple ones will pile up. */
2222 lw_destroy_all_widgets (menu_id
);
2224 /* Find the selected item, and its pane, to return
2225 the proper value. */
2226 if (menu_item_selection
!= 0)
2228 Lisp_Object prefix
, entry
;
2230 prefix
= entry
= Qnil
;
2232 while (i
< menu_items_used
)
2234 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
2236 subprefix_stack
[submenu_depth
++] = prefix
;
2240 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
2242 prefix
= subprefix_stack
[--submenu_depth
];
2245 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2248 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2249 i
+= MENU_ITEMS_PANE_LENGTH
;
2251 /* Ignore a nil in the item list.
2252 It's meaningful only for dialog boxes. */
2253 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
2258 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
2259 if (menu_item_selection
== &XVECTOR (menu_items
)->contents
[i
])
2265 entry
= Fcons (entry
, Qnil
);
2267 entry
= Fcons (prefix
, entry
);
2268 for (j
= submenu_depth
- 1; j
>= 0; j
--)
2269 if (!NILP (subprefix_stack
[j
]))
2270 entry
= Fcons (subprefix_stack
[j
], entry
);
2274 i
+= MENU_ITEMS_ITEM_LENGTH
;
2283 dialog_selection_callback (widget
, id
, client_data
)
2286 XtPointer client_data
;
2288 /* The EMACS_INT cast avoids a warning. There's no problem
2289 as long as pointers have enough bits to hold small integers. */
2290 if ((int) (EMACS_INT
) client_data
!= -1)
2291 menu_item_selection
= (Lisp_Object
*) client_data
;
2293 lw_destroy_all_widgets (id
);
2295 popup_activated_flag
= 0;
2298 static char * button_names
[] = {
2299 "button1", "button2", "button3", "button4", "button5",
2300 "button6", "button7", "button8", "button9", "button10" };
2303 xdialog_show (f
, keymaps
, title
, error
)
2309 int i
, nb_buttons
=0;
2312 char dialog_name
[6];
2314 widget_value
*wv
, *first_wv
= 0, *prev_wv
= 0;
2316 /* Number of elements seen so far, before boundary. */
2318 /* 1 means we've seen the boundary between left-hand elts and right-hand. */
2319 int boundary_seen
= 0;
2323 if (menu_items_n_panes
> 1)
2325 *error
= "Multiple panes in dialog box";
2329 /* Create a tree of widget_value objects
2330 representing the text label and buttons. */
2332 Lisp_Object pane_name
, prefix
;
2334 pane_name
= XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_NAME
];
2335 prefix
= XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_PREFIX
];
2336 pane_string
= (NILP (pane_name
)
2337 ? "" : (char *) XSTRING (pane_name
)->data
);
2338 prev_wv
= xmalloc_widget_value ();
2339 prev_wv
->value
= pane_string
;
2340 if (keymaps
&& !NILP (prefix
))
2342 prev_wv
->enabled
= 1;
2343 prev_wv
->name
= "message";
2346 /* Loop over all panes and items, filling in the tree. */
2347 i
= MENU_ITEMS_PANE_LENGTH
;
2348 while (i
< menu_items_used
)
2351 /* Create a new item within current pane. */
2352 Lisp_Object item_name
, enable
, descrip
;
2353 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
2354 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
2356 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
2358 if (NILP (item_name
))
2360 free_menubar_widget_value_tree (first_wv
);
2361 *error
= "Submenu in dialog items";
2364 if (EQ (item_name
, Qquote
))
2366 /* This is the boundary between left-side elts
2367 and right-side elts. Stop incrementing right_count. */
2372 if (nb_buttons
>= 9)
2374 free_menubar_widget_value_tree (first_wv
);
2375 *error
= "Too many dialog items";
2379 wv
= xmalloc_widget_value ();
2381 wv
->name
= (char *) button_names
[nb_buttons
];
2382 if (!NILP (descrip
))
2383 wv
->key
= (char *) XSTRING (descrip
)->data
;
2384 wv
->value
= (char *) XSTRING (item_name
)->data
;
2385 wv
->call_data
= (void *) &XVECTOR (menu_items
)->contents
[i
];
2386 wv
->enabled
= !NILP (enable
);
2389 if (! boundary_seen
)
2393 i
+= MENU_ITEMS_ITEM_LENGTH
;
2396 /* If the boundary was not specified,
2397 by default put half on the left and half on the right. */
2398 if (! boundary_seen
)
2399 left_count
= nb_buttons
- nb_buttons
/ 2;
2401 wv
= xmalloc_widget_value ();
2402 wv
->name
= dialog_name
;
2404 /* Dialog boxes use a really stupid name encoding
2405 which specifies how many buttons to use
2406 and how many buttons are on the right.
2407 The Q means something also. */
2408 dialog_name
[0] = 'Q';
2409 dialog_name
[1] = '0' + nb_buttons
;
2410 dialog_name
[2] = 'B';
2411 dialog_name
[3] = 'R';
2412 /* Number of buttons to put on the right. */
2413 dialog_name
[4] = '0' + nb_buttons
- left_count
;
2415 wv
->contents
= first_wv
;
2419 /* Actually create the dialog. */
2420 dialog_id
= widget_id_tick
++;
2421 menu
= lw_create_widget (first_wv
->name
, "dialog", dialog_id
, first_wv
,
2422 f
->output_data
.x
->widget
, 1, 0,
2423 dialog_selection_callback
, 0, 0);
2424 lw_modify_all_widgets (dialog_id
, first_wv
->contents
, True
);
2425 /* Free the widget_value objects we used to specify the contents. */
2426 free_menubar_widget_value_tree (first_wv
);
2428 /* No selection has been chosen yet. */
2429 menu_item_selection
= 0;
2431 /* Display the menu. */
2432 lw_pop_up_all_widgets (dialog_id
);
2433 popup_activated_flag
= 1;
2435 /* Process events that apply to the menu. */
2436 popup_get_selection ((XEvent
*) 0, FRAME_X_DISPLAY_INFO (f
), dialog_id
);
2438 lw_destroy_all_widgets (dialog_id
);
2440 /* Find the selected item, and its pane, to return
2441 the proper value. */
2442 if (menu_item_selection
!= 0)
2448 while (i
< menu_items_used
)
2452 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2455 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2456 i
+= MENU_ITEMS_PANE_LENGTH
;
2458 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
2460 /* This is the boundary between left-side elts and
2467 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
2468 if (menu_item_selection
== &XVECTOR (menu_items
)->contents
[i
])
2472 entry
= Fcons (entry
, Qnil
);
2474 entry
= Fcons (prefix
, entry
);
2478 i
+= MENU_ITEMS_ITEM_LENGTH
;
2486 #else /* not USE_X_TOOLKIT */
2488 /* The frame of the last activated non-toolkit menu bar.
2489 Used to generate menu help events. */
2491 static struct frame
*menu_help_frame
;
2494 /* Show help HELP_STRING, or clear help if HELP_STRING is null.
2496 PANE is the pane number, and ITEM is the menu item number in
2497 the menu (currently not used).
2499 This cannot be done with generating a HELP_EVENT because
2500 XMenuActivate contains a loop that doesn't let Emacs process
2504 menu_help_callback (help_string
, pane
, item
)
2508 extern Lisp_Object Qmenu_item
;
2509 Lisp_Object
*first_item
;
2510 Lisp_Object pane_name
;
2511 Lisp_Object menu_object
;
2513 first_item
= XVECTOR (menu_items
)->contents
;
2514 if (EQ (first_item
[0], Qt
))
2515 pane_name
= first_item
[MENU_ITEMS_PANE_NAME
];
2516 else if (EQ (first_item
[0], Qquote
))
2517 /* This shouldn't happen, see xmenu_show. */
2518 pane_name
= build_string ("");
2520 pane_name
= first_item
[MENU_ITEMS_ITEM_NAME
];
2522 /* (menu-item MENU-NAME PANE-NUMBER) */
2523 menu_object
= Fcons (Qmenu_item
,
2525 Fcons (make_number (pane
), Qnil
)));
2526 show_help_echo (help_string
? build_string (help_string
) : Qnil
,
2527 Qnil
, menu_object
, make_number (item
), 1);
2532 xmenu_show (f
, x
, y
, for_click
, keymaps
, title
, error
)
2542 int pane
, selidx
, lpane
, status
;
2543 Lisp_Object entry
, pane_prefix
;
2545 int ulx
, uly
, width
, height
;
2546 int dispwidth
, dispheight
;
2550 unsigned int dummy_uint
;
2553 if (menu_items_n_panes
== 0)
2556 if (menu_items_used
<= MENU_ITEMS_PANE_LENGTH
)
2558 *error
= "Empty menu";
2562 /* Figure out which root window F is on. */
2563 XGetGeometry (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), &root
,
2564 &dummy_int
, &dummy_int
, &dummy_uint
, &dummy_uint
,
2565 &dummy_uint
, &dummy_uint
);
2567 /* Make the menu on that window. */
2568 menu
= XMenuCreate (FRAME_X_DISPLAY (f
), root
, "emacs");
2571 *error
= "Can't create menu";
2575 #ifdef HAVE_X_WINDOWS
2576 /* Adjust coordinates to relative to the outer (window manager) window. */
2579 int win_x
= 0, win_y
= 0;
2581 /* Find the position of the outside upper-left corner of
2582 the inner window, with respect to the outer window. */
2583 if (f
->output_data
.x
->parent_desc
!= FRAME_X_DISPLAY_INFO (f
)->root_window
)
2586 XTranslateCoordinates (FRAME_X_DISPLAY (f
),
2588 /* From-window, to-window. */
2589 f
->output_data
.x
->window_desc
,
2590 f
->output_data
.x
->parent_desc
,
2592 /* From-position, to-position. */
2593 0, 0, &win_x
, &win_y
,
2595 /* Child of window. */
2602 #endif /* HAVE_X_WINDOWS */
2604 /* Adjust coordinates to be root-window-relative. */
2605 x
+= f
->output_data
.x
->left_pos
;
2606 y
+= f
->output_data
.x
->top_pos
;
2608 /* Create all the necessary panes and their items. */
2610 while (i
< menu_items_used
)
2612 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2614 /* Create a new pane. */
2615 Lisp_Object pane_name
, prefix
;
2618 pane_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_NAME
];
2619 prefix
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2620 pane_string
= (NILP (pane_name
)
2621 ? "" : (char *) XSTRING (pane_name
)->data
);
2622 if (keymaps
&& !NILP (prefix
))
2625 lpane
= XMenuAddPane (FRAME_X_DISPLAY (f
), menu
, pane_string
, TRUE
);
2626 if (lpane
== XM_FAILURE
)
2628 XMenuDestroy (FRAME_X_DISPLAY (f
), menu
);
2629 *error
= "Can't create pane";
2632 i
+= MENU_ITEMS_PANE_LENGTH
;
2634 /* Find the width of the widest item in this pane. */
2637 while (j
< menu_items_used
)
2640 item
= XVECTOR (menu_items
)->contents
[j
];
2648 width
= STRING_BYTES (XSTRING (item
));
2649 if (width
> maxwidth
)
2652 j
+= MENU_ITEMS_ITEM_LENGTH
;
2655 /* Ignore a nil in the item list.
2656 It's meaningful only for dialog boxes. */
2657 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
2661 /* Create a new item within current pane. */
2662 Lisp_Object item_name
, enable
, descrip
, help
;
2663 unsigned char *item_data
;
2666 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
2667 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
2669 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
2670 help
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_HELP
];
2671 help_string
= STRINGP (help
) ? XSTRING (help
)->data
: NULL
;
2673 if (!NILP (descrip
))
2675 int gap
= maxwidth
- STRING_BYTES (XSTRING (item_name
));
2678 spacer
= Fmake_string (make_number (gap
), make_number (' '));
2679 item_name
= concat2 (item_name
, spacer
);
2680 item_name
= concat2 (item_name
, descrip
);
2681 item_data
= XSTRING (item_name
)->data
;
2683 /* if alloca is fast, use that to make the space,
2684 to reduce gc needs. */
2686 = (unsigned char *) alloca (maxwidth
2687 + STRING_BYTES (XSTRING (descrip
)) + 1);
2688 bcopy (XSTRING (item_name
)->data
, item_data
,
2689 STRING_BYTES (XSTRING (item_name
)));
2690 for (j
= XSTRING (item_name
)->size
; j
< maxwidth
; j
++)
2692 bcopy (XSTRING (descrip
)->data
, item_data
+ j
,
2693 STRING_BYTES (XSTRING (descrip
)));
2694 item_data
[j
+ STRING_BYTES (XSTRING (descrip
))] = 0;
2698 item_data
= XSTRING (item_name
)->data
;
2700 if (XMenuAddSelection (FRAME_X_DISPLAY (f
),
2701 menu
, lpane
, 0, item_data
,
2702 !NILP (enable
), help_string
)
2705 XMenuDestroy (FRAME_X_DISPLAY (f
), menu
);
2706 *error
= "Can't add selection to menu";
2709 i
+= MENU_ITEMS_ITEM_LENGTH
;
2713 /* All set and ready to fly. */
2714 XMenuRecompute (FRAME_X_DISPLAY (f
), menu
);
2715 dispwidth
= DisplayWidth (FRAME_X_DISPLAY (f
),
2716 XScreenNumberOfScreen (FRAME_X_SCREEN (f
)));
2717 dispheight
= DisplayHeight (FRAME_X_DISPLAY (f
),
2718 XScreenNumberOfScreen (FRAME_X_SCREEN (f
)));
2719 x
= min (x
, dispwidth
);
2720 y
= min (y
, dispheight
);
2723 XMenuLocate (FRAME_X_DISPLAY (f
), menu
, 0, 0, x
, y
,
2724 &ulx
, &uly
, &width
, &height
);
2725 if (ulx
+width
> dispwidth
)
2727 x
-= (ulx
+ width
) - dispwidth
;
2728 ulx
= dispwidth
- width
;
2730 if (uly
+height
> dispheight
)
2732 y
-= (uly
+ height
) - dispheight
;
2733 uly
= dispheight
- height
;
2735 if (ulx
< 0) x
-= ulx
;
2736 if (uly
< 0) y
-= uly
;
2738 XMenuSetAEQ (menu
, TRUE
);
2739 XMenuSetFreeze (menu
, TRUE
);
2742 /* Help display under X won't work because XMenuActivate contains
2743 a loop that doesn't give Emacs a chance to process it. */
2744 menu_help_frame
= f
;
2745 status
= XMenuActivate (FRAME_X_DISPLAY (f
), menu
, &pane
, &selidx
,
2746 x
, y
, ButtonReleaseMask
, &datap
,
2747 menu_help_callback
);
2750 #ifdef HAVE_X_WINDOWS
2751 /* Assume the mouse has moved out of the X window.
2752 If it has actually moved in, we will get an EnterNotify. */
2753 x_mouse_leave (FRAME_X_DISPLAY_INFO (f
));
2760 fprintf (stderr
, "pane= %d line = %d\n", panes
, selidx
);
2763 /* Find the item number SELIDX in pane number PANE. */
2765 while (i
< menu_items_used
)
2767 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2771 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2773 i
+= MENU_ITEMS_PANE_LENGTH
;
2782 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
2785 entry
= Fcons (entry
, Qnil
);
2786 if (!NILP (pane_prefix
))
2787 entry
= Fcons (pane_prefix
, entry
);
2793 i
+= MENU_ITEMS_ITEM_LENGTH
;
2799 *error
= "Can't activate menu";
2805 XMenuDestroy (FRAME_X_DISPLAY (f
), menu
);
2807 #ifdef HAVE_X_WINDOWS
2808 /* State that no mouse buttons are now held.
2809 (The oldXMenu code doesn't track this info for us.)
2810 That is not necessarily true, but the fiction leads to reasonable
2811 results, and it is a pain to ask which are actually held now. */
2812 FRAME_X_DISPLAY_INFO (f
)->grabbed
= 0;
2818 #endif /* not USE_X_TOOLKIT */
2820 #endif /* HAVE_MENUS */
2825 staticpro (&menu_items
);
2828 Qdebug_on_next_call
= intern ("debug-on-next-call");
2829 staticpro (&Qdebug_on_next_call
);
2831 DEFVAR_LISP ("menu-updating-frame", &Vmenu_updating_frame
,
2832 "Frame for which we are updating a menu.\n\
2833 The enable predicate for a menu command should check this variable.");
2834 Vmenu_updating_frame
= Qnil
;
2836 #ifdef USE_X_TOOLKIT
2837 widget_id_tick
= (1<<16);
2838 next_menubar_widget_id
= 1;
2841 defsubr (&Sx_popup_menu
);
2843 defsubr (&Sx_popup_dialog
);