Simplify and avoid signal-handling races.
[bpt/emacs.git] / src / xmenu.c
CommitLineData
dcfdbac7 1/* X Communication module for terminals which understand the X protocol.
95df8112 2
acaf905b 3Copyright (C) 1986, 1988, 1993-1994, 1996, 1999-2012
95df8112 4 Free Software Foundation, Inc.
dcfdbac7
JB
5
6This file is part of GNU Emacs.
7
9ec0b715 8GNU Emacs is free software: you can redistribute it and/or modify
dcfdbac7 9it under the terms of the GNU General Public License as published by
9ec0b715
GM
10the Free Software Foundation, either version 3 of the License, or
11(at your option) any later version.
dcfdbac7
JB
12
13GNU Emacs is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
9ec0b715 19along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
dcfdbac7 20
c9e60620 21/* X pop-up deck-of-cards menu facility for GNU Emacs.
dcfdbac7
JB
22 *
23 * Written by Jon Arnold and Roman Budzianowski
24 * Mods and rewrite by Robert Krawitz
25 *
26 */
27
18686d47
RS
28/* Modified by Fred Pierresteguy on December 93
29 to make the popup menus and menubar use the Xt. */
30
78589e07
RS
31/* Rewritten for clarity and GC protection by rms in Feb 94. */
32
68c45bf0
PE
33#include <config.h>
34
565620a5 35#include <stdio.h>
7ee72033 36
dcfdbac7 37#include "lisp.h"
02067692 38#include "keyboard.h"
5ee707b8 39#include "keymap.h"
7708e9bd 40#include "frame.h"
428a555e 41#include "termhooks.h"
dcfdbac7 42#include "window.h"
9ac0d9e0 43#include "blockinput.h"
e5560ff7 44#include "character.h"
88766961 45#include "buffer.h"
cc45fb40
SM
46#include "charset.h"
47#include "coding.h"
c3438661 48#include "sysselect.h"
dcfdbac7 49
eeee3112
RS
50#ifdef MSDOS
51#include "msdos.h"
52#endif
53
87485d6f 54#ifdef HAVE_X_WINDOWS
dcfdbac7
JB
55/* This may include sys/types.h, and that somehow loses
56 if this is not done before the other system files. */
57#include "xterm.h"
87485d6f 58#endif
dcfdbac7
JB
59
60/* Load sys/types.h if not already loaded.
61 In some systems loading it twice is suicidal. */
62#ifndef makedev
63#include <sys/types.h>
64#endif
65
66#include "dispextern.h"
67
87485d6f 68#ifdef HAVE_X_WINDOWS
646f98ec
DL
69/* Defining HAVE_MULTILINGUAL_MENU would mean that the toolkit menu
70 code accepts the Emacs internal encoding. */
703dc2a8 71#undef HAVE_MULTILINGUAL_MENU
18686d47 72#ifdef USE_X_TOOLKIT
991786dd 73#include "widget.h"
18686d47
RS
74#include <X11/Xlib.h>
75#include <X11/IntrinsicP.h>
76#include <X11/CoreP.h>
77#include <X11/StringDefs.h>
60f312e2 78#include <X11/Shell.h>
5ee80bd3 79#ifdef USE_LUCID
99852628
JD
80#include "xsettings.h"
81#include "../lwlib/xlwmenu.h"
5262c5c7
CY
82#ifdef HAVE_XAW3D
83#include <X11/Xaw3d/Paned.h>
84#else /* !HAVE_XAW3D */
1d1c1567 85#include <X11/Xaw/Paned.h>
5262c5c7 86#endif /* HAVE_XAW3D */
5ee80bd3 87#endif /* USE_LUCID */
c865c575 88#ifdef USE_MOTIF
dee186b6 89#include "../lwlib/lwlib.h"
c865c575 90#endif
a352a815 91#else /* not USE_X_TOOLKIT */
488dd4c4 92#ifndef USE_GTK
a352a815 93#include "../oldXMenu/XMenu.h"
488dd4c4 94#endif
a352a815
RS
95#endif /* not USE_X_TOOLKIT */
96#endif /* HAVE_X_WINDOWS */
18686d47 97
e7c9048f
AS
98#ifdef USE_GTK
99#include "gtkutil.h"
93d5ca1f
JD
100#ifdef HAVE_GTK3
101#include "xgselect.h"
102#endif
e7c9048f
AS
103#endif
104
105#include "menu.h"
106
dcfdbac7
JB
107#ifndef TRUE
108#define TRUE 1
78589e07 109#endif /* no TRUE */
dcfdbac7 110
955cbe7b 111static Lisp_Object Qdebug_on_next_call;
0314aacb 112
04bab72c 113#if defined (USE_X_TOOLKIT) || defined (USE_GTK)
f57e2426 114static Lisp_Object xdialog_show (FRAME_PTR, int, Lisp_Object, Lisp_Object,
42ca4633 115 const char **);
3427a3db 116#endif
78589e07 117\f
4dedbfe0 118/* Flag which when set indicates a dialog or menu has been posted by
c98fcf4b 119 Xt on behalf of one of the widget sets. */
488dd4c4 120static int popup_activated_flag;
4dedbfe0 121
bd3a4da2 122\f
88766961 123#ifdef USE_X_TOOLKIT
bd3a4da2 124
281585b0
PE
125static int next_menubar_widget_id;
126
7556890b 127/* Return the frame whose ->output_data.x->id equals ID, or 0 if none. */
bd3a4da2 128
88766961 129static struct frame *
ebd15611 130menubar_id_to_frame (LWLIB_ID id)
88766961
RS
131{
132 Lisp_Object tail, frame;
133 FRAME_PTR f;
bd3a4da2 134
8e50cc2d 135 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
bd3a4da2 136 {
8e713be6 137 frame = XCAR (tail);
8e50cc2d 138 if (!FRAMEP (frame))
88766961
RS
139 continue;
140 f = XFRAME (frame);
2d764c78 141 if (!FRAME_WINDOW_P (f))
88766961 142 continue;
7556890b 143 if (f->output_data.x->id == id)
88766961 144 return f;
bd3a4da2 145 }
88766961 146 return 0;
bd3a4da2 147}
88766961
RS
148
149#endif
4dedbfe0 150\f
a894238b
JD
151#ifdef HAVE_X_WINDOWS
152/* Return the mouse position in *X and *Y. The coordinates are window
153 relative for the edit window in frame F.
154 This is for Fx_popup_menu. The mouse_position_hook can not
155 be used for X, as it returns window relative coordinates
156 for the window where the mouse is in. This could be the menu bar,
157 the scroll bar or the edit window. Fx_popup_menu needs to be
158 sure it is the edit window. */
ef7417fd 159void
971de7fb 160mouse_position_for_popup (FRAME_PTR f, int *x, int *y)
a894238b
JD
161{
162 Window root, dummy_window;
163 int dummy;
164
62af879c 165 if (! FRAME_X_P (f))
1088b922 166 emacs_abort ();
62af879c 167
4d7e6e51 168 block_input ();
177c0ea7 169
a894238b
JD
170 XQueryPointer (FRAME_X_DISPLAY (f),
171 DefaultRootWindow (FRAME_X_DISPLAY (f)),
172
173 /* The root window which contains the pointer. */
174 &root,
175
176 /* Window pointer is on, not used */
177 &dummy_window,
178
179 /* The position on that root window. */
180 x, y,
181
182 /* x/y in dummy_window coordinates, not used. */
183 &dummy, &dummy,
184
185 /* Modifier keys and pointer buttons, about which
186 we don't care. */
187 (unsigned int *) &dummy);
188
4d7e6e51 189 unblock_input ();
a894238b
JD
190
191 /* xmenu_show expects window coordinates, not root window
192 coordinates. Translate. */
9882535b
KS
193 *x -= f->left_pos + FRAME_OUTER_TO_INNER_DIFF_X (f);
194 *y -= f->top_pos + FRAME_OUTER_TO_INNER_DIFF_Y (f);
a894238b
JD
195}
196
197#endif /* HAVE_X_WINDOWS */
198
1e659e4c
RS
199#ifdef HAVE_MENUS
200
a7ca3326 201DEFUN ("x-popup-dialog", Fx_popup_dialog, Sx_popup_dialog, 2, 3, 0,
f6e34773 202 doc: /* Pop up a dialog box and return user's selection.
228299fa
GM
203POSITION specifies which frame to use.
204This is normally a mouse button event or a window or frame.
205If POSITION is t, it means to use the frame the mouse is on.
206The dialog box appears in the middle of the specified frame.
207
208CONTENTS specifies the alternatives to display in the dialog box.
6a040d6a 209It is a list of the form (DIALOG ITEM1 ITEM2...).
228299fa
GM
210Each ITEM is a cons cell (STRING . VALUE).
211The return value is VALUE from the chosen item.
212
213An ITEM may also be just a string--that makes a nonselectable item.
214An ITEM may also be nil--that means to put all preceding items
215on the left of the dialog box and all following items on the right.
c05fe5d5
LT
216\(By default, approximately half appear on each side.)
217
6a040d6a
NR
218If HEADER is non-nil, the frame title for the box is "Information",
219otherwise it is "Question".
220
c05fe5d5
LT
221If the user gets rid of the dialog box without making a valid choice,
222for instance using the window manager, then this produces a quit and
223`x-popup-dialog' does not return. */)
5842a27b 224 (Lisp_Object position, Lisp_Object contents, Lisp_Object header)
165e1749 225{
cc45fb40 226 FRAME_PTR f = NULL;
99fe880d 227 Lisp_Object window;
165e1749
FP
228
229 check_x ();
230
99fe880d 231 /* Decode the first argument: find the window or frame to use. */
88d4f6ec 232 if (EQ (position, Qt)
2b06561a
DL
233 || (CONSP (position) && (EQ (XCAR (position), Qmenu_bar)
234 || EQ (XCAR (position), Qtool_bar))))
165e1749 235 {
b14db4d7 236#if 0 /* Using the frame the mouse is on may not be right. */
99fe880d 237 /* Use the mouse's current position. */
b404828f 238 FRAME_PTR new_f = SELECTED_FRAME ();
99fe880d 239 Lisp_Object bar_window;
cc45fb40 240 enum scroll_bar_part part;
08dc5ae6 241 Time time;
99fe880d 242 Lisp_Object x, y;
165e1749 243
46b657e2 244 (*mouse_position_hook) (&new_f, 1, &bar_window, &part, &x, &y, &time);
5ca2ef64 245
99fe880d 246 if (new_f != 0)
a39f0477 247 XSETFRAME (window, new_f);
99fe880d
RS
248 else
249 window = selected_window;
b14db4d7 250#endif
88d4f6ec 251 window = selected_window;
99fe880d
RS
252 }
253 else if (CONSP (position))
254 {
7d7bbefd 255 Lisp_Object tem = XCAR (position);
b5bb2705 256 if (CONSP (tem))
34348bd4 257 window = Fcar (XCDR (position));
80670155
RS
258 else
259 {
34348bd4 260 tem = Fcar (XCDR (position)); /* EVENT_START (position) */
99fe880d 261 window = Fcar (tem); /* POSN_WINDOW (tem) */
165e1749 262 }
165e1749 263 }
99fe880d
RS
264 else if (WINDOWP (position) || FRAMEP (position))
265 window = position;
a9be6839
RS
266 else
267 window = Qnil;
165e1749 268
99fe880d 269 /* Decode where to put the menu. */
165e1749 270
b5bb2705 271 if (FRAMEP (window))
99fe880d 272 f = XFRAME (window);
b5bb2705 273 else if (WINDOWP (window))
165e1749 274 {
b7826503 275 CHECK_LIVE_WINDOW (window);
99fe880d 276 f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
165e1749 277 }
99fe880d
RS
278 else
279 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
280 but I don't want to make one now. */
b7826503 281 CHECK_WINDOW (window);
165e1749 282
a9e1244d
EZ
283 if (! FRAME_X_P (f) && ! FRAME_MSDOS_P (f))
284 error ("Can not put X dialog on this terminal");
62af879c 285
5da9fdfa
YM
286 /* Force a redisplay before showing the dialog. If a frame is created
287 just before showing the dialog, its contents may not have been fully
288 drawn, as this depends on timing of events from the X server. Redisplay
289 is not done when a dialog is shown. If redisplay could be done in the
290 X event loop (i.e. the X event loop does not run in a signal handler)
291 this would not be needed.
292
293 Do this before creating the widget value that points to Lisp
294 string contents, because Fredisplay may GC and relocate them. */
295 Fredisplay (Qt);
296
488dd4c4 297#if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
99fe880d
RS
298 /* Display a menu with these alternatives
299 in the middle of frame F. */
300 {
301 Lisp_Object x, y, frame, newpos;
a39f0477
KH
302 XSETFRAME (frame, f);
303 XSETINT (x, x_pixel_width (f) / 2);
304 XSETINT (y, x_pixel_height (f) / 2);
99fe880d
RS
305 newpos = Fcons (Fcons (x, Fcons (y, Qnil)), Fcons (frame, Qnil));
306
307 return Fx_popup_menu (newpos,
308 Fcons (Fcar (contents), Fcons (contents, Qnil)));
309 }
310#else
311 {
312 Lisp_Object title;
42ca4633 313 const char *error_name;
99fe880d 314 Lisp_Object selection;
d311d28c 315 ptrdiff_t specpdl_count = SPECPDL_INDEX ();
165e1749 316
99fe880d
RS
317 /* Decode the dialog items from what was specified. */
318 title = Fcar (contents);
b7826503 319 CHECK_STRING (title);
86fad4ec 320 record_unwind_protect (unuse_menu_items, Qnil);
165e1749 321
6b61353c
KH
322 if (NILP (Fcar (Fcdr (contents))))
323 /* No buttons specified, add an "Ok" button so users can pop down
324 the dialog. Also, the lesstif/motif version crashes if there are
325 no buttons. */
326 contents = Fcons (title, Fcons (Fcons (build_string ("Ok"), Qt), Qnil));
b9de078a 327
99fe880d 328 list_of_panes (Fcons (contents, Qnil));
165e1749 329
99fe880d 330 /* Display them in a dialog box. */
4d7e6e51 331 block_input ();
6a040d6a 332 selection = xdialog_show (f, 0, title, header, &error_name);
4d7e6e51 333 unblock_input ();
165e1749 334
86fad4ec 335 unbind_to (specpdl_count, Qnil);
99fe880d
RS
336 discard_menu_items ();
337
f390e2d5 338 if (error_name) error ("%s", error_name);
99fe880d
RS
339 return selection;
340 }
7464b131 341#endif
392d3f4b 342}
c3438661
JD
343
344
345#ifndef MSDOS
346
4475bec4
PE
347#if defined USE_GTK || defined USE_MOTIF
348
b3935289
JD
349/* Set menu_items_inuse so no other popup menu or dialog is created. */
350
351void
971de7fb 352x_menu_set_in_use (int in_use)
b3935289
JD
353{
354 menu_items_inuse = in_use ? Qt : Qnil;
5ae53dcf 355 popup_activated_flag = in_use;
73dba342 356#ifdef USE_X_TOOLKIT
98a20c65
CY
357 if (popup_activated_flag)
358 x_activate_timeout_atimer ();
73dba342 359#endif
b3935289
JD
360}
361
4475bec4
PE
362#endif
363
c3438661
JD
364/* Wait for an X event to arrive or for a timer to expire. */
365
6f37259d
PE
366#ifndef USE_MOTIF
367static
368#endif
b3935289 369void
c3438661
JD
370x_menu_wait_for_event (void *data)
371{
c3438661
JD
372 /* Another way to do this is to register a timer callback, that can be
373 done in GTK and Xt. But we have to do it like this when using only X
374 anyway, and with callbacks we would have three variants for timer handling
375 instead of the small ifdefs below. */
376
377 while (
378#ifdef USE_X_TOOLKIT
f1d1cd24 379 ! XtAppPending (Xt_app_con)
c3438661
JD
380#elif defined USE_GTK
381 ! gtk_events_pending ()
382#else
383 ! XPending ((Display*) data)
384#endif
385 )
386 {
f868cd8a 387 EMACS_TIME next_time = timer_check (), *ntp;
c3438661
JD
388 SELECT_TYPE read_fds;
389 struct x_display_info *dpyinfo;
390 int n = 0;
391
392 FD_ZERO (&read_fds);
393 for (dpyinfo = x_display_list; dpyinfo; dpyinfo = dpyinfo->next)
394 {
395 int fd = ConnectionNumber (dpyinfo->display);
396 FD_SET (fd, &read_fds);
397 if (fd > n) n = fd;
11814156 398 XFlush (dpyinfo->display);
c3438661
JD
399 }
400
d35af63c 401 if (! EMACS_TIME_VALID_P (next_time))
e90292a9
JD
402 ntp = 0;
403 else
404 ntp = &next_time;
c3438661 405
93d5ca1f 406#ifdef HAVE_GTK3
63def6b6
CY
407 /* Gtk3 have arrows on menus when they don't fit. When the
408 pointer is over an arrow, a timeout scrolls it a bit. Use
409 xg_select so that timeout gets triggered. */
410 xg_select (n + 1, &read_fds, NULL, NULL, ntp, NULL);
93d5ca1f 411#else
d35af63c 412 pselect (n + 1, &read_fds, NULL, NULL, ntp, NULL);
93d5ca1f 413#endif
c3438661
JD
414 }
415}
416#endif /* ! MSDOS */
417
78589e07 418\f
488dd4c4 419#if defined (USE_X_TOOLKIT) || defined (USE_GTK)
18686d47 420
f1d1cd24
JD
421#ifdef USE_X_TOOLKIT
422
4dedbfe0 423/* Loop in Xt until the menu pulldown or dialog popup has been
f56e7ad2 424 popped down (deactivated). This is used for x-popup-menu
f02cac82
RS
425 and x-popup-dialog; it is not used for the menu bar.
426
2e2b8e22 427 NOTE: All calls to popup_get_selection should be protected
c98fcf4b 428 with BLOCK_INPUT, UNBLOCK_INPUT wrappers. */
aa669def 429
f02cac82 430static void
ebd15611 431popup_get_selection (XEvent *initial_event, struct x_display_info *dpyinfo, LWLIB_ID id, int do_timers)
78589e07 432{
4dedbfe0 433 XEvent event;
f02cac82 434
8b806a85
JD
435 while (popup_activated_flag)
436 {
c0b0f54b 437 if (initial_event)
8b806a85
JD
438 {
439 event = *initial_event;
440 initial_event = 0;
441 }
442 else
c3438661
JD
443 {
444 if (do_timers) x_menu_wait_for_event (0);
445 XtAppNextEvent (Xt_app_con, &event);
446 }
78589e07 447
10624005 448 /* Make sure we don't consider buttons grabbed after menu goes.
8b806a85
JD
449 And make sure to deactivate for any ButtonRelease,
450 even if XtDispatchEvent doesn't do that. */
451 if (event.type == ButtonRelease
452 && dpyinfo->display == event.xbutton.display)
10624005
KH
453 {
454 dpyinfo->grabbed &= ~(1 << event.xbutton.button);
177c0ea7 455#ifdef USE_MOTIF /* Pretending that the event came from a
8b806a85
JD
456 Btn1Down seems the only way to convince Motif to
457 activate its callbacks; setting the XmNmenuPost
458 isn't working. --marcus@sysc.pdx.edu. */
459 event.xbutton.button = 1;
460 /* Motif only pops down menus when no Ctrl, Alt or Mod
461 key is pressed and the button is released. So reset key state
462 so Motif thinks this is the case. */
463 event.xbutton.state = 0;
c8b5aa3d 464#endif
10624005 465 }
33385c6f 466 /* Pop down on C-g and Escape. */
2e2b8e22 467 else if (event.type == KeyPress
10624005 468 && dpyinfo->display == event.xbutton.display)
8b806a85
JD
469 {
470 KeySym keysym = XLookupKeysym (&event.xkey, 0);
9f6fcdc5 471
33385c6f
JD
472 if ((keysym == XK_g && (event.xkey.state & ControlMask) != 0)
473 || keysym == XK_Escape) /* Any escape, ignore modifiers. */
9f6fcdc5 474 popup_activated_flag = 0;
8b806a85 475 }
177c0ea7 476
8b806a85 477 x_dispatch_event (&event, event.xany.display);
aa669def 478 }
78589e07
RS
479}
480
12b6af5c 481DEFUN ("x-menu-bar-open-internal", Fx_menu_bar_open_internal, Sx_menu_bar_open_internal, 0, 1, "i",
22badffe
JD
482 doc: /* Start key navigation of the menu bar in FRAME.
483This initially opens the first menu bar item and you can then navigate with the
484arrow keys, select a menu entry with the return key or cancel with the
485escape key. If FRAME has no menu bar this function does nothing.
486
487If FRAME is nil or not given, use the selected frame. */)
5842a27b 488 (Lisp_Object frame)
22badffe
JD
489{
490 XEvent ev;
491 FRAME_PTR f = check_x_frame (frame);
492 Widget menubar;
4d7e6e51 493 block_input ();
22badffe
JD
494
495 if (FRAME_EXTERNAL_MENU_BAR (f))
496 set_frame_menubar (f, 0, 1);
497
498 menubar = FRAME_X_OUTPUT (f)->menubar_widget;
499 if (menubar)
500 {
501 Window child;
502 int error_p = 0;
503
504 x_catch_errors (FRAME_X_DISPLAY (f));
505 memset (&ev, 0, sizeof ev);
506 ev.xbutton.display = FRAME_X_DISPLAY (f);
507 ev.xbutton.window = XtWindow (menubar);
508 ev.xbutton.root = FRAME_X_DISPLAY_INFO (f)->root_window;
509 ev.xbutton.time = XtLastTimestampProcessed (FRAME_X_DISPLAY (f));
510 ev.xbutton.button = Button1;
511 ev.xbutton.x = ev.xbutton.y = FRAME_MENUBAR_HEIGHT (f) / 2;
512 ev.xbutton.same_screen = True;
513
514#ifdef USE_MOTIF
515 {
516 Arg al[2];
517 WidgetList list;
518 Cardinal nr;
519 XtSetArg (al[0], XtNchildren, &list);
520 XtSetArg (al[1], XtNnumChildren, &nr);
521 XtGetValues (menubar, al, 2);
522 ev.xbutton.window = XtWindow (list[0]);
523 }
524#endif
525
526 XTranslateCoordinates (FRAME_X_DISPLAY (f),
527 /* From-window, to-window. */
528 ev.xbutton.window, ev.xbutton.root,
529
530 /* From-position, to-position. */
531 ev.xbutton.x, ev.xbutton.y,
532 &ev.xbutton.x_root, &ev.xbutton.y_root,
533
534 /* Child of win. */
535 &child);
536 error_p = x_had_errors_p (FRAME_X_DISPLAY (f));
537 x_uncatch_errors ();
538
539 if (! error_p)
540 {
541 ev.type = ButtonPress;
542 ev.xbutton.state = 0;
543
544 XtDispatchEvent (&ev);
545 ev.xbutton.type = ButtonRelease;
546 ev.xbutton.state = Button1Mask;
547 XtDispatchEvent (&ev);
548 }
549 }
550
4d7e6e51 551 unblock_input ();
57d671b4
AS
552
553 return Qnil;
22badffe 554}
488dd4c4
JD
555#endif /* USE_X_TOOLKIT */
556
22badffe 557
488dd4c4 558#ifdef USE_GTK
12b6af5c 559DEFUN ("x-menu-bar-open-internal", Fx_menu_bar_open_internal, Sx_menu_bar_open_internal, 0, 1, "i",
22badffe
JD
560 doc: /* Start key navigation of the menu bar in FRAME.
561This initially opens the first menu bar item and you can then navigate with the
562arrow keys, select a menu entry with the return key or cancel with the
563escape key. If FRAME has no menu bar this function does nothing.
564
565If FRAME is nil or not given, use the selected frame. */)
5842a27b 566 (Lisp_Object frame)
22badffe
JD
567{
568 GtkWidget *menubar;
8630721e
CY
569 FRAME_PTR f;
570
718aeeb8 571 /* gcc 2.95 doesn't accept the FRAME_PTR declaration after
4d7e6e51 572 block_input (). */
718aeeb8 573
4d7e6e51 574 block_input ();
8630721e 575 f = check_x_frame (frame);
22badffe
JD
576
577 if (FRAME_EXTERNAL_MENU_BAR (f))
578 set_frame_menubar (f, 0, 1);
579
580 menubar = FRAME_X_OUTPUT (f)->menubar_widget;
581 if (menubar)
582 {
583 /* Activate the first menu. */
584 GList *children = gtk_container_get_children (GTK_CONTAINER (menubar));
585
32d46135
JD
586 if (children)
587 {
588 g_signal_emit_by_name (children->data, "activate_item");
589 popup_activated_flag = 1;
590 g_list_free (children);
591 }
22badffe 592 }
4d7e6e51 593 unblock_input ();
22badffe
JD
594
595 return Qnil;
596}
597
488dd4c4
JD
598/* Loop util popup_activated_flag is set to zero in a callback.
599 Used for popup menus and dialogs. */
f1d1cd24 600
488dd4c4 601static void
971de7fb 602popup_widget_loop (int do_timers, GtkWidget *widget)
488dd4c4
JD
603{
604 ++popup_activated_flag;
605
606 /* Process events in the Gtk event loop until done. */
607 while (popup_activated_flag)
608 {
c3438661 609 if (do_timers) x_menu_wait_for_event (0);
488dd4c4
JD
610 gtk_main_iteration ();
611 }
612}
613#endif
614
88766961
RS
615/* Activate the menu bar of frame F.
616 This is called from keyboard.c when it gets the
3b8f9651 617 MENU_BAR_ACTIVATE_EVENT out of the Emacs event queue.
88766961
RS
618
619 To activate the menu bar, we use the X button-press event
ac78b144 620 that was saved in saved_menu_event.
88766961
RS
621 That makes the toolkit do its thing.
622
623 But first we recompute the menu bar contents (the whole tree).
624
625 The reason for saving the button event until here, instead of
626 passing it to the toolkit right away, is that we can safely
627 execute Lisp code. */
177c0ea7 628
dfcf069d 629void
971de7fb 630x_activate_menubar (FRAME_PTR f)
88766961 631{
62af879c 632 if (! FRAME_X_P (f))
1088b922 633 emacs_abort ();
62af879c 634
ac78b144 635 if (!f->output_data.x->saved_menu_event->type)
88766961
RS
636 return;
637
177c0ea7 638#ifdef USE_GTK
6b61353c
KH
639 if (! xg_win_to_widget (FRAME_X_DISPLAY (f),
640 f->output_data.x->saved_menu_event->xany.window))
488dd4c4
JD
641 return;
642#endif
177c0ea7 643
a9be6839 644 set_frame_menubar (f, 0, 1);
4d7e6e51 645 block_input ();
cf28cebc 646 popup_activated_flag = 1;
488dd4c4
JD
647#ifdef USE_GTK
648 XPutBackEvent (f->output_data.x->display_info->display,
649 f->output_data.x->saved_menu_event);
488dd4c4 650#else
86fad4ec 651 XtDispatchEvent (f->output_data.x->saved_menu_event);
488dd4c4 652#endif
4d7e6e51 653 unblock_input ();
177c0ea7 654
88766961 655 /* Ignore this if we get it a second time. */
ac78b144 656 f->output_data.x->saved_menu_event->type = 0;
88766961
RS
657}
658
4dedbfe0
PR
659/* This callback is invoked when the user selects a menubar cascade
660 pushbutton, but before the pulldown menu is posted. */
78589e07 661
488dd4c4 662#ifndef USE_GTK
78589e07 663static void
ebd15611 664popup_activate_callback (Widget widget, LWLIB_ID id, XtPointer client_data)
78589e07 665{
4dedbfe0 666 popup_activated_flag = 1;
98a20c65
CY
667#ifdef USE_X_TOOLKIT
668 x_activate_timeout_atimer ();
669#endif
7555d825 670}
488dd4c4 671#endif
7555d825
GM
672
673/* This callback is invoked when a dialog or menu is finished being
674 used and has been unposted. */
675
488dd4c4 676static void
5db81e33
SM
677popup_deactivate_callback (
678#ifdef USE_GTK
679 GtkWidget *widget, gpointer client_data
488dd4c4 680#else
5db81e33
SM
681 Widget widget, LWLIB_ID id, XtPointer client_data
682#endif
683 )
7555d825 684{
7555d825 685 popup_activated_flag = 0;
78589e07
RS
686}
687
850df50b 688
488dd4c4
JD
689/* Function that finds the frame for WIDGET and shows the HELP text
690 for that widget.
691 F is the frame if known, or NULL if not known. */
692static void
971de7fb 693show_help_event (FRAME_PTR f, xt_or_gtk_widget widget, Lisp_Object help)
850df50b 694{
488dd4c4 695 Lisp_Object frame;
850df50b 696
850df50b 697 if (f)
9cd50434
GM
698 {
699 XSETFRAME (frame, f);
700 kbd_buffer_store_help_event (frame, help);
701 }
850df50b
GM
702 else
703 {
6b61353c 704#if 0 /* This code doesn't do anything useful. ++kfs */
177c0ea7 705 /* WIDGET is the popup menu. It's parent is the frame's
850df50b 706 widget. See which frame that is. */
488dd4c4 707 xt_or_gtk_widget frame_widget = XtParent (widget);
850df50b
GM
708 Lisp_Object tail;
709
8e50cc2d 710 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
850df50b
GM
711 {
712 frame = XCAR (tail);
8e50cc2d 713 if (FRAMEP (frame)
850df50b
GM
714 && (f = XFRAME (frame),
715 FRAME_X_P (f) && f->output_data.x->widget == frame_widget))
716 break;
717 }
6b61353c 718#endif
f868cd8a 719 show_help_echo (help, Qnil, Qnil, Qnil);
9cd50434 720 }
850df50b
GM
721}
722
488dd4c4
JD
723/* Callback called when menu items are highlighted/unhighlighted
724 while moving the mouse over them. WIDGET is the menu bar or menu
725 popup widget. ID is its LWLIB_ID. CALL_DATA contains a pointer to
726 the data structure for the menu item, or null in case of
727 unhighlighting. */
4dedbfe0 728
488dd4c4 729#ifdef USE_GTK
032f1620 730static void
971de7fb 731menu_highlight_callback (GtkWidget *widget, gpointer call_data)
488dd4c4
JD
732{
733 xg_menu_item_cb_data *cb_data;
734 Lisp_Object help;
177c0ea7 735
488dd4c4
JD
736 cb_data = (xg_menu_item_cb_data*) g_object_get_data (G_OBJECT (widget),
737 XG_ITEM_DATA);
738 if (! cb_data) return;
739
740 help = call_data ? cb_data->help : Qnil;
741
742 /* If popup_activated_flag is greater than 1 we are in a popup menu.
a560d974
JD
743 Don't pass the frame to show_help_event for those.
744 Passing frame creates an Emacs event. As we are looping in
8d5ed899 745 popup_widget_loop, it won't be handled. Passing NULL shows the tip
a560d974
JD
746 directly without using an Emacs event. This is what the Lucid code
747 does below. */
748 show_help_event (popup_activated_flag <= 1 ? cb_data->cl_data->f : NULL,
749 widget, help);
488dd4c4
JD
750}
751#else
032f1620 752static void
ebd15611 753menu_highlight_callback (Widget widget, LWLIB_ID id, void *call_data)
488dd4c4
JD
754{
755 struct frame *f;
756 Lisp_Object help;
757
758 widget_value *wv = (widget_value *) call_data;
759
760 help = wv ? wv->help : Qnil;
177c0ea7 761
488dd4c4
JD
762 /* Determine the frame for the help event. */
763 f = menubar_id_to_frame (id);
764
765 show_help_event (f, widget, help);
766}
767#endif
768
488dd4c4
JD
769#ifdef USE_GTK
770/* Gtk calls callbacks just because we tell it what item should be
771 selected in a radio group. If this variable is set to a non-zero
772 value, we are creating menus and don't want callbacks right now.
773*/
774static int xg_crazy_callback_abort;
775
776/* This callback is called from the menu bar pulldown menu
777 when the user makes a selection.
778 Figure out what the user chose
779 and put the appropriate events into the keyboard buffer. */
780static void
971de7fb 781menubar_selection_callback (GtkWidget *widget, gpointer client_data)
488dd4c4
JD
782{
783 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data*) client_data;
784
785 if (xg_crazy_callback_abort)
786 return;
787
788 if (! cb_data || ! cb_data->cl_data || ! cb_data->cl_data->f)
789 return;
790
b79c8219
JD
791 /* For a group of radio buttons, GTK calls the selection callback first
792 for the item that was active before the selection and then for the one that
793 is active after the selection. For C-h k this means we get the help on
794 the deselected item and then the selected item is executed. Prevent that
795 by ignoring the non-active item. */
796 if (GTK_IS_RADIO_MENU_ITEM (widget)
797 && ! gtk_check_menu_item_get_active (GTK_CHECK_MENU_ITEM (widget)))
798 return;
799
81f09877
JD
800 /* When a menu is popped down, X generates a focus event (i.e. focus
801 goes back to the frame below the menu). Since GTK buffers events,
802 we force it out here before the menu selection event. Otherwise
803 sit-for will exit at once if the focus event follows the menu selection
804 event. */
805
4d7e6e51 806 block_input ();
81f09877
JD
807 while (gtk_events_pending ())
808 gtk_main_iteration ();
4d7e6e51 809 unblock_input ();
81f09877 810
488dd4c4
JD
811 find_and_call_menu_selection (cb_data->cl_data->f,
812 cb_data->cl_data->menu_bar_items_used,
813 cb_data->cl_data->menu_bar_vector,
814 cb_data->call_data);
815}
816
817#else /* not USE_GTK */
818
819/* This callback is called from the menu bar pulldown menu
820 when the user makes a selection.
821 Figure out what the user chose
822 and put the appropriate events into the keyboard buffer. */
823static void
ebd15611 824menubar_selection_callback (Widget widget, LWLIB_ID id, XtPointer client_data)
488dd4c4
JD
825{
826 FRAME_PTR f;
827
828 f = menubar_id_to_frame (id);
829 if (!f)
830 return;
831 find_and_call_menu_selection (f, f->menu_bar_items_used,
e69b0960 832 f->menu_bar_vector, client_data);
488dd4c4
JD
833}
834#endif /* not USE_GTK */
f61a541b
GM
835\f
836/* Recompute all the widgets of frame F, when the menu bar has been
837 changed. Value is non-zero if widgets were updated. */
838
839static int
971de7fb 840update_frame_menubar (FRAME_PTR f)
18686d47 841{
488dd4c4
JD
842#ifdef USE_GTK
843 return xg_update_frame_menubar (f);
844#else
62af879c 845 struct x_output *x;
cffa74ea 846 int columns, rows;
177c0ea7 847
62af879c 848 if (! FRAME_X_P (f))
1088b922 849 emacs_abort ();
62af879c
KL
850
851 x = f->output_data.x;
852
f61a541b
GM
853 if (!x->menubar_widget || XtIsManaged (x->menubar_widget))
854 return 0;
18686d47 855
4d7e6e51 856 block_input ();
f61a541b
GM
857 /* Save the size of the frame because the pane widget doesn't accept
858 to resize itself. So force it. */
9882535b
KS
859 columns = FRAME_COLS (f);
860 rows = FRAME_LINES (f);
cffa74ea 861
f61a541b
GM
862 /* Do the voodoo which means "I'm changing lots of things, don't try
863 to refigure sizes until I'm done." */
4dedbfe0 864 lw_refigure_widget (x->column_widget, False);
cffa74ea 865
f61a541b
GM
866 /* The order in which children are managed is the top to bottom
867 order in which they are displayed in the paned window. First,
868 remove the text-area widget. */
18686d47
RS
869 XtUnmanageChild (x->edit_widget);
870
f61a541b
GM
871 /* Remove the menubar that is there now, and put up the menubar that
872 should be there. */
873 XtManageChild (x->menubar_widget);
874 XtMapWidget (x->menubar_widget);
875 XtVaSetValues (x->menubar_widget, XtNmappedWhenManaged, 1, NULL);
18686d47 876
c98fcf4b 877 /* Re-manage the text-area widget, and then thrash the sizes. */
18686d47 878 XtManageChild (x->edit_widget);
4dedbfe0 879 lw_refigure_widget (x->column_widget, True);
cffa74ea
FP
880
881 /* Force the pane widget to resize itself with the right values. */
882 EmacsFrameSetCharSize (x->edit_widget, columns, rows);
4d7e6e51 883 unblock_input ();
488dd4c4 884#endif
f61a541b 885 return 1;
18686d47
RS
886}
887
99852628 888#ifdef USE_LUCID
1ecb2d3f 889static void
ebd15611 890apply_systemfont_to_dialog (Widget w)
1ecb2d3f
JD
891{
892 const char *fn = xsettings_get_system_normal_font ();
51b59d79 893 if (fn)
1ecb2d3f
JD
894 {
895 XrmDatabase db = XtDatabase (XtDisplay (w));
896 if (db)
3928f2b6 897 XrmPutStringResource (&db, "*dialog.font", fn);
1ecb2d3f
JD
898 }
899}
900
99852628 901static void
3928f2b6 902apply_systemfont_to_menu (struct frame *f, Widget w)
99852628
JD
903{
904 const char *fn = xsettings_get_system_normal_font ();
99852628 905
3928f2b6 906 if (fn)
99852628 907 {
3928f2b6
JD
908 XrmDatabase db = XtDatabase (XtDisplay (w));
909 if (db)
910 {
911 XrmPutStringResource (&db, "*menubar*font", fn);
912 XrmPutStringResource (&db, "*popup*font", fn);
913 }
99852628 914 }
99852628 915}
3928f2b6 916
99852628
JD
917#endif
918
4bcdbab1
KH
919/* Set the contents of the menubar widgets of frame F.
920 The argument FIRST_TIME is currently ignored;
921 it is set the first time this is called, from initialize_frame_menubar. */
922
18686d47 923void
971de7fb 924set_frame_menubar (FRAME_PTR f, int first_time, int deep_p)
18686d47 925{
62af879c 926 xt_or_gtk_widget menubar_widget;
488dd4c4
JD
927#ifdef USE_X_TOOLKIT
928 LWLIB_ID id;
929#endif
faa935b6 930 Lisp_Object items;
4d19cb8e 931 widget_value *wv, *first_wv, *prev_wv = 0;
3e26f69c 932 int i;
ced89c24 933 int *submenu_start, *submenu_end;
37dc84ff 934 int *submenu_top_level_items, *submenu_n_panes;
cc45fb40 935
62af879c 936 if (! FRAME_X_P (f))
1088b922 937 emacs_abort ();
62af879c
KL
938
939 menubar_widget = f->output_data.x->menubar_widget;
18686d47 940
bfc524bc
RS
941 XSETFRAME (Vmenu_updating_frame, f);
942
488dd4c4 943#ifdef USE_X_TOOLKIT
7556890b
RS
944 if (f->output_data.x->id == 0)
945 f->output_data.x->id = next_menubar_widget_id++;
946 id = f->output_data.x->id;
488dd4c4 947#endif
177c0ea7 948
88766961
RS
949 if (! menubar_widget)
950 deep_p = 1;
a9be6839
RS
951 /* Make the first call for any given frame always go deep. */
952 else if (!f->output_data.x->saved_menu_event && !deep_p)
745c34fb
RS
953 {
954 deep_p = 1;
23f86fce 955 f->output_data.x->saved_menu_event = xmalloc (sizeof (XEvent));
a9be6839 956 f->output_data.x->saved_menu_event->type = 0;
745c34fb 957 }
18686d47 958
6b61353c
KH
959#ifdef USE_GTK
960 /* If we have detached menus, we must update deep so detached menus
961 also gets updated. */
962 deep_p = deep_p || xg_have_tear_offs ();
963#endif
964
88766961 965 if (deep_p)
18686d47 966 {
88766961
RS
967 /* Make a widget-value tree representing the entire menu trees. */
968
969 struct buffer *prev = current_buffer;
970 Lisp_Object buffer;
d311d28c 971 ptrdiff_t specpdl_count = SPECPDL_INDEX ();
88766961
RS
972 int previous_menu_items_used = f->menu_bar_items_used;
973 Lisp_Object *previous_items
38182d90 974 = alloca (previous_menu_items_used * sizeof *previous_items);
3e26f69c 975 int subitems;
88766961 976
0b1cf399
RS
977 /* If we are making a new widget, its contents are empty,
978 do always reinitialize them. */
979 if (! menubar_widget)
980 previous_menu_items_used = 0;
981
d3d50620 982 buffer = XWINDOW (FRAME_SELECTED_WINDOW (f))->buffer;
88766961
RS
983 specbind (Qinhibit_quit, Qt);
984 /* Don't let the debugger step into this code
985 because it is not reentrant. */
986 specbind (Qdebug_on_next_call, Qnil);
987
89f2614d 988 record_unwind_save_match_data ();
88766961
RS
989 if (NILP (Voverriding_local_map_menu_flag))
990 {
991 specbind (Qoverriding_terminal_local_map, Qnil);
992 specbind (Qoverriding_local_map, Qnil);
993 }
18686d47 994
88766961 995 set_buffer_internal_1 (XBUFFER (buffer));
18686d47 996
88766961 997 /* Run the Lucid hook. */
950eaee7 998 safe_run_hooks (Qactivate_menubar_hook);
177c0ea7 999
88766961
RS
1000 /* If it has changed current-menubar from previous value,
1001 really recompute the menubar from the value. */
1002 if (! NILP (Vlucid_menu_bar_dirty_flag))
1003 call0 (Qrecompute_lucid_menubar);
a57634d4 1004 safe_run_hooks (Qmenu_bar_update_hook);
f00af5b1 1005 fset_menu_bar_items (f, menu_bar_items (FRAME_MENU_BAR_ITEMS (f)));
18686d47 1006
88766961 1007 items = FRAME_MENU_BAR_ITEMS (f);
8d8a3494 1008
88766961 1009 /* Save the frame's previous menu bar contents data. */
86c04183 1010 if (previous_menu_items_used)
e69b0960 1011 memcpy (previous_items, XVECTOR (f->menu_bar_vector)->contents,
663e2b3f 1012 previous_menu_items_used * word_size);
8d8a3494 1013
ced89c24
RS
1014 /* Fill in menu_items with the current menu bar contents.
1015 This can evaluate Lisp code. */
1fc4d463
RS
1016 save_menu_items ();
1017
e69b0960 1018 menu_items = f->menu_bar_vector;
86c04183 1019 menu_items_allocated = VECTORP (menu_items) ? ASIZE (menu_items) : 0;
77b37c05 1020 subitems = ASIZE (items) / 4;
38182d90
PE
1021 submenu_start = alloca ((subitems + 1) * sizeof *submenu_start);
1022 submenu_end = alloca (subitems * sizeof *submenu_end);
1023 submenu_n_panes = alloca (subitems * sizeof *submenu_n_panes);
1024 submenu_top_level_items = alloca (subitems
1025 * sizeof *submenu_top_level_items);
88766961 1026 init_menu_items ();
e3019616 1027 for (i = 0; i < subitems; i++)
88766961
RS
1028 {
1029 Lisp_Object key, string, maps;
1030
28be1ada
DA
1031 key = AREF (items, 4 * i);
1032 string = AREF (items, 4 * i + 1);
1033 maps = AREF (items, 4 * i + 2);
88766961
RS
1034 if (NILP (string))
1035 break;
1036
ced89c24
RS
1037 submenu_start[i] = menu_items_used;
1038
1039 menu_items_n_panes = 0;
1040 submenu_top_level_items[i]
1041 = parse_single_submenu (key, string, maps);
37dc84ff 1042 submenu_n_panes[i] = menu_items_n_panes;
ced89c24
RS
1043
1044 submenu_end[i] = menu_items_used;
1045 }
1046
3e26f69c 1047 submenu_start[i] = -1;
ced89c24
RS
1048 finish_menu_items ();
1049
1050 /* Convert menu_items into widget_value trees
1051 to display the menu. This cannot evaluate Lisp code. */
1052
1053 wv = xmalloc_widget_value ();
1054 wv->name = "menubar";
1055 wv->value = 0;
1056 wv->enabled = 1;
1057 wv->button_type = BUTTON_TYPE_NONE;
1058 wv->help = Qnil;
1059 first_wv = wv;
1060
3e26f69c 1061 for (i = 0; 0 <= submenu_start[i]; i++)
ced89c24 1062 {
37dc84ff 1063 menu_items_n_panes = submenu_n_panes[i];
ced89c24
RS
1064 wv = digest_single_submenu (submenu_start[i], submenu_end[i],
1065 submenu_top_level_items[i]);
177c0ea7 1066 if (prev_wv)
88766961
RS
1067 prev_wv->next = wv;
1068 else
1069 first_wv->contents = wv;
1070 /* Don't set wv->name here; GC during the loop might relocate it. */
1071 wv->enabled = 1;
3427a3db 1072 wv->button_type = BUTTON_TYPE_NONE;
88766961
RS
1073 prev_wv = wv;
1074 }
1075
88766961 1076 set_buffer_internal_1 (prev);
8d8a3494 1077
88766961
RS
1078 /* If there has been no change in the Lisp-level contents
1079 of the menu bar, skip redisplaying it. Just exit. */
1080
510d5bf6 1081 /* Compare the new menu items with the ones computed last time. */
88766961
RS
1082 for (i = 0; i < previous_menu_items_used; i++)
1083 if (menu_items_used == i
28be1ada 1084 || (!EQ (previous_items[i], AREF (menu_items, i))))
88766961 1085 break;
62555c22 1086 if (i == menu_items_used && i == previous_menu_items_used && i != 0)
88766961 1087 {
510d5bf6
RS
1088 /* The menu items have not changed. Don't bother updating
1089 the menus in any form, since it would be a no-op. */
88766961 1090 free_menubar_widget_value_tree (first_wv);
86fad4ec 1091 discard_menu_items ();
1fc4d463 1092 unbind_to (specpdl_count, Qnil);
88766961
RS
1093 return;
1094 }
1095
510d5bf6 1096 /* The menu items are different, so store them in the frame. */
f00af5b1 1097 fset_menu_bar_vector (f, menu_items);
1fc4d463
RS
1098 f->menu_bar_items_used = menu_items_used;
1099
bf732638 1100 /* This undoes save_menu_items. */
1fc4d463
RS
1101 unbind_to (specpdl_count, Qnil);
1102
88766961
RS
1103 /* Now GC cannot happen during the lifetime of the widget_value,
1104 so it's safe to store data from a Lisp_String. */
1105 wv = first_wv->contents;
77b37c05 1106 for (i = 0; i < ASIZE (items); i += 4)
88766961
RS
1107 {
1108 Lisp_Object string;
28be1ada 1109 string = AREF (items, i + 1);
88766961 1110 if (NILP (string))
2bf436c3 1111 break;
51b59d79 1112 wv->name = SSDATA (string);
2bf436c3
JD
1113 update_submenu_strings (wv->contents);
1114 wv = wv->next;
88766961
RS
1115 }
1116
4d19cb8e 1117 }
88766961
RS
1118 else
1119 {
1120 /* Make a widget-value tree containing
1121 just the top level menu bar strings. */
4d19cb8e 1122
ced89c24
RS
1123 wv = xmalloc_widget_value ();
1124 wv->name = "menubar";
1125 wv->value = 0;
1126 wv->enabled = 1;
1127 wv->button_type = BUTTON_TYPE_NONE;
1128 wv->help = Qnil;
1129 first_wv = wv;
1130
88766961 1131 items = FRAME_MENU_BAR_ITEMS (f);
77b37c05 1132 for (i = 0; i < ASIZE (items); i += 4)
88766961
RS
1133 {
1134 Lisp_Object string;
1135
28be1ada 1136 string = AREF (items, i + 1);
88766961
RS
1137 if (NILP (string))
1138 break;
1139
f7fab165 1140 wv = xmalloc_widget_value ();
51b59d79 1141 wv->name = SSDATA (string);
88766961
RS
1142 wv->value = 0;
1143 wv->enabled = 1;
3427a3db 1144 wv->button_type = BUTTON_TYPE_NONE;
27ad7b52 1145 wv->help = Qnil;
fe8fa62f
RS
1146 /* This prevents lwlib from assuming this
1147 menu item is really supposed to be empty. */
d01a7826 1148 /* The intptr_t cast avoids a warning.
fe8fa62f 1149 This value just has to be different from small integers. */
d01a7826 1150 wv->call_data = (void *) (intptr_t) (-1);
88766961 1151
177c0ea7 1152 if (prev_wv)
88766961
RS
1153 prev_wv->next = wv;
1154 else
1155 first_wv->contents = wv;
1156 prev_wv = wv;
1157 }
62555c22
RS
1158
1159 /* Forget what we thought we knew about what is in the
1160 detailed contents of the menu bar menus.
1161 Changing the top level always destroys the contents. */
1162 f->menu_bar_items_used = 0;
88766961 1163 }
4dedbfe0 1164
88766961 1165 /* Create or update the menu bar widget. */
aa669def 1166
4d7e6e51 1167 block_input ();
aa669def 1168
488dd4c4
JD
1169#ifdef USE_GTK
1170 xg_crazy_callback_abort = 1;
1171 if (menubar_widget)
1172 {
6b61353c 1173 /* The fourth arg is DEEP_P, which says to consider the entire
488dd4c4
JD
1174 menu trees we supply, rather than just the menu bar item names. */
1175 xg_modify_menubar_widgets (menubar_widget,
1176 f,
1177 first_wv,
1178 deep_p,
1179 G_CALLBACK (menubar_selection_callback),
1180 G_CALLBACK (popup_deactivate_callback),
1181 G_CALLBACK (menu_highlight_callback));
1182 }
1183 else
1184 {
488dd4c4 1185 menubar_widget
177c0ea7 1186 = xg_create_widget ("menubar", "menubar", f, first_wv,
488dd4c4
JD
1187 G_CALLBACK (menubar_selection_callback),
1188 G_CALLBACK (popup_deactivate_callback),
1189 G_CALLBACK (menu_highlight_callback));
1190
1191 f->output_data.x->menubar_widget = menubar_widget;
1192 }
1193
177c0ea7 1194
488dd4c4 1195#else /* not USE_GTK */
18686d47 1196 if (menubar_widget)
4dedbfe0
PR
1197 {
1198 /* Disable resizing (done for Motif!) */
7556890b 1199 lw_allow_resizing (f->output_data.x->widget, False);
4dedbfe0
PR
1200
1201 /* The third arg is DEEP_P, which says to consider the entire
1202 menu trees we supply, rather than just the menu bar item names. */
88766961 1203 lw_modify_all_widgets (id, first_wv, deep_p);
4dedbfe0 1204
c98fcf4b 1205 /* Re-enable the edit widget to resize. */
7556890b 1206 lw_allow_resizing (f->output_data.x->widget, True);
4dedbfe0 1207 }
18686d47
RS
1208 else
1209 {
9f6fcdc5
JD
1210 char menuOverride[] = "Ctrl<KeyPress>g: MenuGadgetEscape()";
1211 XtTranslations override = XtParseTranslationTable (menuOverride);
1212
3928f2b6
JD
1213#ifdef USE_LUCID
1214 apply_systemfont_to_menu (f, f->output_data.x->column_widget);
1215#endif
1216 menubar_widget = lw_create_widget ("menubar", "menubar", id,
1217 first_wv,
7556890b 1218 f->output_data.x->column_widget,
4dedbfe0
PR
1219 0,
1220 popup_activate_callback,
1221 menubar_selection_callback,
850df50b
GM
1222 popup_deactivate_callback,
1223 menu_highlight_callback);
7556890b 1224 f->output_data.x->menubar_widget = menubar_widget;
9f6fcdc5
JD
1225
1226 /* Make menu pop down on C-g. */
1227 XtOverrideTranslations (menubar_widget, override);
18686d47 1228 }
1d1c1567
KH
1229
1230 {
cf28cebc 1231 int menubar_size;
723f5a07
J
1232 if (f->output_data.x->menubar_widget)
1233 XtRealizeWidget (f->output_data.x->menubar_widget);
1234
cf28cebc 1235 menubar_size
7556890b
RS
1236 = (f->output_data.x->menubar_widget
1237 ? (f->output_data.x->menubar_widget->core.height
1238 + f->output_data.x->menubar_widget->core.border_width)
1d1c1567
KH
1239 : 0);
1240
5c646d5a
JD
1241#if 1 /* Experimentally, we now get the right results
1242 for -geometry -0-0 without this. 24 Aug 96, rms.
1243 Maybe so, but the menu bar size is missing the pixels so the
cf28cebc 1244 WM size hints are off by these pixels. Jan D, oct 2009. */
5ee80bd3 1245#ifdef USE_LUCID
1d1c1567
KH
1246 if (FRAME_EXTERNAL_MENU_BAR (f))
1247 {
1248 Dimension ibw = 0;
7556890b 1249 XtVaGetValues (f->output_data.x->column_widget,
1d1c1567
KH
1250 XtNinternalBorderWidth, &ibw, NULL);
1251 menubar_size += ibw;
1252 }
5ee80bd3 1253#endif /* USE_LUCID */
5c646d5a 1254#endif /* 1 */
1d1c1567 1255
7556890b 1256 f->output_data.x->menubar_height = menubar_size;
1d1c1567 1257 }
488dd4c4 1258#endif /* not USE_GTK */
177c0ea7 1259
18686d47 1260 free_menubar_widget_value_tree (first_wv);
364cd450 1261 update_frame_menubar (f);
18686d47 1262
488dd4c4
JD
1263#ifdef USE_GTK
1264 xg_crazy_callback_abort = 0;
1265#endif
1266
4d7e6e51 1267 unblock_input ();
18686d47 1268}
85f487d1 1269
8e6208c5 1270/* Called from Fx_create_frame to create the initial menubar of a frame
4dedbfe0
PR
1271 before it is mapped, so that the window is mapped with the menubar already
1272 there instead of us tacking it on later and thrashing the window after it
1273 is visible. */
1274
1275void
971de7fb 1276initialize_frame_menubar (FRAME_PTR f)
4dedbfe0
PR
1277{
1278 /* This function is called before the first chance to redisplay
1279 the frame. It has to be, so the frame will have the right size. */
f00af5b1 1280 fset_menu_bar_items (f, menu_bar_items (FRAME_MENU_BAR_ITEMS (f)));
88766961 1281 set_frame_menubar (f, 1, 1);
4dedbfe0
PR
1282}
1283
aba25348 1284
4dedbfe0 1285/* Get rid of the menu bar of frame F, and free its storage.
488dd4c4
JD
1286 This is used when deleting a frame, and when turning off the menu bar.
1287 For GTK this function is in gtkutil.c. */
4dedbfe0 1288
488dd4c4 1289#ifndef USE_GTK
85f487d1 1290void
ebd15611 1291free_frame_menubar (FRAME_PTR f)
85f487d1
FP
1292{
1293 Widget menubar_widget;
85f487d1 1294
62af879c 1295 if (! FRAME_X_P (f))
1088b922 1296 emacs_abort ();
62af879c 1297
7556890b 1298 menubar_widget = f->output_data.x->menubar_widget;
a45bad2a
RS
1299
1300 f->output_data.x->menubar_height = 0;
177c0ea7 1301
85f487d1
FP
1302 if (menubar_widget)
1303 {
aba25348
GM
1304#ifdef USE_MOTIF
1305 /* Removing the menu bar magically changes the shell widget's x
1306 and y position of (0, 0) which, when the menu bar is turned
53964682 1307 on again, leads to pull-down menus appearing in strange
aba25348
GM
1308 positions near the upper-left corner of the display. This
1309 happens only with some window managers like twm and ctwm,
1310 but not with other like Motif's mwm or kwm, because the
1311 latter generate ConfigureNotify events when the menu bar
1312 is switched off, which fixes the shell position. */
1313 Position x0, y0, x1, y1;
1314#endif
177c0ea7 1315
4d7e6e51 1316 block_input ();
aba25348
GM
1317
1318#ifdef USE_MOTIF
ae556422
GM
1319 if (f->output_data.x->widget)
1320 XtVaGetValues (f->output_data.x->widget, XtNx, &x0, XtNy, &y0, NULL);
aba25348 1321#endif
177c0ea7 1322
7556890b 1323 lw_destroy_all_widgets ((LWLIB_ID) f->output_data.x->id);
0c05dcd3 1324 f->output_data.x->menubar_widget = NULL;
aba25348 1325
ae556422
GM
1326 if (f->output_data.x->widget)
1327 {
23243f29 1328#ifdef USE_MOTIF
ae556422
GM
1329 XtVaGetValues (f->output_data.x->widget, XtNx, &x1, XtNy, &y1, NULL);
1330 if (x1 == 0 && y1 == 0)
1331 XtVaSetValues (f->output_data.x->widget, XtNx, x0, XtNy, y0, NULL);
aba25348 1332#endif
23243f29
J
1333 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
1334 }
4d7e6e51 1335 unblock_input ();
85f487d1
FP
1336 }
1337}
488dd4c4 1338#endif /* not USE_GTK */
78589e07 1339
488dd4c4 1340#endif /* USE_X_TOOLKIT || USE_GTK */
78589e07
RS
1341\f
1342/* xmenu_show actually displays a menu using the panes and items in menu_items
1343 and returns the value selected from it.
1344 There are two versions of xmenu_show, one for Xt and one for Xlib.
1345 Both assume input is blocked by the caller. */
1346
1347/* F is the frame the menu is for.
1348 X and Y are the frame-relative specified position,
1349 relative to the inside upper left corner of the frame F.
c8b5aa3d 1350 FOR_CLICK is nonzero if this menu was invoked for a mouse click.
78589e07
RS
1351 KEYMAPS is 1 if this menu was specified with keymaps;
1352 in that case, we return a list containing the chosen item's value
1353 and perhaps also the pane's prefix.
1354 TITLE is the specified menu title.
1355 ERROR is a place to store an error message string in case of failure.
1356 (We return nil on failure, but the value doesn't actually matter.) */
18686d47 1357
488dd4c4
JD
1358#if defined (USE_X_TOOLKIT) || defined (USE_GTK)
1359
1360/* The item selected in the popup menu. */
1361static Lisp_Object *volatile menu_item_selection;
1362
1363#ifdef USE_GTK
1364
1365/* Used when position a popup menu. See menu_position_func and
1366 create_and_show_popup_menu below. */
1367struct next_popup_x_y
1368{
7b76ca1c 1369 FRAME_PTR f;
488dd4c4
JD
1370 int x;
1371 int y;
1372};
1373
1374/* The menu position function to use if we are not putting a popup
1375 menu where the pointer is.
1376 MENU is the menu to pop up.
1377 X and Y shall on exit contain x/y where the menu shall pop up.
1378 PUSH_IN is not documented in the GTK manual.
1379 USER_DATA is any data passed in when calling gtk_menu_popup.
1380 Here it points to a struct next_popup_x_y where the coordinates
7b76ca1c 1381 to store in *X and *Y are as well as the frame for the popup.
488dd4c4
JD
1382
1383 Here only X and Y are used. */
1384static void
971de7fb 1385menu_position_func (GtkMenu *menu, gint *x, gint *y, gboolean *push_in, gpointer user_data)
488dd4c4 1386{
7b76ca1c
JD
1387 struct next_popup_x_y* data = (struct next_popup_x_y*)user_data;
1388 GtkRequisition req;
fd2f80c6
CY
1389 struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (data->f);
1390 int disp_width = x_display_pixel_width (dpyinfo);
1391 int disp_height = x_display_pixel_height (dpyinfo);
b9de078a 1392
7b76ca1c
JD
1393 *x = data->x;
1394 *y = data->y;
1395
1396 /* Check if there is room for the menu. If not, adjust x/y so that
1397 the menu is fully visible. */
0afb4571 1398 gtk_widget_get_preferred_size (GTK_WIDGET (menu), NULL, &req);
7b76ca1c
JD
1399 if (data->x + req.width > disp_width)
1400 *x -= data->x + req.width - disp_width;
1401 if (data->y + req.height > disp_height)
1402 *y -= data->y + req.height - disp_height;
488dd4c4
JD
1403}
1404
1405static void
971de7fb 1406popup_selection_callback (GtkWidget *widget, gpointer client_data)
488dd4c4
JD
1407{
1408 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data*) client_data;
1409
1410 if (xg_crazy_callback_abort) return;
1411 if (cb_data) menu_item_selection = (Lisp_Object *) cb_data->call_data;
1412}
1413
af89e871 1414static Lisp_Object
971de7fb 1415pop_down_menu (Lisp_Object arg)
af89e871 1416{
a130b901
JD
1417 struct Lisp_Save_Value *p = XSAVE_VALUE (arg);
1418
af89e871 1419 popup_activated_flag = 0;
4d7e6e51 1420 block_input ();
a130b901 1421 gtk_widget_destroy (GTK_WIDGET (p->pointer));
4d7e6e51 1422 unblock_input ();
af89e871
JD
1423 return Qnil;
1424}
1425
488dd4c4
JD
1426/* Pop up the menu for frame F defined by FIRST_WV at X/Y and loop until the
1427 menu pops down.
1428 menu_item_selection will be set to the selection. */
1429static void
08dc5ae6
PE
1430create_and_show_popup_menu (FRAME_PTR f, widget_value *first_wv, int x, int y,
1431 int for_click, Time timestamp)
488dd4c4
JD
1432{
1433 int i;
1434 GtkWidget *menu;
1435 GtkMenuPositionFunc pos_func = 0; /* Pop up at pointer. */
1436 struct next_popup_x_y popup_x_y;
d311d28c 1437 ptrdiff_t specpdl_count = SPECPDL_INDEX ();
93d5ca1f
JD
1438 int use_pos_func = ! for_click;
1439
1440#ifdef HAVE_GTK3
1441 /* Always use position function for Gtk3. Otherwise menus may become
1442 too small to show anything. */
1443 use_pos_func = 1;
1444#endif
488dd4c4 1445
62af879c 1446 if (! FRAME_X_P (f))
1088b922 1447 emacs_abort ();
62af879c 1448
488dd4c4
JD
1449 xg_crazy_callback_abort = 1;
1450 menu = xg_create_widget ("popup", first_wv->name, f, first_wv,
1451 G_CALLBACK (popup_selection_callback),
1452 G_CALLBACK (popup_deactivate_callback),
1453 G_CALLBACK (menu_highlight_callback));
1454 xg_crazy_callback_abort = 0;
177c0ea7 1455
93d5ca1f 1456 if (use_pos_func)
488dd4c4
JD
1457 {
1458 /* Not invoked by a click. pop up at x/y. */
1459 pos_func = menu_position_func;
1460
1461 /* Adjust coordinates to be root-window-relative. */
9882535b
KS
1462 x += f->left_pos + FRAME_OUTER_TO_INNER_DIFF_X (f);
1463 y += f->top_pos + FRAME_OUTER_TO_INNER_DIFF_Y (f);
488dd4c4
JD
1464
1465 popup_x_y.x = x;
1466 popup_x_y.y = y;
7b76ca1c 1467 popup_x_y.f = f;
488dd4c4 1468
9b85e63d
JD
1469 i = 0; /* gtk_menu_popup needs this to be 0 for a non-button popup. */
1470 }
93d5ca1f
JD
1471
1472 if (for_click)
9b85e63d
JD
1473 {
1474 for (i = 0; i < 5; i++)
1475 if (FRAME_X_DISPLAY_INFO (f)->grabbed & (1 << i))
1476 break;
1477 }
59cfb104 1478
488dd4c4
JD
1479 /* Display the menu. */
1480 gtk_widget_show_all (menu);
c0df13a6 1481
a20903d0 1482 gtk_menu_popup (GTK_MENU (menu), 0, 0, pos_func, &popup_x_y, i,
08dc5ae6 1483 timestamp ? timestamp : gtk_get_current_event_time ());
177c0ea7 1484
a130b901 1485 record_unwind_protect (pop_down_menu, make_save_value (menu, 0));
af89e871 1486
e547b051 1487 if (gtk_widget_get_mapped (menu))
ff18668f
JD
1488 {
1489 /* Set this to one. popup_widget_loop increases it by one, so it becomes
1490 two. show_help_echo uses this to detect popup menus. */
1491 popup_activated_flag = 1;
1492 /* Process events that apply to the menu. */
1493 popup_widget_loop (1, menu);
1494 }
488dd4c4 1495
af89e871 1496 unbind_to (specpdl_count, Qnil);
177c0ea7 1497
488dd4c4
JD
1498 /* Must reset this manually because the button release event is not passed
1499 to Emacs event loop. */
1500 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
1501}
1502
1503#else /* not USE_GTK */
18686d47 1504
8ed87156 1505/* We need a unique id for each widget handled by the Lucid Widget
cc17e9bf
KH
1506 library.
1507
1508 For the main windows, and popup menus, we use this counter,
88766961 1509 which we increment each time after use. This starts from 1<<16.
cc17e9bf 1510
88766961
RS
1511 For menu bars, we use numbers starting at 0, counted in
1512 next_menubar_widget_id. */
8ed87156 1513LWLIB_ID widget_id_tick;
165e1749 1514
4dedbfe0 1515static void
ebd15611 1516popup_selection_callback (Widget widget, LWLIB_ID id, XtPointer client_data)
4dedbfe0
PR
1517{
1518 menu_item_selection = (Lisp_Object *) client_data;
1519}
1520
af89e871
JD
1521/* ARG is the LWLIB ID of the dialog box, represented
1522 as a Lisp object as (HIGHPART . LOWPART). */
1523
1524static Lisp_Object
ebd15611 1525pop_down_menu (Lisp_Object arg)
af89e871
JD
1526{
1527 LWLIB_ID id = (XINT (XCAR (arg)) << 4 * sizeof (LWLIB_ID)
1528 | XINT (XCDR (arg)));
1529
4d7e6e51 1530 block_input ();
af89e871 1531 lw_destroy_all_widgets (id);
4d7e6e51 1532 unblock_input ();
af89e871
JD
1533 popup_activated_flag = 0;
1534
1535 return Qnil;
1536}
1537
488dd4c4
JD
1538/* Pop up the menu for frame F defined by FIRST_WV at X/Y and loop until the
1539 menu pops down.
1540 menu_item_selection will be set to the selection. */
1541static void
2b23d2a6 1542create_and_show_popup_menu (FRAME_PTR f, widget_value *first_wv,
08dc5ae6 1543 int x, int y, int for_click, Time timestamp)
488dd4c4
JD
1544{
1545 int i;
1546 Arg av[2];
1547 int ac = 0;
65969f63
CY
1548 XEvent dummy;
1549 XButtonPressedEvent *event = &(dummy.xbutton);
488dd4c4
JD
1550 LWLIB_ID menu_id;
1551 Widget menu;
488dd4c4 1552
62af879c 1553 if (! FRAME_X_P (f))
1088b922 1554 emacs_abort ();
62af879c 1555
3928f2b6
JD
1556#ifdef USE_LUCID
1557 apply_systemfont_to_menu (f, f->output_data.x->widget);
1558#endif
1559
488dd4c4
JD
1560 menu_id = widget_id_tick++;
1561 menu = lw_create_widget ("popup", first_wv->name, menu_id, first_wv,
1562 f->output_data.x->widget, 1, 0,
1563 popup_selection_callback,
1564 popup_deactivate_callback,
1565 menu_highlight_callback);
1566
65969f63
CY
1567 event->type = ButtonPress;
1568 event->serial = 0;
1569 event->send_event = 0;
1570 event->display = FRAME_X_DISPLAY (f);
1571 event->time = CurrentTime;
1572 event->root = FRAME_X_DISPLAY_INFO (f)->root_window;
1573 event->window = event->subwindow = event->root;
1574 event->x = x;
1575 event->y = y;
488dd4c4
JD
1576
1577 /* Adjust coordinates to be root-window-relative. */
9882535b
KS
1578 x += f->left_pos + FRAME_OUTER_TO_INNER_DIFF_X (f);
1579 y += f->top_pos + FRAME_OUTER_TO_INNER_DIFF_Y (f);
488dd4c4 1580
65969f63
CY
1581 event->x_root = x;
1582 event->y_root = y;
488dd4c4 1583
65969f63
CY
1584 event->state = 0;
1585 event->button = 0;
488dd4c4
JD
1586 for (i = 0; i < 5; i++)
1587 if (FRAME_X_DISPLAY_INFO (f)->grabbed & (1 << i))
65969f63 1588 event->button = i;
488dd4c4
JD
1589
1590 /* Don't allow any geometry request from the user. */
1591 XtSetArg (av[ac], XtNgeometry, 0); ac++;
1592 XtSetValues (menu, av, ac);
1593
1594 /* Display the menu. */
65969f63 1595 lw_popup_menu (menu, &dummy);
488dd4c4 1596 popup_activated_flag = 1;
98a20c65 1597 x_activate_timeout_atimer ();
59cfb104 1598
af89e871
JD
1599 {
1600 int fact = 4 * sizeof (LWLIB_ID);
d311d28c 1601 ptrdiff_t specpdl_count = SPECPDL_INDEX ();
af89e871
JD
1602 record_unwind_protect (pop_down_menu,
1603 Fcons (make_number (menu_id >> (fact)),
1604 make_number (menu_id & ~(-1 << (fact)))));
488dd4c4 1605
af89e871 1606 /* Process events that apply to the menu. */
95bdef2e 1607 popup_get_selection ((XEvent *) 0, FRAME_X_DISPLAY_INFO (f), menu_id, 1);
488dd4c4 1608
af89e871
JD
1609 unbind_to (specpdl_count, Qnil);
1610 }
488dd4c4
JD
1611}
1612
1613#endif /* not USE_GTK */
1614
ba24cea2
YM
1615static Lisp_Object
1616cleanup_widget_value_tree (Lisp_Object arg)
1617{
1618 struct Lisp_Save_Value *p = XSAVE_VALUE (arg);
1619 widget_value *wv = p->pointer;
1620
1621 free_menubar_widget_value_tree (wv);
1622
1623 return Qnil;
1624}
1625
ef7417fd
SM
1626Lisp_Object
1627xmenu_show (FRAME_PTR f, int x, int y, int for_click, int keymaps,
08dc5ae6 1628 Lisp_Object title, const char **error_name, Time timestamp)
18686d47 1629{
78589e07 1630 int i;
78589e07 1631 widget_value *wv, *save_wv = 0, *first_wv = 0, *prev_wv = 0;
101bb4a5 1632 widget_value **submenu_stack
38182d90 1633 = alloca (menu_items_used * sizeof *submenu_stack);
101bb4a5 1634 Lisp_Object *subprefix_stack
38182d90 1635 = alloca (menu_items_used * sizeof *subprefix_stack);
101bb4a5 1636 int submenu_depth = 0;
4e8d3549 1637
78c8278d
RS
1638 int first_pane;
1639
9898bd0e 1640 ptrdiff_t specpdl_count = SPECPDL_INDEX ();
ba24cea2 1641
62af879c 1642 if (! FRAME_X_P (f))
1088b922 1643 emacs_abort ();
62af879c 1644
d4323972 1645 *error_name = NULL;
78589e07 1646
742f715d
KH
1647 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
1648 {
d4323972 1649 *error_name = "Empty menu";
742f715d
KH
1650 return Qnil;
1651 }
63c414df 1652
78589e07
RS
1653 /* Create a tree of widget_value objects
1654 representing the panes and their items. */
f7fab165 1655 wv = xmalloc_widget_value ();
78589e07
RS
1656 wv->name = "menu";
1657 wv->value = 0;
1658 wv->enabled = 1;
3427a3db 1659 wv->button_type = BUTTON_TYPE_NONE;
27ad7b52 1660 wv->help =Qnil;
78589e07 1661 first_wv = wv;
78c8278d 1662 first_pane = 1;
177c0ea7 1663
78589e07
RS
1664 /* Loop over all panes and items, filling in the tree. */
1665 i = 0;
1666 while (i < menu_items_used)
1667 {
28be1ada 1668 if (EQ (AREF (menu_items, i), Qnil))
101bb4a5
RS
1669 {
1670 submenu_stack[submenu_depth++] = save_wv;
1671 save_wv = prev_wv;
1672 prev_wv = 0;
78c8278d 1673 first_pane = 1;
101bb4a5
RS
1674 i++;
1675 }
28be1ada 1676 else if (EQ (AREF (menu_items, i), Qlambda))
101bb4a5
RS
1677 {
1678 prev_wv = save_wv;
1679 save_wv = submenu_stack[--submenu_depth];
78c8278d 1680 first_pane = 0;
101bb4a5
RS
1681 i++;
1682 }
28be1ada 1683 else if (EQ (AREF (menu_items, i), Qt)
101bb4a5
RS
1684 && submenu_depth != 0)
1685 i += MENU_ITEMS_PANE_LENGTH;
fcaa7665
RS
1686 /* Ignore a nil in the item list.
1687 It's meaningful only for dialog boxes. */
28be1ada 1688 else if (EQ (AREF (menu_items, i), Qquote))
fcaa7665 1689 i += 1;
28be1ada 1690 else if (EQ (AREF (menu_items, i), Qt))
78589e07
RS
1691 {
1692 /* Create a new pane. */
1693 Lisp_Object pane_name, prefix;
6d1f7fee 1694 const char *pane_string;
177c0ea7 1695
4c329aa8
GM
1696 pane_name = AREF (menu_items, i + MENU_ITEMS_PANE_NAME);
1697 prefix = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
177c0ea7 1698
703dc2a8 1699#ifndef HAVE_MULTILINGUAL_MENU
4c329aa8
GM
1700 if (STRINGP (pane_name) && STRING_MULTIBYTE (pane_name))
1701 {
8af9fa55 1702 pane_name = ENCODE_MENU_STRING (pane_name);
3ae565b3 1703 ASET (menu_items, i + MENU_ITEMS_PANE_NAME, pane_name);
4c329aa8 1704 }
703dc2a8 1705#endif
78589e07 1706 pane_string = (NILP (pane_name)
51b59d79 1707 ? "" : SSDATA (pane_name));
101bb4a5 1708 /* If there is just one top-level pane, put all its items directly
78589e07
RS
1709 under the top-level menu. */
1710 if (menu_items_n_panes == 1)
1711 pane_string = "";
1712
1713 /* If the pane has a meaningful name,
1714 make the pane a top-level menu item
1715 with its items as a submenu beneath it. */
78c8278d 1716 if (!keymaps && strcmp (pane_string, ""))
78589e07 1717 {
f7fab165 1718 wv = xmalloc_widget_value ();
78589e07
RS
1719 if (save_wv)
1720 save_wv->next = wv;
1721 else
1722 first_wv->contents = wv;
b00876c9 1723 wv->name = (char *) pane_string;
78589e07
RS
1724 if (keymaps && !NILP (prefix))
1725 wv->name++;
1726 wv->value = 0;
1727 wv->enabled = 1;
3427a3db 1728 wv->button_type = BUTTON_TYPE_NONE;
27ad7b52 1729 wv->help = Qnil;
78c8278d
RS
1730 save_wv = wv;
1731 prev_wv = 0;
78589e07 1732 }
78c8278d
RS
1733 else if (first_pane)
1734 {
1735 save_wv = wv;
1736 prev_wv = 0;
1737 }
1738 first_pane = 0;
78589e07
RS
1739 i += MENU_ITEMS_PANE_LENGTH;
1740 }
1741 else
1742 {
1743 /* Create a new item within current pane. */
9cd50434 1744 Lisp_Object item_name, enable, descrip, def, type, selected, help;
4c329aa8
GM
1745 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
1746 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
1747 descrip = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
1748 def = AREF (menu_items, i + MENU_ITEMS_ITEM_DEFINITION);
1749 type = AREF (menu_items, i + MENU_ITEMS_ITEM_TYPE);
1750 selected = AREF (menu_items, i + MENU_ITEMS_ITEM_SELECTED);
1751 help = AREF (menu_items, i + MENU_ITEMS_ITEM_HELP);
3427a3db 1752
703dc2a8 1753#ifndef HAVE_MULTILINGUAL_MENU
3427a3db 1754 if (STRINGP (item_name) && STRING_MULTIBYTE (item_name))
4c329aa8 1755 {
646f98ec 1756 item_name = ENCODE_MENU_STRING (item_name);
3ae565b3 1757 ASET (menu_items, i + MENU_ITEMS_ITEM_NAME, item_name);
4c329aa8 1758 }
177c0ea7 1759
3427a3db 1760 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
4c329aa8 1761 {
646f98ec 1762 descrip = ENCODE_MENU_STRING (descrip);
3ae565b3 1763 ASET (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY, descrip);
4c329aa8
GM
1764 }
1765#endif /* not HAVE_MULTILINGUAL_MENU */
177c0ea7 1766
f7fab165 1767 wv = xmalloc_widget_value ();
177c0ea7 1768 if (prev_wv)
78589e07 1769 prev_wv->next = wv;
177c0ea7 1770 else
78589e07 1771 save_wv->contents = wv;
51b59d79 1772 wv->name = SSDATA (item_name);
78589e07 1773 if (!NILP (descrip))
51b59d79 1774 wv->key = SSDATA (descrip);
78589e07 1775 wv->value = 0;
a352a815
RS
1776 /* If this item has a null value,
1777 make the call_data null so that it won't display a box
1778 when the mouse is on it. */
4939150c 1779 wv->call_data = !NILP (def) ? aref_addr (menu_items, i) : 0;
78589e07 1780 wv->enabled = !NILP (enable);
3427a3db
GM
1781
1782 if (NILP (type))
1783 wv->button_type = BUTTON_TYPE_NONE;
1784 else if (EQ (type, QCtoggle))
1785 wv->button_type = BUTTON_TYPE_TOGGLE;
1786 else if (EQ (type, QCradio))
1787 wv->button_type = BUTTON_TYPE_RADIO;
1788 else
1088b922 1789 emacs_abort ();
3427a3db
GM
1790
1791 wv->selected = !NILP (selected);
cc45fb40 1792
0b1f4572
RS
1793 if (! STRINGP (help))
1794 help = Qnil;
1795
1796 wv->help = help;
cc45fb40 1797
78589e07
RS
1798 prev_wv = wv;
1799
1800 i += MENU_ITEMS_ITEM_LENGTH;
1801 }
1802 }
1803
c98fcf4b 1804 /* Deal with the title, if it is non-nil. */
4dedbfe0
PR
1805 if (!NILP (title))
1806 {
f7fab165
RS
1807 widget_value *wv_title = xmalloc_widget_value ();
1808 widget_value *wv_sep1 = xmalloc_widget_value ();
1809 widget_value *wv_sep2 = xmalloc_widget_value ();
4dedbfe0
PR
1810
1811 wv_sep2->name = "--";
1812 wv_sep2->next = first_wv->contents;
27ad7b52 1813 wv_sep2->help = Qnil;
4dedbfe0
PR
1814
1815 wv_sep1->name = "--";
1816 wv_sep1->next = wv_sep2;
27ad7b52 1817 wv_sep1->help = Qnil;
4dedbfe0 1818
703dc2a8
KH
1819#ifndef HAVE_MULTILINGUAL_MENU
1820 if (STRING_MULTIBYTE (title))
646f98ec 1821 title = ENCODE_MENU_STRING (title);
703dc2a8 1822#endif
177c0ea7 1823
51b59d79 1824 wv_title->name = SSDATA (title);
cc45fb40 1825 wv_title->enabled = TRUE;
3427a3db 1826 wv_title->button_type = BUTTON_TYPE_NONE;
27ad7b52 1827 wv_title->help = Qnil;
a9d8395f 1828 wv_title->next = wv_sep1;
4dedbfe0
PR
1829 first_wv->contents = wv_title;
1830 }
1831
78589e07
RS
1832 /* No selection has been chosen yet. */
1833 menu_item_selection = 0;
1834
ba24cea2
YM
1835 /* Make sure to free the widget_value objects we used to specify the
1836 contents even with longjmp. */
1837 record_unwind_protect (cleanup_widget_value_tree,
1838 make_save_value (first_wv, 0));
1839
488dd4c4 1840 /* Actually create and show the menu until popped down. */
a20903d0 1841 create_and_show_popup_menu (f, first_wv, x, y, for_click, timestamp);
18686d47 1842
ba24cea2 1843 unbind_to (specpdl_count, Qnil);
18686d47 1844
78589e07
RS
1845 /* Find the selected item, and its pane, to return
1846 the proper value. */
1847 if (menu_item_selection != 0)
1848 {
c63f6952 1849 Lisp_Object prefix, entry;
78589e07 1850
6bbd7a29 1851 prefix = entry = Qnil;
78589e07
RS
1852 i = 0;
1853 while (i < menu_items_used)
1854 {
28be1ada 1855 if (EQ (AREF (menu_items, i), Qnil))
101bb4a5
RS
1856 {
1857 subprefix_stack[submenu_depth++] = prefix;
1858 prefix = entry;
1859 i++;
1860 }
28be1ada 1861 else if (EQ (AREF (menu_items, i), Qlambda))
101bb4a5
RS
1862 {
1863 prefix = subprefix_stack[--submenu_depth];
1864 i++;
1865 }
28be1ada 1866 else if (EQ (AREF (menu_items, i), Qt))
78589e07
RS
1867 {
1868 prefix
28be1ada 1869 = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
78589e07
RS
1870 i += MENU_ITEMS_PANE_LENGTH;
1871 }
d31d42cc
RS
1872 /* Ignore a nil in the item list.
1873 It's meaningful only for dialog boxes. */
28be1ada 1874 else if (EQ (AREF (menu_items, i), Qquote))
d31d42cc 1875 i += 1;
78589e07
RS
1876 else
1877 {
1878 entry
28be1ada 1879 = AREF (menu_items, i + MENU_ITEMS_ITEM_VALUE);
4939150c 1880 if (menu_item_selection == aref_addr (menu_items, i))
78589e07
RS
1881 {
1882 if (keymaps != 0)
1883 {
101bb4a5
RS
1884 int j;
1885
78589e07
RS
1886 entry = Fcons (entry, Qnil);
1887 if (!NILP (prefix))
1888 entry = Fcons (prefix, entry);
101bb4a5 1889 for (j = submenu_depth - 1; j >= 0; j--)
e48087b7 1890 if (!NILP (subprefix_stack[j]))
5964e450 1891 entry = Fcons (subprefix_stack[j], entry);
78589e07
RS
1892 }
1893 return entry;
1894 }
1895 i += MENU_ITEMS_ITEM_LENGTH;
1896 }
1897 }
1898 }
be6ed24a
RS
1899 else if (!for_click)
1900 /* Make "Cancel" equivalent to C-g. */
1901 Fsignal (Qquit, Qnil);
78589e07
RS
1902
1903 return Qnil;
18686d47 1904}
4dedbfe0 1905\f
488dd4c4
JD
1906#ifdef USE_GTK
1907static void
971de7fb 1908dialog_selection_callback (GtkWidget *widget, gpointer client_data)
488dd4c4 1909{
8ac068ac 1910 /* Treat the pointer as an integer. There's no problem
488dd4c4 1911 as long as pointers have enough bits to hold small integers. */
d01a7826 1912 if ((intptr_t) client_data != -1)
488dd4c4
JD
1913 menu_item_selection = (Lisp_Object *) client_data;
1914
1915 popup_activated_flag = 0;
1916}
1917
1918/* Pop up the dialog for frame F defined by FIRST_WV and loop until the
1919 dialog pops down.
1920 menu_item_selection will be set to the selection. */
1921static void
971de7fb 1922create_and_show_dialog (FRAME_PTR f, widget_value *first_wv)
488dd4c4
JD
1923{
1924 GtkWidget *menu;
1925
62af879c 1926 if (! FRAME_X_P (f))
1088b922 1927 emacs_abort ();
62af879c 1928
488dd4c4
JD
1929 menu = xg_create_widget ("dialog", first_wv->name, f, first_wv,
1930 G_CALLBACK (dialog_selection_callback),
1931 G_CALLBACK (popup_deactivate_callback),
1932 0);
1933
1934 if (menu)
1935 {
d311d28c 1936 ptrdiff_t specpdl_count = SPECPDL_INDEX ();
a130b901 1937 record_unwind_protect (pop_down_menu, make_save_value (menu, 0));
af89e871 1938
488dd4c4
JD
1939 /* Display the menu. */
1940 gtk_widget_show_all (menu);
1941
1942 /* Process events that apply to the menu. */
f1d1cd24 1943 popup_widget_loop (1, menu);
177c0ea7 1944
af89e871 1945 unbind_to (specpdl_count, Qnil);
488dd4c4
JD
1946 }
1947}
1948
1949#else /* not USE_GTK */
4dedbfe0 1950static void
ebd15611 1951dialog_selection_callback (Widget widget, LWLIB_ID id, XtPointer client_data)
4dedbfe0 1952{
4475bec4 1953 /* Treat the pointer as an integer. There's no problem
01d5e892 1954 as long as pointers have enough bits to hold small integers. */
4475bec4 1955 if ((intptr_t) client_data != -1)
4dedbfe0 1956 menu_item_selection = (Lisp_Object *) client_data;
488dd4c4 1957
4d7e6e51 1958 block_input ();
4dedbfe0 1959 lw_destroy_all_widgets (id);
4d7e6e51 1960 unblock_input ();
9572375b 1961 popup_activated_flag = 0;
4dedbfe0 1962}
18686d47 1963
488dd4c4 1964
488dd4c4
JD
1965/* Pop up the dialog for frame F defined by FIRST_WV and loop until the
1966 dialog pops down.
1967 menu_item_selection will be set to the selection. */
1968static void
ebd15611 1969create_and_show_dialog (FRAME_PTR f, widget_value *first_wv)
488dd4c4
JD
1970{
1971 LWLIB_ID dialog_id;
1972
62af879c 1973 if (!FRAME_X_P (f))
1088b922 1974 emacs_abort ();
62af879c 1975
488dd4c4 1976 dialog_id = widget_id_tick++;
52214050 1977#ifdef USE_LUCID
1ecb2d3f
JD
1978 apply_systemfont_to_dialog (f->output_data.x->widget);
1979#endif
488dd4c4
JD
1980 lw_create_widget (first_wv->name, "dialog", dialog_id, first_wv,
1981 f->output_data.x->widget, 1, 0,
1982 dialog_selection_callback, 0, 0);
1983 lw_modify_all_widgets (dialog_id, first_wv->contents, True);
488dd4c4
JD
1984 /* Display the dialog box. */
1985 lw_pop_up_all_widgets (dialog_id);
1986 popup_activated_flag = 1;
98a20c65 1987 x_activate_timeout_atimer ();
488dd4c4
JD
1988
1989 /* Process events that apply to the dialog box.
1990 Also handle timers. */
1991 {
d311d28c 1992 ptrdiff_t count = SPECPDL_INDEX ();
488dd4c4 1993 int fact = 4 * sizeof (LWLIB_ID);
177c0ea7 1994
488dd4c4 1995 /* xdialog_show_unwind is responsible for popping the dialog box down. */
af89e871 1996 record_unwind_protect (pop_down_menu,
488dd4c4
JD
1997 Fcons (make_number (dialog_id >> (fact)),
1998 make_number (dialog_id & ~(-1 << (fact)))));
1999
df470e3b 2000 popup_get_selection ((XEvent *) 0, FRAME_X_DISPLAY_INFO (f),
95bdef2e 2001 dialog_id, 1);
488dd4c4
JD
2002
2003 unbind_to (count, Qnil);
2004 }
2005}
2006
2007#endif /* not USE_GTK */
2008
42ca4633 2009static const char * button_names [] = {
165e1749
FP
2010 "button1", "button2", "button3", "button4", "button5",
2011 "button6", "button7", "button8", "button9", "button10" };
2012
2013static Lisp_Object
42ca4633
J
2014xdialog_show (FRAME_PTR f,
2015 int keymaps,
2016 Lisp_Object title,
2017 Lisp_Object header,
2018 const char **error_name)
165e1749
FP
2019{
2020 int i, nb_buttons=0;
80670155 2021 char dialog_name[6];
165e1749 2022
faa935b6 2023 widget_value *wv, *first_wv = 0, *prev_wv = 0;
165e1749 2024
fcaa7665
RS
2025 /* Number of elements seen so far, before boundary. */
2026 int left_count = 0;
2027 /* 1 means we've seen the boundary between left-hand elts and right-hand. */
2028 int boundary_seen = 0;
2029
9898bd0e 2030 ptrdiff_t specpdl_count = SPECPDL_INDEX ();
ba24cea2 2031
62af879c 2032 if (! FRAME_X_P (f))
1088b922 2033 emacs_abort ();
62af879c 2034
6a040d6a 2035 *error_name = NULL;
165e1749 2036
80670155
RS
2037 if (menu_items_n_panes > 1)
2038 {
6a040d6a 2039 *error_name = "Multiple panes in dialog box";
80670155
RS
2040 return Qnil;
2041 }
2042
165e1749
FP
2043 /* Create a tree of widget_value objects
2044 representing the text label and buttons. */
2045 {
2046 Lisp_Object pane_name, prefix;
6d1f7fee 2047 const char *pane_string;
28be1ada
DA
2048 pane_name = AREF (menu_items, MENU_ITEMS_PANE_NAME);
2049 prefix = AREF (menu_items, MENU_ITEMS_PANE_PREFIX);
165e1749 2050 pane_string = (NILP (pane_name)
51b59d79 2051 ? "" : SSDATA (pane_name));
f7fab165 2052 prev_wv = xmalloc_widget_value ();
b00876c9 2053 prev_wv->value = (char *) pane_string;
165e1749
FP
2054 if (keymaps && !NILP (prefix))
2055 prev_wv->name++;
2056 prev_wv->enabled = 1;
2057 prev_wv->name = "message";
27ad7b52 2058 prev_wv->help = Qnil;
165e1749 2059 first_wv = prev_wv;
177c0ea7 2060
165e1749
FP
2061 /* Loop over all panes and items, filling in the tree. */
2062 i = MENU_ITEMS_PANE_LENGTH;
2063 while (i < menu_items_used)
2064 {
177c0ea7 2065
165e1749
FP
2066 /* Create a new item within current pane. */
2067 Lisp_Object item_name, enable, descrip;
28be1ada
DA
2068 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
2069 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
165e1749 2070 descrip
28be1ada 2071 = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
177c0ea7 2072
80670155
RS
2073 if (NILP (item_name))
2074 {
2075 free_menubar_widget_value_tree (first_wv);
6a040d6a 2076 *error_name = "Submenu in dialog items";
80670155
RS
2077 return Qnil;
2078 }
fcaa7665
RS
2079 if (EQ (item_name, Qquote))
2080 {
2081 /* This is the boundary between left-side elts
2082 and right-side elts. Stop incrementing right_count. */
2083 boundary_seen = 1;
2084 i++;
2085 continue;
2086 }
86e71abf 2087 if (nb_buttons >= 9)
80670155
RS
2088 {
2089 free_menubar_widget_value_tree (first_wv);
6a040d6a 2090 *error_name = "Too many dialog items";
80670155
RS
2091 return Qnil;
2092 }
2093
f7fab165 2094 wv = xmalloc_widget_value ();
165e1749 2095 prev_wv->next = wv;
80670155 2096 wv->name = (char *) button_names[nb_buttons];
165e1749 2097 if (!NILP (descrip))
51b59d79
PE
2098 wv->key = SSDATA (descrip);
2099 wv->value = SSDATA (item_name);
4939150c 2100 wv->call_data = aref_addr (menu_items, i);
165e1749 2101 wv->enabled = !NILP (enable);
27ad7b52 2102 wv->help = Qnil;
165e1749
FP
2103 prev_wv = wv;
2104
fcaa7665
RS
2105 if (! boundary_seen)
2106 left_count++;
2107
165e1749
FP
2108 nb_buttons++;
2109 i += MENU_ITEMS_ITEM_LENGTH;
2110 }
2111
fcaa7665
RS
2112 /* If the boundary was not specified,
2113 by default put half on the left and half on the right. */
2114 if (! boundary_seen)
2115 left_count = nb_buttons - nb_buttons / 2;
2116
f7fab165 2117 wv = xmalloc_widget_value ();
80670155 2118 wv->name = dialog_name;
27ad7b52 2119 wv->help = Qnil;
6a040d6a
NR
2120
2121 /* Frame title: 'Q' = Question, 'I' = Information.
2122 Can also have 'E' = Error if, one day, we want
2123 a popup for errors. */
5e617bc2 2124 if (NILP (header))
6a040d6a
NR
2125 dialog_name[0] = 'Q';
2126 else
2127 dialog_name[0] = 'I';
2128
80670155
RS
2129 /* Dialog boxes use a really stupid name encoding
2130 which specifies how many buttons to use
6a040d6a 2131 and how many buttons are on the right. */
80670155
RS
2132 dialog_name[1] = '0' + nb_buttons;
2133 dialog_name[2] = 'B';
2134 dialog_name[3] = 'R';
fcaa7665
RS
2135 /* Number of buttons to put on the right. */
2136 dialog_name[4] = '0' + nb_buttons - left_count;
80670155 2137 dialog_name[5] = 0;
165e1749
FP
2138 wv->contents = first_wv;
2139 first_wv = wv;
165e1749
FP
2140 }
2141
165e1749
FP
2142 /* No selection has been chosen yet. */
2143 menu_item_selection = 0;
2144
ba24cea2
YM
2145 /* Make sure to free the widget_value objects we used to specify the
2146 contents even with longjmp. */
2147 record_unwind_protect (cleanup_widget_value_tree,
2148 make_save_value (first_wv, 0));
2149
488dd4c4
JD
2150 /* Actually create and show the dialog. */
2151 create_and_show_dialog (f, first_wv);
f02cac82 2152
ba24cea2 2153 unbind_to (specpdl_count, Qnil);
177c0ea7 2154
488dd4c4
JD
2155 /* Find the selected item, and its pane, to return
2156 the proper value. */
165e1749
FP
2157 if (menu_item_selection != 0)
2158 {
2159 Lisp_Object prefix;
2160
2161 prefix = Qnil;
2162 i = 0;
2163 while (i < menu_items_used)
2164 {
2165 Lisp_Object entry;
2166
28be1ada 2167 if (EQ (AREF (menu_items, i), Qt))
165e1749
FP
2168 {
2169 prefix
28be1ada 2170 = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
165e1749
FP
2171 i += MENU_ITEMS_PANE_LENGTH;
2172 }
28be1ada 2173 else if (EQ (AREF (menu_items, i), Qquote))
85996cfb
GM
2174 {
2175 /* This is the boundary between left-side elts and
2176 right-side elts. */
2177 ++i;
2178 }
165e1749
FP
2179 else
2180 {
2181 entry
28be1ada 2182 = AREF (menu_items, i + MENU_ITEMS_ITEM_VALUE);
4939150c 2183 if (menu_item_selection == aref_addr (menu_items, i))
165e1749
FP
2184 {
2185 if (keymaps != 0)
2186 {
2187 entry = Fcons (entry, Qnil);
2188 if (!NILP (prefix))
2189 entry = Fcons (prefix, entry);
2190 }
2191 return entry;
2192 }
2193 i += MENU_ITEMS_ITEM_LENGTH;
2194 }
2195 }
2196 }
9f6fcdc5
JD
2197 else
2198 /* Make "Cancel" equivalent to C-g. */
2199 Fsignal (Qquit, Qnil);
165e1749
FP
2200
2201 return Qnil;
2202}
ba461919 2203
488dd4c4 2204#else /* not USE_X_TOOLKIT && not USE_GTK */
78589e07 2205
3e703b25
GM
2206/* The frame of the last activated non-toolkit menu bar.
2207 Used to generate menu help events. */
2208
2209static struct frame *menu_help_frame;
2210
2211
62145073
GM
2212/* Show help HELP_STRING, or clear help if HELP_STRING is null.
2213
2214 PANE is the pane number, and ITEM is the menu item number in
2215 the menu (currently not used).
177c0ea7 2216
62145073
GM
2217 This cannot be done with generating a HELP_EVENT because
2218 XMenuActivate contains a loop that doesn't let Emacs process
2219 keyboard events. */
3e703b25
GM
2220
2221static void
eb18f6cc 2222menu_help_callback (char const *help_string, int pane, int item)
3e703b25 2223{
62145073
GM
2224 Lisp_Object *first_item;
2225 Lisp_Object pane_name;
2226 Lisp_Object menu_object;
177c0ea7 2227
62145073
GM
2228 first_item = XVECTOR (menu_items)->contents;
2229 if (EQ (first_item[0], Qt))
2230 pane_name = first_item[MENU_ITEMS_PANE_NAME];
2231 else if (EQ (first_item[0], Qquote))
2232 /* This shouldn't happen, see xmenu_show. */
ce33e8eb 2233 pane_name = empty_unibyte_string;
62145073
GM
2234 else
2235 pane_name = first_item[MENU_ITEMS_ITEM_NAME];
177c0ea7 2236
62145073
GM
2237 /* (menu-item MENU-NAME PANE-NUMBER) */
2238 menu_object = Fcons (Qmenu_item,
2239 Fcons (pane_name,
2240 Fcons (make_number (pane), Qnil)));
ba461919 2241 show_help_echo (help_string ? build_string (help_string) : Qnil,
f868cd8a 2242 Qnil, menu_object, make_number (item));
3e703b25 2243}
177c0ea7 2244
af89e871 2245static Lisp_Object
0521f580 2246pop_down_menu (Lisp_Object arg)
af89e871 2247{
a130b901
JD
2248 struct Lisp_Save_Value *p1 = XSAVE_VALUE (Fcar (arg));
2249 struct Lisp_Save_Value *p2 = XSAVE_VALUE (Fcdr (arg));
59cfb104 2250
a130b901
JD
2251 FRAME_PTR f = p1->pointer;
2252 XMenu *menu = p2->pointer;
af89e871 2253
4d7e6e51 2254 block_input ();
af89e871 2255#ifndef MSDOS
a130b901
JD
2256 XUngrabPointer (FRAME_X_DISPLAY (f), CurrentTime);
2257 XUngrabKeyboard (FRAME_X_DISPLAY (f), CurrentTime);
af89e871 2258#endif
a130b901 2259 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
af89e871
JD
2260
2261#ifdef HAVE_X_WINDOWS
2262 /* Assume the mouse has moved out of the X window.
2263 If it has actually moved in, we will get an EnterNotify. */
2264 x_mouse_leave (FRAME_X_DISPLAY_INFO (f));
2265
2266 /* State that no mouse buttons are now held.
2267 (The oldXMenu code doesn't track this info for us.)
2268 That is not necessarily true, but the fiction leads to reasonable
2269 results, and it is a pain to ask which are actually held now. */
2270 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
2271
2272#endif /* HAVE_X_WINDOWS */
2273
4d7e6e51 2274 unblock_input ();
af89e871
JD
2275
2276 return Qnil;
2277}
2278
3e703b25 2279
1fb99a3a 2280Lisp_Object
2b23d2a6 2281xmenu_show (FRAME_PTR f, int x, int y, int for_click, int keymaps,
08dc5ae6 2282 Lisp_Object title, const char **error_name, Time timestamp)
dcfdbac7 2283{
177c0ea7 2284 Window root;
78589e07
RS
2285 XMenu *menu;
2286 int pane, selidx, lpane, status;
2287 Lisp_Object entry, pane_prefix;
dcfdbac7
JB
2288 char *datap;
2289 int ulx, uly, width, height;
2290 int dispwidth, dispheight;
453a4f1b 2291 int i, j, lines, maxlines;
4e8d3549 2292 int maxwidth;
78589e07
RS
2293 int dummy_int;
2294 unsigned int dummy_uint;
d311d28c 2295 ptrdiff_t specpdl_count = SPECPDL_INDEX ();
088831f6 2296
a9e1244d 2297 if (! FRAME_X_P (f) && ! FRAME_MSDOS_P (f))
1088b922 2298 emacs_abort ();
62af879c 2299
bf501fb9 2300 *error_name = 0;
78589e07
RS
2301 if (menu_items_n_panes == 0)
2302 return Qnil;
088831f6 2303
742f715d
KH
2304 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
2305 {
bf501fb9 2306 *error_name = "Empty menu";
742f715d
KH
2307 return Qnil;
2308 }
2309
78589e07 2310 /* Figure out which root window F is on. */
92280f67 2311 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &root,
78589e07
RS
2312 &dummy_int, &dummy_int, &dummy_uint, &dummy_uint,
2313 &dummy_uint, &dummy_uint);
18686d47 2314
78589e07 2315 /* Make the menu on that window. */
92280f67 2316 menu = XMenuCreate (FRAME_X_DISPLAY (f), root, "emacs");
78589e07 2317 if (menu == NULL)
dcfdbac7 2318 {
bf501fb9 2319 *error_name = "Can't create menu";
78589e07 2320 return Qnil;
dcfdbac7 2321 }
78589e07 2322
d130d129
RS
2323 /* Don't GC while we prepare and show the menu,
2324 because we give the oldxmenu library pointers to the
2325 contents of strings. */
2326 inhibit_garbage_collection ();
2327
87485d6f 2328#ifdef HAVE_X_WINDOWS
78589e07 2329 /* Adjust coordinates to relative to the outer (window manager) window. */
453a4f1b
JD
2330 x += FRAME_OUTER_TO_INNER_DIFF_X (f);
2331 y += FRAME_OUTER_TO_INNER_DIFF_Y (f);
87485d6f 2332#endif /* HAVE_X_WINDOWS */
78589e07
RS
2333
2334 /* Adjust coordinates to be root-window-relative. */
9882535b
KS
2335 x += f->left_pos;
2336 y += f->top_pos;
177c0ea7 2337
78589e07 2338 /* Create all the necessary panes and their items. */
eef9bc79
PE
2339 maxwidth = maxlines = lines = i = 0;
2340 lpane = XM_FAILURE;
78589e07 2341 while (i < menu_items_used)
dcfdbac7 2342 {
28be1ada 2343 if (EQ (AREF (menu_items, i), Qt))
dcfdbac7 2344 {
78589e07
RS
2345 /* Create a new pane. */
2346 Lisp_Object pane_name, prefix;
6d1f7fee 2347 const char *pane_string;
78589e07 2348
453a4f1b
JD
2349 maxlines = max (maxlines, lines);
2350 lines = 0;
28be1ada
DA
2351 pane_name = AREF (menu_items, i + MENU_ITEMS_PANE_NAME);
2352 prefix = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
78589e07 2353 pane_string = (NILP (pane_name)
51b59d79 2354 ? "" : SSDATA (pane_name));
78589e07
RS
2355 if (keymaps && !NILP (prefix))
2356 pane_string++;
2357
92280f67 2358 lpane = XMenuAddPane (FRAME_X_DISPLAY (f), menu, pane_string, TRUE);
78589e07
RS
2359 if (lpane == XM_FAILURE)
2360 {
92280f67 2361 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
bf501fb9 2362 *error_name = "Can't create pane";
78589e07
RS
2363 return Qnil;
2364 }
2365 i += MENU_ITEMS_PANE_LENGTH;
4e8d3549
RS
2366
2367 /* Find the width of the widest item in this pane. */
4e8d3549
RS
2368 j = i;
2369 while (j < menu_items_used)
2370 {
2371 Lisp_Object item;
28be1ada 2372 item = AREF (menu_items, j);
4e8d3549
RS
2373 if (EQ (item, Qt))
2374 break;
2375 if (NILP (item))
2376 {
2377 j++;
2378 continue;
2379 }
d5db4077 2380 width = SBYTES (item);
4e8d3549
RS
2381 if (width > maxwidth)
2382 maxwidth = width;
2383
2384 j += MENU_ITEMS_ITEM_LENGTH;
2385 }
dcfdbac7 2386 }
fcaa7665
RS
2387 /* Ignore a nil in the item list.
2388 It's meaningful only for dialog boxes. */
28be1ada 2389 else if (EQ (AREF (menu_items, i), Qquote))
fcaa7665 2390 i += 1;
78589e07 2391 else
dcfdbac7 2392 {
78589e07 2393 /* Create a new item within current pane. */
3e703b25 2394 Lisp_Object item_name, enable, descrip, help;
eb18f6cc
PE
2395 char *item_data;
2396 char const *help_string;
78589e07 2397
28be1ada
DA
2398 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
2399 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
78589e07 2400 descrip
28be1ada
DA
2401 = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
2402 help = AREF (menu_items, i + MENU_ITEMS_ITEM_HELP);
eb18f6cc 2403 help_string = STRINGP (help) ? SSDATA (help) : NULL;
177c0ea7 2404
78589e07 2405 if (!NILP (descrip))
4e8d3549 2406 {
4e8d3549
RS
2407 /* if alloca is fast, use that to make the space,
2408 to reduce gc needs. */
38182d90 2409 item_data = alloca (maxwidth + SBYTES (descrip) + 1);
eb18f6cc 2410 memcpy (item_data, SSDATA (item_name), SBYTES (item_name));
d5db4077 2411 for (j = SCHARS (item_name); j < maxwidth; j++)
4e8d3549 2412 item_data[j] = ' ';
eb18f6cc 2413 memcpy (item_data + j, SSDATA (descrip), SBYTES (descrip));
d5db4077 2414 item_data[j + SBYTES (descrip)] = 0;
4e8d3549
RS
2415 }
2416 else
eb18f6cc 2417 item_data = SSDATA (item_name);
78589e07 2418
eef9bc79
PE
2419 if (lpane == XM_FAILURE
2420 || (XMenuAddSelection (FRAME_X_DISPLAY (f),
2421 menu, lpane, 0, item_data,
2422 !NILP (enable), help_string)
2423 == XM_FAILURE))
dcfdbac7 2424 {
92280f67 2425 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
bf501fb9 2426 *error_name = "Can't add selection to menu";
78589e07 2427 return Qnil;
dcfdbac7 2428 }
78589e07 2429 i += MENU_ITEMS_ITEM_LENGTH;
453a4f1b 2430 lines++;
dcfdbac7
JB
2431 }
2432 }
4e8d3549 2433
453a4f1b
JD
2434 maxlines = max (maxlines, lines);
2435
78589e07 2436 /* All set and ready to fly. */
92280f67 2437 XMenuRecompute (FRAME_X_DISPLAY (f), menu);
63685b9d
GM
2438 dispwidth = DisplayWidth (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f));
2439 dispheight = DisplayHeight (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f));
78589e07
RS
2440 x = min (x, dispwidth);
2441 y = min (y, dispheight);
2442 x = max (x, 1);
2443 y = max (y, 1);
92280f67 2444 XMenuLocate (FRAME_X_DISPLAY (f), menu, 0, 0, x, y,
dcfdbac7
JB
2445 &ulx, &uly, &width, &height);
2446 if (ulx+width > dispwidth)
2447 {
78589e07 2448 x -= (ulx + width) - dispwidth;
dcfdbac7
JB
2449 ulx = dispwidth - width;
2450 }
2451 if (uly+height > dispheight)
2452 {
78589e07 2453 y -= (uly + height) - dispheight;
dcfdbac7
JB
2454 uly = dispheight - height;
2455 }
2de7397f
EZ
2456#ifndef HAVE_X_WINDOWS
2457 if (FRAME_HAS_MINIBUF_P (f) && uly+height > dispheight - 1)
2458 {
2459 /* Move the menu away of the echo area, to avoid overwriting the
2460 menu with help echo messages or vice versa. */
2461 if (BUFFERP (echo_area_buffer[0]) && WINDOWP (echo_area_window))
2462 {
2463 y -= WINDOW_TOTAL_LINES (XWINDOW (echo_area_window));
2464 uly -= WINDOW_TOTAL_LINES (XWINDOW (echo_area_window));
2465 }
2466 else
2467 {
2468 y--;
2469 uly--;
2470 }
2471 }
2472#endif
78589e07
RS
2473 if (ulx < 0) x -= ulx;
2474 if (uly < 0) y -= uly;
121e4555 2475
453a4f1b
JD
2476 if (! for_click)
2477 {
2478 /* If position was not given by a mouse click, adjust so upper left
2479 corner of the menu as a whole ends up at given coordinates. This
2480 is what x-popup-menu says in its documentation. */
2481 x += width/2;
2482 y += 1.5*height/(maxlines+2);
2483 }
2484
121e4555 2485 XMenuSetAEQ (menu, TRUE);
78589e07
RS
2486 XMenuSetFreeze (menu, TRUE);
2487 pane = selidx = 0;
3e703b25 2488
c3438661
JD
2489#ifndef MSDOS
2490 XMenuActivateSetWaitFunction (x_menu_wait_for_event, FRAME_X_DISPLAY (f));
2491#endif
59cfb104 2492
a130b901
JD
2493 record_unwind_protect (pop_down_menu,
2494 Fcons (make_save_value (f, 0),
2495 make_save_value (menu, 0)));
c3438661 2496
3e703b25
GM
2497 /* Help display under X won't work because XMenuActivate contains
2498 a loop that doesn't give Emacs a chance to process it. */
2499 menu_help_frame = f;
92280f67 2500 status = XMenuActivate (FRAME_X_DISPLAY (f), menu, &pane, &selidx,
af89e871
JD
2501 x, y, ButtonReleaseMask, &datap,
2502 menu_help_callback);
eef9bc79 2503 entry = pane_prefix = Qnil;
a352a815 2504
dcfdbac7
JB
2505 switch (status)
2506 {
2507 case XM_SUCCESS:
2508#ifdef XDEBUG
2509 fprintf (stderr, "pane= %d line = %d\n", panes, selidx);
2510#endif
fa6d54d9 2511
78589e07
RS
2512 /* Find the item number SELIDX in pane number PANE. */
2513 i = 0;
2514 while (i < menu_items_used)
fa6d54d9 2515 {
28be1ada 2516 if (EQ (AREF (menu_items, i), Qt))
088831f6 2517 {
78589e07
RS
2518 if (pane == 0)
2519 pane_prefix
28be1ada 2520 = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
78589e07
RS
2521 pane--;
2522 i += MENU_ITEMS_PANE_LENGTH;
088831f6 2523 }
78589e07 2524 else
ab6ee1a0 2525 {
78589e07 2526 if (pane == -1)
ab6ee1a0 2527 {
78589e07 2528 if (selidx == 0)
ab6ee1a0 2529 {
78589e07 2530 entry
28be1ada 2531 = AREF (menu_items, i + MENU_ITEMS_ITEM_VALUE);
78589e07 2532 if (keymaps != 0)
ab6ee1a0 2533 {
78589e07
RS
2534 entry = Fcons (entry, Qnil);
2535 if (!NILP (pane_prefix))
2536 entry = Fcons (pane_prefix, entry);
ab6ee1a0 2537 }
78589e07 2538 break;
ab6ee1a0 2539 }
78589e07 2540 selidx--;
ab6ee1a0 2541 }
78589e07 2542 i += MENU_ITEMS_ITEM_LENGTH;
ab6ee1a0
RS
2543 }
2544 }
78589e07 2545 break;
dcfdbac7 2546
78589e07 2547 case XM_FAILURE:
bf501fb9 2548 *error_name = "Can't activate menu";
78589e07 2549 case XM_IA_SELECT:
9f6fcdc5 2550 break;
78589e07 2551 case XM_NO_SELECT:
be6ed24a
RS
2552 /* Make "Cancel" equivalent to C-g unless FOR_CLICK (which means
2553 the menu was invoked with a mouse event as POSITION). */
9f6fcdc5
JD
2554 if (! for_click)
2555 Fsignal (Qquit, Qnil);
78589e07 2556 break;
dcfdbac7 2557 }
a5285df3 2558
af89e871 2559 unbind_to (specpdl_count, Qnil);
a5285df3 2560
78589e07 2561 return entry;
dcfdbac7 2562}
4dedbfe0 2563
78589e07 2564#endif /* not USE_X_TOOLKIT */
1e659e4c
RS
2565
2566#endif /* HAVE_MENUS */
e3135734 2567
d009ae66
EZ
2568#ifndef MSDOS
2569/* Detect if a dialog or menu has been posted. MSDOS has its own
2570 implementation on msdos.c. */
b79b8a1c 2571
077288cf 2572int ATTRIBUTE_CONST
971de7fb 2573popup_activated (void)
b79b8a1c
CY
2574{
2575 return popup_activated_flag;
2576}
d009ae66 2577#endif /* not MSDOS */
e3135734
CY
2578
2579/* The following is used by delayed window autoselection. */
2580
2581DEFUN ("menu-or-popup-active-p", Fmenu_or_popup_active_p, Smenu_or_popup_active_p, 0, 0, 0,
2582 doc: /* Return t if a menu or popup dialog is active. */)
5842a27b 2583 (void)
e3135734
CY
2584{
2585#ifdef HAVE_MENUS
2586 return (popup_activated ()) ? Qt : Qnil;
2587#else
2588 return Qnil;
2589#endif /* HAVE_MENUS */
2590}
088831f6 2591\f
dfcf069d 2592void
971de7fb 2593syms_of_xmenu (void)
dcfdbac7 2594{
cd3520a4 2595 DEFSYM (Qdebug_on_next_call, "debug-on-next-call");
0314aacb 2596
8ed87156 2597#ifdef USE_X_TOOLKIT
177c0ea7 2598 widget_id_tick = (1<<16);
88766961 2599 next_menubar_widget_id = 1;
8ed87156
RS
2600#endif
2601
508fb067 2602 defsubr (&Smenu_or_popup_active_p);
22badffe
JD
2603
2604#if defined (USE_GTK) || defined (USE_X_TOOLKIT)
12b6af5c 2605 defsubr (&Sx_menu_bar_open_internal);
d67b4f80
DN
2606 Ffset (intern_c_string ("accelerate-menu"),
2607 intern_c_string (Sx_menu_bar_open_internal.symbol_name));
22badffe
JD
2608#endif
2609
1e659e4c 2610#ifdef HAVE_MENUS
165e1749 2611 defsubr (&Sx_popup_dialog);
1e659e4c 2612#endif
dcfdbac7 2613}