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