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