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