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