Added Kevin Ryde <user42@zip.com.au>'s corrections to cross references
[bpt/emacs.git] / src / xmenu.c
CommitLineData
dcfdbac7 1/* X Communication module for terminals which understand the X protocol.
aea448d2 2 Copyright (C) 1986, 88, 93, 94, 96, 99, 2000, 2001, 2003
950eaee7 3 Free Software Foundation, Inc.
dcfdbac7
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
774910eb 9the Free Software Foundation; either version 2, or (at your option)
dcfdbac7
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
dcfdbac7 21
c9e60620 22/* X pop-up deck-of-cards menu facility for GNU Emacs.
dcfdbac7
JB
23 *
24 * Written by Jon Arnold and Roman Budzianowski
25 * Mods and rewrite by Robert Krawitz
26 *
27 */
28
18686d47
RS
29/* Modified by Fred Pierresteguy on December 93
30 to make the popup menus and menubar use the Xt. */
31
78589e07
RS
32/* Rewritten for clarity and GC protection by rms in Feb 94. */
33
68c45bf0
PE
34#include <config.h>
35
dcfdbac7
JB
36/* On 4.3 this loses if it comes after xterm.h. */
37#include <signal.h>
565620a5
RS
38
39#include <stdio.h>
7ee72033 40
dcfdbac7 41#include "lisp.h"
18686d47 42#include "termhooks.h"
02067692 43#include "keyboard.h"
5ee707b8 44#include "keymap.h"
7708e9bd 45#include "frame.h"
dcfdbac7 46#include "window.h"
9ac0d9e0 47#include "blockinput.h"
88766961 48#include "buffer.h"
cc45fb40
SM
49#include "charset.h"
50#include "coding.h"
dcfdbac7 51
eeee3112
RS
52#ifdef MSDOS
53#include "msdos.h"
54#endif
55
87485d6f 56#ifdef HAVE_X_WINDOWS
dcfdbac7
JB
57/* This may include sys/types.h, and that somehow loses
58 if this is not done before the other system files. */
59#include "xterm.h"
87485d6f 60#endif
dcfdbac7
JB
61
62/* Load sys/types.h if not already loaded.
63 In some systems loading it twice is suicidal. */
64#ifndef makedev
65#include <sys/types.h>
66#endif
67
68#include "dispextern.h"
69
87485d6f 70#ifdef HAVE_X_WINDOWS
646f98ec
DL
71/* Defining HAVE_MULTILINGUAL_MENU would mean that the toolkit menu
72 code accepts the Emacs internal encoding. */
703dc2a8 73#undef HAVE_MULTILINGUAL_MENU
18686d47 74#ifdef USE_X_TOOLKIT
991786dd 75#include "widget.h"
18686d47
RS
76#include <X11/Xlib.h>
77#include <X11/IntrinsicP.h>
78#include <X11/CoreP.h>
79#include <X11/StringDefs.h>
60f312e2 80#include <X11/Shell.h>
5ee80bd3 81#ifdef USE_LUCID
1d1c1567 82#include <X11/Xaw/Paned.h>
5ee80bd3 83#endif /* USE_LUCID */
18686d47 84#include "../lwlib/lwlib.h"
a352a815 85#else /* not USE_X_TOOLKIT */
488dd4c4 86#ifndef USE_GTK
a352a815 87#include "../oldXMenu/XMenu.h"
488dd4c4 88#endif
a352a815
RS
89#endif /* not USE_X_TOOLKIT */
90#endif /* HAVE_X_WINDOWS */
18686d47 91
dcfdbac7
JB
92#ifndef TRUE
93#define TRUE 1
94#define FALSE 0
78589e07 95#endif /* no TRUE */
dcfdbac7 96
bfc524bc
RS
97Lisp_Object Vmenu_updating_frame;
98
0314aacb
RS
99Lisp_Object Qdebug_on_next_call;
100
18686d47 101extern Lisp_Object Qmenu_bar;
92280f67 102extern Lisp_Object Qmouse_click, Qevent_kind;
78589e07 103
de57a39c 104extern Lisp_Object QCtoggle, QCradio;
8fbc986d 105
88766961
RS
106extern Lisp_Object Voverriding_local_map;
107extern Lisp_Object Voverriding_local_map_menu_flag;
108
109extern Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
110
111extern Lisp_Object Qmenu_bar_update_hook;
112
18686d47 113#ifdef USE_X_TOOLKIT
88766961 114extern void set_frame_menubar ();
78589e07
RS
115extern XtAppContext Xt_app_con;
116
165e1749 117static Lisp_Object xdialog_show ();
f02cac82 118static void popup_get_selection ();
3427a3db 119
c9e60620 120/* Define HAVE_BOXES if menus can handle radio and toggle buttons. */
3427a3db
GM
121
122#define HAVE_BOXES 1
488dd4c4
JD
123#endif /* USE_X_TOOLKIT */
124
125#ifdef USE_GTK
126#include "gtkutil.h"
127#define HAVE_BOXES 1
128extern void set_frame_menubar ();
129static Lisp_Object xdialog_show ();
3427a3db
GM
130#endif
131
646f98ec
DL
132/* This is how to deal with multibyte text if HAVE_MULTILINGUAL_MENU
133 isn't defined. The use of HAVE_MULTILINGUAL_MENU could probably be
134 confined to an extended version of this with sections of code below
135 using it unconditionally. */
136#ifdef USE_GTK
137/* gtk just uses utf-8. */
138# define ENCODE_MENU_STRING(str) ENCODE_UTF_8 (str)
139#else
140/* I'm not convinced ENCODE_SYSTEM is defined correctly, or maybe
141 something else should be used here. Except under MS-Windows it
142 just converts to unibyte, but encoding with `locale-coding-system'
143 seems better -- X may actually display the result correctly, and
144 it's not necessarily equivalent to the unibyte text. -- fx */
145# define ENCODE_MENU_STRING(str) ENCODE_SYSTEM (str)
146#endif
147
3427a3db
GM
148static void push_menu_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
149 Lisp_Object, Lisp_Object, Lisp_Object,
850df50b 150 Lisp_Object, Lisp_Object));
f61a541b
GM
151static int update_frame_menubar P_ ((struct frame *));
152static Lisp_Object xmenu_show P_ ((struct frame *, int, int, int, int,
153 Lisp_Object, char **));
154static void keymap_panes P_ ((Lisp_Object *, int, int));
155static void single_keymap_panes P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
156 int, int));
f61a541b
GM
157static void list_of_panes P_ ((Lisp_Object));
158static void list_of_items P_ ((Lisp_Object));
f02cac82
RS
159
160extern EMACS_TIME timer_check P_ ((int));
78589e07
RS
161\f
162/* This holds a Lisp vector that holds the results of decoding
163 the keymaps or alist-of-alists that specify a menu.
dcfdbac7 164
78589e07 165 It describes the panes and items within the panes.
dcfdbac7 166
78589e07
RS
167 Each pane is described by 3 elements in the vector:
168 t, the pane name, the pane's prefix key.
a352a815 169 Then follow the pane's items, with 5 elements per item:
78589e07 170 the item string, the enable flag, the item's value,
a352a815 171 the definition, and the equivalent keyboard key's description string.
dcfdbac7 172
101bb4a5
RS
173 In some cases, multiple levels of menus may be described.
174 A single vector slot containing nil indicates the start of a submenu.
175 A single vector slot containing lambda indicates the end of a submenu.
176 The submenu follows a menu item which is the way to reach the submenu.
177
fcaa7665
RS
178 A single vector slot containing quote indicates that the
179 following items should appear on the right of a dialog box.
180
78589e07
RS
181 Using a Lisp vector to hold this information while we decode it
182 takes care of protecting all the data from GC. */
dcfdbac7 183
78589e07
RS
184#define MENU_ITEMS_PANE_NAME 1
185#define MENU_ITEMS_PANE_PREFIX 2
186#define MENU_ITEMS_PANE_LENGTH 3
088831f6 187
850df50b
GM
188enum menu_item_idx
189{
190 MENU_ITEMS_ITEM_NAME = 0,
191 MENU_ITEMS_ITEM_ENABLE,
192 MENU_ITEMS_ITEM_VALUE,
193 MENU_ITEMS_ITEM_EQUIV_KEY,
194 MENU_ITEMS_ITEM_DEFINITION,
195 MENU_ITEMS_ITEM_TYPE,
196 MENU_ITEMS_ITEM_SELECTED,
197 MENU_ITEMS_ITEM_HELP,
198 MENU_ITEMS_ITEM_LENGTH
199};
7da99777 200
78589e07 201static Lisp_Object menu_items;
18686d47 202
86fad4ec
SM
203/* If non-nil, means that the global vars defined here are already in use.
204 Used to detect cases where we try to re-enter this non-reentrant code. */
205static Lisp_Object menu_items_inuse;
206
78589e07
RS
207/* Number of slots currently allocated in menu_items. */
208static int menu_items_allocated;
18686d47 209
78589e07
RS
210/* This is the index in menu_items of the first empty slot. */
211static int menu_items_used;
18686d47 212
101bb4a5
RS
213/* The number of panes currently recorded in menu_items,
214 excluding those within submenus. */
78589e07 215static int menu_items_n_panes;
18686d47 216
101bb4a5
RS
217/* Current depth within submenus. */
218static int menu_items_submenu_depth;
219
4dedbfe0 220/* Flag which when set indicates a dialog or menu has been posted by
c98fcf4b 221 Xt on behalf of one of the widget sets. */
488dd4c4 222static int popup_activated_flag;
4dedbfe0 223
88766961 224static int next_menubar_widget_id;
745c34fb 225
a9be6839
RS
226/* This is set nonzero after the user activates the menu bar, and set
227 to zero again after the menu bars are redisplayed by prepare_menu_bar.
228 While it is nonzero, all calls to set_frame_menubar go deep.
229
230 I don't understand why this is needed, but it does seem to be
231 needed on Motif, according to Marcus Daniels <marcus@sysc.pdx.edu>. */
232
233int pending_menu_activation;
bd3a4da2 234\f
88766961 235#ifdef USE_X_TOOLKIT
bd3a4da2 236
7556890b 237/* Return the frame whose ->output_data.x->id equals ID, or 0 if none. */
bd3a4da2 238
88766961
RS
239static struct frame *
240menubar_id_to_frame (id)
241 LWLIB_ID id;
242{
243 Lisp_Object tail, frame;
244 FRAME_PTR f;
bd3a4da2 245
8e713be6 246 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
bd3a4da2 247 {
8e713be6 248 frame = XCAR (tail);
88766961
RS
249 if (!GC_FRAMEP (frame))
250 continue;
251 f = XFRAME (frame);
2d764c78 252 if (!FRAME_WINDOW_P (f))
88766961 253 continue;
7556890b 254 if (f->output_data.x->id == id)
88766961 255 return f;
bd3a4da2 256 }
88766961 257 return 0;
bd3a4da2 258}
88766961
RS
259
260#endif
4dedbfe0 261\f
78589e07
RS
262/* Initialize the menu_items structure if we haven't already done so.
263 Also mark it as currently empty. */
264
265static void
266init_menu_items ()
267{
268 if (NILP (menu_items))
269 {
270 menu_items_allocated = 60;
271 menu_items = Fmake_vector (make_number (menu_items_allocated), Qnil);
18686d47
RS
272 }
273
86fad4ec
SM
274 if (!NILP (menu_items_inuse))
275 error ("Trying to use a menu from within a menu-entry");
276 menu_items_inuse = Qt;
78589e07
RS
277 menu_items_used = 0;
278 menu_items_n_panes = 0;
101bb4a5 279 menu_items_submenu_depth = 0;
78589e07 280}
18686d47 281
0b1f4572 282/* Call at the end of generating the data in menu_items. */
1658603c 283
78589e07
RS
284static void
285finish_menu_items ()
286{
287}
1658603c 288
86fad4ec
SM
289static Lisp_Object
290unuse_menu_items (dummy)
7448803e 291 int dummy;
86fad4ec
SM
292{
293 return menu_items_inuse = Qnil;
294}
295
78589e07
RS
296/* Call when finished using the data for the current menu
297 in menu_items. */
1658603c 298
78589e07
RS
299static void
300discard_menu_items ()
301{
302 /* Free the structure if it is especially large.
303 Otherwise, hold on to it, to save time. */
304 if (menu_items_allocated > 200)
305 {
306 menu_items = Qnil;
307 menu_items_allocated = 0;
308 }
86fad4ec 309 xassert (NILP (menu_items_inuse));
78589e07 310}
1658603c 311
101bb4a5
RS
312/* Make the menu_items vector twice as large. */
313
314static void
315grow_menu_items ()
316{
317 Lisp_Object old;
318 int old_size = menu_items_allocated;
319 old = menu_items;
320
321 menu_items_allocated *= 2;
322 menu_items = Fmake_vector (make_number (menu_items_allocated), Qnil);
323 bcopy (XVECTOR (old)->contents, XVECTOR (menu_items)->contents,
324 old_size * sizeof (Lisp_Object));
325}
326
327/* Begin a submenu. */
328
329static void
330push_submenu_start ()
331{
332 if (menu_items_used + 1 > menu_items_allocated)
333 grow_menu_items ();
334
335 XVECTOR (menu_items)->contents[menu_items_used++] = Qnil;
336 menu_items_submenu_depth++;
337}
338
339/* End a submenu. */
340
341static void
342push_submenu_end ()
343{
344 if (menu_items_used + 1 > menu_items_allocated)
345 grow_menu_items ();
346
347 XVECTOR (menu_items)->contents[menu_items_used++] = Qlambda;
348 menu_items_submenu_depth--;
349}
350
fcaa7665
RS
351/* Indicate boundary between left and right. */
352
353static void
354push_left_right_boundary ()
355{
356 if (menu_items_used + 1 > menu_items_allocated)
357 grow_menu_items ();
358
359 XVECTOR (menu_items)->contents[menu_items_used++] = Qquote;
360}
361
c9e60620 362/* Start a new menu pane in menu_items.
78589e07 363 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */
1658603c 364
78589e07
RS
365static void
366push_menu_pane (name, prefix_vec)
367 Lisp_Object name, prefix_vec;
368{
369 if (menu_items_used + MENU_ITEMS_PANE_LENGTH > menu_items_allocated)
101bb4a5 370 grow_menu_items ();
dcfdbac7 371
101bb4a5
RS
372 if (menu_items_submenu_depth == 0)
373 menu_items_n_panes++;
78589e07
RS
374 XVECTOR (menu_items)->contents[menu_items_used++] = Qt;
375 XVECTOR (menu_items)->contents[menu_items_used++] = name;
376 XVECTOR (menu_items)->contents[menu_items_used++] = prefix_vec;
377}
dcfdbac7 378
3427a3db
GM
379/* Push one menu item into the current pane. NAME is the string to
380 display. ENABLE if non-nil means this item can be selected. KEY
381 is the key generated by choosing this item, or nil if this item
382 doesn't really have a definition. DEF is the definition of this
383 item. EQUIV is the textual description of the keyboard equivalent
384 for this item (or nil if none). TYPE is the type of this menu
385 item, one of nil, `toggle' or `radio'. */
18686d47 386
78589e07 387static void
850df50b
GM
388push_menu_item (name, enable, key, def, equiv, type, selected, help)
389 Lisp_Object name, enable, key, def, equiv, type, selected, help;
78589e07
RS
390{
391 if (menu_items_used + MENU_ITEMS_ITEM_LENGTH > menu_items_allocated)
101bb4a5 392 grow_menu_items ();
088831f6 393
78589e07
RS
394 XVECTOR (menu_items)->contents[menu_items_used++] = name;
395 XVECTOR (menu_items)->contents[menu_items_used++] = enable;
396 XVECTOR (menu_items)->contents[menu_items_used++] = key;
397 XVECTOR (menu_items)->contents[menu_items_used++] = equiv;
a352a815 398 XVECTOR (menu_items)->contents[menu_items_used++] = def;
3427a3db
GM
399 XVECTOR (menu_items)->contents[menu_items_used++] = type;
400 XVECTOR (menu_items)->contents[menu_items_used++] = selected;
850df50b 401 XVECTOR (menu_items)->contents[menu_items_used++] = help;
78589e07
RS
402}
403\f
78589e07 404/* Look through KEYMAPS, a vector of keymaps that is NMAPS long,
101bb4a5
RS
405 and generate menu panes for them in menu_items.
406 If NOTREAL is nonzero,
407 don't bother really computing whether an item is enabled. */
18686d47 408
78589e07 409static void
101bb4a5 410keymap_panes (keymaps, nmaps, notreal)
78589e07
RS
411 Lisp_Object *keymaps;
412 int nmaps;
101bb4a5 413 int notreal;
18686d47 414{
78589e07 415 int mapno;
18686d47 416
78589e07 417 init_menu_items ();
18686d47 418
78589e07
RS
419 /* Loop over the given keymaps, making a pane for each map.
420 But don't make a pane that is empty--ignore that map instead.
421 P is the number of panes we have made so far. */
422 for (mapno = 0; mapno < nmaps; mapno++)
488205c0 423 single_keymap_panes (keymaps[mapno],
5ee707b8 424 Fkeymap_prompt (keymaps[mapno]), Qnil, notreal, 10);
78589e07
RS
425
426 finish_menu_items ();
427}
428
0695ce91
SM
429/* Args passed between single_keymap_panes and single_menu_item. */
430struct skp
431 {
432 Lisp_Object pending_maps;
433 int maxdepth, notreal;
434 int notbuttons;
435 };
436
437static void single_menu_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
aea448d2 438 void *));
0695ce91 439
78589e07
RS
440/* This is a recursive subroutine of keymap_panes.
441 It handles one keymap, KEYMAP.
442 The other arguments are passed along
101bb4a5 443 or point to local variables of the previous function.
de57a39c
RS
444 If NOTREAL is nonzero, only check for equivalent key bindings, don't
445 evaluate expressions in menu items and don't make any menu.
98381e42
RS
446
447 If we encounter submenus deeper than MAXDEPTH levels, ignore them. */
78589e07
RS
448
449static void
98381e42 450single_keymap_panes (keymap, pane_name, prefix, notreal, maxdepth)
78589e07
RS
451 Lisp_Object keymap;
452 Lisp_Object pane_name;
453 Lisp_Object prefix;
101bb4a5 454 int notreal;
98381e42 455 int maxdepth;
78589e07 456{
0695ce91
SM
457 struct skp skp;
458 struct gcpro gcpro1;
459
460 skp.pending_maps = Qnil;
461 skp.maxdepth = maxdepth;
462 skp.notreal = notreal;
463 skp.notbuttons = 0;
78589e07 464
98381e42
RS
465 if (maxdepth <= 0)
466 return;
467
78589e07
RS
468 push_menu_pane (pane_name, prefix);
469
de57a39c
RS
470#ifndef HAVE_BOXES
471 /* Remember index for first item in this pane so we can go back and
472 add a prefix when (if) we see the first button. After that, notbuttons
473 is set to 0, to mark that we have seen a button and all non button
474 items need a prefix. */
0695ce91 475 skp.notbuttons = menu_items_used;
de57a39c
RS
476#endif
477
0695ce91
SM
478 GCPRO1 (skp.pending_maps);
479 map_keymap (keymap, single_menu_item, Qnil, &skp, 1);
480 UNGCPRO;
78589e07
RS
481
482 /* Process now any submenus which want to be panes at this level. */
0695ce91 483 while (CONSP (skp.pending_maps))
78589e07 484 {
101bb4a5 485 Lisp_Object elt, eltcdr, string;
0695ce91 486 elt = XCAR (skp.pending_maps);
8e713be6
KR
487 eltcdr = XCDR (elt);
488 string = XCAR (eltcdr);
101bb4a5
RS
489 /* We no longer discard the @ from the beginning of the string here.
490 Instead, we do this in xmenu_show. */
491 single_keymap_panes (Fcar (elt), string,
8e713be6 492 XCDR (eltcdr), notreal, maxdepth - 1);
0695ce91 493 skp.pending_maps = XCDR (skp.pending_maps);
78589e07 494 }
18686d47 495}
78589e07 496\f
de57a39c
RS
497/* This is a subroutine of single_keymap_panes that handles one
498 keymap entry.
177c0ea7 499 KEY is a key in a keymap and ITEM is its binding.
0695ce91 500 SKP->PENDING_MAPS_PTR is a list of keymaps waiting to be made into
de57a39c 501 separate panes.
0695ce91 502 If SKP->NOTREAL is nonzero, only check for equivalent key bindings, don't
de57a39c 503 evaluate expressions in menu items and don't make any menu.
0695ce91
SM
504 If we encounter submenus deeper than SKP->MAXDEPTH levels, ignore them.
505 SKP->NOTBUTTONS is only used when simulating toggle boxes and radio
506 buttons. It keeps track of if we have seen a button in this menu or
507 not. */
de57a39c
RS
508
509static void
aea448d2 510single_menu_item (key, item, dummy, skp_v)
0695ce91 511 Lisp_Object key, item, dummy;
aea448d2 512 void *skp_v;
de57a39c 513{
faa935b6 514 Lisp_Object map, item_string, enabled;
de57a39c
RS
515 struct gcpro gcpro1, gcpro2;
516 int res;
aea448d2 517 struct skp *skp = skp_v;
177c0ea7 518
de57a39c
RS
519 /* Parse the menu item and leave the result in item_properties. */
520 GCPRO2 (key, item);
0695ce91 521 res = parse_menu_item (item, skp->notreal, 0);
de57a39c
RS
522 UNGCPRO;
523 if (!res)
524 return; /* Not a menu item. */
525
526 map = XVECTOR (item_properties)->contents[ITEM_PROPERTY_MAP];
0695ce91
SM
527
528 if (skp->notreal)
de57a39c
RS
529 {
530 /* We don't want to make a menu, just traverse the keymaps to
531 precompute equivalent key bindings. */
532 if (!NILP (map))
0695ce91 533 single_keymap_panes (map, Qnil, key, 1, skp->maxdepth - 1);
de57a39c
RS
534 return;
535 }
536
537 enabled = XVECTOR (item_properties)->contents[ITEM_PROPERTY_ENABLE];
177c0ea7 538 item_string = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
de57a39c 539
d5db4077 540 if (!NILP (map) && SREF (item_string, 0) == '@')
de57a39c
RS
541 {
542 if (!NILP (enabled))
543 /* An enabled separate pane. Remember this to handle it later. */
0695ce91
SM
544 skp->pending_maps = Fcons (Fcons (map, Fcons (item_string, key)),
545 skp->pending_maps);
de57a39c
RS
546 return;
547 }
548
549#ifndef HAVE_BOXES
550 /* Simulate radio buttons and toggle boxes by putting a prefix in
551 front of them. */
552 {
553 Lisp_Object prefix = Qnil;
554 Lisp_Object type = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE];
555 if (!NILP (type))
556 {
557 Lisp_Object selected
558 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED];
559
0695ce91 560 if (skp->notbuttons)
de57a39c
RS
561 /* The first button. Line up previous items in this menu. */
562 {
0695ce91 563 int index = skp->notbuttons; /* Index for first item this menu. */
de57a39c
RS
564 int submenu = 0;
565 Lisp_Object tem;
566 while (index < menu_items_used)
567 {
568 tem
569 = XVECTOR (menu_items)->contents[index + MENU_ITEMS_ITEM_NAME];
570 if (NILP (tem))
571 {
572 index++;
573 submenu++; /* Skip sub menu. */
574 }
575 else if (EQ (tem, Qlambda))
576 {
577 index++;
578 submenu--; /* End sub menu. */
579 }
580 else if (EQ (tem, Qt))
581 index += 3; /* Skip new pane marker. */
582 else if (EQ (tem, Qquote))
583 index++; /* Skip a left, right divider. */
584 else
585 {
d5db4077
KR
586 if (!submenu && SREF (tem, 0) != '\0'
587 && SREF (tem, 0) != '-')
de57a39c
RS
588 XVECTOR (menu_items)->contents[index + MENU_ITEMS_ITEM_NAME]
589 = concat2 (build_string (" "), tem);
590 index += MENU_ITEMS_ITEM_LENGTH;
591 }
592 }
0695ce91 593 skp->notbuttons = 0;
de57a39c
RS
594 }
595
596 /* Calculate prefix, if any, for this item. */
597 if (EQ (type, QCtoggle))
598 prefix = build_string (NILP (selected) ? "[ ] " : "[X] ");
599 else if (EQ (type, QCradio))
600 prefix = build_string (NILP (selected) ? "( ) " : "(*) ");
601 }
602 /* Not a button. If we have earlier buttons, then we need a prefix. */
0695ce91 603 else if (!skp->notbuttons && SREF (item_string, 0) != '\0'
d5db4077 604 && SREF (item_string, 0) != '-')
de57a39c
RS
605 prefix = build_string (" ");
606
607 if (!NILP (prefix))
608 item_string = concat2 (prefix, item_string);
609 }
610#endif /* not HAVE_BOXES */
177c0ea7 611
488dd4c4 612#if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
de57a39c
RS
613 if (!NILP(map))
614 /* Indicate visually that this is a submenu. */
615 item_string = concat2 (item_string, build_string (" >"));
616#endif
617
618 push_menu_item (item_string, enabled, key,
619 XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF],
3427a3db
GM
620 XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ],
621 XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE],
850df50b
GM
622 XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED],
623 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP]);
de57a39c 624
488dd4c4 625#if defined (USE_X_TOOLKIT) || defined (USE_GTK)
de57a39c
RS
626 /* Display a submenu using the toolkit. */
627 if (! (NILP (map) || NILP (enabled)))
628 {
629 push_submenu_start ();
0695ce91 630 single_keymap_panes (map, Qnil, key, 0, skp->maxdepth - 1);
de57a39c
RS
631 push_submenu_end ();
632 }
633#endif
634}
635\f
8e6208c5 636/* Push all the panes and items of a menu described by the
78589e07
RS
637 alist-of-alists MENU.
638 This handles old-fashioned calls to x-popup-menu. */
18686d47 639
78589e07
RS
640static void
641list_of_panes (menu)
18686d47 642 Lisp_Object menu;
18686d47 643{
78589e07
RS
644 Lisp_Object tail;
645
646 init_menu_items ();
647
648 for (tail = menu; !NILP (tail); tail = Fcdr (tail))
649 {
650 Lisp_Object elt, pane_name, pane_data;
651 elt = Fcar (tail);
652 pane_name = Fcar (elt);
b7826503 653 CHECK_STRING (pane_name);
646f98ec 654 push_menu_pane (ENCODE_MENU_STRING (pane_name), Qnil);
78589e07 655 pane_data = Fcdr (elt);
b7826503 656 CHECK_CONS (pane_data);
78589e07
RS
657 list_of_items (pane_data);
658 }
659
660 finish_menu_items ();
661}
662
663/* Push the items in a single pane defined by the alist PANE. */
664
665static void
666list_of_items (pane)
667 Lisp_Object pane;
668{
669 Lisp_Object tail, item, item1;
670
671 for (tail = pane; !NILP (tail); tail = Fcdr (tail))
672 {
673 item = Fcar (tail);
674 if (STRINGP (item))
646f98ec
DL
675 push_menu_item (ENCODE_MENU_STRING (item), Qnil, Qnil, Qt,
676 Qnil, Qnil, Qnil, Qnil);
fcaa7665
RS
677 else if (NILP (item))
678 push_left_right_boundary ();
78589e07
RS
679 else
680 {
b7826503 681 CHECK_CONS (item);
78589e07 682 item1 = Fcar (item);
b7826503 683 CHECK_STRING (item1);
646f98ec
DL
684 push_menu_item (ENCODE_MENU_STRING (item1), Qt, Fcdr (item),
685 Qt, Qnil, Qnil, Qnil, Qnil);
78589e07
RS
686 }
687 }
688}
689\f
a894238b
JD
690#ifdef HAVE_X_WINDOWS
691/* Return the mouse position in *X and *Y. The coordinates are window
692 relative for the edit window in frame F.
693 This is for Fx_popup_menu. The mouse_position_hook can not
694 be used for X, as it returns window relative coordinates
695 for the window where the mouse is in. This could be the menu bar,
696 the scroll bar or the edit window. Fx_popup_menu needs to be
697 sure it is the edit window. */
698static void
699mouse_position_for_popup(f, x, y)
700 FRAME_PTR f;
701 int *x;
702 int *y;
703{
704 Window root, dummy_window;
705 int dummy;
706
707 BLOCK_INPUT;
177c0ea7 708
a894238b
JD
709 XQueryPointer (FRAME_X_DISPLAY (f),
710 DefaultRootWindow (FRAME_X_DISPLAY (f)),
711
712 /* The root window which contains the pointer. */
713 &root,
714
715 /* Window pointer is on, not used */
716 &dummy_window,
717
718 /* The position on that root window. */
719 x, y,
720
721 /* x/y in dummy_window coordinates, not used. */
722 &dummy, &dummy,
723
724 /* Modifier keys and pointer buttons, about which
725 we don't care. */
726 (unsigned int *) &dummy);
727
728 UNBLOCK_INPUT;
729
730 /* xmenu_show expects window coordinates, not root window
731 coordinates. Translate. */
9882535b
KS
732 *x -= f->left_pos + FRAME_OUTER_TO_INNER_DIFF_X (f);
733 *y -= f->top_pos + FRAME_OUTER_TO_INNER_DIFF_Y (f);
a894238b
JD
734}
735
736#endif /* HAVE_X_WINDOWS */
737
540e52d1 738DEFUN ("x-popup-menu", Fx_popup_menu, Sx_popup_menu, 2, 2, 0,
f6e34773 739 doc: /* Pop up a deck-of-cards menu and return user's selection.
228299fa
GM
740POSITION is a position specification. This is either a mouse button event
741or a list ((XOFFSET YOFFSET) WINDOW)
742where XOFFSET and YOFFSET are positions in pixels from the top left
743corner of WINDOW's frame. (WINDOW may be a frame object instead of a window.)
744This controls the position of the center of the first line
745in the first pane of the menu, not the top left of the menu as a whole.
746If POSITION is t, it means to use the current mouse position.
747
748MENU is a specifier for a menu. For the simplest case, MENU is a keymap.
749The menu items come from key bindings that have a menu string as well as
750a definition; actually, the "definition" in such a key binding looks like
751\(STRING . REAL-DEFINITION). To give the menu a title, put a string into
752the keymap as a top-level element.
753
754If REAL-DEFINITION is nil, that puts a nonselectable string in the menu.
755Otherwise, REAL-DEFINITION should be a valid key binding definition.
756
757You can also use a list of keymaps as MENU.
758 Then each keymap makes a separate pane.
759When MENU is a keymap or a list of keymaps, the return value
760is a list of events.
761
762Alternatively, you can specify a menu of multiple panes
763 with a list of the form (TITLE PANE1 PANE2...),
764where each pane is a list of form (TITLE ITEM1 ITEM2...).
765Each ITEM is normally a cons cell (STRING . VALUE);
766but a string can appear as an item--that makes a nonselectable line
767in the menu.
768With this form of menu, the return value is VALUE from the chosen item.
769
770If POSITION is nil, don't display the menu at all, just precalculate the
7ee72033
MB
771cached information about equivalent key sequences. */)
772 (position, menu)
78589e07
RS
773 Lisp_Object position, menu;
774{
18686d47 775 Lisp_Object keymap, tem;
6bbd7a29 776 int xpos = 0, ypos = 0;
78589e07
RS
777 Lisp_Object title;
778 char *error_name;
779 Lisp_Object selection;
cc45fb40 780 FRAME_PTR f = NULL;
78589e07
RS
781 Lisp_Object x, y, window;
782 int keymaps = 0;
9685a93f 783 int for_click = 0;
86fad4ec 784 int specpdl_count = SPECPDL_INDEX ();
78589e07
RS
785 struct gcpro gcpro1;
786
1e659e4c 787#ifdef HAVE_MENUS
78589e07
RS
788 if (! NILP (position))
789 {
488dd4c4 790 int get_current_pos_p = 0;
101bb4a5
RS
791 check_x ();
792
78589e07 793 /* Decode the first argument: find the window and the coordinates. */
9572375b 794 if (EQ (position, Qt)
2b06561a
DL
795 || (CONSP (position) && (EQ (XCAR (position), Qmenu_bar)
796 || EQ (XCAR (position), Qtool_bar))))
78589e07 797 {
488dd4c4
JD
798 get_current_pos_p = 1;
799 }
800 else
801 {
802 tem = Fcar (position);
803 if (CONSP (tem))
804 {
805 window = Fcar (Fcdr (position));
806 x = Fcar (tem);
807 y = Fcar (Fcdr (tem));
808 }
809 else
810 {
811 for_click = 1;
812 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
813 window = Fcar (tem); /* POSN_WINDOW (tem) */
814 tem = Fcar (Fcdr (Fcdr (tem))); /* POSN_WINDOW_POSN (tem) */
815 x = Fcar (tem);
816 y = Fcdr (tem);
817 }
818
819 /* If a click happens in an external tool bar or a detached
820 tool bar, x and y is NIL. In that case, use the current
821 mouse position. This happens for the help button in the
822 tool bar. Ideally popup-menu should pass NIL to
823 this function, but it doesn't. */
824 if (NILP (x) && NILP (y))
825 get_current_pos_p = 1;
826 }
827
828 if (get_current_pos_p)
829 {
78589e07 830 /* Use the mouse's current position. */
b404828f 831 FRAME_PTR new_f = SELECTED_FRAME ();
a894238b
JD
832#ifdef HAVE_X_WINDOWS
833 /* Can't use mouse_position_hook for X since it returns
834 coordinates relative to the window the mouse is in,
835 we need coordinates relative to the edit widget always. */
836 if (new_f != 0)
837 {
838 int cur_x, cur_y;
839
840 mouse_position_for_popup (new_f, &cur_x, &cur_y);
841 /* cur_x/y may be negative, so use make_number. */
842 x = make_number (cur_x);
843 y = make_number (cur_y);
844 }
177c0ea7 845
a894238b
JD
846#else /* not HAVE_X_WINDOWS */
847 Lisp_Object bar_window;
848 enum scroll_bar_part part;
849 unsigned long time;
850
851 if (mouse_position_hook)
852 (*mouse_position_hook) (&new_f, 1, &bar_window,
853 &part, &x, &y, &time);
854#endif /* not HAVE_X_WINDOWS */
855
856 if (new_f != 0)
857 XSETFRAME (window, new_f);
858 else
859 {
860 window = selected_window;
861 XSETFASTINT (x, 0);
862 XSETFASTINT (y, 0);
863 }
78589e07 864 }
78589e07 865
b7826503
PJ
866 CHECK_NUMBER (x);
867 CHECK_NUMBER (y);
78589e07
RS
868
869 /* Decode where to put the menu. */
870
b5bb2705 871 if (FRAMEP (window))
78589e07
RS
872 {
873 f = XFRAME (window);
78589e07
RS
874 xpos = 0;
875 ypos = 0;
876 }
b5bb2705 877 else if (WINDOWP (window))
78589e07 878 {
b7826503 879 CHECK_LIVE_WINDOW (window);
78589e07
RS
880 f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
881
9882535b
KS
882 xpos = WINDOW_LEFT_EDGE_X (XWINDOW (window));
883 ypos = WINDOW_TOP_EDGE_Y (XWINDOW (window));
78589e07
RS
884 }
885 else
886 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
887 but I don't want to make one now. */
b7826503 888 CHECK_WINDOW (window);
78589e07
RS
889
890 xpos += XINT (x);
891 ypos += XINT (y);
892 }
bfc524bc 893 Vmenu_updating_frame = Qnil;
1e659e4c 894#endif /* HAVE_MENUS */
78589e07 895
86fad4ec 896 record_unwind_protect (unuse_menu_items, Qnil);
78589e07
RS
897 title = Qnil;
898 GCPRO1 (title);
899
900 /* Decode the menu items from what was specified. */
18686d47 901
02067692
SM
902 keymap = get_keymap (menu, 0, 0);
903 if (CONSP (keymap))
18686d47
RS
904 {
905 /* We were given a keymap. Extract menu info from the keymap. */
906 Lisp_Object prompt;
18686d47 907
78589e07 908 /* Extract the detailed info to make one pane. */
101bb4a5 909 keymap_panes (&menu, 1, NILP (position));
78589e07 910
18686d47
RS
911 /* Search for a string appearing directly as an element of the keymap.
912 That string is the title of the menu. */
5ee707b8 913 prompt = Fkeymap_prompt (keymap);
4f9ad016
RS
914 if (NILP (title) && !NILP (prompt))
915 title = prompt;
18686d47 916
78589e07
RS
917 /* Make that be the pane title of the first pane. */
918 if (!NILP (prompt) && menu_items_n_panes >= 0)
919 XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME] = prompt;
920
921 keymaps = 1;
18686d47 922 }
02067692 923 else if (CONSP (menu) && KEYMAPP (XCAR (menu)))
18686d47
RS
924 {
925 /* We were given a list of keymaps. */
18686d47
RS
926 int nmaps = XFASTINT (Flength (menu));
927 Lisp_Object *maps
928 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
929 int i;
78589e07
RS
930
931 title = Qnil;
18686d47
RS
932
933 /* The first keymap that has a prompt string
934 supplies the menu title. */
b5bb2705 935 for (tem = menu, i = 0; CONSP (tem); tem = Fcdr (tem))
18686d47 936 {
78589e07
RS
937 Lisp_Object prompt;
938
02067692 939 maps[i++] = keymap = get_keymap (Fcar (tem), 1, 0);
18686d47 940
5ee707b8 941 prompt = Fkeymap_prompt (keymap);
78589e07
RS
942 if (NILP (title) && !NILP (prompt))
943 title = prompt;
18686d47
RS
944 }
945
946 /* Extract the detailed info to make one pane. */
101bb4a5 947 keymap_panes (maps, nmaps, NILP (position));
78589e07
RS
948
949 /* Make the title be the pane title of the first pane. */
950 if (!NILP (title) && menu_items_n_panes >= 0)
951 XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME] = title;
952
953 keymaps = 1;
18686d47
RS
954 }
955 else
956 {
957 /* We were given an old-fashioned menu. */
78589e07 958 title = Fcar (menu);
b7826503 959 CHECK_STRING (title);
18686d47 960
78589e07 961 list_of_panes (Fcdr (menu));
18686d47 962
78589e07
RS
963 keymaps = 0;
964 }
177c0ea7 965
86fad4ec
SM
966 unbind_to (specpdl_count, Qnil);
967
78589e07 968 if (NILP (position))
18686d47 969 {
78589e07
RS
970 discard_menu_items ();
971 UNGCPRO;
972 return Qnil;
18686d47
RS
973 }
974
1e659e4c 975#ifdef HAVE_MENUS
78589e07
RS
976 /* Display them in a menu. */
977 BLOCK_INPUT;
18686d47 978
673a6211 979 selection = xmenu_show (f, xpos, ypos, for_click,
78589e07
RS
980 keymaps, title, &error_name);
981 UNBLOCK_INPUT;
18686d47 982
78589e07 983 discard_menu_items ();
18686d47 984
78589e07 985 UNGCPRO;
1e659e4c 986#endif /* HAVE_MENUS */
18686d47 987
78589e07
RS
988 if (error_name) error (error_name);
989 return selection;
18686d47 990}
165e1749 991
1e659e4c
RS
992#ifdef HAVE_MENUS
993
540e52d1 994DEFUN ("x-popup-dialog", Fx_popup_dialog, Sx_popup_dialog, 2, 2, 0,
f6e34773 995 doc: /* Pop up a dialog box and return user's selection.
228299fa
GM
996POSITION specifies which frame to use.
997This is normally a mouse button event or a window or frame.
998If POSITION is t, it means to use the frame the mouse is on.
999The dialog box appears in the middle of the specified frame.
1000
1001CONTENTS specifies the alternatives to display in the dialog box.
1002It is a list of the form (TITLE ITEM1 ITEM2...).
1003Each ITEM is a cons cell (STRING . VALUE).
1004The return value is VALUE from the chosen item.
1005
1006An ITEM may also be just a string--that makes a nonselectable item.
1007An ITEM may also be nil--that means to put all preceding items
1008on the left of the dialog box and all following items on the right.
7ee72033
MB
1009\(By default, approximately half appear on each side.) */)
1010 (position, contents)
99fe880d 1011 Lisp_Object position, contents;
165e1749 1012{
cc45fb40 1013 FRAME_PTR f = NULL;
99fe880d 1014 Lisp_Object window;
165e1749
FP
1015
1016 check_x ();
1017
99fe880d 1018 /* Decode the first argument: find the window or frame to use. */
88d4f6ec 1019 if (EQ (position, Qt)
2b06561a
DL
1020 || (CONSP (position) && (EQ (XCAR (position), Qmenu_bar)
1021 || EQ (XCAR (position), Qtool_bar))))
165e1749 1022 {
b14db4d7 1023#if 0 /* Using the frame the mouse is on may not be right. */
99fe880d 1024 /* Use the mouse's current position. */
b404828f 1025 FRAME_PTR new_f = SELECTED_FRAME ();
99fe880d 1026 Lisp_Object bar_window;
cc45fb40 1027 enum scroll_bar_part part;
99fe880d
RS
1028 unsigned long time;
1029 Lisp_Object x, y;
165e1749 1030
46b657e2 1031 (*mouse_position_hook) (&new_f, 1, &bar_window, &part, &x, &y, &time);
5ca2ef64 1032
99fe880d 1033 if (new_f != 0)
a39f0477 1034 XSETFRAME (window, new_f);
99fe880d
RS
1035 else
1036 window = selected_window;
b14db4d7 1037#endif
88d4f6ec 1038 window = selected_window;
99fe880d
RS
1039 }
1040 else if (CONSP (position))
1041 {
1042 Lisp_Object tem;
1043 tem = Fcar (position);
b5bb2705 1044 if (CONSP (tem))
99fe880d 1045 window = Fcar (Fcdr (position));
80670155
RS
1046 else
1047 {
99fe880d
RS
1048 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
1049 window = Fcar (tem); /* POSN_WINDOW (tem) */
165e1749 1050 }
165e1749 1051 }
99fe880d
RS
1052 else if (WINDOWP (position) || FRAMEP (position))
1053 window = position;
a9be6839
RS
1054 else
1055 window = Qnil;
165e1749 1056
99fe880d 1057 /* Decode where to put the menu. */
165e1749 1058
b5bb2705 1059 if (FRAMEP (window))
99fe880d 1060 f = XFRAME (window);
b5bb2705 1061 else if (WINDOWP (window))
165e1749 1062 {
b7826503 1063 CHECK_LIVE_WINDOW (window);
99fe880d 1064 f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
165e1749 1065 }
99fe880d
RS
1066 else
1067 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
1068 but I don't want to make one now. */
b7826503 1069 CHECK_WINDOW (window);
165e1749 1070
488dd4c4 1071#if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
99fe880d
RS
1072 /* Display a menu with these alternatives
1073 in the middle of frame F. */
1074 {
1075 Lisp_Object x, y, frame, newpos;
a39f0477
KH
1076 XSETFRAME (frame, f);
1077 XSETINT (x, x_pixel_width (f) / 2);
1078 XSETINT (y, x_pixel_height (f) / 2);
99fe880d
RS
1079 newpos = Fcons (Fcons (x, Fcons (y, Qnil)), Fcons (frame, Qnil));
1080
1081 return Fx_popup_menu (newpos,
1082 Fcons (Fcar (contents), Fcons (contents, Qnil)));
1083 }
1084#else
1085 {
1086 Lisp_Object title;
1087 char *error_name;
1088 Lisp_Object selection;
86fad4ec 1089 int specpdl_count = SPECPDL_INDEX ();
165e1749 1090
99fe880d
RS
1091 /* Decode the dialog items from what was specified. */
1092 title = Fcar (contents);
b7826503 1093 CHECK_STRING (title);
86fad4ec 1094 record_unwind_protect (unuse_menu_items, Qnil);
165e1749 1095
99fe880d 1096 list_of_panes (Fcons (contents, Qnil));
165e1749 1097
99fe880d
RS
1098 /* Display them in a dialog box. */
1099 BLOCK_INPUT;
f8c2630d 1100 selection = xdialog_show (f, 0, title, &error_name);
99fe880d 1101 UNBLOCK_INPUT;
165e1749 1102
86fad4ec 1103 unbind_to (specpdl_count, Qnil);
99fe880d
RS
1104 discard_menu_items ();
1105
1106 if (error_name) error (error_name);
1107 return selection;
1108 }
7464b131 1109#endif
392d3f4b 1110}
78589e07 1111\f
488dd4c4 1112#if defined (USE_X_TOOLKIT) || defined (USE_GTK)
18686d47 1113
4dedbfe0 1114/* Loop in Xt until the menu pulldown or dialog popup has been
f56e7ad2 1115 popped down (deactivated). This is used for x-popup-menu
f02cac82
RS
1116 and x-popup-dialog; it is not used for the menu bar.
1117
1118 If DO_TIMERS is nonzero, run timers.
c98fcf4b 1119
2e2b8e22 1120 NOTE: All calls to popup_get_selection should be protected
c98fcf4b 1121 with BLOCK_INPUT, UNBLOCK_INPUT wrappers. */
aa669def 1122
488dd4c4 1123#ifdef USE_X_TOOLKIT
f02cac82
RS
1124static void
1125popup_get_selection (initial_event, dpyinfo, id, do_timers)
4dedbfe0 1126 XEvent *initial_event;
aa669def 1127 struct x_display_info *dpyinfo;
2e2b8e22 1128 LWLIB_ID id;
f02cac82 1129 int do_timers;
78589e07 1130{
4dedbfe0 1131 XEvent event;
f02cac82 1132
8b806a85
JD
1133 while (popup_activated_flag)
1134 {
1135 /* If we have no events to run, consider timers. */
1136 if (do_timers && !XtAppPending (Xt_app_con))
1137 timer_check (1);
aa669def 1138
8b806a85
JD
1139 if (initial_event)
1140 {
1141 event = *initial_event;
1142 initial_event = 0;
1143 }
1144 else
1145 XtAppNextEvent (Xt_app_con, &event);
78589e07 1146
10624005 1147 /* Make sure we don't consider buttons grabbed after menu goes.
8b806a85
JD
1148 And make sure to deactivate for any ButtonRelease,
1149 even if XtDispatchEvent doesn't do that. */
1150 if (event.type == ButtonRelease
1151 && dpyinfo->display == event.xbutton.display)
10624005
KH
1152 {
1153 dpyinfo->grabbed &= ~(1 << event.xbutton.button);
177c0ea7 1154#ifdef USE_MOTIF /* Pretending that the event came from a
8b806a85
JD
1155 Btn1Down seems the only way to convince Motif to
1156 activate its callbacks; setting the XmNmenuPost
1157 isn't working. --marcus@sysc.pdx.edu. */
1158 event.xbutton.button = 1;
1159 /* Motif only pops down menus when no Ctrl, Alt or Mod
1160 key is pressed and the button is released. So reset key state
1161 so Motif thinks this is the case. */
1162 event.xbutton.state = 0;
c8b5aa3d 1163#endif
10624005 1164 }
2e2b8e22 1165 /* If the user presses a key, deactivate the menu.
8b806a85
JD
1166 The user is likely to do that if we get wedged.
1167 This is mostly for Lucid, Motif pops down the menu on ESC. */
2e2b8e22 1168 else if (event.type == KeyPress
10624005 1169 && dpyinfo->display == event.xbutton.display)
8b806a85
JD
1170 {
1171 KeySym keysym = XLookupKeysym (&event.xkey, 0);
1172 if (!IsModifierKey (keysym))
1173 popup_activated_flag = 0;
1174 }
177c0ea7 1175
8b806a85 1176 x_dispatch_event (&event, event.xany.display);
aa669def 1177 }
78589e07
RS
1178}
1179
488dd4c4
JD
1180#endif /* USE_X_TOOLKIT */
1181
1182#ifdef USE_GTK
1183/* Loop util popup_activated_flag is set to zero in a callback.
1184 Used for popup menus and dialogs. */
1185static void
1186popup_widget_loop ()
1187{
1188 ++popup_activated_flag;
1189
1190 /* Process events in the Gtk event loop until done. */
1191 while (popup_activated_flag)
1192 {
1193 gtk_main_iteration ();
1194 }
1195}
1196#endif
1197
88766961
RS
1198/* Activate the menu bar of frame F.
1199 This is called from keyboard.c when it gets the
3b8f9651 1200 MENU_BAR_ACTIVATE_EVENT out of the Emacs event queue.
88766961
RS
1201
1202 To activate the menu bar, we use the X button-press event
ac78b144 1203 that was saved in saved_menu_event.
88766961
RS
1204 That makes the toolkit do its thing.
1205
1206 But first we recompute the menu bar contents (the whole tree).
1207
1208 The reason for saving the button event until here, instead of
1209 passing it to the toolkit right away, is that we can safely
1210 execute Lisp code. */
177c0ea7 1211
dfcf069d 1212void
88766961
RS
1213x_activate_menubar (f)
1214 FRAME_PTR f;
1215{
ac78b144 1216 if (!f->output_data.x->saved_menu_event->type)
88766961
RS
1217 return;
1218
177c0ea7 1219#ifdef USE_GTK
488dd4c4
JD
1220 if (! xg_win_to_widget (f->output_data.x->saved_menu_event->xany.window))
1221 return;
1222#endif
177c0ea7 1223
a9be6839 1224 set_frame_menubar (f, 0, 1);
88766961 1225 BLOCK_INPUT;
488dd4c4
JD
1226#ifdef USE_GTK
1227 XPutBackEvent (f->output_data.x->display_info->display,
1228 f->output_data.x->saved_menu_event);
1229 popup_activated_flag = 1;
1230#else
86fad4ec 1231 XtDispatchEvent (f->output_data.x->saved_menu_event);
488dd4c4 1232#endif
88766961 1233 UNBLOCK_INPUT;
a9be6839 1234#ifdef USE_MOTIF
745c34fb
RS
1235 if (f->output_data.x->saved_menu_event->type == ButtonRelease)
1236 pending_menu_activation = 1;
a9be6839 1237#endif
177c0ea7 1238
88766961 1239 /* Ignore this if we get it a second time. */
ac78b144 1240 f->output_data.x->saved_menu_event->type = 0;
88766961
RS
1241}
1242
c98fcf4b 1243/* Detect if a dialog or menu has been posted. */
aa669def 1244
4dedbfe0
PR
1245int
1246popup_activated ()
1247{
1248 return popup_activated_flag;
1249}
1250
4dedbfe0
PR
1251/* This callback is invoked when the user selects a menubar cascade
1252 pushbutton, but before the pulldown menu is posted. */
78589e07 1253
488dd4c4 1254#ifndef USE_GTK
78589e07 1255static void
4dedbfe0 1256popup_activate_callback (widget, id, client_data)
78589e07
RS
1257 Widget widget;
1258 LWLIB_ID id;
1259 XtPointer client_data;
1260{
4dedbfe0 1261 popup_activated_flag = 1;
7555d825 1262}
488dd4c4 1263#endif
7555d825
GM
1264
1265/* This callback is invoked when a dialog or menu is finished being
1266 used and has been unposted. */
1267
488dd4c4
JD
1268#ifdef USE_GTK
1269static void
1270popup_deactivate_callback (widget, client_data)
1271 GtkWidget *widget;
1272 gpointer client_data;
1273{
1274 popup_activated_flag = 0;
1275}
1276#else
7555d825
GM
1277static void
1278popup_deactivate_callback (widget, id, client_data)
1279 Widget widget;
1280 LWLIB_ID id;
1281 XtPointer client_data;
1282{
7555d825 1283 popup_activated_flag = 0;
78589e07 1284}
488dd4c4 1285#endif
78589e07 1286
850df50b 1287
488dd4c4
JD
1288/* Function that finds the frame for WIDGET and shows the HELP text
1289 for that widget.
1290 F is the frame if known, or NULL if not known. */
1291static void
1292show_help_event (f, widget, help)
1293 FRAME_PTR f;
1294 xt_or_gtk_widget widget;
1295 Lisp_Object help;
850df50b 1296{
488dd4c4 1297 Lisp_Object frame;
850df50b 1298
850df50b 1299 if (f)
9cd50434
GM
1300 {
1301 XSETFRAME (frame, f);
1302 kbd_buffer_store_help_event (frame, help);
1303 }
850df50b
GM
1304 else
1305 {
177c0ea7 1306 /* WIDGET is the popup menu. It's parent is the frame's
850df50b 1307 widget. See which frame that is. */
488dd4c4 1308 xt_or_gtk_widget frame_widget = XtParent (widget);
850df50b
GM
1309 Lisp_Object tail;
1310
1311 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
1312 {
1313 frame = XCAR (tail);
1314 if (GC_FRAMEP (frame)
1315 && (f = XFRAME (frame),
1316 FRAME_X_P (f) && f->output_data.x->widget == frame_widget))
1317 break;
1318 }
850df50b 1319
9cd50434
GM
1320 show_help_echo (help, Qnil, Qnil, Qnil, 1);
1321 }
850df50b
GM
1322}
1323
488dd4c4
JD
1324/* Callback called when menu items are highlighted/unhighlighted
1325 while moving the mouse over them. WIDGET is the menu bar or menu
1326 popup widget. ID is its LWLIB_ID. CALL_DATA contains a pointer to
1327 the data structure for the menu item, or null in case of
1328 unhighlighting. */
4dedbfe0 1329
488dd4c4
JD
1330#ifdef USE_GTK
1331void
1332menu_highlight_callback (widget, call_data)
1333 GtkWidget *widget;
1334 gpointer call_data;
1335{
1336 xg_menu_item_cb_data *cb_data;
1337 Lisp_Object help;
177c0ea7 1338
488dd4c4
JD
1339 cb_data = (xg_menu_item_cb_data*) g_object_get_data (G_OBJECT (widget),
1340 XG_ITEM_DATA);
1341 if (! cb_data) return;
1342
1343 help = call_data ? cb_data->help : Qnil;
1344
1345 /* If popup_activated_flag is greater than 1 we are in a popup menu.
1346 Don't show help for them, they won't appear before the
1347 popup is popped down. */
1348 if (popup_activated_flag <= 1)
1349 show_help_event (cb_data->cl_data->f, widget, help);
1350}
1351#else
1352void
1353menu_highlight_callback (widget, id, call_data)
78589e07
RS
1354 Widget widget;
1355 LWLIB_ID id;
488dd4c4
JD
1356 void *call_data;
1357{
1358 struct frame *f;
1359 Lisp_Object help;
1360
1361 widget_value *wv = (widget_value *) call_data;
1362
1363 help = wv ? wv->help : Qnil;
177c0ea7 1364
488dd4c4
JD
1365 /* Determine the frame for the help event. */
1366 f = menubar_id_to_frame (id);
1367
1368 show_help_event (f, widget, help);
1369}
1370#endif
1371
1372/* Find the menu selection and store it in the keyboard buffer.
1373 F is the frame the menu is on.
1374 MENU_BAR_ITEMS_USED is the length of VECTOR.
1375 VECTOR is an array of menu events for the whole menu.
1376 */
1377void
1378find_and_call_menu_selection (f, menu_bar_items_used, vector, client_data)
1379 FRAME_PTR f;
1380 int menu_bar_items_used;
1381 Lisp_Object vector;
1382 void *client_data;
78589e07 1383{
c63f6952 1384 Lisp_Object prefix, entry;
4dedbfe0
PR
1385 Lisp_Object *subprefix_stack;
1386 int submenu_depth = 0;
1387 int i;
1388
6bbd7a29 1389 entry = Qnil;
488dd4c4 1390 subprefix_stack = (Lisp_Object *) alloca (menu_bar_items_used * sizeof (Lisp_Object));
4dedbfe0
PR
1391 prefix = Qnil;
1392 i = 0;
488dd4c4
JD
1393
1394 while (i < menu_bar_items_used)
4dedbfe0 1395 {
4dedbfe0
PR
1396 if (EQ (XVECTOR (vector)->contents[i], Qnil))
1397 {
1398 subprefix_stack[submenu_depth++] = prefix;
1399 prefix = entry;
1400 i++;
1401 }
1402 else if (EQ (XVECTOR (vector)->contents[i], Qlambda))
1403 {
1404 prefix = subprefix_stack[--submenu_depth];
1405 i++;
1406 }
1407 else if (EQ (XVECTOR (vector)->contents[i], Qt))
1408 {
4cb35c39 1409 prefix = XVECTOR (vector)->contents[i + MENU_ITEMS_PANE_PREFIX];
4dedbfe0
PR
1410 i += MENU_ITEMS_PANE_LENGTH;
1411 }
1412 else
1413 {
4cb35c39 1414 entry = XVECTOR (vector)->contents[i + MENU_ITEMS_ITEM_VALUE];
01d5e892
RS
1415 /* The EMACS_INT cast avoids a warning. There's no problem
1416 as long as pointers have enough bits to hold small integers. */
1417 if ((int) (EMACS_INT) client_data == i)
4dedbfe0
PR
1418 {
1419 int j;
1420 struct input_event buf;
4cb35c39 1421 Lisp_Object frame;
38f7dce3 1422 EVENT_INIT (buf);
4dedbfe0 1423
4cb35c39 1424 XSETFRAME (frame, f);
9979315d
GM
1425 buf.kind = MENU_BAR_EVENT;
1426 buf.frame_or_window = frame;
1427 buf.arg = frame;
4dedbfe0
PR
1428 kbd_buffer_store_event (&buf);
1429
1430 for (j = 0; j < submenu_depth; j++)
1431 if (!NILP (subprefix_stack[j]))
1432 {
9979315d
GM
1433 buf.kind = MENU_BAR_EVENT;
1434 buf.frame_or_window = frame;
1435 buf.arg = subprefix_stack[j];
4dedbfe0
PR
1436 kbd_buffer_store_event (&buf);
1437 }
1438
1439 if (!NILP (prefix))
1440 {
9979315d
GM
1441 buf.kind = MENU_BAR_EVENT;
1442 buf.frame_or_window = frame;
1443 buf.arg = prefix;
4dedbfe0
PR
1444 kbd_buffer_store_event (&buf);
1445 }
1446
9979315d
GM
1447 buf.kind = MENU_BAR_EVENT;
1448 buf.frame_or_window = frame;
1449 buf.arg = entry;
4dedbfe0
PR
1450 kbd_buffer_store_event (&buf);
1451
1452 return;
1453 }
1454 i += MENU_ITEMS_ITEM_LENGTH;
1455 }
1456 }
18686d47
RS
1457}
1458
488dd4c4
JD
1459
1460#ifdef USE_GTK
1461/* Gtk calls callbacks just because we tell it what item should be
1462 selected in a radio group. If this variable is set to a non-zero
1463 value, we are creating menus and don't want callbacks right now.
1464*/
1465static int xg_crazy_callback_abort;
1466
1467/* This callback is called from the menu bar pulldown menu
1468 when the user makes a selection.
1469 Figure out what the user chose
1470 and put the appropriate events into the keyboard buffer. */
1471static void
1472menubar_selection_callback (widget, client_data)
1473 GtkWidget *widget;
1474 gpointer client_data;
1475{
1476 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data*) client_data;
1477
1478 if (xg_crazy_callback_abort)
1479 return;
1480
1481 if (! cb_data || ! cb_data->cl_data || ! cb_data->cl_data->f)
1482 return;
1483
1484 find_and_call_menu_selection (cb_data->cl_data->f,
1485 cb_data->cl_data->menu_bar_items_used,
1486 cb_data->cl_data->menu_bar_vector,
1487 cb_data->call_data);
1488}
1489
1490#else /* not USE_GTK */
1491
1492/* This callback is called from the menu bar pulldown menu
1493 when the user makes a selection.
1494 Figure out what the user chose
1495 and put the appropriate events into the keyboard buffer. */
1496static void
1497menubar_selection_callback (widget, id, client_data)
1498 Widget widget;
1499 LWLIB_ID id;
1500 XtPointer client_data;
1501{
1502 FRAME_PTR f;
1503
1504 f = menubar_id_to_frame (id);
1505 if (!f)
1506 return;
1507 find_and_call_menu_selection (f, f->menu_bar_items_used,
1508 f->menu_bar_vector, client_data);
1509}
1510#endif /* not USE_GTK */
1511
f9655c60
RS
1512/* Allocate a widget_value, blocking input. */
1513
1514widget_value *
1515xmalloc_widget_value ()
1516{
1517 widget_value *value;
1518
1519 BLOCK_INPUT;
1520 value = malloc_widget_value ();
1521 UNBLOCK_INPUT;
1522
1523 return value;
1524}
4dedbfe0
PR
1525
1526/* This recursively calls free_widget_value on the tree of widgets.
18686d47 1527 It must free all data that was malloc'ed for these widget_values.
78589e07
RS
1528 In Emacs, many slots are pointers into the data of Lisp_Strings, and
1529 must be left alone. */
1530
18686d47
RS
1531void
1532free_menubar_widget_value_tree (wv)
1533 widget_value *wv;
1534{
1535 if (! wv) return;
18686d47
RS
1536
1537 wv->name = wv->value = wv->key = (char *) 0xDEADBEEF;
1538
1539 if (wv->contents && (wv->contents != (widget_value*)1))
1540 {
1541 free_menubar_widget_value_tree (wv->contents);
1542 wv->contents = (widget_value *) 0xDEADBEEF;
1543 }
1544 if (wv->next)
1545 {
1546 free_menubar_widget_value_tree (wv->next);
1547 wv->next = (widget_value *) 0xDEADBEEF;
1548 }
1549 BLOCK_INPUT;
1550 free_widget_value (wv);
1551 UNBLOCK_INPUT;
1552}
4dedbfe0 1553\f
e6c87a0f 1554/* Set up data in menu_items for a menu bar item
4dedbfe0
PR
1555 whose event type is ITEM_KEY (with string ITEM_NAME)
1556 and whose contents come from the list of keymaps MAPS. */
1557
ced89c24
RS
1558static int
1559parse_single_submenu (item_key, item_name, maps)
4dedbfe0
PR
1560 Lisp_Object item_key, item_name, maps;
1561{
4dedbfe0
PR
1562 Lisp_Object length;
1563 int len;
1564 Lisp_Object *mapvec;
ced89c24 1565 int i;
71dca3e3 1566 int top_level_items = 0;
4dedbfe0
PR
1567
1568 length = Flength (maps);
1569 len = XINT (length);
1570
1571 /* Convert the list MAPS into a vector MAPVEC. */
1572 mapvec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
1573 for (i = 0; i < len; i++)
1574 {
1575 mapvec[i] = Fcar (maps);
1576 maps = Fcdr (maps);
1577 }
1578
4dedbfe0
PR
1579 /* Loop over the given keymaps, making a pane for each map.
1580 But don't make a pane that is empty--ignore that map instead. */
1581 for (i = 0; i < len; i++)
71dca3e3 1582 {
e6c87a0f 1583 if (!KEYMAPP (mapvec[i]))
71dca3e3 1584 {
846e8c10
RS
1585 /* Here we have a command at top level in the menu bar
1586 as opposed to a submenu. */
71dca3e3
RS
1587 top_level_items = 1;
1588 push_menu_pane (Qnil, Qnil);
850df50b
GM
1589 push_menu_item (item_name, Qt, item_key, mapvec[i],
1590 Qnil, Qnil, Qnil, Qnil);
71dca3e3
RS
1591 }
1592 else
37dc84ff
RS
1593 {
1594 Lisp_Object prompt;
1595 prompt = Fkeymap_prompt (mapvec[i]);
1596 single_keymap_panes (mapvec[i],
1597 !NILP (prompt) ? prompt : item_name,
1598 item_key, 0, 10);
1599 }
71dca3e3 1600 }
4dedbfe0 1601
ced89c24
RS
1602 return top_level_items;
1603}
1604
1605/* Create a tree of widget_value objects
1606 representing the panes and items
1607 in menu_items starting at index START, up to index END. */
1608
1609static widget_value *
1610digest_single_submenu (start, end, top_level_items)
7448803e 1611 int start, end, top_level_items;
ced89c24
RS
1612{
1613 widget_value *wv, *prev_wv, *save_wv, *first_wv;
1614 int i;
1615 int submenu_depth = 0;
1616 widget_value **submenu_stack;
4dedbfe0
PR
1617
1618 submenu_stack
1619 = (widget_value **) alloca (menu_items_used * sizeof (widget_value *));
f7fab165 1620 wv = xmalloc_widget_value ();
4dedbfe0
PR
1621 wv->name = "menu";
1622 wv->value = 0;
1623 wv->enabled = 1;
3427a3db 1624 wv->button_type = BUTTON_TYPE_NONE;
0b1e6b54 1625 wv->help = Qnil;
4dedbfe0
PR
1626 first_wv = wv;
1627 save_wv = 0;
71dca3e3 1628 prev_wv = 0;
177c0ea7 1629
37dc84ff
RS
1630 /* Loop over all panes and items made by the preceding call
1631 to parse_single_submenu and construct a tree of widget_value objects.
1632 Ignore the panes and items used by previous calls to
1633 digest_single_submenu, even though those are also in menu_items. */
ced89c24
RS
1634 i = start;
1635 while (i < end)
4dedbfe0
PR
1636 {
1637 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
1638 {
1639 submenu_stack[submenu_depth++] = save_wv;
1640 save_wv = prev_wv;
1641 prev_wv = 0;
1642 i++;
1643 }
1644 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
1645 {
1646 prev_wv = save_wv;
1647 save_wv = submenu_stack[--submenu_depth];
1648 i++;
1649 }
1650 else if (EQ (XVECTOR (menu_items)->contents[i], Qt)
1651 && submenu_depth != 0)
1652 i += MENU_ITEMS_PANE_LENGTH;
1653 /* Ignore a nil in the item list.
1654 It's meaningful only for dialog boxes. */
1655 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
1656 i += 1;
1657 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
1658 {
1659 /* Create a new pane. */
1660 Lisp_Object pane_name, prefix;
1661 char *pane_string;
177c0ea7 1662
4dedbfe0
PR
1663 pane_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_NAME];
1664 prefix = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
177c0ea7 1665
703dc2a8
KH
1666#ifndef HAVE_MULTILINGUAL_MENU
1667 if (STRINGP (pane_name) && STRING_MULTIBYTE (pane_name))
4c329aa8 1668 {
cc45fb40 1669 pane_name = ENCODE_SYSTEM (pane_name);
4c329aa8
GM
1670 AREF (menu_items, i + MENU_ITEMS_PANE_NAME) = pane_name;
1671 }
703dc2a8 1672#endif
4dedbfe0 1673 pane_string = (NILP (pane_name)
d5db4077 1674 ? "" : (char *) SDATA (pane_name));
4dedbfe0
PR
1675 /* If there is just one top-level pane, put all its items directly
1676 under the top-level menu. */
1677 if (menu_items_n_panes == 1)
1678 pane_string = "";
1679
1680 /* If the pane has a meaningful name,
1681 make the pane a top-level menu item
1682 with its items as a submenu beneath it. */
1683 if (strcmp (pane_string, ""))
1684 {
f7fab165 1685 wv = xmalloc_widget_value ();
4dedbfe0
PR
1686 if (save_wv)
1687 save_wv->next = wv;
1688 else
1689 first_wv->contents = wv;
1690 wv->name = pane_string;
ffcb5a51
RS
1691 /* Ignore the @ that means "separate pane".
1692 This is a kludge, but this isn't worth more time. */
1693 if (!NILP (prefix) && wv->name[0] == '@')
4dedbfe0
PR
1694 wv->name++;
1695 wv->value = 0;
1696 wv->enabled = 1;
3427a3db 1697 wv->button_type = BUTTON_TYPE_NONE;
0b1e6b54 1698 wv->help = Qnil;
4dedbfe0
PR
1699 }
1700 save_wv = wv;
1701 prev_wv = 0;
1702 i += MENU_ITEMS_PANE_LENGTH;
1703 }
1704 else
1705 {
1706 /* Create a new item within current pane. */
3427a3db 1707 Lisp_Object item_name, enable, descrip, def, type, selected;
850df50b 1708 Lisp_Object help;
177c0ea7 1709
4c329aa8
GM
1710 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
1711 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
1712 descrip = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
1713 def = AREF (menu_items, i + MENU_ITEMS_ITEM_DEFINITION);
1714 type = AREF (menu_items, i + MENU_ITEMS_ITEM_TYPE);
1715 selected = AREF (menu_items, i + MENU_ITEMS_ITEM_SELECTED);
1716 help = AREF (menu_items, i + MENU_ITEMS_ITEM_HELP);
3427a3db 1717
703dc2a8 1718#ifndef HAVE_MULTILINGUAL_MENU
3427a3db 1719 if (STRING_MULTIBYTE (item_name))
4c329aa8 1720 {
646f98ec 1721 item_name = ENCODE_MENU_STRING (item_name);
4c329aa8
GM
1722 AREF (menu_items, i + MENU_ITEMS_ITEM_NAME) = item_name;
1723 }
177c0ea7 1724
3427a3db 1725 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
4c329aa8 1726 {
646f98ec 1727 descrip = ENCODE_MENU_STRING (descrip);
4c329aa8
GM
1728 AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY) = descrip;
1729 }
1730#endif /* not HAVE_MULTILINGUAL_MENU */
3427a3db 1731
f7fab165 1732 wv = xmalloc_widget_value ();
177c0ea7 1733 if (prev_wv)
4dedbfe0 1734 prev_wv->next = wv;
71dca3e3 1735 else
4dedbfe0 1736 save_wv->contents = wv;
71dca3e3 1737
d5db4077 1738 wv->name = (char *) SDATA (item_name);
4dedbfe0 1739 if (!NILP (descrip))
d5db4077 1740 wv->key = (char *) SDATA (descrip);
4dedbfe0 1741 wv->value = 0;
01d5e892
RS
1742 /* The EMACS_INT cast avoids a warning. There's no problem
1743 as long as pointers have enough bits to hold small integers. */
1744 wv->call_data = (!NILP (def) ? (void *) (EMACS_INT) i : 0);
4dedbfe0 1745 wv->enabled = !NILP (enable);
177c0ea7 1746
3427a3db
GM
1747 if (NILP (type))
1748 wv->button_type = BUTTON_TYPE_NONE;
1749 else if (EQ (type, QCradio))
1750 wv->button_type = BUTTON_TYPE_RADIO;
1751 else if (EQ (type, QCtoggle))
1752 wv->button_type = BUTTON_TYPE_TOGGLE;
1753 else
1754 abort ();
1755
1756 wv->selected = !NILP (selected);
0b1f4572
RS
1757 if (! STRINGP (help))
1758 help = Qnil;
1759
1760 wv->help = help;
cc45fb40 1761
4dedbfe0
PR
1762 prev_wv = wv;
1763
1764 i += MENU_ITEMS_ITEM_LENGTH;
1765 }
1766 }
1767
71dca3e3
RS
1768 /* If we have just one "menu item"
1769 that was originally a button, return it by itself. */
1770 if (top_level_items && first_wv->contents && first_wv->contents->next == 0)
1771 {
1772 wv = first_wv->contents;
1773 free_widget_value (first_wv);
1774 return wv;
1775 }
1776
4dedbfe0
PR
1777 return first_wv;
1778}
f61a541b
GM
1779\f
1780/* Recompute all the widgets of frame F, when the menu bar has been
1781 changed. Value is non-zero if widgets were updated. */
1782
1783static int
6af6cbb5 1784update_frame_menubar (f)
18686d47
RS
1785 FRAME_PTR f;
1786{
488dd4c4
JD
1787#ifdef USE_GTK
1788 return xg_update_frame_menubar (f);
1789#else
7556890b 1790 struct x_output *x = f->output_data.x;
cffa74ea 1791 int columns, rows;
177c0ea7 1792
f61a541b
GM
1793 if (!x->menubar_widget || XtIsManaged (x->menubar_widget))
1794 return 0;
18686d47
RS
1795
1796 BLOCK_INPUT;
f61a541b
GM
1797 /* Save the size of the frame because the pane widget doesn't accept
1798 to resize itself. So force it. */
9882535b
KS
1799 columns = FRAME_COLS (f);
1800 rows = FRAME_LINES (f);
cffa74ea 1801
f61a541b
GM
1802 /* Do the voodoo which means "I'm changing lots of things, don't try
1803 to refigure sizes until I'm done." */
4dedbfe0 1804 lw_refigure_widget (x->column_widget, False);
cffa74ea 1805
f61a541b
GM
1806 /* The order in which children are managed is the top to bottom
1807 order in which they are displayed in the paned window. First,
1808 remove the text-area widget. */
18686d47
RS
1809 XtUnmanageChild (x->edit_widget);
1810
f61a541b
GM
1811 /* Remove the menubar that is there now, and put up the menubar that
1812 should be there. */
1813 XtManageChild (x->menubar_widget);
1814 XtMapWidget (x->menubar_widget);
1815 XtVaSetValues (x->menubar_widget, XtNmappedWhenManaged, 1, NULL);
18686d47 1816
c98fcf4b 1817 /* Re-manage the text-area widget, and then thrash the sizes. */
18686d47 1818 XtManageChild (x->edit_widget);
4dedbfe0 1819 lw_refigure_widget (x->column_widget, True);
cffa74ea
FP
1820
1821 /* Force the pane widget to resize itself with the right values. */
1822 EmacsFrameSetCharSize (x->edit_widget, columns, rows);
18686d47 1823 UNBLOCK_INPUT;
488dd4c4 1824#endif
f61a541b 1825 return 1;
18686d47
RS
1826}
1827
4bcdbab1
KH
1828/* Set the contents of the menubar widgets of frame F.
1829 The argument FIRST_TIME is currently ignored;
1830 it is set the first time this is called, from initialize_frame_menubar. */
1831
18686d47 1832void
88766961 1833set_frame_menubar (f, first_time, deep_p)
18686d47 1834 FRAME_PTR f;
706aa2f2 1835 int first_time;
88766961 1836 int deep_p;
18686d47 1837{
488dd4c4
JD
1838 xt_or_gtk_widget menubar_widget = f->output_data.x->menubar_widget;
1839#ifdef USE_X_TOOLKIT
1840 LWLIB_ID id;
1841#endif
faa935b6 1842 Lisp_Object items;
4d19cb8e 1843 widget_value *wv, *first_wv, *prev_wv = 0;
ced89c24
RS
1844 int i, last_i;
1845 int *submenu_start, *submenu_end;
37dc84ff 1846 int *submenu_top_level_items, *submenu_n_panes;
cc45fb40 1847
18686d47 1848
bfc524bc
RS
1849 XSETFRAME (Vmenu_updating_frame, f);
1850
488dd4c4 1851#ifdef USE_X_TOOLKIT
7556890b
RS
1852 if (f->output_data.x->id == 0)
1853 f->output_data.x->id = next_menubar_widget_id++;
1854 id = f->output_data.x->id;
488dd4c4 1855#endif
177c0ea7 1856
88766961
RS
1857 if (! menubar_widget)
1858 deep_p = 1;
745c34fb 1859 else if (pending_menu_activation && !deep_p)
a9be6839
RS
1860 deep_p = 1;
1861 /* Make the first call for any given frame always go deep. */
1862 else if (!f->output_data.x->saved_menu_event && !deep_p)
745c34fb
RS
1863 {
1864 deep_p = 1;
a9be6839
RS
1865 f->output_data.x->saved_menu_event = (XEvent*)xmalloc (sizeof (XEvent));
1866 f->output_data.x->saved_menu_event->type = 0;
745c34fb 1867 }
18686d47 1868
da18b5ac
JD
1869#ifdef USE_GTK
1870 /* If we have detached menus, we must update deep so detached menus
1871 also gets updated. */
1872 deep_p = deep_p || xg_have_tear_offs ();
1873#endif
1874
88766961 1875 if (deep_p)
18686d47 1876 {
88766961
RS
1877 /* Make a widget-value tree representing the entire menu trees. */
1878
1879 struct buffer *prev = current_buffer;
1880 Lisp_Object buffer;
aed13378 1881 int specpdl_count = SPECPDL_INDEX ();
88766961
RS
1882 int previous_menu_items_used = f->menu_bar_items_used;
1883 Lisp_Object *previous_items
1884 = (Lisp_Object *) alloca (previous_menu_items_used
1885 * sizeof (Lisp_Object));
1886
0b1cf399
RS
1887 /* If we are making a new widget, its contents are empty,
1888 do always reinitialize them. */
1889 if (! menubar_widget)
1890 previous_menu_items_used = 0;
1891
88766961
RS
1892 buffer = XWINDOW (FRAME_SELECTED_WINDOW (f))->buffer;
1893 specbind (Qinhibit_quit, Qt);
1894 /* Don't let the debugger step into this code
1895 because it is not reentrant. */
1896 specbind (Qdebug_on_next_call, Qnil);
1897
58226364 1898 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
86fad4ec 1899 record_unwind_protect (unuse_menu_items, Qnil);
88766961
RS
1900 if (NILP (Voverriding_local_map_menu_flag))
1901 {
1902 specbind (Qoverriding_terminal_local_map, Qnil);
1903 specbind (Qoverriding_local_map, Qnil);
1904 }
18686d47 1905
88766961 1906 set_buffer_internal_1 (XBUFFER (buffer));
18686d47 1907
88766961 1908 /* Run the Lucid hook. */
950eaee7 1909 safe_run_hooks (Qactivate_menubar_hook);
177c0ea7 1910
88766961
RS
1911 /* If it has changed current-menubar from previous value,
1912 really recompute the menubar from the value. */
1913 if (! NILP (Vlucid_menu_bar_dirty_flag))
1914 call0 (Qrecompute_lucid_menubar);
a57634d4 1915 safe_run_hooks (Qmenu_bar_update_hook);
88766961 1916 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
18686d47 1917
88766961 1918 items = FRAME_MENU_BAR_ITEMS (f);
8d8a3494 1919
88766961 1920 /* Save the frame's previous menu bar contents data. */
86c04183
GM
1921 if (previous_menu_items_used)
1922 bcopy (XVECTOR (f->menu_bar_vector)->contents, previous_items,
1923 previous_menu_items_used * sizeof (Lisp_Object));
8d8a3494 1924
ced89c24
RS
1925 /* Fill in menu_items with the current menu bar contents.
1926 This can evaluate Lisp code. */
88766961 1927 menu_items = f->menu_bar_vector;
86c04183 1928 menu_items_allocated = VECTORP (menu_items) ? ASIZE (menu_items) : 0;
ced89c24
RS
1929 submenu_start = (int *) alloca (XVECTOR (items)->size * sizeof (int *));
1930 submenu_end = (int *) alloca (XVECTOR (items)->size * sizeof (int *));
37dc84ff 1931 submenu_n_panes = (int *) alloca (XVECTOR (items)->size * sizeof (int));
ced89c24
RS
1932 submenu_top_level_items
1933 = (int *) alloca (XVECTOR (items)->size * sizeof (int *));
88766961 1934 init_menu_items ();
f04366cb 1935 for (i = 0; i < XVECTOR (items)->size; i += 4)
88766961
RS
1936 {
1937 Lisp_Object key, string, maps;
1938
ced89c24
RS
1939 last_i = i;
1940
88766961
RS
1941 key = XVECTOR (items)->contents[i];
1942 string = XVECTOR (items)->contents[i + 1];
1943 maps = XVECTOR (items)->contents[i + 2];
1944 if (NILP (string))
1945 break;
1946
ced89c24
RS
1947 submenu_start[i] = menu_items_used;
1948
1949 menu_items_n_panes = 0;
1950 submenu_top_level_items[i]
1951 = parse_single_submenu (key, string, maps);
37dc84ff 1952 submenu_n_panes[i] = menu_items_n_panes;
ced89c24
RS
1953
1954 submenu_end[i] = menu_items_used;
1955 }
1956
1957 finish_menu_items ();
1958
1959 /* Convert menu_items into widget_value trees
1960 to display the menu. This cannot evaluate Lisp code. */
1961
1962 wv = xmalloc_widget_value ();
1963 wv->name = "menubar";
1964 wv->value = 0;
1965 wv->enabled = 1;
1966 wv->button_type = BUTTON_TYPE_NONE;
1967 wv->help = Qnil;
1968 first_wv = wv;
1969
1970 for (i = 0; i < last_i; i += 4)
1971 {
37dc84ff 1972 menu_items_n_panes = submenu_n_panes[i];
ced89c24
RS
1973 wv = digest_single_submenu (submenu_start[i], submenu_end[i],
1974 submenu_top_level_items[i]);
177c0ea7 1975 if (prev_wv)
88766961
RS
1976 prev_wv->next = wv;
1977 else
1978 first_wv->contents = wv;
1979 /* Don't set wv->name here; GC during the loop might relocate it. */
1980 wv->enabled = 1;
3427a3db 1981 wv->button_type = BUTTON_TYPE_NONE;
88766961
RS
1982 prev_wv = wv;
1983 }
1984
88766961 1985 set_buffer_internal_1 (prev);
8d8a3494 1986 unbind_to (specpdl_count, Qnil);
8d8a3494 1987
88766961
RS
1988 /* If there has been no change in the Lisp-level contents
1989 of the menu bar, skip redisplaying it. Just exit. */
1990
1991 for (i = 0; i < previous_menu_items_used; i++)
1992 if (menu_items_used == i
99d3fac7 1993 || (!EQ (previous_items[i], XVECTOR (menu_items)->contents[i])))
88766961 1994 break;
62555c22 1995 if (i == menu_items_used && i == previous_menu_items_used && i != 0)
88766961
RS
1996 {
1997 free_menubar_widget_value_tree (first_wv);
86fad4ec 1998 discard_menu_items ();
88766961
RS
1999
2000 return;
2001 }
2002
2003 /* Now GC cannot happen during the lifetime of the widget_value,
2004 so it's safe to store data from a Lisp_String. */
2005 wv = first_wv->contents;
f04366cb 2006 for (i = 0; i < XVECTOR (items)->size; i += 4)
88766961
RS
2007 {
2008 Lisp_Object string;
2009 string = XVECTOR (items)->contents[i + 1];
2010 if (NILP (string))
2011 break;
d5db4077 2012 wv->name = (char *) SDATA (string);
88766961
RS
2013 wv = wv->next;
2014 }
2015
2016 f->menu_bar_vector = menu_items;
2017 f->menu_bar_items_used = menu_items_used;
86fad4ec 2018 discard_menu_items ();
4d19cb8e 2019 }
88766961
RS
2020 else
2021 {
2022 /* Make a widget-value tree containing
2023 just the top level menu bar strings. */
4d19cb8e 2024
ced89c24
RS
2025 wv = xmalloc_widget_value ();
2026 wv->name = "menubar";
2027 wv->value = 0;
2028 wv->enabled = 1;
2029 wv->button_type = BUTTON_TYPE_NONE;
2030 wv->help = Qnil;
2031 first_wv = wv;
2032
88766961 2033 items = FRAME_MENU_BAR_ITEMS (f);
f04366cb 2034 for (i = 0; i < XVECTOR (items)->size; i += 4)
88766961
RS
2035 {
2036 Lisp_Object string;
2037
2038 string = XVECTOR (items)->contents[i + 1];
2039 if (NILP (string))
2040 break;
2041
f7fab165 2042 wv = xmalloc_widget_value ();
d5db4077 2043 wv->name = (char *) SDATA (string);
88766961
RS
2044 wv->value = 0;
2045 wv->enabled = 1;
3427a3db 2046 wv->button_type = BUTTON_TYPE_NONE;
27ad7b52 2047 wv->help = Qnil;
fe8fa62f
RS
2048 /* This prevents lwlib from assuming this
2049 menu item is really supposed to be empty. */
2050 /* The EMACS_INT cast avoids a warning.
2051 This value just has to be different from small integers. */
2052 wv->call_data = (void *) (EMACS_INT) (-1);
88766961 2053
177c0ea7 2054 if (prev_wv)
88766961
RS
2055 prev_wv->next = wv;
2056 else
2057 first_wv->contents = wv;
2058 prev_wv = wv;
2059 }
62555c22
RS
2060
2061 /* Forget what we thought we knew about what is in the
2062 detailed contents of the menu bar menus.
2063 Changing the top level always destroys the contents. */
2064 f->menu_bar_items_used = 0;
88766961 2065 }
4dedbfe0 2066
88766961 2067 /* Create or update the menu bar widget. */
aa669def
RS
2068
2069 BLOCK_INPUT;
2070
488dd4c4
JD
2071#ifdef USE_GTK
2072 xg_crazy_callback_abort = 1;
2073 if (menubar_widget)
2074 {
da18b5ac 2075 /* The fourth arg is DEEP_P, which says to consider the entire
488dd4c4
JD
2076 menu trees we supply, rather than just the menu bar item names. */
2077 xg_modify_menubar_widgets (menubar_widget,
2078 f,
2079 first_wv,
2080 deep_p,
2081 G_CALLBACK (menubar_selection_callback),
2082 G_CALLBACK (popup_deactivate_callback),
2083 G_CALLBACK (menu_highlight_callback));
2084 }
2085 else
2086 {
2087 GtkWidget *wvbox = f->output_data.x->vbox_widget;
177c0ea7 2088
488dd4c4 2089 menubar_widget
177c0ea7 2090 = xg_create_widget ("menubar", "menubar", f, first_wv,
488dd4c4
JD
2091 G_CALLBACK (menubar_selection_callback),
2092 G_CALLBACK (popup_deactivate_callback),
2093 G_CALLBACK (menu_highlight_callback));
2094
2095 f->output_data.x->menubar_widget = menubar_widget;
2096 }
2097
177c0ea7 2098
488dd4c4 2099#else /* not USE_GTK */
18686d47 2100 if (menubar_widget)
4dedbfe0
PR
2101 {
2102 /* Disable resizing (done for Motif!) */
7556890b 2103 lw_allow_resizing (f->output_data.x->widget, False);
4dedbfe0
PR
2104
2105 /* The third arg is DEEP_P, which says to consider the entire
2106 menu trees we supply, rather than just the menu bar item names. */
88766961 2107 lw_modify_all_widgets (id, first_wv, deep_p);
4dedbfe0 2108
c98fcf4b 2109 /* Re-enable the edit widget to resize. */
7556890b 2110 lw_allow_resizing (f->output_data.x->widget, True);
4dedbfe0 2111 }
18686d47
RS
2112 else
2113 {
177c0ea7 2114 menubar_widget = lw_create_widget ("menubar", "menubar", id, first_wv,
7556890b 2115 f->output_data.x->column_widget,
4dedbfe0
PR
2116 0,
2117 popup_activate_callback,
2118 menubar_selection_callback,
850df50b
GM
2119 popup_deactivate_callback,
2120 menu_highlight_callback);
7556890b 2121 f->output_data.x->menubar_widget = menubar_widget;
18686d47 2122 }
1d1c1567
KH
2123
2124 {
177c0ea7 2125 int menubar_size
7556890b
RS
2126 = (f->output_data.x->menubar_widget
2127 ? (f->output_data.x->menubar_widget->core.height
2128 + f->output_data.x->menubar_widget->core.border_width)
1d1c1567
KH
2129 : 0);
2130
f42aa681
RS
2131#if 0 /* Experimentally, we now get the right results
2132 for -geometry -0-0 without this. 24 Aug 96, rms. */
5ee80bd3 2133#ifdef USE_LUCID
1d1c1567
KH
2134 if (FRAME_EXTERNAL_MENU_BAR (f))
2135 {
2136 Dimension ibw = 0;
7556890b 2137 XtVaGetValues (f->output_data.x->column_widget,
1d1c1567
KH
2138 XtNinternalBorderWidth, &ibw, NULL);
2139 menubar_size += ibw;
2140 }
5ee80bd3 2141#endif /* USE_LUCID */
f42aa681 2142#endif /* 0 */
1d1c1567 2143
7556890b 2144 f->output_data.x->menubar_height = menubar_size;
1d1c1567 2145 }
488dd4c4 2146#endif /* not USE_GTK */
177c0ea7 2147
18686d47 2148 free_menubar_widget_value_tree (first_wv);
364cd450 2149 update_frame_menubar (f);
18686d47 2150
488dd4c4
JD
2151#ifdef USE_GTK
2152 xg_crazy_callback_abort = 0;
2153#endif
2154
18686d47
RS
2155 UNBLOCK_INPUT;
2156}
85f487d1 2157
8e6208c5 2158/* Called from Fx_create_frame to create the initial menubar of a frame
4dedbfe0
PR
2159 before it is mapped, so that the window is mapped with the menubar already
2160 there instead of us tacking it on later and thrashing the window after it
2161 is visible. */
2162
2163void
2164initialize_frame_menubar (f)
2165 FRAME_PTR f;
2166{
2167 /* This function is called before the first chance to redisplay
2168 the frame. It has to be, so the frame will have the right size. */
2169 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
88766961 2170 set_frame_menubar (f, 1, 1);
4dedbfe0
PR
2171}
2172
aba25348 2173
4dedbfe0 2174/* Get rid of the menu bar of frame F, and free its storage.
488dd4c4
JD
2175 This is used when deleting a frame, and when turning off the menu bar.
2176 For GTK this function is in gtkutil.c. */
4dedbfe0 2177
488dd4c4 2178#ifndef USE_GTK
85f487d1
FP
2179void
2180free_frame_menubar (f)
2181 FRAME_PTR f;
2182{
2183 Widget menubar_widget;
85f487d1 2184
7556890b 2185 menubar_widget = f->output_data.x->menubar_widget;
a45bad2a
RS
2186
2187 f->output_data.x->menubar_height = 0;
177c0ea7 2188
85f487d1
FP
2189 if (menubar_widget)
2190 {
aba25348
GM
2191#ifdef USE_MOTIF
2192 /* Removing the menu bar magically changes the shell widget's x
2193 and y position of (0, 0) which, when the menu bar is turned
2194 on again, leads to pull-down menuss appearing in strange
2195 positions near the upper-left corner of the display. This
2196 happens only with some window managers like twm and ctwm,
2197 but not with other like Motif's mwm or kwm, because the
2198 latter generate ConfigureNotify events when the menu bar
2199 is switched off, which fixes the shell position. */
2200 Position x0, y0, x1, y1;
2201#endif
177c0ea7 2202
85f487d1 2203 BLOCK_INPUT;
aba25348
GM
2204
2205#ifdef USE_MOTIF
ae556422
GM
2206 if (f->output_data.x->widget)
2207 XtVaGetValues (f->output_data.x->widget, XtNx, &x0, XtNy, &y0, NULL);
aba25348 2208#endif
177c0ea7 2209
7556890b 2210 lw_destroy_all_widgets ((LWLIB_ID) f->output_data.x->id);
0c05dcd3 2211 f->output_data.x->menubar_widget = NULL;
aba25348
GM
2212
2213#ifdef USE_MOTIF
ae556422
GM
2214 if (f->output_data.x->widget)
2215 {
2216 XtVaGetValues (f->output_data.x->widget, XtNx, &x1, XtNy, &y1, NULL);
2217 if (x1 == 0 && y1 == 0)
2218 XtVaSetValues (f->output_data.x->widget, XtNx, x0, XtNy, y0, NULL);
2219 }
aba25348 2220#endif
177c0ea7 2221
85f487d1
FP
2222 UNBLOCK_INPUT;
2223 }
2224}
488dd4c4 2225#endif /* not USE_GTK */
78589e07 2226
488dd4c4 2227#endif /* USE_X_TOOLKIT || USE_GTK */
78589e07
RS
2228\f
2229/* xmenu_show actually displays a menu using the panes and items in menu_items
2230 and returns the value selected from it.
2231 There are two versions of xmenu_show, one for Xt and one for Xlib.
2232 Both assume input is blocked by the caller. */
2233
2234/* F is the frame the menu is for.
2235 X and Y are the frame-relative specified position,
2236 relative to the inside upper left corner of the frame F.
c8b5aa3d 2237 FOR_CLICK is nonzero if this menu was invoked for a mouse click.
78589e07
RS
2238 KEYMAPS is 1 if this menu was specified with keymaps;
2239 in that case, we return a list containing the chosen item's value
2240 and perhaps also the pane's prefix.
2241 TITLE is the specified menu title.
2242 ERROR is a place to store an error message string in case of failure.
2243 (We return nil on failure, but the value doesn't actually matter.) */
18686d47 2244
488dd4c4
JD
2245#if defined (USE_X_TOOLKIT) || defined (USE_GTK)
2246
2247/* The item selected in the popup menu. */
2248static Lisp_Object *volatile menu_item_selection;
2249
2250#ifdef USE_GTK
2251
2252/* Used when position a popup menu. See menu_position_func and
2253 create_and_show_popup_menu below. */
2254struct next_popup_x_y
2255{
7b76ca1c 2256 FRAME_PTR f;
488dd4c4
JD
2257 int x;
2258 int y;
2259};
2260
2261/* The menu position function to use if we are not putting a popup
2262 menu where the pointer is.
2263 MENU is the menu to pop up.
2264 X and Y shall on exit contain x/y where the menu shall pop up.
2265 PUSH_IN is not documented in the GTK manual.
2266 USER_DATA is any data passed in when calling gtk_menu_popup.
2267 Here it points to a struct next_popup_x_y where the coordinates
7b76ca1c 2268 to store in *X and *Y are as well as the frame for the popup.
488dd4c4
JD
2269
2270 Here only X and Y are used. */
2271static void
2272menu_position_func (menu, x, y, push_in, user_data)
2273 GtkMenu *menu;
2274 gint *x;
2275 gint *y;
2276 gboolean *push_in;
2277 gpointer user_data;
2278{
7b76ca1c
JD
2279 struct next_popup_x_y* data = (struct next_popup_x_y*)user_data;
2280 GtkRequisition req;
2281 int disp_width = FRAME_X_DISPLAY_INFO (data->f)->width;
2282 int disp_height = FRAME_X_DISPLAY_INFO (data->f)->height;
2283
2284 *x = data->x;
2285 *y = data->y;
2286
2287 /* Check if there is room for the menu. If not, adjust x/y so that
2288 the menu is fully visible. */
2289 gtk_widget_size_request (GTK_WIDGET (menu), &req);
2290 if (data->x + req.width > disp_width)
2291 *x -= data->x + req.width - disp_width;
2292 if (data->y + req.height > disp_height)
2293 *y -= data->y + req.height - disp_height;
488dd4c4
JD
2294}
2295
2296static void
2297popup_selection_callback (widget, client_data)
2298 GtkWidget *widget;
2299 gpointer client_data;
2300{
2301 xg_menu_item_cb_data *cb_data = (xg_menu_item_cb_data*) client_data;
2302
2303 if (xg_crazy_callback_abort) return;
2304 if (cb_data) menu_item_selection = (Lisp_Object *) cb_data->call_data;
2305}
2306
2307/* Pop up the menu for frame F defined by FIRST_WV at X/Y and loop until the
2308 menu pops down.
2309 menu_item_selection will be set to the selection. */
2310static void
2311create_and_show_popup_menu (f, first_wv, x, y, for_click)
2312 FRAME_PTR f;
2313 widget_value *first_wv;
2314 int x;
2315 int y;
2316 int for_click;
2317{
2318 int i;
2319 GtkWidget *menu;
2320 GtkMenuPositionFunc pos_func = 0; /* Pop up at pointer. */
2321 struct next_popup_x_y popup_x_y;
2322
2323 xg_crazy_callback_abort = 1;
2324 menu = xg_create_widget ("popup", first_wv->name, f, first_wv,
2325 G_CALLBACK (popup_selection_callback),
2326 G_CALLBACK (popup_deactivate_callback),
2327 G_CALLBACK (menu_highlight_callback));
2328 xg_crazy_callback_abort = 0;
177c0ea7 2329
488dd4c4
JD
2330 for (i = 0; i < 5; i++)
2331 if (FRAME_X_DISPLAY_INFO (f)->grabbed & (1 << i))
2332 break;
2333
2334 if (! for_click)
2335 {
2336 /* Not invoked by a click. pop up at x/y. */
2337 pos_func = menu_position_func;
2338
2339 /* Adjust coordinates to be root-window-relative. */
9882535b
KS
2340 x += f->left_pos + FRAME_OUTER_TO_INNER_DIFF_X (f);
2341 y += f->top_pos + FRAME_OUTER_TO_INNER_DIFF_Y (f);
488dd4c4
JD
2342
2343 popup_x_y.x = x;
2344 popup_x_y.y = y;
7b76ca1c 2345 popup_x_y.f = f;
488dd4c4
JD
2346 }
2347
2348 /* Display the menu. */
2349 gtk_widget_show_all (menu);
2350 gtk_menu_popup (GTK_MENU (menu), 0, 0, pos_func, &popup_x_y, i, 0);
177c0ea7 2351
488dd4c4
JD
2352 /* Set this to one. popup_widget_loop increases it by one, so it becomes
2353 two. show_help_echo uses this to detect popup menus. */
2354 popup_activated_flag = 1;
2355 /* Process events that apply to the menu. */
2356 popup_widget_loop ();
2357
da18b5ac 2358 gtk_widget_destroy (menu);
177c0ea7 2359
488dd4c4
JD
2360 /* Must reset this manually because the button release event is not passed
2361 to Emacs event loop. */
2362 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
2363}
2364
2365#else /* not USE_GTK */
18686d47 2366
8ed87156 2367/* We need a unique id for each widget handled by the Lucid Widget
cc17e9bf
KH
2368 library.
2369
2370 For the main windows, and popup menus, we use this counter,
88766961 2371 which we increment each time after use. This starts from 1<<16.
cc17e9bf 2372
88766961
RS
2373 For menu bars, we use numbers starting at 0, counted in
2374 next_menubar_widget_id. */
8ed87156 2375LWLIB_ID widget_id_tick;
165e1749 2376
4dedbfe0
PR
2377static void
2378popup_selection_callback (widget, id, client_data)
2379 Widget widget;
2380 LWLIB_ID id;
2381 XtPointer client_data;
2382{
2383 menu_item_selection = (Lisp_Object *) client_data;
2384}
2385
488dd4c4
JD
2386/* Pop up the menu for frame F defined by FIRST_WV at X/Y and loop until the
2387 menu pops down.
2388 menu_item_selection will be set to the selection. */
2389static void
2390create_and_show_popup_menu (f, first_wv, x, y, for_click)
2391 FRAME_PTR f;
2392 widget_value *first_wv;
2393 int x;
2394 int y;
2395 int for_click;
2396{
2397 int i;
2398 Arg av[2];
2399 int ac = 0;
2400 XButtonPressedEvent dummy;
2401 LWLIB_ID menu_id;
2402 Widget menu;
488dd4c4
JD
2403
2404 menu_id = widget_id_tick++;
2405 menu = lw_create_widget ("popup", first_wv->name, menu_id, first_wv,
2406 f->output_data.x->widget, 1, 0,
2407 popup_selection_callback,
2408 popup_deactivate_callback,
2409 menu_highlight_callback);
2410
2411 dummy.type = ButtonPress;
2412 dummy.serial = 0;
2413 dummy.send_event = 0;
2414 dummy.display = FRAME_X_DISPLAY (f);
2415 dummy.time = CurrentTime;
2416 dummy.root = FRAME_X_DISPLAY_INFO (f)->root_window;
2417 dummy.window = dummy.root;
2418 dummy.subwindow = dummy.root;
2419 dummy.x = x;
2420 dummy.y = y;
2421
2422 /* Adjust coordinates to be root-window-relative. */
9882535b
KS
2423 x += f->left_pos + FRAME_OUTER_TO_INNER_DIFF_X (f);
2424 y += f->top_pos + FRAME_OUTER_TO_INNER_DIFF_Y (f);
488dd4c4
JD
2425
2426 dummy.x_root = x;
2427 dummy.y_root = y;
2428
2429 dummy.state = 0;
2430 dummy.button = 0;
2431 for (i = 0; i < 5; i++)
2432 if (FRAME_X_DISPLAY_INFO (f)->grabbed & (1 << i))
2433 dummy.button = i;
2434
2435 /* Don't allow any geometry request from the user. */
2436 XtSetArg (av[ac], XtNgeometry, 0); ac++;
2437 XtSetValues (menu, av, ac);
2438
2439 /* Display the menu. */
2440 lw_popup_menu (menu, (XEvent *) &dummy);
2441 popup_activated_flag = 1;
2442
2443 /* Process events that apply to the menu. */
2444 popup_get_selection ((XEvent *) 0, FRAME_X_DISPLAY_INFO (f), menu_id, 0);
2445
2446 /* fp turned off the following statement and wrote a comment
2447 that it is unnecessary--that the menu has already disappeared.
2448 Nowadays the menu disappears ok, all right, but
2449 we need to delete the widgets or multiple ones will pile up. */
177c0ea7 2450 lw_destroy_all_widgets (menu_id);
488dd4c4
JD
2451}
2452
2453#endif /* not USE_GTK */
2454
78589e07 2455static Lisp_Object
673a6211 2456xmenu_show (f, x, y, for_click, keymaps, title, error)
18686d47 2457 FRAME_PTR f;
18686d47
RS
2458 int x;
2459 int y;
9685a93f 2460 int for_click;
78589e07
RS
2461 int keymaps;
2462 Lisp_Object title;
2463 char **error;
18686d47 2464{
78589e07 2465 int i;
78589e07 2466 widget_value *wv, *save_wv = 0, *first_wv = 0, *prev_wv = 0;
101bb4a5
RS
2467 widget_value **submenu_stack
2468 = (widget_value **) alloca (menu_items_used * sizeof (widget_value *));
2469 Lisp_Object *subprefix_stack
2470 = (Lisp_Object *) alloca (menu_items_used * sizeof (Lisp_Object));
2471 int submenu_depth = 0;
4e8d3549 2472
78c8278d
RS
2473 int first_pane;
2474
78589e07
RS
2475 *error = NULL;
2476
742f715d
KH
2477 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
2478 {
2479 *error = "Empty menu";
2480 return Qnil;
2481 }
63c414df 2482
78589e07
RS
2483 /* Create a tree of widget_value objects
2484 representing the panes and their items. */
f7fab165 2485 wv = xmalloc_widget_value ();
78589e07
RS
2486 wv->name = "menu";
2487 wv->value = 0;
2488 wv->enabled = 1;
3427a3db 2489 wv->button_type = BUTTON_TYPE_NONE;
27ad7b52 2490 wv->help =Qnil;
78589e07 2491 first_wv = wv;
78c8278d 2492 first_pane = 1;
177c0ea7 2493
78589e07
RS
2494 /* Loop over all panes and items, filling in the tree. */
2495 i = 0;
2496 while (i < menu_items_used)
2497 {
101bb4a5
RS
2498 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
2499 {
2500 submenu_stack[submenu_depth++] = save_wv;
2501 save_wv = prev_wv;
2502 prev_wv = 0;
78c8278d 2503 first_pane = 1;
101bb4a5
RS
2504 i++;
2505 }
2506 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
2507 {
2508 prev_wv = save_wv;
2509 save_wv = submenu_stack[--submenu_depth];
78c8278d 2510 first_pane = 0;
101bb4a5
RS
2511 i++;
2512 }
2513 else if (EQ (XVECTOR (menu_items)->contents[i], Qt)
2514 && submenu_depth != 0)
2515 i += MENU_ITEMS_PANE_LENGTH;
fcaa7665
RS
2516 /* Ignore a nil in the item list.
2517 It's meaningful only for dialog boxes. */
2518 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
2519 i += 1;
101bb4a5 2520 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
78589e07
RS
2521 {
2522 /* Create a new pane. */
2523 Lisp_Object pane_name, prefix;
2524 char *pane_string;
177c0ea7 2525
4c329aa8
GM
2526 pane_name = AREF (menu_items, i + MENU_ITEMS_PANE_NAME);
2527 prefix = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
177c0ea7 2528
703dc2a8 2529#ifndef HAVE_MULTILINGUAL_MENU
4c329aa8
GM
2530 if (STRINGP (pane_name) && STRING_MULTIBYTE (pane_name))
2531 {
cc45fb40 2532 pane_name = ENCODE_SYSTEM (pane_name);
4c329aa8
GM
2533 AREF (menu_items, i + MENU_ITEMS_PANE_NAME) = pane_name;
2534 }
703dc2a8 2535#endif
78589e07 2536 pane_string = (NILP (pane_name)
d5db4077 2537 ? "" : (char *) SDATA (pane_name));
101bb4a5 2538 /* If there is just one top-level pane, put all its items directly
78589e07
RS
2539 under the top-level menu. */
2540 if (menu_items_n_panes == 1)
2541 pane_string = "";
2542
2543 /* If the pane has a meaningful name,
2544 make the pane a top-level menu item
2545 with its items as a submenu beneath it. */
78c8278d 2546 if (!keymaps && strcmp (pane_string, ""))
78589e07 2547 {
f7fab165 2548 wv = xmalloc_widget_value ();
78589e07
RS
2549 if (save_wv)
2550 save_wv->next = wv;
2551 else
2552 first_wv->contents = wv;
2553 wv->name = pane_string;
2554 if (keymaps && !NILP (prefix))
2555 wv->name++;
2556 wv->value = 0;
2557 wv->enabled = 1;
3427a3db 2558 wv->button_type = BUTTON_TYPE_NONE;
27ad7b52 2559 wv->help = Qnil;
78c8278d
RS
2560 save_wv = wv;
2561 prev_wv = 0;
78589e07 2562 }
78c8278d
RS
2563 else if (first_pane)
2564 {
2565 save_wv = wv;
2566 prev_wv = 0;
2567 }
2568 first_pane = 0;
78589e07
RS
2569 i += MENU_ITEMS_PANE_LENGTH;
2570 }
2571 else
2572 {
2573 /* Create a new item within current pane. */
9cd50434 2574 Lisp_Object item_name, enable, descrip, def, type, selected, help;
4c329aa8
GM
2575 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
2576 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
2577 descrip = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
2578 def = AREF (menu_items, i + MENU_ITEMS_ITEM_DEFINITION);
2579 type = AREF (menu_items, i + MENU_ITEMS_ITEM_TYPE);
2580 selected = AREF (menu_items, i + MENU_ITEMS_ITEM_SELECTED);
2581 help = AREF (menu_items, i + MENU_ITEMS_ITEM_HELP);
3427a3db 2582
703dc2a8 2583#ifndef HAVE_MULTILINGUAL_MENU
3427a3db 2584 if (STRINGP (item_name) && STRING_MULTIBYTE (item_name))
4c329aa8 2585 {
646f98ec 2586 item_name = ENCODE_MENU_STRING (item_name);
4c329aa8
GM
2587 AREF (menu_items, i + MENU_ITEMS_ITEM_NAME) = item_name;
2588 }
177c0ea7 2589
3427a3db 2590 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
4c329aa8 2591 {
646f98ec 2592 descrip = ENCODE_MENU_STRING (descrip);
4c329aa8
GM
2593 AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY) = descrip;
2594 }
2595#endif /* not HAVE_MULTILINGUAL_MENU */
177c0ea7 2596
f7fab165 2597 wv = xmalloc_widget_value ();
177c0ea7 2598 if (prev_wv)
78589e07 2599 prev_wv->next = wv;
177c0ea7 2600 else
78589e07 2601 save_wv->contents = wv;
d5db4077 2602 wv->name = (char *) SDATA (item_name);
78589e07 2603 if (!NILP (descrip))
d5db4077 2604 wv->key = (char *) SDATA (descrip);
78589e07 2605 wv->value = 0;
a352a815
RS
2606 /* If this item has a null value,
2607 make the call_data null so that it won't display a box
2608 when the mouse is on it. */
2609 wv->call_data
2610 = (!NILP (def) ? (void *) &XVECTOR (menu_items)->contents[i] : 0);
78589e07 2611 wv->enabled = !NILP (enable);
3427a3db
GM
2612
2613 if (NILP (type))
2614 wv->button_type = BUTTON_TYPE_NONE;
2615 else if (EQ (type, QCtoggle))
2616 wv->button_type = BUTTON_TYPE_TOGGLE;
2617 else if (EQ (type, QCradio))
2618 wv->button_type = BUTTON_TYPE_RADIO;
2619 else
2620 abort ();
2621
2622 wv->selected = !NILP (selected);
cc45fb40 2623
0b1f4572
RS
2624 if (! STRINGP (help))
2625 help = Qnil;
2626
2627 wv->help = help;
cc45fb40 2628
78589e07
RS
2629 prev_wv = wv;
2630
2631 i += MENU_ITEMS_ITEM_LENGTH;
2632 }
2633 }
2634
c98fcf4b 2635 /* Deal with the title, if it is non-nil. */
4dedbfe0
PR
2636 if (!NILP (title))
2637 {
f7fab165
RS
2638 widget_value *wv_title = xmalloc_widget_value ();
2639 widget_value *wv_sep1 = xmalloc_widget_value ();
2640 widget_value *wv_sep2 = xmalloc_widget_value ();
4dedbfe0
PR
2641
2642 wv_sep2->name = "--";
2643 wv_sep2->next = first_wv->contents;
27ad7b52 2644 wv_sep2->help = Qnil;
4dedbfe0
PR
2645
2646 wv_sep1->name = "--";
2647 wv_sep1->next = wv_sep2;
27ad7b52 2648 wv_sep1->help = Qnil;
4dedbfe0 2649
703dc2a8
KH
2650#ifndef HAVE_MULTILINGUAL_MENU
2651 if (STRING_MULTIBYTE (title))
646f98ec 2652 title = ENCODE_MENU_STRING (title);
703dc2a8 2653#endif
177c0ea7 2654
d5db4077 2655 wv_title->name = (char *) SDATA (title);
cc45fb40 2656 wv_title->enabled = TRUE;
3427a3db 2657 wv_title->button_type = BUTTON_TYPE_NONE;
4dedbfe0 2658 wv_title->next = wv_sep1;
27ad7b52 2659 wv_title->help = Qnil;
4dedbfe0
PR
2660 first_wv->contents = wv_title;
2661 }
2662
78589e07
RS
2663 /* No selection has been chosen yet. */
2664 menu_item_selection = 0;
2665
488dd4c4
JD
2666 /* Actually create and show the menu until popped down. */
2667 create_and_show_popup_menu (f, first_wv, x, y, for_click);
18686d47 2668
488dd4c4
JD
2669 /* Free the widget_value objects we used to specify the contents. */
2670 free_menubar_widget_value_tree (first_wv);
18686d47 2671
78589e07
RS
2672 /* Find the selected item, and its pane, to return
2673 the proper value. */
2674 if (menu_item_selection != 0)
2675 {
c63f6952 2676 Lisp_Object prefix, entry;
78589e07 2677
6bbd7a29 2678 prefix = entry = Qnil;
78589e07
RS
2679 i = 0;
2680 while (i < menu_items_used)
2681 {
101bb4a5
RS
2682 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
2683 {
2684 subprefix_stack[submenu_depth++] = prefix;
2685 prefix = entry;
2686 i++;
2687 }
2688 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
2689 {
2690 prefix = subprefix_stack[--submenu_depth];
2691 i++;
2692 }
2693 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
78589e07
RS
2694 {
2695 prefix
2696 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
2697 i += MENU_ITEMS_PANE_LENGTH;
2698 }
d31d42cc
RS
2699 /* Ignore a nil in the item list.
2700 It's meaningful only for dialog boxes. */
2701 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
2702 i += 1;
78589e07
RS
2703 else
2704 {
2705 entry
2706 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
2707 if (menu_item_selection == &XVECTOR (menu_items)->contents[i])
2708 {
2709 if (keymaps != 0)
2710 {
101bb4a5
RS
2711 int j;
2712
78589e07
RS
2713 entry = Fcons (entry, Qnil);
2714 if (!NILP (prefix))
2715 entry = Fcons (prefix, entry);
101bb4a5 2716 for (j = submenu_depth - 1; j >= 0; j--)
e48087b7 2717 if (!NILP (subprefix_stack[j]))
5964e450 2718 entry = Fcons (subprefix_stack[j], entry);
78589e07
RS
2719 }
2720 return entry;
2721 }
2722 i += MENU_ITEMS_ITEM_LENGTH;
2723 }
2724 }
2725 }
2726
2727 return Qnil;
18686d47 2728}
4dedbfe0 2729\f
488dd4c4
JD
2730#ifdef USE_GTK
2731static void
2732dialog_selection_callback (widget, client_data)
2733 GtkWidget *widget;
2734 gpointer client_data;
2735{
2736 /* The EMACS_INT cast avoids a warning. There's no problem
2737 as long as pointers have enough bits to hold small integers. */
2738 if ((int) (EMACS_INT) client_data != -1)
2739 menu_item_selection = (Lisp_Object *) client_data;
2740
2741 popup_activated_flag = 0;
2742}
2743
2744/* Pop up the dialog for frame F defined by FIRST_WV and loop until the
2745 dialog pops down.
2746 menu_item_selection will be set to the selection. */
2747static void
2748create_and_show_dialog (f, first_wv)
2749 FRAME_PTR f;
2750 widget_value *first_wv;
2751{
2752 GtkWidget *menu;
2753
2754 menu = xg_create_widget ("dialog", first_wv->name, f, first_wv,
2755 G_CALLBACK (dialog_selection_callback),
2756 G_CALLBACK (popup_deactivate_callback),
2757 0);
2758
2759 if (menu)
2760 {
2761 /* Display the menu. */
2762 gtk_widget_show_all (menu);
2763
2764 /* Process events that apply to the menu. */
2765 popup_widget_loop ();
177c0ea7 2766
488dd4c4
JD
2767 gtk_widget_destroy (menu);
2768 }
2769}
2770
2771#else /* not USE_GTK */
4dedbfe0
PR
2772static void
2773dialog_selection_callback (widget, id, client_data)
2774 Widget widget;
2775 LWLIB_ID id;
2776 XtPointer client_data;
2777{
01d5e892
RS
2778 /* The EMACS_INT cast avoids a warning. There's no problem
2779 as long as pointers have enough bits to hold small integers. */
2780 if ((int) (EMACS_INT) client_data != -1)
4dedbfe0 2781 menu_item_selection = (Lisp_Object *) client_data;
488dd4c4 2782
4dedbfe0
PR
2783 BLOCK_INPUT;
2784 lw_destroy_all_widgets (id);
2785 UNBLOCK_INPUT;
9572375b 2786 popup_activated_flag = 0;
4dedbfe0 2787}
18686d47 2788
488dd4c4 2789
f02cac82
RS
2790/* ARG is the LWLIB ID of the dialog box, represented
2791 as a Lisp object as (HIGHPART . LOWPART). */
2792
2793Lisp_Object
2794xdialog_show_unwind (arg)
2795 Lisp_Object arg;
2796{
2797 LWLIB_ID id = (XINT (XCAR (arg)) << 4 * sizeof (LWLIB_ID)
2798 | XINT (XCDR (arg)));
2799 BLOCK_INPUT;
2800 lw_destroy_all_widgets (id);
2801 UNBLOCK_INPUT;
2802 popup_activated_flag = 0;
2803 return Qnil;
2804}
2805
488dd4c4
JD
2806
2807/* Pop up the dialog for frame F defined by FIRST_WV and loop until the
2808 dialog pops down.
2809 menu_item_selection will be set to the selection. */
2810static void
2811create_and_show_dialog (f, first_wv)
2812 FRAME_PTR f;
2813 widget_value *first_wv;
2814{
2815 LWLIB_ID dialog_id;
2816
2817 dialog_id = widget_id_tick++;
2818 lw_create_widget (first_wv->name, "dialog", dialog_id, first_wv,
2819 f->output_data.x->widget, 1, 0,
2820 dialog_selection_callback, 0, 0);
2821 lw_modify_all_widgets (dialog_id, first_wv->contents, True);
2822
2823 /* Display the dialog box. */
2824 lw_pop_up_all_widgets (dialog_id);
2825 popup_activated_flag = 1;
2826
2827 /* Process events that apply to the dialog box.
2828 Also handle timers. */
2829 {
2830 int count = SPECPDL_INDEX ();
2831 int fact = 4 * sizeof (LWLIB_ID);
177c0ea7 2832
488dd4c4
JD
2833 /* xdialog_show_unwind is responsible for popping the dialog box down. */
2834 record_unwind_protect (xdialog_show_unwind,
2835 Fcons (make_number (dialog_id >> (fact)),
2836 make_number (dialog_id & ~(-1 << (fact)))));
2837
2838 popup_get_selection ((XEvent *) 0, FRAME_X_DISPLAY_INFO (f), dialog_id, 1);
2839
2840 unbind_to (count, Qnil);
2841 }
2842}
2843
2844#endif /* not USE_GTK */
2845
165e1749
FP
2846static char * button_names [] = {
2847 "button1", "button2", "button3", "button4", "button5",
2848 "button6", "button7", "button8", "button9", "button10" };
2849
2850static Lisp_Object
673a6211 2851xdialog_show (f, keymaps, title, error)
165e1749 2852 FRAME_PTR f;
165e1749
FP
2853 int keymaps;
2854 Lisp_Object title;
2855 char **error;
2856{
2857 int i, nb_buttons=0;
80670155 2858 char dialog_name[6];
165e1749 2859
faa935b6 2860 widget_value *wv, *first_wv = 0, *prev_wv = 0;
165e1749 2861
fcaa7665
RS
2862 /* Number of elements seen so far, before boundary. */
2863 int left_count = 0;
2864 /* 1 means we've seen the boundary between left-hand elts and right-hand. */
2865 int boundary_seen = 0;
2866
165e1749
FP
2867 *error = NULL;
2868
80670155
RS
2869 if (menu_items_n_panes > 1)
2870 {
2871 *error = "Multiple panes in dialog box";
2872 return Qnil;
2873 }
2874
165e1749
FP
2875 /* Create a tree of widget_value objects
2876 representing the text label and buttons. */
2877 {
2878 Lisp_Object pane_name, prefix;
2879 char *pane_string;
2880 pane_name = XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME];
2881 prefix = XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_PREFIX];
2882 pane_string = (NILP (pane_name)
177c0ea7 2883 ? "" : (char *) SDATA (pane_name));
f7fab165 2884 prev_wv = xmalloc_widget_value ();
165e1749
FP
2885 prev_wv->value = pane_string;
2886 if (keymaps && !NILP (prefix))
2887 prev_wv->name++;
2888 prev_wv->enabled = 1;
2889 prev_wv->name = "message";
27ad7b52 2890 prev_wv->help = Qnil;
165e1749 2891 first_wv = prev_wv;
177c0ea7 2892
165e1749
FP
2893 /* Loop over all panes and items, filling in the tree. */
2894 i = MENU_ITEMS_PANE_LENGTH;
2895 while (i < menu_items_used)
2896 {
177c0ea7 2897
165e1749
FP
2898 /* Create a new item within current pane. */
2899 Lisp_Object item_name, enable, descrip;
2900 item_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_NAME];
2901 enable = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_ENABLE];
2902 descrip
2903 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_EQUIV_KEY];
177c0ea7 2904
80670155
RS
2905 if (NILP (item_name))
2906 {
2907 free_menubar_widget_value_tree (first_wv);
2908 *error = "Submenu in dialog items";
2909 return Qnil;
2910 }
fcaa7665
RS
2911 if (EQ (item_name, Qquote))
2912 {
2913 /* This is the boundary between left-side elts
2914 and right-side elts. Stop incrementing right_count. */
2915 boundary_seen = 1;
2916 i++;
2917 continue;
2918 }
86e71abf 2919 if (nb_buttons >= 9)
80670155
RS
2920 {
2921 free_menubar_widget_value_tree (first_wv);
2922 *error = "Too many dialog items";
2923 return Qnil;
2924 }
2925
f7fab165 2926 wv = xmalloc_widget_value ();
165e1749 2927 prev_wv->next = wv;
80670155 2928 wv->name = (char *) button_names[nb_buttons];
165e1749 2929 if (!NILP (descrip))
d5db4077
KR
2930 wv->key = (char *) SDATA (descrip);
2931 wv->value = (char *) SDATA (item_name);
165e1749
FP
2932 wv->call_data = (void *) &XVECTOR (menu_items)->contents[i];
2933 wv->enabled = !NILP (enable);
27ad7b52 2934 wv->help = Qnil;
165e1749
FP
2935 prev_wv = wv;
2936
fcaa7665
RS
2937 if (! boundary_seen)
2938 left_count++;
2939
165e1749
FP
2940 nb_buttons++;
2941 i += MENU_ITEMS_ITEM_LENGTH;
2942 }
2943
fcaa7665
RS
2944 /* If the boundary was not specified,
2945 by default put half on the left and half on the right. */
2946 if (! boundary_seen)
2947 left_count = nb_buttons - nb_buttons / 2;
2948
f7fab165 2949 wv = xmalloc_widget_value ();
80670155 2950 wv->name = dialog_name;
27ad7b52 2951 wv->help = Qnil;
80670155
RS
2952 /* Dialog boxes use a really stupid name encoding
2953 which specifies how many buttons to use
2954 and how many buttons are on the right.
2955 The Q means something also. */
2956 dialog_name[0] = 'Q';
2957 dialog_name[1] = '0' + nb_buttons;
2958 dialog_name[2] = 'B';
2959 dialog_name[3] = 'R';
fcaa7665
RS
2960 /* Number of buttons to put on the right. */
2961 dialog_name[4] = '0' + nb_buttons - left_count;
80670155 2962 dialog_name[5] = 0;
165e1749
FP
2963 wv->contents = first_wv;
2964 first_wv = wv;
165e1749
FP
2965 }
2966
165e1749
FP
2967 /* No selection has been chosen yet. */
2968 menu_item_selection = 0;
2969
488dd4c4
JD
2970 /* Actually create and show the dialog. */
2971 create_and_show_dialog (f, first_wv);
f02cac82 2972
488dd4c4
JD
2973 /* Free the widget_value objects we used to specify the contents. */
2974 free_menubar_widget_value_tree (first_wv);
177c0ea7 2975
488dd4c4
JD
2976 /* Find the selected item, and its pane, to return
2977 the proper value. */
165e1749
FP
2978 if (menu_item_selection != 0)
2979 {
2980 Lisp_Object prefix;
2981
2982 prefix = Qnil;
2983 i = 0;
2984 while (i < menu_items_used)
2985 {
2986 Lisp_Object entry;
2987
2988 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
2989 {
2990 prefix
2991 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
2992 i += MENU_ITEMS_PANE_LENGTH;
2993 }
85996cfb
GM
2994 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
2995 {
2996 /* This is the boundary between left-side elts and
2997 right-side elts. */
2998 ++i;
2999 }
165e1749
FP
3000 else
3001 {
3002 entry
3003 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
3004 if (menu_item_selection == &XVECTOR (menu_items)->contents[i])
3005 {
3006 if (keymaps != 0)
3007 {
3008 entry = Fcons (entry, Qnil);
3009 if (!NILP (prefix))
3010 entry = Fcons (prefix, entry);
3011 }
3012 return entry;
3013 }
3014 i += MENU_ITEMS_ITEM_LENGTH;
3015 }
3016 }
3017 }
3018
3019 return Qnil;
3020}
ba461919 3021
488dd4c4 3022#else /* not USE_X_TOOLKIT && not USE_GTK */
78589e07 3023
3e703b25
GM
3024/* The frame of the last activated non-toolkit menu bar.
3025 Used to generate menu help events. */
3026
3027static struct frame *menu_help_frame;
3028
3029
62145073
GM
3030/* Show help HELP_STRING, or clear help if HELP_STRING is null.
3031
3032 PANE is the pane number, and ITEM is the menu item number in
3033 the menu (currently not used).
177c0ea7 3034
62145073
GM
3035 This cannot be done with generating a HELP_EVENT because
3036 XMenuActivate contains a loop that doesn't let Emacs process
3037 keyboard events. */
3e703b25
GM
3038
3039static void
62145073 3040menu_help_callback (help_string, pane, item)
3e703b25 3041 char *help_string;
62145073 3042 int pane, item;
3e703b25 3043{
62145073
GM
3044 extern Lisp_Object Qmenu_item;
3045 Lisp_Object *first_item;
3046 Lisp_Object pane_name;
3047 Lisp_Object menu_object;
177c0ea7 3048
62145073
GM
3049 first_item = XVECTOR (menu_items)->contents;
3050 if (EQ (first_item[0], Qt))
3051 pane_name = first_item[MENU_ITEMS_PANE_NAME];
3052 else if (EQ (first_item[0], Qquote))
3053 /* This shouldn't happen, see xmenu_show. */
cc45fb40 3054 pane_name = empty_string;
62145073
GM
3055 else
3056 pane_name = first_item[MENU_ITEMS_ITEM_NAME];
177c0ea7 3057
62145073
GM
3058 /* (menu-item MENU-NAME PANE-NUMBER) */
3059 menu_object = Fcons (Qmenu_item,
3060 Fcons (pane_name,
3061 Fcons (make_number (pane), Qnil)));
ba461919 3062 show_help_echo (help_string ? build_string (help_string) : Qnil,
62145073 3063 Qnil, menu_object, make_number (item), 1);
3e703b25 3064}
177c0ea7 3065
3e703b25 3066
78589e07 3067static Lisp_Object
673a6211 3068xmenu_show (f, x, y, for_click, keymaps, title, error)
78589e07
RS
3069 FRAME_PTR f;
3070 int x, y;
9685a93f
RS
3071 int for_click;
3072 int keymaps;
78589e07
RS
3073 Lisp_Object title;
3074 char **error;
dcfdbac7 3075{
177c0ea7 3076 Window root;
78589e07
RS
3077 XMenu *menu;
3078 int pane, selidx, lpane, status;
3079 Lisp_Object entry, pane_prefix;
dcfdbac7
JB
3080 char *datap;
3081 int ulx, uly, width, height;
3082 int dispwidth, dispheight;
4e8d3549
RS
3083 int i, j;
3084 int maxwidth;
78589e07
RS
3085 int dummy_int;
3086 unsigned int dummy_uint;
088831f6 3087
07a675b7 3088 *error = 0;
78589e07
RS
3089 if (menu_items_n_panes == 0)
3090 return Qnil;
088831f6 3091
742f715d
KH
3092 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
3093 {
3094 *error = "Empty menu";
3095 return Qnil;
3096 }
3097
78589e07 3098 /* Figure out which root window F is on. */
92280f67 3099 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &root,
78589e07
RS
3100 &dummy_int, &dummy_int, &dummy_uint, &dummy_uint,
3101 &dummy_uint, &dummy_uint);
18686d47 3102
78589e07 3103 /* Make the menu on that window. */
92280f67 3104 menu = XMenuCreate (FRAME_X_DISPLAY (f), root, "emacs");
78589e07 3105 if (menu == NULL)
dcfdbac7
JB
3106 {
3107 *error = "Can't create menu";
78589e07 3108 return Qnil;
dcfdbac7 3109 }
78589e07 3110
87485d6f 3111#ifdef HAVE_X_WINDOWS
78589e07 3112 /* Adjust coordinates to relative to the outer (window manager) window. */
78589e07
RS
3113 {
3114 Window child;
3115 int win_x = 0, win_y = 0;
3116
3117 /* Find the position of the outside upper-left corner of
3118 the inner window, with respect to the outer window. */
7556890b 3119 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
78589e07
RS
3120 {
3121 BLOCK_INPUT;
92280f67 3122 XTranslateCoordinates (FRAME_X_DISPLAY (f),
78589e07
RS
3123
3124 /* From-window, to-window. */
7556890b
RS
3125 f->output_data.x->window_desc,
3126 f->output_data.x->parent_desc,
78589e07
RS
3127
3128 /* From-position, to-position. */
3129 0, 0, &win_x, &win_y,
3130
3131 /* Child of window. */
3132 &child);
3133 UNBLOCK_INPUT;
3134 x += win_x;
3135 y += win_y;
3136 }
3137 }
87485d6f 3138#endif /* HAVE_X_WINDOWS */
78589e07
RS
3139
3140 /* Adjust coordinates to be root-window-relative. */
9882535b
KS
3141 x += f->left_pos;
3142 y += f->top_pos;
177c0ea7 3143
78589e07
RS
3144 /* Create all the necessary panes and their items. */
3145 i = 0;
3146 while (i < menu_items_used)
dcfdbac7 3147 {
78589e07 3148 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
dcfdbac7 3149 {
78589e07
RS
3150 /* Create a new pane. */
3151 Lisp_Object pane_name, prefix;
3152 char *pane_string;
3153
3154 pane_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_NAME];
3155 prefix = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
3156 pane_string = (NILP (pane_name)
d5db4077 3157 ? "" : (char *) SDATA (pane_name));
78589e07
RS
3158 if (keymaps && !NILP (prefix))
3159 pane_string++;
3160
92280f67 3161 lpane = XMenuAddPane (FRAME_X_DISPLAY (f), menu, pane_string, TRUE);
78589e07
RS
3162 if (lpane == XM_FAILURE)
3163 {
92280f67 3164 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
78589e07
RS
3165 *error = "Can't create pane";
3166 return Qnil;
3167 }
3168 i += MENU_ITEMS_PANE_LENGTH;
4e8d3549
RS
3169
3170 /* Find the width of the widest item in this pane. */
3171 maxwidth = 0;
3172 j = i;
3173 while (j < menu_items_used)
3174 {
3175 Lisp_Object item;
3176 item = XVECTOR (menu_items)->contents[j];
3177 if (EQ (item, Qt))
3178 break;
3179 if (NILP (item))
3180 {
3181 j++;
3182 continue;
3183 }
d5db4077 3184 width = SBYTES (item);
4e8d3549
RS
3185 if (width > maxwidth)
3186 maxwidth = width;
3187
3188 j += MENU_ITEMS_ITEM_LENGTH;
3189 }
dcfdbac7 3190 }
fcaa7665
RS
3191 /* Ignore a nil in the item list.
3192 It's meaningful only for dialog boxes. */
3193 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
3194 i += 1;
78589e07 3195 else
dcfdbac7 3196 {
78589e07 3197 /* Create a new item within current pane. */
3e703b25 3198 Lisp_Object item_name, enable, descrip, help;
4e8d3549 3199 unsigned char *item_data;
3e703b25 3200 char *help_string;
78589e07
RS
3201
3202 item_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_NAME];
3203 enable = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_ENABLE];
3204 descrip
3205 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_EQUIV_KEY];
3e703b25 3206 help = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_HELP];
d5db4077 3207 help_string = STRINGP (help) ? SDATA (help) : NULL;
177c0ea7 3208
78589e07 3209 if (!NILP (descrip))
4e8d3549 3210 {
d5db4077 3211 int gap = maxwidth - SBYTES (item_name);
4e8d3549
RS
3212#ifdef C_ALLOCA
3213 Lisp_Object spacer;
3214 spacer = Fmake_string (make_number (gap), make_number (' '));
3215 item_name = concat2 (item_name, spacer);
3216 item_name = concat2 (item_name, descrip);
d5db4077 3217 item_data = SDATA (item_name);
4e8d3549
RS
3218#else
3219 /* if alloca is fast, use that to make the space,
3220 to reduce gc needs. */
3221 item_data
3222 = (unsigned char *) alloca (maxwidth
d5db4077
KR
3223 + SBYTES (descrip) + 1);
3224 bcopy (SDATA (item_name), item_data,
3225 SBYTES (item_name));
3226 for (j = SCHARS (item_name); j < maxwidth; j++)
4e8d3549 3227 item_data[j] = ' ';
d5db4077
KR
3228 bcopy (SDATA (descrip), item_data + j,
3229 SBYTES (descrip));
3230 item_data[j + SBYTES (descrip)] = 0;
4e8d3549
RS
3231#endif
3232 }
3233 else
d5db4077 3234 item_data = SDATA (item_name);
78589e07 3235
92280f67
RS
3236 if (XMenuAddSelection (FRAME_X_DISPLAY (f),
3237 menu, lpane, 0, item_data,
3e703b25 3238 !NILP (enable), help_string)
dcfdbac7
JB
3239 == XM_FAILURE)
3240 {
92280f67 3241 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
dcfdbac7 3242 *error = "Can't add selection to menu";
78589e07 3243 return Qnil;
dcfdbac7 3244 }
78589e07 3245 i += MENU_ITEMS_ITEM_LENGTH;
dcfdbac7
JB
3246 }
3247 }
4e8d3549 3248
78589e07 3249 /* All set and ready to fly. */
92280f67 3250 XMenuRecompute (FRAME_X_DISPLAY (f), menu);
63685b9d
GM
3251 dispwidth = DisplayWidth (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f));
3252 dispheight = DisplayHeight (FRAME_X_DISPLAY (f), FRAME_X_SCREEN_NUMBER (f));
78589e07
RS
3253 x = min (x, dispwidth);
3254 y = min (y, dispheight);
3255 x = max (x, 1);
3256 y = max (y, 1);
92280f67 3257 XMenuLocate (FRAME_X_DISPLAY (f), menu, 0, 0, x, y,
dcfdbac7
JB
3258 &ulx, &uly, &width, &height);
3259 if (ulx+width > dispwidth)
3260 {
78589e07 3261 x -= (ulx + width) - dispwidth;
dcfdbac7
JB
3262 ulx = dispwidth - width;
3263 }
3264 if (uly+height > dispheight)
3265 {
78589e07 3266 y -= (uly + height) - dispheight;
dcfdbac7
JB
3267 uly = dispheight - height;
3268 }
78589e07
RS
3269 if (ulx < 0) x -= ulx;
3270 if (uly < 0) y -= uly;
121e4555
KH
3271
3272 XMenuSetAEQ (menu, TRUE);
78589e07
RS
3273 XMenuSetFreeze (menu, TRUE);
3274 pane = selidx = 0;
3e703b25
GM
3275
3276 /* Help display under X won't work because XMenuActivate contains
3277 a loop that doesn't give Emacs a chance to process it. */
3278 menu_help_frame = f;
92280f67 3279 status = XMenuActivate (FRAME_X_DISPLAY (f), menu, &pane, &selidx,
3e703b25
GM
3280 x, y, ButtonReleaseMask, &datap,
3281 menu_help_callback);
a352a815
RS
3282
3283
f1df80a8 3284#ifdef HAVE_X_WINDOWS
a352a815
RS
3285 /* Assume the mouse has moved out of the X window.
3286 If it has actually moved in, we will get an EnterNotify. */
29e460bd 3287 x_mouse_leave (FRAME_X_DISPLAY_INFO (f));
f1df80a8 3288#endif
a352a815 3289
dcfdbac7
JB
3290 switch (status)
3291 {
3292 case XM_SUCCESS:
3293#ifdef XDEBUG
3294 fprintf (stderr, "pane= %d line = %d\n", panes, selidx);
3295#endif
fa6d54d9 3296
78589e07
RS
3297 /* Find the item number SELIDX in pane number PANE. */
3298 i = 0;
3299 while (i < menu_items_used)
fa6d54d9 3300 {
78589e07 3301 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
088831f6 3302 {
78589e07
RS
3303 if (pane == 0)
3304 pane_prefix
3305 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
3306 pane--;
3307 i += MENU_ITEMS_PANE_LENGTH;
088831f6 3308 }
78589e07 3309 else
ab6ee1a0 3310 {
78589e07 3311 if (pane == -1)
ab6ee1a0 3312 {
78589e07 3313 if (selidx == 0)
ab6ee1a0 3314 {
78589e07
RS
3315 entry
3316 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
3317 if (keymaps != 0)
ab6ee1a0 3318 {
78589e07
RS
3319 entry = Fcons (entry, Qnil);
3320 if (!NILP (pane_prefix))
3321 entry = Fcons (pane_prefix, entry);
ab6ee1a0 3322 }
78589e07 3323 break;
ab6ee1a0 3324 }
78589e07 3325 selidx--;
ab6ee1a0 3326 }
78589e07 3327 i += MENU_ITEMS_ITEM_LENGTH;
ab6ee1a0
RS
3328 }
3329 }
78589e07 3330 break;
dcfdbac7 3331
78589e07 3332 case XM_FAILURE:
78589e07
RS
3333 *error = "Can't activate menu";
3334 case XM_IA_SELECT:
3335 case XM_NO_SELECT:
3336 entry = Qnil;
3337 break;
dcfdbac7 3338 }
92280f67 3339 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
a5285df3 3340
87485d6f 3341#ifdef HAVE_X_WINDOWS
a5285df3
RS
3342 /* State that no mouse buttons are now held.
3343 (The oldXMenu code doesn't track this info for us.)
3344 That is not necessarily true, but the fiction leads to reasonable
3345 results, and it is a pain to ask which are actually held now. */
e9a79fb2 3346 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
87485d6f 3347#endif
a5285df3 3348
78589e07 3349 return entry;
dcfdbac7 3350}
4dedbfe0 3351
78589e07 3352#endif /* not USE_X_TOOLKIT */
1e659e4c
RS
3353
3354#endif /* HAVE_MENUS */
088831f6 3355\f
dfcf069d 3356void
78589e07 3357syms_of_xmenu ()
dcfdbac7 3358{
78589e07
RS
3359 staticpro (&menu_items);
3360 menu_items = Qnil;
86fad4ec 3361 menu_items_inuse = Qnil;
dcfdbac7 3362
0314aacb
RS
3363 Qdebug_on_next_call = intern ("debug-on-next-call");
3364 staticpro (&Qdebug_on_next_call);
3365
7ee72033
MB
3366 DEFVAR_LISP ("menu-updating-frame", &Vmenu_updating_frame,
3367 doc: /* Frame for which we are updating a menu.
228299fa 3368The enable predicate for a menu command should check this variable. */);
bfc524bc
RS
3369 Vmenu_updating_frame = Qnil;
3370
8ed87156 3371#ifdef USE_X_TOOLKIT
177c0ea7 3372 widget_id_tick = (1<<16);
88766961 3373 next_menubar_widget_id = 1;
8ed87156
RS
3374#endif
3375
78589e07 3376 defsubr (&Sx_popup_menu);
1e659e4c 3377#ifdef HAVE_MENUS
165e1749 3378 defsubr (&Sx_popup_dialog);
1e659e4c 3379#endif
dcfdbac7 3380}
ab5796a9
MB
3381
3382/* arch-tag: 92ea573c-398e-496e-ac73-2436f7d63242
3383 (do not change this comment) */