(menubar_selection_callback, dialog_selection_callback)
[bpt/emacs.git] / src / xmenu.c
CommitLineData
dcfdbac7 1/* X Communication module for terminals which understand the X protocol.
b5b4d636 2 Copyright (C) 1986, 1988, 1993, 1994 Free Software Foundation, Inc.
dcfdbac7
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
774910eb 8the Free Software Foundation; either version 2, or (at your option)
dcfdbac7
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20/* X pop-up deck-of-cards menu facility for gnuemacs.
21 *
22 * Written by Jon Arnold and Roman Budzianowski
23 * Mods and rewrite by Robert Krawitz
24 *
25 */
26
18686d47
RS
27/* Modified by Fred Pierresteguy on December 93
28 to make the popup menus and menubar use the Xt. */
29
78589e07
RS
30/* Rewritten for clarity and GC protection by rms in Feb 94. */
31
dcfdbac7
JB
32/* On 4.3 this loses if it comes after xterm.h. */
33#include <signal.h>
18160b98 34#include <config.h>
565620a5
RS
35
36#include <stdio.h>
dcfdbac7 37#include "lisp.h"
18686d47 38#include "termhooks.h"
7708e9bd 39#include "frame.h"
dcfdbac7 40#include "window.h"
031b0e31 41#include "keyboard.h"
9ac0d9e0 42#include "blockinput.h"
62010a73 43#include "puresize.h"
dcfdbac7 44
eeee3112
RS
45#ifdef MSDOS
46#include "msdos.h"
47#endif
48
87485d6f 49#ifdef HAVE_X_WINDOWS
dcfdbac7
JB
50/* This may include sys/types.h, and that somehow loses
51 if this is not done before the other system files. */
52#include "xterm.h"
87485d6f 53#endif
dcfdbac7
JB
54
55/* Load sys/types.h if not already loaded.
56 In some systems loading it twice is suicidal. */
57#ifndef makedev
58#include <sys/types.h>
59#endif
60
61#include "dispextern.h"
62
87485d6f 63#ifdef HAVE_X_WINDOWS
18686d47
RS
64#ifdef USE_X_TOOLKIT
65#include <X11/Xlib.h>
66#include <X11/IntrinsicP.h>
67#include <X11/CoreP.h>
68#include <X11/StringDefs.h>
60f312e2 69#include <X11/Shell.h>
18686d47 70#include "../lwlib/lwlib.h"
a352a815
RS
71#else /* not USE_X_TOOLKIT */
72#include "../oldXMenu/XMenu.h"
73#endif /* not USE_X_TOOLKIT */
74#endif /* HAVE_X_WINDOWS */
18686d47 75
dcfdbac7
JB
76#define min(x,y) (((x) < (y)) ? (x) : (y))
77#define max(x,y) (((x) > (y)) ? (x) : (y))
78
dcfdbac7
JB
79#ifndef TRUE
80#define TRUE 1
81#define FALSE 0
78589e07 82#endif /* no TRUE */
dcfdbac7 83
6904bdcd 84extern Lisp_Object Qmenu_enable;
18686d47 85extern Lisp_Object Qmenu_bar;
92280f67 86extern Lisp_Object Qmouse_click, Qevent_kind;
78589e07 87
18686d47 88#ifdef USE_X_TOOLKIT
78589e07
RS
89extern void process_expose_from_menu ();
90extern XtAppContext Xt_app_con;
91
165e1749 92static Lisp_Object xdialog_show ();
4dedbfe0 93void popup_get_selection ();
18686d47
RS
94#endif
95
78589e07
RS
96static Lisp_Object xmenu_show ();
97static void keymap_panes ();
98static void single_keymap_panes ();
99static void list_of_panes ();
100static void list_of_items ();
101\f
102/* This holds a Lisp vector that holds the results of decoding
103 the keymaps or alist-of-alists that specify a menu.
dcfdbac7 104
78589e07 105 It describes the panes and items within the panes.
dcfdbac7 106
78589e07
RS
107 Each pane is described by 3 elements in the vector:
108 t, the pane name, the pane's prefix key.
a352a815 109 Then follow the pane's items, with 5 elements per item:
78589e07 110 the item string, the enable flag, the item's value,
a352a815 111 the definition, and the equivalent keyboard key's description string.
dcfdbac7 112
101bb4a5
RS
113 In some cases, multiple levels of menus may be described.
114 A single vector slot containing nil indicates the start of a submenu.
115 A single vector slot containing lambda indicates the end of a submenu.
116 The submenu follows a menu item which is the way to reach the submenu.
117
fcaa7665
RS
118 A single vector slot containing quote indicates that the
119 following items should appear on the right of a dialog box.
120
78589e07
RS
121 Using a Lisp vector to hold this information while we decode it
122 takes care of protecting all the data from GC. */
dcfdbac7 123
78589e07
RS
124#define MENU_ITEMS_PANE_NAME 1
125#define MENU_ITEMS_PANE_PREFIX 2
126#define MENU_ITEMS_PANE_LENGTH 3
088831f6 127
78589e07
RS
128#define MENU_ITEMS_ITEM_NAME 0
129#define MENU_ITEMS_ITEM_ENABLE 1
130#define MENU_ITEMS_ITEM_VALUE 2
131#define MENU_ITEMS_ITEM_EQUIV_KEY 3
a352a815
RS
132#define MENU_ITEMS_ITEM_DEFINITION 4
133#define MENU_ITEMS_ITEM_LENGTH 5
7da99777 134
78589e07 135static Lisp_Object menu_items;
18686d47 136
78589e07
RS
137/* Number of slots currently allocated in menu_items. */
138static int menu_items_allocated;
18686d47 139
78589e07
RS
140/* This is the index in menu_items of the first empty slot. */
141static int menu_items_used;
18686d47 142
101bb4a5
RS
143/* The number of panes currently recorded in menu_items,
144 excluding those within submenus. */
78589e07 145static int menu_items_n_panes;
18686d47 146
101bb4a5
RS
147/* Current depth within submenus. */
148static int menu_items_submenu_depth;
149
4dedbfe0 150/* Flag which when set indicates a dialog or menu has been posted by
c98fcf4b 151 Xt on behalf of one of the widget sets. */
4dedbfe0
PR
152static int popup_activated_flag;
153
bd3a4da2
RS
154/* This holds a Lisp vector
155 which contains frames that have menu bars.
156 Each frame that has a menu bar is found at some index in this vector
157 and the menu bar widget refers to the frame through that index. */
158static Lisp_Object frame_vector;
159\f
160/* Return the index of FRAME in frame_vector.
161 If FRAME isn't in frame_vector yet, put it in,
162 lengthening the vector if necessary. */
163
164static int
165frame_vector_add_frame (f)
166 FRAME_PTR *f;
167{
168 int length = XVECTOR (frame_vector)->size;
169 int i, empty = -1;
170 Lisp_Object new, frame;
171
172 XSETFRAME (frame, f);
173
174 for (i = 0; i < length; i++)
175 {
176 if (EQ (frame, XVECTOR (frame_vector)->contents[i]))
177 return i;
178 if (NILP (XVECTOR (frame_vector)->contents[i]))
179 empty = i;
180 }
181
182 if (empty >= 0)
183 {
184 XVECTOR (frame_vector)->contents[empty] = frame;
185 return empty;
186 }
187
188 new = Fmake_vector (make_number (length * 2), Qnil);
189 bcopy (XVECTOR (frame_vector)->contents,
190 XVECTOR (new)->contents, sizeof (Lisp_Object) * length);
191
192 XVECTOR (frame_vector)->contents[length] = frame;
193 return length;
194}
4dedbfe0 195\f
78589e07
RS
196/* Initialize the menu_items structure if we haven't already done so.
197 Also mark it as currently empty. */
198
199static void
200init_menu_items ()
201{
202 if (NILP (menu_items))
203 {
204 menu_items_allocated = 60;
205 menu_items = Fmake_vector (make_number (menu_items_allocated), Qnil);
18686d47
RS
206 }
207
78589e07
RS
208 menu_items_used = 0;
209 menu_items_n_panes = 0;
101bb4a5 210 menu_items_submenu_depth = 0;
78589e07 211}
18686d47 212
78589e07
RS
213/* Call at the end of generating the data in menu_items.
214 This fills in the number of items in the last pane. */
1658603c 215
78589e07
RS
216static void
217finish_menu_items ()
218{
219}
1658603c 220
78589e07
RS
221/* Call when finished using the data for the current menu
222 in menu_items. */
1658603c 223
78589e07
RS
224static void
225discard_menu_items ()
226{
227 /* Free the structure if it is especially large.
228 Otherwise, hold on to it, to save time. */
229 if (menu_items_allocated > 200)
230 {
231 menu_items = Qnil;
232 menu_items_allocated = 0;
233 }
234}
1658603c 235
101bb4a5
RS
236/* Make the menu_items vector twice as large. */
237
238static void
239grow_menu_items ()
240{
241 Lisp_Object old;
242 int old_size = menu_items_allocated;
243 old = menu_items;
244
245 menu_items_allocated *= 2;
246 menu_items = Fmake_vector (make_number (menu_items_allocated), Qnil);
247 bcopy (XVECTOR (old)->contents, XVECTOR (menu_items)->contents,
248 old_size * sizeof (Lisp_Object));
249}
250
251/* Begin a submenu. */
252
253static void
254push_submenu_start ()
255{
256 if (menu_items_used + 1 > menu_items_allocated)
257 grow_menu_items ();
258
259 XVECTOR (menu_items)->contents[menu_items_used++] = Qnil;
260 menu_items_submenu_depth++;
261}
262
263/* End a submenu. */
264
265static void
266push_submenu_end ()
267{
268 if (menu_items_used + 1 > menu_items_allocated)
269 grow_menu_items ();
270
271 XVECTOR (menu_items)->contents[menu_items_used++] = Qlambda;
272 menu_items_submenu_depth--;
273}
274
fcaa7665
RS
275/* Indicate boundary between left and right. */
276
277static void
278push_left_right_boundary ()
279{
280 if (menu_items_used + 1 > menu_items_allocated)
281 grow_menu_items ();
282
283 XVECTOR (menu_items)->contents[menu_items_used++] = Qquote;
284}
285
78589e07
RS
286/* Start a new menu pane in menu_items..
287 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */
1658603c 288
78589e07
RS
289static void
290push_menu_pane (name, prefix_vec)
291 Lisp_Object name, prefix_vec;
292{
293 if (menu_items_used + MENU_ITEMS_PANE_LENGTH > menu_items_allocated)
101bb4a5 294 grow_menu_items ();
dcfdbac7 295
101bb4a5
RS
296 if (menu_items_submenu_depth == 0)
297 menu_items_n_panes++;
78589e07
RS
298 XVECTOR (menu_items)->contents[menu_items_used++] = Qt;
299 XVECTOR (menu_items)->contents[menu_items_used++] = name;
300 XVECTOR (menu_items)->contents[menu_items_used++] = prefix_vec;
301}
dcfdbac7 302
78589e07
RS
303/* Push one menu item into the current pane.
304 NAME is the string to display. ENABLE if non-nil means
305 this item can be selected. KEY is the key generated by
a352a815
RS
306 choosing this item, or nil if this item doesn't really have a definition.
307 DEF is the definition of this item.
308 EQUIV is the textual description of the keyboard equivalent for
309 this item (or nil if none). */
18686d47 310
78589e07 311static void
a352a815
RS
312push_menu_item (name, enable, key, def, equiv)
313 Lisp_Object name, enable, key, def, equiv;
78589e07
RS
314{
315 if (menu_items_used + MENU_ITEMS_ITEM_LENGTH > menu_items_allocated)
101bb4a5 316 grow_menu_items ();
088831f6 317
78589e07
RS
318 XVECTOR (menu_items)->contents[menu_items_used++] = name;
319 XVECTOR (menu_items)->contents[menu_items_used++] = enable;
320 XVECTOR (menu_items)->contents[menu_items_used++] = key;
321 XVECTOR (menu_items)->contents[menu_items_used++] = equiv;
a352a815 322 XVECTOR (menu_items)->contents[menu_items_used++] = def;
78589e07
RS
323}
324\f
325/* Figure out the current keyboard equivalent of a menu item ITEM1.
326 The item string for menu display should be ITEM_STRING.
327 Store the equivalent keyboard key sequence's
328 textual description into *DESCRIP_PTR.
329 Also cache them in the item itself.
330 Return the real definition to execute. */
088831f6 331
78589e07
RS
332static Lisp_Object
333menu_item_equiv_key (item_string, item1, descrip_ptr)
334 Lisp_Object item_string;
335 Lisp_Object item1;
336 Lisp_Object *descrip_ptr;
337{
338 /* This is the real definition--the function to run. */
339 Lisp_Object def;
340 /* This is the sublist that records cached equiv key data
341 so we can save time. */
342 Lisp_Object cachelist;
343 /* These are the saved equivalent keyboard key sequence
344 and its key-description. */
345 Lisp_Object savedkey, descrip;
346 Lisp_Object def1;
347 int changed = 0;
8c512fcb 348 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
088831f6 349
78589e07
RS
350 /* If a help string follows the item string, skip it. */
351 if (CONSP (XCONS (item1)->cdr)
352 && STRINGP (XCONS (XCONS (item1)->cdr)->car))
353 item1 = XCONS (item1)->cdr;
088831f6 354
78589e07 355 def = Fcdr (item1);
088831f6 356
78589e07
RS
357 /* Get out the saved equivalent-keyboard-key info. */
358 cachelist = savedkey = descrip = Qnil;
359 if (CONSP (def) && CONSP (XCONS (def)->car)
360 && (NILP (XCONS (XCONS (def)->car)->car)
361 || VECTORP (XCONS (XCONS (def)->car)->car)))
088831f6 362 {
78589e07
RS
363 cachelist = XCONS (def)->car;
364 def = XCONS (def)->cdr;
365 savedkey = XCONS (cachelist)->car;
366 descrip = XCONS (cachelist)->cdr;
088831f6 367 }
78589e07 368
8c512fcb
RS
369 GCPRO4 (def, def1, savedkey, descrip);
370
78589e07
RS
371 /* Is it still valid? */
372 def1 = Qnil;
373 if (!NILP (savedkey))
374 def1 = Fkey_binding (savedkey, Qnil);
375 /* If not, update it. */
376 if (! EQ (def1, def)
cc1032b3
RS
377 /* If the command is an alias for another
378 (such as easymenu.el and lmenu.el set it up),
c98fcf4b 379 check if the original command matches the cached command. */
cc1032b3
RS
380 && !(SYMBOLP (def) && SYMBOLP (XSYMBOL (def)->function)
381 && EQ (def1, XSYMBOL (def)->function))
78589e07
RS
382 /* If something had no key binding before, don't recheck it--
383 doing that takes too much time and makes menus too slow. */
384 && !(!NILP (cachelist) && NILP (savedkey)))
088831f6 385 {
78589e07
RS
386 changed = 1;
387 descrip = Qnil;
10bba266
RS
388 /* If the command is an alias for another
389 (such as easymenu.el and lmenu.el set it up),
390 see if the original command name has equivalent keys. */
391 if (SYMBOLP (def) && SYMBOLP (XSYMBOL (def)->function))
392 savedkey = Fwhere_is_internal (XSYMBOL (def)->function,
393 Qnil, Qt, Qnil);
86e00a8a
RS
394 else
395 /* Otherwise look up the specified command itself.
396 We don't try both, because that makes easymenu menus slow. */
397 savedkey = Fwhere_is_internal (def, Qnil, Qt, Qnil);
398
78589e07
RS
399 if (!NILP (savedkey))
400 {
401 descrip = Fkey_description (savedkey);
402 descrip = concat2 (make_string (" (", 3), descrip);
403 descrip = concat2 (descrip, make_string (")", 1));
404 }
dcfdbac7 405 }
18686d47 406
78589e07
RS
407 /* Cache the data we just got in a sublist of the menu binding. */
408 if (NILP (cachelist))
62010a73
RS
409 {
410 CHECK_IMPURE (item1);
411 XCONS (item1)->cdr = Fcons (Fcons (savedkey, descrip), def);
412 }
78589e07 413 else if (changed)
dcfdbac7 414 {
78589e07
RS
415 XCONS (cachelist)->car = savedkey;
416 XCONS (cachelist)->cdr = descrip;
dcfdbac7 417 }
18686d47 418
8c512fcb 419 UNGCPRO;
78589e07
RS
420 *descrip_ptr = descrip;
421 return def;
18686d47
RS
422}
423
78589e07
RS
424/* This is used as the handler when calling internal_condition_case_1. */
425
426static Lisp_Object
427menu_item_enabled_p_1 (arg)
428 Lisp_Object arg;
18686d47 429{
78589e07 430 return Qnil;
dcfdbac7
JB
431}
432
78589e07 433/* Return non-nil if the command DEF is enabled when used as a menu item.
101bb4a5
RS
434 This is based on looking for a menu-enable property.
435 If NOTREAL is set, don't bother really computing this. */
78589e07
RS
436
437static Lisp_Object
101bb4a5 438menu_item_enabled_p (def, notreal)
78589e07 439 Lisp_Object def;
0f5e911d 440 int notreal;
18686d47 441{
78589e07 442 Lisp_Object enabled, tem;
18686d47 443
78589e07 444 enabled = Qt;
101bb4a5
RS
445 if (notreal)
446 return enabled;
b5bb2705 447 if (SYMBOLP (def))
78589e07
RS
448 {
449 /* No property, or nil, means enable.
450 Otherwise, enable if value is not nil. */
451 tem = Fget (def, Qmenu_enable);
452 if (!NILP (tem))
453 /* (condition-case nil (eval tem)
454 (error nil)) */
455 enabled = internal_condition_case_1 (Feval, tem, Qerror,
456 menu_item_enabled_p_1);
457 }
458 return enabled;
459}
460\f
461/* Look through KEYMAPS, a vector of keymaps that is NMAPS long,
101bb4a5
RS
462 and generate menu panes for them in menu_items.
463 If NOTREAL is nonzero,
464 don't bother really computing whether an item is enabled. */
18686d47 465
78589e07 466static void
101bb4a5 467keymap_panes (keymaps, nmaps, notreal)
78589e07
RS
468 Lisp_Object *keymaps;
469 int nmaps;
101bb4a5 470 int notreal;
18686d47 471{
78589e07 472 int mapno;
18686d47 473
78589e07 474 init_menu_items ();
18686d47 475
78589e07
RS
476 /* Loop over the given keymaps, making a pane for each map.
477 But don't make a pane that is empty--ignore that map instead.
478 P is the number of panes we have made so far. */
479 for (mapno = 0; mapno < nmaps; mapno++)
101bb4a5 480 single_keymap_panes (keymaps[mapno], Qnil, Qnil, notreal);
78589e07
RS
481
482 finish_menu_items ();
483}
484
485/* This is a recursive subroutine of keymap_panes.
486 It handles one keymap, KEYMAP.
487 The other arguments are passed along
101bb4a5
RS
488 or point to local variables of the previous function.
489 If NOTREAL is nonzero,
490 don't bother really computing whether an item is enabled. */
78589e07
RS
491
492static void
101bb4a5 493single_keymap_panes (keymap, pane_name, prefix, notreal)
78589e07
RS
494 Lisp_Object keymap;
495 Lisp_Object pane_name;
496 Lisp_Object prefix;
101bb4a5 497 int notreal;
78589e07
RS
498{
499 Lisp_Object pending_maps;
500 Lisp_Object tail, item, item1, item_string, table;
501 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
502
503 pending_maps = Qnil;
504
505 push_menu_pane (pane_name, prefix);
506
b5bb2705 507 for (tail = keymap; CONSP (tail); tail = XCONS (tail)->cdr)
18686d47 508 {
78589e07
RS
509 /* Look at each key binding, and if it has a menu string,
510 make a menu item from it. */
511 item = XCONS (tail)->car;
b5bb2705 512 if (CONSP (item))
18686d47 513 {
78589e07 514 item1 = XCONS (item)->cdr;
b5bb2705 515 if (CONSP (item1))
78589e07
RS
516 {
517 item_string = XCONS (item1)->car;
b5bb2705 518 if (STRINGP (item_string))
78589e07
RS
519 {
520 /* This is the real definition--the function to run. */
521 Lisp_Object def;
522 /* These are the saved equivalent keyboard key sequence
523 and its key-description. */
524 Lisp_Object descrip;
525 Lisp_Object tem, enabled;
526
8c512fcb
RS
527 /* GCPRO because ...enabled_p will call eval
528 and ..._equiv_key may autoload something.
78589e07
RS
529 Protecting KEYMAP preserves everything we use;
530 aside from that, must protect whatever might be
531 a string. Since there's no GCPRO5, we refetch
532 item_string instead of protecting it. */
8c512fcb 533 descrip = def = Qnil;
78589e07 534 GCPRO4 (keymap, pending_maps, def, descrip);
8c512fcb
RS
535
536 def = menu_item_equiv_key (item_string, item1, &descrip);
101bb4a5
RS
537 enabled = menu_item_enabled_p (def, notreal);
538
78589e07
RS
539 UNGCPRO;
540
541 item_string = XCONS (item1)->car;
542
543 tem = Fkeymapp (def);
544 if (XSTRING (item_string)->data[0] == '@' && !NILP (tem))
545 pending_maps = Fcons (Fcons (def, Fcons (item_string, XCONS (item)->car)),
546 pending_maps);
547 else
101bb4a5
RS
548 {
549 Lisp_Object submap;
bc28c440 550 GCPRO4 (keymap, pending_maps, descrip, item_string);
101bb4a5 551 submap = get_keymap_1 (def, 0, 1);
bc28c440 552 UNGCPRO;
101bb4a5
RS
553#ifndef USE_X_TOOLKIT
554 /* Indicate visually that this is a submenu. */
555 if (!NILP (submap))
556 item_string = concat2 (item_string,
557 build_string (" >"));
558#endif
a352a815
RS
559 /* If definition is nil, pass nil as the key. */
560 push_menu_item (item_string, enabled,
561 XCONS (item)->car, def,
101bb4a5
RS
562 descrip);
563#ifdef USE_X_TOOLKIT
564 /* Display a submenu using the toolkit. */
565 if (! NILP (submap))
566 {
567 push_submenu_start ();
568 single_keymap_panes (submap, Qnil,
569 XCONS (item)->car, notreal);
570 push_submenu_end ();
571 }
572#endif
573 }
78589e07
RS
574 }
575 }
576 }
b5bb2705 577 else if (VECTORP (item))
78589e07
RS
578 {
579 /* Loop over the char values represented in the vector. */
580 int len = XVECTOR (item)->size;
581 int c;
582 for (c = 0; c < len; c++)
583 {
584 Lisp_Object character;
33b43fa6 585 XSETFASTINT (character, c);
78589e07 586 item1 = XVECTOR (item)->contents[c];
b5bb2705 587 if (CONSP (item1))
78589e07
RS
588 {
589 item_string = XCONS (item1)->car;
b5bb2705 590 if (STRINGP (item_string))
78589e07
RS
591 {
592 Lisp_Object def;
593
594 /* These are the saved equivalent keyboard key sequence
595 and its key-description. */
596 Lisp_Object descrip;
597 Lisp_Object tem, enabled;
598
8c512fcb
RS
599 /* GCPRO because ...enabled_p will call eval
600 and ..._equiv_key may autoload something.
78589e07
RS
601 Protecting KEYMAP preserves everything we use;
602 aside from that, must protect whatever might be
603 a string. Since there's no GCPRO5, we refetch
604 item_string instead of protecting it. */
605 GCPRO4 (keymap, pending_maps, def, descrip);
8c512fcb
RS
606 descrip = def = Qnil;
607
608 def = menu_item_equiv_key (item_string, item1, &descrip);
101bb4a5 609 enabled = menu_item_enabled_p (def, notreal);
8c512fcb 610
78589e07
RS
611 UNGCPRO;
612
613 item_string = XCONS (item1)->car;
614
615 tem = Fkeymapp (def);
616 if (XSTRING (item_string)->data[0] == '@' && !NILP (tem))
617 pending_maps = Fcons (Fcons (def, Fcons (item_string, character)),
618 pending_maps);
619 else
101bb4a5
RS
620 {
621 Lisp_Object submap;
bc28c440 622 GCPRO4 (keymap, pending_maps, descrip, item_string);
101bb4a5 623 submap = get_keymap_1 (def, 0, 1);
bc28c440 624 UNGCPRO;
101bb4a5
RS
625#ifndef USE_X_TOOLKIT
626 if (!NILP (submap))
627 item_string = concat2 (item_string,
628 build_string (" >"));
629#endif
a352a815 630 /* If definition is nil, pass nil as the key. */
101bb4a5 631 push_menu_item (item_string, enabled, character,
a352a815 632 def, descrip);
101bb4a5
RS
633#ifdef USE_X_TOOLKIT
634 if (! NILP (submap))
635 {
636 push_submenu_start ();
637 single_keymap_panes (submap, Qnil,
638 character, notreal);
639 push_submenu_end ();
640 }
641#endif
642 }
78589e07
RS
643 }
644 }
645 }
18686d47
RS
646 }
647 }
78589e07
RS
648
649 /* Process now any submenus which want to be panes at this level. */
650 while (!NILP (pending_maps))
651 {
101bb4a5 652 Lisp_Object elt, eltcdr, string;
78589e07
RS
653 elt = Fcar (pending_maps);
654 eltcdr = XCONS (elt)->cdr;
101bb4a5
RS
655 string = XCONS (eltcdr)->car;
656 /* We no longer discard the @ from the beginning of the string here.
657 Instead, we do this in xmenu_show. */
658 single_keymap_panes (Fcar (elt), string,
659 XCONS (eltcdr)->cdr, notreal);
78589e07
RS
660 pending_maps = Fcdr (pending_maps);
661 }
18686d47 662}
78589e07
RS
663\f
664/* Push all the panes and items of a menu decsribed by the
665 alist-of-alists MENU.
666 This handles old-fashioned calls to x-popup-menu. */
18686d47 667
78589e07
RS
668static void
669list_of_panes (menu)
18686d47 670 Lisp_Object menu;
18686d47 671{
78589e07
RS
672 Lisp_Object tail;
673
674 init_menu_items ();
675
676 for (tail = menu; !NILP (tail); tail = Fcdr (tail))
677 {
678 Lisp_Object elt, pane_name, pane_data;
679 elt = Fcar (tail);
680 pane_name = Fcar (elt);
681 CHECK_STRING (pane_name, 0);
682 push_menu_pane (pane_name, Qnil);
683 pane_data = Fcdr (elt);
684 CHECK_CONS (pane_data, 0);
685 list_of_items (pane_data);
686 }
687
688 finish_menu_items ();
689}
690
691/* Push the items in a single pane defined by the alist PANE. */
692
693static void
694list_of_items (pane)
695 Lisp_Object pane;
696{
697 Lisp_Object tail, item, item1;
698
699 for (tail = pane; !NILP (tail); tail = Fcdr (tail))
700 {
701 item = Fcar (tail);
702 if (STRINGP (item))
a352a815 703 push_menu_item (item, Qnil, Qnil, Qt, Qnil);
fcaa7665
RS
704 else if (NILP (item))
705 push_left_right_boundary ();
78589e07
RS
706 else
707 {
708 CHECK_CONS (item, 0);
709 item1 = Fcar (item);
710 CHECK_STRING (item1, 1);
a352a815 711 push_menu_item (item1, Qt, Fcdr (item), Qt, Qnil);
78589e07
RS
712 }
713 }
714}
715\f
540e52d1 716DEFUN ("x-popup-menu", Fx_popup_menu, Sx_popup_menu, 2, 2, 0,
78589e07
RS
717 "Pop up a deck-of-cards menu and return user's selection.\n\
718POSITION is a position specification. This is either a mouse button event\n\
719or a list ((XOFFSET YOFFSET) WINDOW)\n\
748a0e1f 720where XOFFSET and YOFFSET are positions in pixels from the top left\n\
78589e07
RS
721corner of WINDOW's frame. (WINDOW may be a frame object instead of a window.)\n\
722This controls the position of the center of the first line\n\
723in the first pane of the menu, not the top left of the menu as a whole.\n\
724If POSITION is t, it means to use the current mouse position.\n\
725\n\
726MENU is a specifier for a menu. For the simplest case, MENU is a keymap.\n\
727The menu items come from key bindings that have a menu string as well as\n\
728a definition; actually, the \"definition\" in such a key binding looks like\n\
729\(STRING . REAL-DEFINITION). To give the menu a title, put a string into\n\
730the keymap as a top-level element.\n\n\
731You can also use a list of keymaps as MENU.\n\
732 Then each keymap makes a separate pane.\n\
733When MENU is a keymap or a list of keymaps, the return value\n\
734is a list of events.\n\n\
735Alternatively, you can specify a menu of multiple panes\n\
736 with a list of the form (TITLE PANE1 PANE2...),\n\
737where each pane is a list of form (TITLE ITEM1 ITEM2...).\n\
738Each ITEM is normally a cons cell (STRING . VALUE);\n\
739but a string can appear as an item--that makes a nonselectable line\n\
740in the menu.\n\
741With this form of menu, the return value is VALUE from the chosen item.\n\
742\n\
743If POSITION is nil, don't display the menu at all, just precalculate the\n\
744cached information about equivalent key sequences.")
745 (position, menu)
746 Lisp_Object position, menu;
747{
748 int number_of_panes, panes;
18686d47 749 Lisp_Object keymap, tem;
78589e07
RS
750 int xpos, ypos;
751 Lisp_Object title;
752 char *error_name;
753 Lisp_Object selection;
18686d47 754 int i, j;
78589e07
RS
755 FRAME_PTR f;
756 Lisp_Object x, y, window;
757 int keymaps = 0;
758 int menubarp = 0;
9685a93f 759 int for_click = 0;
78589e07
RS
760 struct gcpro gcpro1;
761
78589e07
RS
762 if (! NILP (position))
763 {
101bb4a5
RS
764 check_x ();
765
78589e07
RS
766 /* Decode the first argument: find the window and the coordinates. */
767 if (EQ (position, Qt))
768 {
769 /* Use the mouse's current position. */
ac8f8f7d 770 FRAME_PTR new_f = selected_frame;
78589e07
RS
771 Lisp_Object bar_window;
772 int part;
773 unsigned long time;
774
b137c582 775 if (mouse_position_hook)
46b657e2
RS
776 (*mouse_position_hook) (&new_f, 1, &bar_window,
777 &part, &x, &y, &time);
5ca2ef64 778 if (new_f != 0)
a39f0477 779 XSETFRAME (window, new_f);
5ca2ef64
RS
780 else
781 {
782 window = selected_window;
33b43fa6
KH
783 XSETFASTINT (x, 0);
784 XSETFASTINT (y, 0);
5ca2ef64 785 }
78589e07
RS
786 }
787 else
788 {
789 tem = Fcar (position);
b5bb2705 790 if (CONSP (tem))
78589e07
RS
791 {
792 window = Fcar (Fcdr (position));
793 x = Fcar (tem);
794 y = Fcar (Fcdr (tem));
795 }
796 else
797 {
9685a93f 798 for_click = 1;
78589e07
RS
799 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
800 window = Fcar (tem); /* POSN_WINDOW (tem) */
801 tem = Fcar (Fcdr (Fcdr (tem))); /* POSN_WINDOW_POSN (tem) */
802 x = Fcar (tem);
803 y = Fcdr (tem);
804
805 /* Determine whether this menu is handling a menu bar click. */
806 tem = Fcar (Fcdr (Fcar (Fcdr (position))));
adb0462c 807 if (CONSP (tem) && EQ (Fcar (tem), Qmenu_bar))
78589e07
RS
808 menubarp = 1;
809 }
810 }
811
812 CHECK_NUMBER (x, 0);
813 CHECK_NUMBER (y, 0);
814
815 /* Decode where to put the menu. */
816
b5bb2705 817 if (FRAMEP (window))
78589e07
RS
818 {
819 f = XFRAME (window);
78589e07
RS
820 xpos = 0;
821 ypos = 0;
822 }
b5bb2705 823 else if (WINDOWP (window))
78589e07
RS
824 {
825 CHECK_LIVE_WINDOW (window, 0);
826 f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
827
828 xpos = (FONT_WIDTH (f->display.x->font) * XWINDOW (window)->left);
a8097b6c 829 ypos = (f->display.x->line_height * XWINDOW (window)->top);
78589e07
RS
830 }
831 else
832 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
833 but I don't want to make one now. */
834 CHECK_WINDOW (window, 0);
835
836 xpos += XINT (x);
837 ypos += XINT (y);
838 }
839
840 title = Qnil;
841 GCPRO1 (title);
842
843 /* Decode the menu items from what was specified. */
18686d47
RS
844
845 keymap = Fkeymapp (menu);
846 tem = Qnil;
b5bb2705 847 if (CONSP (menu))
18686d47
RS
848 tem = Fkeymapp (Fcar (menu));
849 if (!NILP (keymap))
850 {
851 /* We were given a keymap. Extract menu info from the keymap. */
852 Lisp_Object prompt;
853 keymap = get_keymap (menu);
854
78589e07 855 /* Extract the detailed info to make one pane. */
101bb4a5 856 keymap_panes (&menu, 1, NILP (position));
78589e07 857
18686d47
RS
858 /* Search for a string appearing directly as an element of the keymap.
859 That string is the title of the menu. */
860 prompt = map_prompt (keymap);
18686d47 861
78589e07
RS
862 /* Make that be the pane title of the first pane. */
863 if (!NILP (prompt) && menu_items_n_panes >= 0)
864 XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME] = prompt;
865
866 keymaps = 1;
18686d47
RS
867 }
868 else if (!NILP (tem))
869 {
870 /* We were given a list of keymaps. */
18686d47
RS
871 int nmaps = XFASTINT (Flength (menu));
872 Lisp_Object *maps
873 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
874 int i;
78589e07
RS
875
876 title = Qnil;
18686d47
RS
877
878 /* The first keymap that has a prompt string
879 supplies the menu title. */
b5bb2705 880 for (tem = menu, i = 0; CONSP (tem); tem = Fcdr (tem))
18686d47 881 {
78589e07
RS
882 Lisp_Object prompt;
883
18686d47
RS
884 maps[i++] = keymap = get_keymap (Fcar (tem));
885
886 prompt = map_prompt (keymap);
78589e07
RS
887 if (NILP (title) && !NILP (prompt))
888 title = prompt;
18686d47
RS
889 }
890
891 /* Extract the detailed info to make one pane. */
101bb4a5 892 keymap_panes (maps, nmaps, NILP (position));
78589e07
RS
893
894 /* Make the title be the pane title of the first pane. */
895 if (!NILP (title) && menu_items_n_panes >= 0)
896 XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME] = title;
897
898 keymaps = 1;
18686d47
RS
899 }
900 else
901 {
902 /* We were given an old-fashioned menu. */
78589e07
RS
903 title = Fcar (menu);
904 CHECK_STRING (title, 1);
18686d47 905
78589e07 906 list_of_panes (Fcdr (menu));
18686d47 907
78589e07
RS
908 keymaps = 0;
909 }
18686d47 910
78589e07 911 if (NILP (position))
18686d47 912 {
78589e07
RS
913 discard_menu_items ();
914 UNGCPRO;
915 return Qnil;
18686d47
RS
916 }
917
78589e07
RS
918 /* Display them in a menu. */
919 BLOCK_INPUT;
18686d47 920
9685a93f 921 selection = xmenu_show (f, xpos, ypos, menubarp, for_click,
78589e07
RS
922 keymaps, title, &error_name);
923 UNBLOCK_INPUT;
18686d47 924
78589e07 925 discard_menu_items ();
18686d47 926
78589e07 927 UNGCPRO;
18686d47 928
78589e07
RS
929 if (error_name) error (error_name);
930 return selection;
18686d47 931}
165e1749 932
540e52d1 933DEFUN ("x-popup-dialog", Fx_popup_dialog, Sx_popup_dialog, 2, 2, 0,
165e1749 934 "Pop up a dialog box and return user's selection.\n\
99fe880d
RS
935POSITION specifies which frame to use.\n\
936This is normally a mouse button event or a window or frame.\n\
937If POSITION is t, it means to use the frame the mouse is on.\n\
938The dialog box appears in the middle of the specified frame.\n\
165e1749 939\n\
99fe880d
RS
940CONTENTS specifies the alternatives to display in the dialog box.\n\
941It is a list of the form (TITLE ITEM1 ITEM2...).\n\
942Each ITEM is a cons cell (STRING . VALUE).\n\
fcaa7665
RS
943The return value is VALUE from the chosen item.\n\n\
944An ITEM may also be just a string--that makes a nonselectable item.\n\
945An ITEM may also be nil--that means to put all preceding items\n\
946on the left of the dialog box and all following items on the right.\n\
947\(By default, approximately half appear on each side.)")
99fe880d
RS
948 (position, contents)
949 Lisp_Object position, contents;
165e1749 950{
165e1749 951 FRAME_PTR f;
99fe880d 952 Lisp_Object window;
165e1749
FP
953
954 check_x ();
955
99fe880d
RS
956 /* Decode the first argument: find the window or frame to use. */
957 if (EQ (position, Qt))
165e1749 958 {
b14db4d7 959#if 0 /* Using the frame the mouse is on may not be right. */
99fe880d 960 /* Use the mouse's current position. */
ac8f8f7d 961 FRAME_PTR new_f = selected_frame;
99fe880d
RS
962 Lisp_Object bar_window;
963 int part;
964 unsigned long time;
965 Lisp_Object x, y;
165e1749 966
46b657e2 967 (*mouse_position_hook) (&new_f, 1, &bar_window, &part, &x, &y, &time);
5ca2ef64 968
99fe880d 969 if (new_f != 0)
a39f0477 970 XSETFRAME (window, new_f);
99fe880d
RS
971 else
972 window = selected_window;
b14db4d7
RS
973#endif
974 /* Decode the first argument: find the window and the coordinates. */
975 if (EQ (position, Qt))
5a7d50ba 976 window = selected_window;
99fe880d
RS
977 }
978 else if (CONSP (position))
979 {
980 Lisp_Object tem;
981 tem = Fcar (position);
b5bb2705 982 if (CONSP (tem))
99fe880d 983 window = Fcar (Fcdr (position));
80670155
RS
984 else
985 {
99fe880d
RS
986 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
987 window = Fcar (tem); /* POSN_WINDOW (tem) */
165e1749 988 }
165e1749 989 }
99fe880d
RS
990 else if (WINDOWP (position) || FRAMEP (position))
991 window = position;
165e1749 992
99fe880d 993 /* Decode where to put the menu. */
165e1749 994
b5bb2705 995 if (FRAMEP (window))
99fe880d 996 f = XFRAME (window);
b5bb2705 997 else if (WINDOWP (window))
165e1749 998 {
99fe880d
RS
999 CHECK_LIVE_WINDOW (window, 0);
1000 f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
165e1749 1001 }
99fe880d
RS
1002 else
1003 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
1004 but I don't want to make one now. */
1005 CHECK_WINDOW (window, 0);
165e1749 1006
99fe880d
RS
1007#ifndef USE_X_TOOLKIT
1008 /* Display a menu with these alternatives
1009 in the middle of frame F. */
1010 {
1011 Lisp_Object x, y, frame, newpos;
a39f0477
KH
1012 XSETFRAME (frame, f);
1013 XSETINT (x, x_pixel_width (f) / 2);
1014 XSETINT (y, x_pixel_height (f) / 2);
99fe880d
RS
1015 newpos = Fcons (Fcons (x, Fcons (y, Qnil)), Fcons (frame, Qnil));
1016
1017 return Fx_popup_menu (newpos,
1018 Fcons (Fcar (contents), Fcons (contents, Qnil)));
1019 }
1020#else
1021 {
1022 Lisp_Object title;
1023 char *error_name;
1024 Lisp_Object selection;
165e1749 1025
99fe880d
RS
1026 /* Decode the dialog items from what was specified. */
1027 title = Fcar (contents);
1028 CHECK_STRING (title, 1);
165e1749 1029
99fe880d 1030 list_of_panes (Fcons (contents, Qnil));
165e1749 1031
99fe880d
RS
1032 /* Display them in a dialog box. */
1033 BLOCK_INPUT;
1034 selection = xdialog_show (f, 0, 0, title, &error_name);
1035 UNBLOCK_INPUT;
165e1749 1036
99fe880d
RS
1037 discard_menu_items ();
1038
1039 if (error_name) error (error_name);
1040 return selection;
1041 }
7464b131 1042#endif
392d3f4b 1043}
78589e07
RS
1044\f
1045#ifdef USE_X_TOOLKIT
18686d47 1046
4dedbfe0 1047/* Loop in Xt until the menu pulldown or dialog popup has been
c98fcf4b
PR
1048 popped down (deactivated).
1049
1050 NOTE: All calls to popup_get_selection() should be protected
1051 with BLOCK_INPUT, UNBLOCK_INPUT wrappers. */
4dedbfe0
PR
1052void
1053popup_get_selection (initial_event)
1054 XEvent *initial_event;
78589e07 1055{
4dedbfe0 1056 XEvent event;
78589e07 1057
4dedbfe0
PR
1058 if (initial_event)
1059 event = *initial_event;
1060 else
1061 XtAppNextEvent (Xt_app_con, &event);
78589e07 1062
4dedbfe0 1063 while (1)
78589e07 1064 {
4dedbfe0 1065 XtDispatchEvent (&event);
4dedbfe0
PR
1066 if (!popup_activated())
1067 break;
1068 XtAppNextEvent (Xt_app_con, &event);
78589e07 1069 }
78589e07
RS
1070}
1071
c98fcf4b 1072/* Detect if a dialog or menu has been posted. */
4dedbfe0
PR
1073int
1074popup_activated ()
1075{
1076 return popup_activated_flag;
1077}
1078
1079
1080/* This callback is invoked when the user selects a menubar cascade
1081 pushbutton, but before the pulldown menu is posted. */
78589e07
RS
1082
1083static void
4dedbfe0 1084popup_activate_callback (widget, id, client_data)
78589e07
RS
1085 Widget widget;
1086 LWLIB_ID id;
1087 XtPointer client_data;
1088{
4dedbfe0 1089 popup_activated_flag = 1;
78589e07
RS
1090}
1091
4dedbfe0
PR
1092/* This callback is called from the menu bar pulldown menu
1093 when the user makes a selection.
1094 Figure out what the user chose
1095 and put the appropriate events into the keyboard buffer. */
1096
78589e07 1097static void
4dedbfe0 1098menubar_selection_callback (widget, id, client_data)
78589e07
RS
1099 Widget widget;
1100 LWLIB_ID id;
1101 XtPointer client_data;
1102{
4dedbfe0 1103 Lisp_Object prefix;
bd3a4da2 1104 FRAME_PTR f = XFRAME (XVECTOR (frame_vector)->contents[id]);
4dedbfe0
PR
1105 Lisp_Object vector;
1106 Lisp_Object *subprefix_stack;
1107 int submenu_depth = 0;
1108 int i;
1109
1110 if (!f)
1111 return;
1112 subprefix_stack = (Lisp_Object *) alloca (f->menu_bar_items_used * sizeof (Lisp_Object));
1113 vector = f->menu_bar_vector;
1114 prefix = Qnil;
1115 i = 0;
1116 while (i < f->menu_bar_items_used)
1117 {
1118 Lisp_Object entry;
1119
1120 if (EQ (XVECTOR (vector)->contents[i], Qnil))
1121 {
1122 subprefix_stack[submenu_depth++] = prefix;
1123 prefix = entry;
1124 i++;
1125 }
1126 else if (EQ (XVECTOR (vector)->contents[i], Qlambda))
1127 {
1128 prefix = subprefix_stack[--submenu_depth];
1129 i++;
1130 }
1131 else if (EQ (XVECTOR (vector)->contents[i], Qt))
1132 {
4cb35c39 1133 prefix = XVECTOR (vector)->contents[i + MENU_ITEMS_PANE_PREFIX];
4dedbfe0
PR
1134 i += MENU_ITEMS_PANE_LENGTH;
1135 }
1136 else
1137 {
4cb35c39 1138 entry = XVECTOR (vector)->contents[i + MENU_ITEMS_ITEM_VALUE];
01d5e892
RS
1139 /* The EMACS_INT cast avoids a warning. There's no problem
1140 as long as pointers have enough bits to hold small integers. */
1141 if ((int) (EMACS_INT) client_data == i)
4dedbfe0
PR
1142 {
1143 int j;
1144 struct input_event buf;
4cb35c39 1145 Lisp_Object frame;
4dedbfe0 1146
4cb35c39 1147 XSETFRAME (frame, f);
4dedbfe0 1148 buf.kind = menu_bar_event;
4cb35c39 1149 buf.frame_or_window = Fcons (frame, Qmenu_bar);
4dedbfe0
PR
1150 kbd_buffer_store_event (&buf);
1151
1152 for (j = 0; j < submenu_depth; j++)
1153 if (!NILP (subprefix_stack[j]))
1154 {
1155 buf.kind = menu_bar_event;
4cb35c39 1156 buf.frame_or_window = Fcons (frame, subprefix_stack[j]);
4dedbfe0
PR
1157 kbd_buffer_store_event (&buf);
1158 }
1159
1160 if (!NILP (prefix))
1161 {
1162 buf.kind = menu_bar_event;
4cb35c39 1163 buf.frame_or_window = Fcons (frame, prefix);
4dedbfe0
PR
1164 kbd_buffer_store_event (&buf);
1165 }
1166
1167 buf.kind = menu_bar_event;
4cb35c39 1168 buf.frame_or_window = Fcons (frame, entry);
4dedbfe0
PR
1169 kbd_buffer_store_event (&buf);
1170
1171 return;
1172 }
1173 i += MENU_ITEMS_ITEM_LENGTH;
1174 }
1175 }
18686d47
RS
1176}
1177
4dedbfe0 1178/* This callback is invoked when a dialog or menu is finished being
c98fcf4b 1179 used and has been unposted. */
4dedbfe0 1180
165e1749 1181static void
4dedbfe0 1182popup_deactivate_callback (widget, id, client_data)
165e1749
FP
1183 Widget widget;
1184 LWLIB_ID id;
1185 XtPointer client_data;
1186{
4dedbfe0 1187 popup_activated_flag = 0;
165e1749
FP
1188}
1189
4dedbfe0
PR
1190
1191/* This recursively calls free_widget_value on the tree of widgets.
18686d47 1192 It must free all data that was malloc'ed for these widget_values.
78589e07
RS
1193 In Emacs, many slots are pointers into the data of Lisp_Strings, and
1194 must be left alone. */
1195
18686d47
RS
1196void
1197free_menubar_widget_value_tree (wv)
1198 widget_value *wv;
1199{
1200 if (! wv) return;
18686d47
RS
1201
1202 wv->name = wv->value = wv->key = (char *) 0xDEADBEEF;
1203
1204 if (wv->contents && (wv->contents != (widget_value*)1))
1205 {
1206 free_menubar_widget_value_tree (wv->contents);
1207 wv->contents = (widget_value *) 0xDEADBEEF;
1208 }
1209 if (wv->next)
1210 {
1211 free_menubar_widget_value_tree (wv->next);
1212 wv->next = (widget_value *) 0xDEADBEEF;
1213 }
1214 BLOCK_INPUT;
1215 free_widget_value (wv);
1216 UNBLOCK_INPUT;
1217}
4dedbfe0
PR
1218\f
1219/* Return a tree of widget_value structures for a menu bar item
1220 whose event type is ITEM_KEY (with string ITEM_NAME)
1221 and whose contents come from the list of keymaps MAPS. */
1222
1223static widget_value *
1224single_submenu (item_key, item_name, maps)
1225 Lisp_Object item_key, item_name, maps;
1226{
1227 widget_value *wv, *prev_wv, *save_wv, *first_wv;
1228 int i;
1229 int submenu_depth = 0;
1230 Lisp_Object length;
1231 int len;
1232 Lisp_Object *mapvec;
1233 widget_value **submenu_stack;
1234 int mapno;
1235 int previous_items = menu_items_used;
1236
1237 length = Flength (maps);
1238 len = XINT (length);
1239
1240 /* Convert the list MAPS into a vector MAPVEC. */
1241 mapvec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
1242 for (i = 0; i < len; i++)
1243 {
1244 mapvec[i] = Fcar (maps);
1245 maps = Fcdr (maps);
1246 }
1247
1248 menu_items_n_panes = 0;
1249
1250 /* Loop over the given keymaps, making a pane for each map.
1251 But don't make a pane that is empty--ignore that map instead. */
1252 for (i = 0; i < len; i++)
1253 single_keymap_panes (mapvec[i], item_name, item_key, 0);
1254
1255 /* Create a tree of widget_value objects
1256 representing the panes and their items. */
1257
1258 submenu_stack
1259 = (widget_value **) alloca (menu_items_used * sizeof (widget_value *));
1260 wv = malloc_widget_value ();
1261 wv->name = "menu";
1262 wv->value = 0;
1263 wv->enabled = 1;
1264 first_wv = wv;
1265 save_wv = 0;
1266
1267 /* Loop over all panes and items made during this call
1268 and construct a tree of widget_value objects.
1269 Ignore the panes and items made by previous calls to
1270 single_submenu, even though those are also in menu_items. */
1271 i = previous_items;
1272 while (i < menu_items_used)
1273 {
1274 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
1275 {
1276 submenu_stack[submenu_depth++] = save_wv;
1277 save_wv = prev_wv;
1278 prev_wv = 0;
1279 i++;
1280 }
1281 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
1282 {
1283 prev_wv = save_wv;
1284 save_wv = submenu_stack[--submenu_depth];
1285 i++;
1286 }
1287 else if (EQ (XVECTOR (menu_items)->contents[i], Qt)
1288 && submenu_depth != 0)
1289 i += MENU_ITEMS_PANE_LENGTH;
1290 /* Ignore a nil in the item list.
1291 It's meaningful only for dialog boxes. */
1292 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
1293 i += 1;
1294 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
1295 {
1296 /* Create a new pane. */
1297 Lisp_Object pane_name, prefix;
1298 char *pane_string;
1299 pane_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_NAME];
1300 prefix = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
1301 pane_string = (NILP (pane_name)
1302 ? "" : (char *) XSTRING (pane_name)->data);
1303 /* If there is just one top-level pane, put all its items directly
1304 under the top-level menu. */
1305 if (menu_items_n_panes == 1)
1306 pane_string = "";
1307
1308 /* If the pane has a meaningful name,
1309 make the pane a top-level menu item
1310 with its items as a submenu beneath it. */
1311 if (strcmp (pane_string, ""))
1312 {
1313 wv = malloc_widget_value ();
1314 if (save_wv)
1315 save_wv->next = wv;
1316 else
1317 first_wv->contents = wv;
1318 wv->name = pane_string;
1319 if (!NILP (prefix))
1320 wv->name++;
1321 wv->value = 0;
1322 wv->enabled = 1;
1323 }
1324 save_wv = wv;
1325 prev_wv = 0;
1326 i += MENU_ITEMS_PANE_LENGTH;
1327 }
1328 else
1329 {
1330 /* Create a new item within current pane. */
a352a815 1331 Lisp_Object item_name, enable, descrip, def;
4dedbfe0
PR
1332 item_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_NAME];
1333 enable = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_ENABLE];
1334 descrip
1335 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_EQUIV_KEY];
a352a815 1336 def = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_DEFINITION];
18686d47 1337
4dedbfe0
PR
1338 wv = malloc_widget_value ();
1339 if (prev_wv)
1340 prev_wv->next = wv;
1341 else
1342 save_wv->contents = wv;
1343 wv->name = (char *) XSTRING (item_name)->data;
1344 if (!NILP (descrip))
1345 wv->key = (char *) XSTRING (descrip)->data;
1346 wv->value = 0;
01d5e892
RS
1347 /* The EMACS_INT cast avoids a warning. There's no problem
1348 as long as pointers have enough bits to hold small integers. */
1349 wv->call_data = (!NILP (def) ? (void *) (EMACS_INT) i : 0);
4dedbfe0
PR
1350 wv->enabled = !NILP (enable);
1351 prev_wv = wv;
1352
1353 i += MENU_ITEMS_ITEM_LENGTH;
1354 }
1355 }
1356
1357 return first_wv;
1358}
1359\f
cffa74ea
FP
1360extern void EmacsFrameSetCharSize ();
1361
4dedbfe0
PR
1362/* Recompute the menu bar of frame F. */
1363
18686d47 1364static void
6af6cbb5 1365update_frame_menubar (f)
18686d47
RS
1366 FRAME_PTR f;
1367{
1368 struct x_display *x = f->display.x;
cffa74ea 1369 int columns, rows;
18686d47
RS
1370 int menubar_changed;
1371
4dedbfe0
PR
1372 Dimension shell_height;
1373
1374 /* We assume the menubar contents has changed if the global flag is set,
1375 or if the current buffer has changed, or if the menubar has never
1376 been updated before.
1377 */
18686d47
RS
1378 menubar_changed = (x->menubar_widget
1379 && !XtIsManaged (x->menubar_widget));
1380
1381 if (! (menubar_changed))
1382 return;
1383
1384 BLOCK_INPUT;
cffa74ea
FP
1385 /* Save the size of the frame because the pane widget doesn't accept to
1386 resize itself. So force it. */
1387 columns = f->width;
1388 rows = f->height;
1389
4dedbfe0
PR
1390 /* Do the voodoo which means "I'm changing lots of things, don't try to
1391 refigure sizes until I'm done." */
1392 lw_refigure_widget (x->column_widget, False);
cffa74ea 1393
18686d47
RS
1394 /* the order in which children are managed is the top to
1395 bottom order in which they are displayed in the paned window.
1396 First, remove the text-area widget.
1397 */
1398 XtUnmanageChild (x->edit_widget);
1399
1400 /* remove the menubar that is there now, and put up the menubar that
1401 should be there.
1402 */
1403 if (menubar_changed)
1404 {
1405 XtManageChild (x->menubar_widget);
1406 XtMapWidget (x->menubar_widget);
1407 XtVaSetValues (x->menubar_widget, XtNmappedWhenManaged, 1, 0);
1408 }
1409
c98fcf4b 1410 /* Re-manage the text-area widget, and then thrash the sizes. */
18686d47 1411 XtManageChild (x->edit_widget);
4dedbfe0 1412 lw_refigure_widget (x->column_widget, True);
cffa74ea
FP
1413
1414 /* Force the pane widget to resize itself with the right values. */
1415 EmacsFrameSetCharSize (x->edit_widget, columns, rows);
1416
18686d47
RS
1417 UNBLOCK_INPUT;
1418}
1419
1420void
706aa2f2 1421set_frame_menubar (f, first_time)
18686d47 1422 FRAME_PTR f;
706aa2f2 1423 int first_time;
18686d47
RS
1424{
1425 Widget menubar_widget = f->display.x->menubar_widget;
bd3a4da2 1426 Lisp_Object tail, items, frame;
4d19cb8e 1427 widget_value *wv, *first_wv, *prev_wv = 0;
5b3557df 1428 int i;
bd3a4da2
RS
1429 int id;
1430
1431 id = frame_vector_add_frame (f);
18686d47
RS
1432
1433 BLOCK_INPUT;
1434
1435 wv = malloc_widget_value ();
1436 wv->name = "menubar";
1437 wv->value = 0;
1438 wv->enabled = 1;
4d19cb8e 1439 first_wv = wv;
4dedbfe0
PR
1440 items = FRAME_MENU_BAR_ITEMS (f);
1441 menu_items = f->menu_bar_vector;
1442 menu_items_allocated = XVECTOR (menu_items)->size;
1443 init_menu_items ();
18686d47 1444
5b3557df 1445 for (i = 0; i < XVECTOR (items)->size; i += 3)
18686d47 1446 {
4dedbfe0 1447 Lisp_Object key, string, maps;
18686d47 1448
4dedbfe0 1449 key = XVECTOR (items)->contents[i];
5b3557df 1450 string = XVECTOR (items)->contents[i + 1];
4dedbfe0 1451 maps = XVECTOR (items)->contents[i + 2];
5b3557df
RS
1452 if (NILP (string))
1453 break;
18686d47 1454
4dedbfe0 1455 wv = single_submenu (key, string, maps);
18686d47
RS
1456 if (prev_wv)
1457 prev_wv->next = wv;
4d19cb8e
KH
1458 else
1459 first_wv->contents = wv;
1460 /* Don't set wv->name here; GC during the loop might relocate it. */
18686d47
RS
1461 wv->enabled = 1;
1462 prev_wv = wv;
1463 }
1464
4d19cb8e
KH
1465 /* Now GC cannot happen during the lifetime of the widget_value,
1466 so it's safe to store data from a Lisp_String. */
1467 wv = first_wv->contents;
1468 for (i = 0; i < XVECTOR (items)->size; i += 3)
1469 {
1470 Lisp_Object string;
1471 string = XVECTOR (items)->contents[i + 1];
1472 if (NILP (string))
1473 break;
1474 wv->name = (char *) XSTRING (string)->data;
1475 wv = wv->next;
1476 }
1477
4dedbfe0
PR
1478 finish_menu_items ();
1479
1480 f->menu_bar_vector = menu_items;
1481 f->menu_bar_items_used = menu_items_used;
1482 menu_items = Qnil;
1483
18686d47 1484 if (menubar_widget)
4dedbfe0
PR
1485 {
1486 /* Disable resizing (done for Motif!) */
1487 lw_allow_resizing (f->display.x->widget, False);
1488
1489 /* The third arg is DEEP_P, which says to consider the entire
1490 menu trees we supply, rather than just the menu bar item names. */
1491 lw_modify_all_widgets (id, first_wv, 1);
1492
c98fcf4b 1493 /* Re-enable the edit widget to resize. */
4dedbfe0
PR
1494 lw_allow_resizing (f->display.x->widget, True);
1495 }
18686d47
RS
1496 else
1497 {
1498 menubar_widget = lw_create_widget ("menubar", "menubar",
1499 id, first_wv,
4dedbfe0
PR
1500 f->display.x->column_widget,
1501 0,
1502 popup_activate_callback,
1503 menubar_selection_callback,
1504 popup_deactivate_callback);
18686d47 1505 f->display.x->menubar_widget = menubar_widget;
18686d47
RS
1506 }
1507
1508 free_menubar_widget_value_tree (first_wv);
1509
706aa2f2
FP
1510 /* Don't update the menubar the first time it is created via x_window. */
1511 if (!first_time)
1512 update_frame_menubar (f);
18686d47
RS
1513
1514 UNBLOCK_INPUT;
1515}
85f487d1 1516
4dedbfe0
PR
1517/* Called from Fx_create_frame to create the inital menubar of a frame
1518 before it is mapped, so that the window is mapped with the menubar already
1519 there instead of us tacking it on later and thrashing the window after it
1520 is visible. */
1521
1522void
1523initialize_frame_menubar (f)
1524 FRAME_PTR f;
1525{
1526 /* This function is called before the first chance to redisplay
1527 the frame. It has to be, so the frame will have the right size. */
1528 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
1529 set_frame_menubar (f, 1);
1530}
1531
1532/* Get rid of the menu bar of frame F, and free its storage.
1533 This is used when deleting a frame, and when turning off the menu bar. */
1534
85f487d1
FP
1535void
1536free_frame_menubar (f)
1537 FRAME_PTR f;
1538{
1539 Widget menubar_widget;
1540 int id;
1541
1542 menubar_widget = f->display.x->menubar_widget;
85f487d1
FP
1543
1544 if (menubar_widget)
1545 {
bd3a4da2 1546 id = frame_vector_add_frame (f);
85f487d1
FP
1547 BLOCK_INPUT;
1548 lw_destroy_all_widgets (id);
bd3a4da2 1549 XVECTOR (frame_vector)->contents[id] = Qnil;
85f487d1
FP
1550 UNBLOCK_INPUT;
1551 }
1552}
78589e07 1553
78589e07
RS
1554#endif /* USE_X_TOOLKIT */
1555\f
1556/* xmenu_show actually displays a menu using the panes and items in menu_items
1557 and returns the value selected from it.
1558 There are two versions of xmenu_show, one for Xt and one for Xlib.
1559 Both assume input is blocked by the caller. */
1560
1561/* F is the frame the menu is for.
1562 X and Y are the frame-relative specified position,
1563 relative to the inside upper left corner of the frame F.
9685a93f
RS
1564 MENUBARP is 1 if this menu came from the menu bar.
1565 FOR_CLICK if this menu was invoked for a mouse click.
78589e07
RS
1566 KEYMAPS is 1 if this menu was specified with keymaps;
1567 in that case, we return a list containing the chosen item's value
1568 and perhaps also the pane's prefix.
1569 TITLE is the specified menu title.
1570 ERROR is a place to store an error message string in case of failure.
1571 (We return nil on failure, but the value doesn't actually matter.) */
18686d47
RS
1572
1573#ifdef USE_X_TOOLKIT
18686d47 1574
8ed87156
RS
1575/* We need a unique id for each widget handled by the Lucid Widget
1576 library. This includes the frame main windows, popup menu and
1577 dialog box. */
1578LWLIB_ID widget_id_tick;
165e1749 1579
4dedbfe0
PR
1580#ifdef __STDC__
1581static Lisp_Object *volatile menu_item_selection;
1582#else
1583static Lisp_Object *menu_item_selection;
1584#endif
1585
1586static void
1587popup_selection_callback (widget, id, client_data)
1588 Widget widget;
1589 LWLIB_ID id;
1590 XtPointer client_data;
1591{
1592 menu_item_selection = (Lisp_Object *) client_data;
1593}
1594
78589e07 1595static Lisp_Object
9685a93f 1596xmenu_show (f, x, y, menubarp, for_click, keymaps, title, error)
18686d47 1597 FRAME_PTR f;
18686d47
RS
1598 int x;
1599 int y;
a352a815 1600 int menubarp; /* This arg is unused in Xt version. */
9685a93f 1601 int for_click;
78589e07
RS
1602 int keymaps;
1603 Lisp_Object title;
1604 char **error;
18686d47 1605{
78589e07
RS
1606 int i;
1607 int menu_id;
18686d47 1608 Widget menu;
60f312e2
RS
1609 Arg av [2];
1610 int ac = 0;
78589e07 1611 widget_value *wv, *save_wv = 0, *first_wv = 0, *prev_wv = 0;
101bb4a5
RS
1612 widget_value **submenu_stack
1613 = (widget_value **) alloca (menu_items_used * sizeof (widget_value *));
1614 Lisp_Object *subprefix_stack
1615 = (Lisp_Object *) alloca (menu_items_used * sizeof (Lisp_Object));
1616 int submenu_depth = 0;
78589e07
RS
1617
1618 /* Define a queue to save up for later unreading
1619 all X events that don't pertain to the menu. */
1620 struct event_queue
18686d47
RS
1621 {
1622 XEvent event;
78589e07
RS
1623 struct event_queue *next;
1624 };
18686d47 1625
78589e07
RS
1626 struct event_queue *queue = NULL;
1627 struct event_queue *queue_tmp;
1628
4e8d3549
RS
1629 Position root_x, root_y;
1630
78c8278d 1631 int first_pane;
a51b963c 1632 int next_release_must_exit = 0;
78c8278d 1633
78589e07
RS
1634 *error = NULL;
1635
742f715d
KH
1636 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
1637 {
1638 *error = "Empty menu";
1639 return Qnil;
1640 }
63c414df 1641
78589e07
RS
1642 /* Create a tree of widget_value objects
1643 representing the panes and their items. */
1644 wv = malloc_widget_value ();
1645 wv->name = "menu";
1646 wv->value = 0;
1647 wv->enabled = 1;
1648 first_wv = wv;
78c8278d 1649 first_pane = 1;
78589e07
RS
1650
1651 /* Loop over all panes and items, filling in the tree. */
1652 i = 0;
1653 while (i < menu_items_used)
1654 {
101bb4a5
RS
1655 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
1656 {
1657 submenu_stack[submenu_depth++] = save_wv;
1658 save_wv = prev_wv;
1659 prev_wv = 0;
78c8278d 1660 first_pane = 1;
101bb4a5
RS
1661 i++;
1662 }
1663 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
1664 {
1665 prev_wv = save_wv;
1666 save_wv = submenu_stack[--submenu_depth];
78c8278d 1667 first_pane = 0;
101bb4a5
RS
1668 i++;
1669 }
1670 else if (EQ (XVECTOR (menu_items)->contents[i], Qt)
1671 && submenu_depth != 0)
1672 i += MENU_ITEMS_PANE_LENGTH;
fcaa7665
RS
1673 /* Ignore a nil in the item list.
1674 It's meaningful only for dialog boxes. */
1675 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
1676 i += 1;
101bb4a5 1677 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
78589e07
RS
1678 {
1679 /* Create a new pane. */
1680 Lisp_Object pane_name, prefix;
1681 char *pane_string;
1682 pane_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_NAME];
1683 prefix = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
1684 pane_string = (NILP (pane_name)
1685 ? "" : (char *) XSTRING (pane_name)->data);
101bb4a5 1686 /* If there is just one top-level pane, put all its items directly
78589e07
RS
1687 under the top-level menu. */
1688 if (menu_items_n_panes == 1)
1689 pane_string = "";
1690
1691 /* If the pane has a meaningful name,
1692 make the pane a top-level menu item
1693 with its items as a submenu beneath it. */
78c8278d 1694 if (!keymaps && strcmp (pane_string, ""))
78589e07
RS
1695 {
1696 wv = malloc_widget_value ();
1697 if (save_wv)
1698 save_wv->next = wv;
1699 else
1700 first_wv->contents = wv;
1701 wv->name = pane_string;
1702 if (keymaps && !NILP (prefix))
1703 wv->name++;
1704 wv->value = 0;
1705 wv->enabled = 1;
78c8278d
RS
1706 save_wv = wv;
1707 prev_wv = 0;
78589e07 1708 }
78c8278d
RS
1709 else if (first_pane)
1710 {
1711 save_wv = wv;
1712 prev_wv = 0;
1713 }
1714 first_pane = 0;
78589e07
RS
1715 i += MENU_ITEMS_PANE_LENGTH;
1716 }
1717 else
1718 {
1719 /* Create a new item within current pane. */
a352a815 1720 Lisp_Object item_name, enable, descrip, def;
78589e07
RS
1721 item_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_NAME];
1722 enable = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_ENABLE];
1723 descrip
1724 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_EQUIV_KEY];
a352a815 1725 def = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_DEFINITION];
78589e07
RS
1726
1727 wv = malloc_widget_value ();
1728 if (prev_wv)
1729 prev_wv->next = wv;
1730 else
1731 save_wv->contents = wv;
4e8d3549 1732 wv->name = (char *) XSTRING (item_name)->data;
78589e07 1733 if (!NILP (descrip))
4e8d3549 1734 wv->key = (char *) XSTRING (descrip)->data;
78589e07 1735 wv->value = 0;
a352a815
RS
1736 /* If this item has a null value,
1737 make the call_data null so that it won't display a box
1738 when the mouse is on it. */
1739 wv->call_data
1740 = (!NILP (def) ? (void *) &XVECTOR (menu_items)->contents[i] : 0);
78589e07
RS
1741 wv->enabled = !NILP (enable);
1742 prev_wv = wv;
1743
1744 i += MENU_ITEMS_ITEM_LENGTH;
1745 }
1746 }
1747
c98fcf4b 1748 /* Deal with the title, if it is non-nil. */
4dedbfe0
PR
1749 if (!NILP (title))
1750 {
1751 widget_value *wv_title = malloc_widget_value ();
1752 widget_value *wv_sep1 = malloc_widget_value ();
1753 widget_value *wv_sep2 = malloc_widget_value ();
1754
1755 wv_sep2->name = "--";
1756 wv_sep2->next = first_wv->contents;
1757
1758 wv_sep1->name = "--";
1759 wv_sep1->next = wv_sep2;
1760
1761 wv_title->name = (char *) XSTRING (title)->data;
1762 wv_title->enabled = True;
1763 wv_title->next = wv_sep1;
1764 first_wv->contents = wv_title;
1765 }
1766
78589e07 1767 /* Actually create the menu. */
4dedbfe0 1768 menu_id = ++widget_id_tick;
78589e07 1769 menu = lw_create_widget ("popup", first_wv->name, menu_id, first_wv,
18686d47 1770 f->display.x->widget, 1, 0,
4dedbfe0
PR
1771 popup_selection_callback,
1772 popup_deactivate_callback);
60f312e2
RS
1773
1774 /* Don't allow any geometry request from the user. */
1775 XtSetArg (av[ac], XtNgeometry, 0); ac++;
1776 XtSetValues (menu, av, ac);
1777
78589e07
RS
1778 /* Free the widget_value objects we used to specify the contents. */
1779 free_menubar_widget_value_tree (first_wv);
1780
1781 /* No selection has been chosen yet. */
1782 menu_item_selection = 0;
1783
78589e07 1784 /* Display the menu. */
4dedbfe0
PR
1785 lw_popup_menu (menu);
1786 popup_activated_flag = 1;
18686d47 1787
78589e07 1788 /* Process events that apply to the menu. */
4dedbfe0 1789 popup_get_selection ((XEvent *) 0);
78589e07
RS
1790
1791 pop_down:
a9c90b7c
RS
1792 /* fp turned off the following statement and wrote a comment
1793 that it is unnecessary--that the menu has already disappeared.
1794 I observer that is not so. -- rms. */
78589e07
RS
1795 /* Make sure the menu disappears. */
1796 lw_destroy_all_widgets (menu_id);
1797
1798 /* Unread any events that we got but did not handle. */
1799 while (queue != NULL)
18686d47 1800 {
78589e07 1801 queue_tmp = queue;
92280f67 1802 XPutBackEvent (FRAME_X_DISPLAY (f), &queue_tmp->event);
78589e07
RS
1803 queue = queue_tmp->next;
1804 free ((char *)queue_tmp);
d9209dee
RS
1805 /* Cause these events to get read as soon as we UNBLOCK_INPUT. */
1806 interrupt_input_pending = 1;
18686d47
RS
1807 }
1808
78589e07
RS
1809 /* Find the selected item, and its pane, to return
1810 the proper value. */
1811 if (menu_item_selection != 0)
1812 {
1813 Lisp_Object prefix;
1814
1815 prefix = Qnil;
1816 i = 0;
1817 while (i < menu_items_used)
1818 {
1819 Lisp_Object entry;
18686d47 1820
101bb4a5
RS
1821 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
1822 {
1823 subprefix_stack[submenu_depth++] = prefix;
1824 prefix = entry;
1825 i++;
1826 }
1827 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
1828 {
1829 prefix = subprefix_stack[--submenu_depth];
1830 i++;
1831 }
1832 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
78589e07
RS
1833 {
1834 prefix
1835 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
1836 i += MENU_ITEMS_PANE_LENGTH;
1837 }
1838 else
1839 {
1840 entry
1841 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
1842 if (menu_item_selection == &XVECTOR (menu_items)->contents[i])
1843 {
1844 if (keymaps != 0)
1845 {
101bb4a5
RS
1846 int j;
1847
78589e07
RS
1848 entry = Fcons (entry, Qnil);
1849 if (!NILP (prefix))
1850 entry = Fcons (prefix, entry);
101bb4a5 1851 for (j = submenu_depth - 1; j >= 0; j--)
e48087b7 1852 if (!NILP (subprefix_stack[j]))
5964e450 1853 entry = Fcons (subprefix_stack[j], entry);
78589e07
RS
1854 }
1855 return entry;
1856 }
1857 i += MENU_ITEMS_ITEM_LENGTH;
1858 }
1859 }
1860 }
1861
1862 return Qnil;
18686d47 1863}
4dedbfe0
PR
1864\f
1865static void
1866dialog_selection_callback (widget, id, client_data)
1867 Widget widget;
1868 LWLIB_ID id;
1869 XtPointer client_data;
1870{
01d5e892
RS
1871 /* The EMACS_INT cast avoids a warning. There's no problem
1872 as long as pointers have enough bits to hold small integers. */
1873 if ((int) (EMACS_INT) client_data != -1)
4dedbfe0
PR
1874 menu_item_selection = (Lisp_Object *) client_data;
1875 BLOCK_INPUT;
1876 lw_destroy_all_widgets (id);
1877 UNBLOCK_INPUT;
1878}
18686d47 1879
165e1749
FP
1880static char * button_names [] = {
1881 "button1", "button2", "button3", "button4", "button5",
1882 "button6", "button7", "button8", "button9", "button10" };
1883
1884static Lisp_Object
99fe880d 1885xdialog_show (f, menubarp, keymaps, title, error)
165e1749 1886 FRAME_PTR f;
165e1749
FP
1887 int menubarp;
1888 int keymaps;
1889 Lisp_Object title;
1890 char **error;
1891{
1892 int i, nb_buttons=0;
1893 int dialog_id;
1894 Widget menu;
80670155 1895 char dialog_name[6];
165e1749 1896
165e1749
FP
1897 widget_value *wv, *save_wv = 0, *first_wv = 0, *prev_wv = 0;
1898
1899 /* Define a queue to save up for later unreading
1900 all X events that don't pertain to the menu. */
1901 struct event_queue
1902 {
1903 XEvent event;
1904 struct event_queue *next;
1905 };
1906
1907 struct event_queue *queue = NULL;
1908 struct event_queue *queue_tmp;
1909
fcaa7665
RS
1910 /* Number of elements seen so far, before boundary. */
1911 int left_count = 0;
1912 /* 1 means we've seen the boundary between left-hand elts and right-hand. */
1913 int boundary_seen = 0;
1914
165e1749
FP
1915 *error = NULL;
1916
80670155
RS
1917 if (menu_items_n_panes > 1)
1918 {
1919 *error = "Multiple panes in dialog box";
1920 return Qnil;
1921 }
1922
165e1749
FP
1923 /* Create a tree of widget_value objects
1924 representing the text label and buttons. */
1925 {
1926 Lisp_Object pane_name, prefix;
1927 char *pane_string;
1928 pane_name = XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME];
1929 prefix = XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_PREFIX];
1930 pane_string = (NILP (pane_name)
1931 ? "" : (char *) XSTRING (pane_name)->data);
1932 prev_wv = malloc_widget_value ();
1933 prev_wv->value = pane_string;
1934 if (keymaps && !NILP (prefix))
1935 prev_wv->name++;
1936 prev_wv->enabled = 1;
1937 prev_wv->name = "message";
1938 first_wv = prev_wv;
1939
1940 /* Loop over all panes and items, filling in the tree. */
1941 i = MENU_ITEMS_PANE_LENGTH;
1942 while (i < menu_items_used)
1943 {
1944
1945 /* Create a new item within current pane. */
1946 Lisp_Object item_name, enable, descrip;
1947 item_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_NAME];
1948 enable = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_ENABLE];
1949 descrip
1950 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_EQUIV_KEY];
1951
80670155
RS
1952 if (NILP (item_name))
1953 {
1954 free_menubar_widget_value_tree (first_wv);
1955 *error = "Submenu in dialog items";
1956 return Qnil;
1957 }
fcaa7665
RS
1958 if (EQ (item_name, Qquote))
1959 {
1960 /* This is the boundary between left-side elts
1961 and right-side elts. Stop incrementing right_count. */
1962 boundary_seen = 1;
1963 i++;
1964 continue;
1965 }
80670155
RS
1966 if (nb_buttons >= 10)
1967 {
1968 free_menubar_widget_value_tree (first_wv);
1969 *error = "Too many dialog items";
1970 return Qnil;
1971 }
1972
165e1749
FP
1973 wv = malloc_widget_value ();
1974 prev_wv->next = wv;
80670155 1975 wv->name = (char *) button_names[nb_buttons];
165e1749 1976 if (!NILP (descrip))
4e8d3549
RS
1977 wv->key = (char *) XSTRING (descrip)->data;
1978 wv->value = (char *) XSTRING (item_name)->data;
165e1749
FP
1979 wv->call_data = (void *) &XVECTOR (menu_items)->contents[i];
1980 wv->enabled = !NILP (enable);
1981 prev_wv = wv;
1982
fcaa7665
RS
1983 if (! boundary_seen)
1984 left_count++;
1985
165e1749
FP
1986 nb_buttons++;
1987 i += MENU_ITEMS_ITEM_LENGTH;
1988 }
1989
fcaa7665
RS
1990 /* If the boundary was not specified,
1991 by default put half on the left and half on the right. */
1992 if (! boundary_seen)
1993 left_count = nb_buttons - nb_buttons / 2;
1994
165e1749 1995 wv = malloc_widget_value ();
80670155
RS
1996 wv->name = dialog_name;
1997
1998 /* Dialog boxes use a really stupid name encoding
1999 which specifies how many buttons to use
2000 and how many buttons are on the right.
2001 The Q means something also. */
2002 dialog_name[0] = 'Q';
2003 dialog_name[1] = '0' + nb_buttons;
2004 dialog_name[2] = 'B';
2005 dialog_name[3] = 'R';
fcaa7665
RS
2006 /* Number of buttons to put on the right. */
2007 dialog_name[4] = '0' + nb_buttons - left_count;
80670155 2008 dialog_name[5] = 0;
165e1749
FP
2009 wv->contents = first_wv;
2010 first_wv = wv;
165e1749
FP
2011 }
2012
2013 /* Actually create the dialog. */
4dedbfe0 2014 dialog_id = ++widget_id_tick;
165e1749
FP
2015 menu = lw_create_widget (first_wv->name, "dialog", dialog_id, first_wv,
2016 f->display.x->widget, 1, 0,
2017 dialog_selection_callback, 0);
b5587215 2018 lw_modify_all_widgets (dialog_id, first_wv->contents, True);
165e1749
FP
2019 /* Free the widget_value objects we used to specify the contents. */
2020 free_menubar_widget_value_tree (first_wv);
2021
2022 /* No selection has been chosen yet. */
2023 menu_item_selection = 0;
2024
165e1749
FP
2025 /* Display the menu. */
2026 lw_pop_up_all_widgets (dialog_id);
2027
2028 /* Process events that apply to the menu. */
2029 while (1)
2030 {
2031 XEvent event;
2032
2033 XtAppNextEvent (Xt_app_con, &event);
2034 if (event.type == ButtonRelease)
2035 {
2036 XtDispatchEvent (&event);
2037 break;
2038 }
2039 else if (event.type == Expose)
2040 process_expose_from_menu (event);
2041 XtDispatchEvent (&event);
92280f67 2042 if (XtWindowToWidget (FRAME_X_DISPLAY (f), event.xany.window) != menu)
165e1749
FP
2043 {
2044 queue_tmp = (struct event_queue *) malloc (sizeof (struct event_queue));
2045
2046 if (queue_tmp != NULL)
2047 {
2048 queue_tmp->event = event;
2049 queue_tmp->next = queue;
2050 queue = queue_tmp;
2051 }
2052 }
2053 }
2054 pop_down:
2055
87485d6f 2056#ifdef HAVE_X_WINDOWS
a5285df3
RS
2057 /* State that no mouse buttons are now held.
2058 That is not necessarily true, but the fiction leads to reasonable
2059 results, and it is a pain to ask which are actually held now
2060 or track this in the loop above. */
e9a79fb2 2061 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
87485d6f 2062#endif
a5285df3 2063
165e1749
FP
2064 /* Unread any events that we got but did not handle. */
2065 while (queue != NULL)
2066 {
2067 queue_tmp = queue;
92280f67 2068 XPutBackEvent (FRAME_X_DISPLAY (f), &queue_tmp->event);
165e1749
FP
2069 queue = queue_tmp->next;
2070 free ((char *)queue_tmp);
d9209dee
RS
2071 /* Cause these events to get read as soon as we UNBLOCK_INPUT. */
2072 interrupt_input_pending = 1;
165e1749
FP
2073 }
2074
2075 /* Find the selected item, and its pane, to return
2076 the proper value. */
2077 if (menu_item_selection != 0)
2078 {
2079 Lisp_Object prefix;
2080
2081 prefix = Qnil;
2082 i = 0;
2083 while (i < menu_items_used)
2084 {
2085 Lisp_Object entry;
2086
2087 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
2088 {
2089 prefix
2090 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
2091 i += MENU_ITEMS_PANE_LENGTH;
2092 }
2093 else
2094 {
2095 entry
2096 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
2097 if (menu_item_selection == &XVECTOR (menu_items)->contents[i])
2098 {
2099 if (keymaps != 0)
2100 {
2101 entry = Fcons (entry, Qnil);
2102 if (!NILP (prefix))
2103 entry = Fcons (prefix, entry);
2104 }
2105 return entry;
2106 }
2107 i += MENU_ITEMS_ITEM_LENGTH;
2108 }
2109 }
2110 }
2111
2112 return Qnil;
2113}
18686d47 2114#else /* not USE_X_TOOLKIT */
78589e07
RS
2115
2116static Lisp_Object
9685a93f 2117xmenu_show (f, x, y, menubarp, for_click, keymaps, title, error)
78589e07
RS
2118 FRAME_PTR f;
2119 int x, y;
78589e07 2120 int menubarp;
9685a93f
RS
2121 int for_click;
2122 int keymaps;
78589e07
RS
2123 Lisp_Object title;
2124 char **error;
dcfdbac7 2125{
78589e07
RS
2126 Window root;
2127 XMenu *menu;
2128 int pane, selidx, lpane, status;
2129 Lisp_Object entry, pane_prefix;
dcfdbac7
JB
2130 char *datap;
2131 int ulx, uly, width, height;
2132 int dispwidth, dispheight;
4e8d3549
RS
2133 int i, j;
2134 int maxwidth;
78589e07
RS
2135 int dummy_int;
2136 unsigned int dummy_uint;
088831f6 2137
07a675b7 2138 *error = 0;
78589e07
RS
2139 if (menu_items_n_panes == 0)
2140 return Qnil;
088831f6 2141
742f715d
KH
2142 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
2143 {
2144 *error = "Empty menu";
2145 return Qnil;
2146 }
2147
78589e07 2148 /* Figure out which root window F is on. */
92280f67 2149 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &root,
78589e07
RS
2150 &dummy_int, &dummy_int, &dummy_uint, &dummy_uint,
2151 &dummy_uint, &dummy_uint);
18686d47 2152
78589e07 2153 /* Make the menu on that window. */
92280f67 2154 menu = XMenuCreate (FRAME_X_DISPLAY (f), root, "emacs");
78589e07 2155 if (menu == NULL)
dcfdbac7
JB
2156 {
2157 *error = "Can't create menu";
78589e07 2158 return Qnil;
dcfdbac7 2159 }
78589e07 2160
87485d6f 2161#ifdef HAVE_X_WINDOWS
78589e07 2162 /* Adjust coordinates to relative to the outer (window manager) window. */
78589e07
RS
2163 {
2164 Window child;
2165 int win_x = 0, win_y = 0;
2166
2167 /* Find the position of the outside upper-left corner of
2168 the inner window, with respect to the outer window. */
f1847de3 2169 if (f->display.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
78589e07
RS
2170 {
2171 BLOCK_INPUT;
92280f67 2172 XTranslateCoordinates (FRAME_X_DISPLAY (f),
78589e07
RS
2173
2174 /* From-window, to-window. */
2175 f->display.x->window_desc,
2176 f->display.x->parent_desc,
2177
2178 /* From-position, to-position. */
2179 0, 0, &win_x, &win_y,
2180
2181 /* Child of window. */
2182 &child);
2183 UNBLOCK_INPUT;
2184 x += win_x;
2185 y += win_y;
2186 }
2187 }
87485d6f 2188#endif /* HAVE_X_WINDOWS */
78589e07
RS
2189
2190 /* Adjust coordinates to be root-window-relative. */
2191 x += f->display.x->left_pos;
2192 y += f->display.x->top_pos;
18686d47 2193
78589e07
RS
2194 /* Create all the necessary panes and their items. */
2195 i = 0;
2196 while (i < menu_items_used)
dcfdbac7 2197 {
78589e07 2198 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
dcfdbac7 2199 {
78589e07
RS
2200 /* Create a new pane. */
2201 Lisp_Object pane_name, prefix;
2202 char *pane_string;
2203
2204 pane_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_NAME];
2205 prefix = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
2206 pane_string = (NILP (pane_name)
2207 ? "" : (char *) XSTRING (pane_name)->data);
2208 if (keymaps && !NILP (prefix))
2209 pane_string++;
2210
92280f67 2211 lpane = XMenuAddPane (FRAME_X_DISPLAY (f), menu, pane_string, TRUE);
78589e07
RS
2212 if (lpane == XM_FAILURE)
2213 {
92280f67 2214 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
78589e07
RS
2215 *error = "Can't create pane";
2216 return Qnil;
2217 }
2218 i += MENU_ITEMS_PANE_LENGTH;
4e8d3549
RS
2219
2220 /* Find the width of the widest item in this pane. */
2221 maxwidth = 0;
2222 j = i;
2223 while (j < menu_items_used)
2224 {
2225 Lisp_Object item;
2226 item = XVECTOR (menu_items)->contents[j];
2227 if (EQ (item, Qt))
2228 break;
2229 if (NILP (item))
2230 {
2231 j++;
2232 continue;
2233 }
2234 width = XSTRING (item)->size;
2235 if (width > maxwidth)
2236 maxwidth = width;
2237
2238 j += MENU_ITEMS_ITEM_LENGTH;
2239 }
dcfdbac7 2240 }
fcaa7665
RS
2241 /* Ignore a nil in the item list.
2242 It's meaningful only for dialog boxes. */
2243 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
2244 i += 1;
78589e07 2245 else
dcfdbac7 2246 {
78589e07
RS
2247 /* Create a new item within current pane. */
2248 Lisp_Object item_name, enable, descrip;
4e8d3549 2249 unsigned char *item_data;
78589e07
RS
2250
2251 item_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_NAME];
2252 enable = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_ENABLE];
2253 descrip
2254 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_EQUIV_KEY];
2255 if (!NILP (descrip))
4e8d3549
RS
2256 {
2257 int gap = maxwidth - XSTRING (item_name)->size;
2258#ifdef C_ALLOCA
2259 Lisp_Object spacer;
2260 spacer = Fmake_string (make_number (gap), make_number (' '));
2261 item_name = concat2 (item_name, spacer);
2262 item_name = concat2 (item_name, descrip);
2263 item_data = XSTRING (item_name)->data;
2264#else
2265 /* if alloca is fast, use that to make the space,
2266 to reduce gc needs. */
2267 item_data
2268 = (unsigned char *) alloca (maxwidth
2269 + XSTRING (descrip)->size + 1);
2270 bcopy (XSTRING (item_name)->data, item_data,
2271 XSTRING (item_name)->size);
2272 for (j = XSTRING (item_name)->size; j < maxwidth; j++)
2273 item_data[j] = ' ';
2274 bcopy (XSTRING (descrip)->data, item_data + j,
2275 XSTRING (descrip)->size);
2276 item_data[j + XSTRING (descrip)->size] = 0;
2277#endif
2278 }
2279 else
2280 item_data = XSTRING (item_name)->data;
78589e07 2281
92280f67
RS
2282 if (XMenuAddSelection (FRAME_X_DISPLAY (f),
2283 menu, lpane, 0, item_data,
78589e07 2284 !NILP (enable))
dcfdbac7
JB
2285 == XM_FAILURE)
2286 {
92280f67 2287 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
dcfdbac7 2288 *error = "Can't add selection to menu";
78589e07 2289 return Qnil;
dcfdbac7 2290 }
78589e07 2291 i += MENU_ITEMS_ITEM_LENGTH;
dcfdbac7
JB
2292 }
2293 }
4e8d3549 2294
78589e07 2295 /* All set and ready to fly. */
92280f67
RS
2296 XMenuRecompute (FRAME_X_DISPLAY (f), menu);
2297 dispwidth = DisplayWidth (FRAME_X_DISPLAY (f),
f1847de3 2298 XScreenNumberOfScreen (FRAME_X_SCREEN (f)));
92280f67 2299 dispheight = DisplayHeight (FRAME_X_DISPLAY (f),
f1847de3 2300 XScreenNumberOfScreen (FRAME_X_SCREEN (f)));
78589e07
RS
2301 x = min (x, dispwidth);
2302 y = min (y, dispheight);
2303 x = max (x, 1);
2304 y = max (y, 1);
92280f67 2305 XMenuLocate (FRAME_X_DISPLAY (f), menu, 0, 0, x, y,
dcfdbac7
JB
2306 &ulx, &uly, &width, &height);
2307 if (ulx+width > dispwidth)
2308 {
78589e07 2309 x -= (ulx + width) - dispwidth;
dcfdbac7
JB
2310 ulx = dispwidth - width;
2311 }
2312 if (uly+height > dispheight)
2313 {
78589e07 2314 y -= (uly + height) - dispheight;
dcfdbac7
JB
2315 uly = dispheight - height;
2316 }
78589e07
RS
2317 if (ulx < 0) x -= ulx;
2318 if (uly < 0) y -= uly;
121e4555
KH
2319
2320 XMenuSetAEQ (menu, TRUE);
78589e07
RS
2321 XMenuSetFreeze (menu, TRUE);
2322 pane = selidx = 0;
dcfdbac7 2323
92280f67 2324 status = XMenuActivate (FRAME_X_DISPLAY (f), menu, &pane, &selidx,
78589e07 2325 x, y, ButtonReleaseMask, &datap);
a352a815
RS
2326
2327
2328 /* Assume the mouse has moved out of the X window.
2329 If it has actually moved in, we will get an EnterNotify. */
2330 x_mouse_leave ();
2331
dcfdbac7
JB
2332 switch (status)
2333 {
2334 case XM_SUCCESS:
2335#ifdef XDEBUG
2336 fprintf (stderr, "pane= %d line = %d\n", panes, selidx);
2337#endif
fa6d54d9 2338
78589e07
RS
2339 /* Find the item number SELIDX in pane number PANE. */
2340 i = 0;
2341 while (i < menu_items_used)
fa6d54d9 2342 {
78589e07 2343 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
088831f6 2344 {
78589e07
RS
2345 if (pane == 0)
2346 pane_prefix
2347 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
2348 pane--;
2349 i += MENU_ITEMS_PANE_LENGTH;
088831f6 2350 }
78589e07 2351 else
ab6ee1a0 2352 {
78589e07 2353 if (pane == -1)
ab6ee1a0 2354 {
78589e07 2355 if (selidx == 0)
ab6ee1a0 2356 {
78589e07
RS
2357 entry
2358 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
2359 if (keymaps != 0)
ab6ee1a0 2360 {
78589e07
RS
2361 entry = Fcons (entry, Qnil);
2362 if (!NILP (pane_prefix))
2363 entry = Fcons (pane_prefix, entry);
ab6ee1a0 2364 }
78589e07 2365 break;
ab6ee1a0 2366 }
78589e07 2367 selidx--;
ab6ee1a0 2368 }
78589e07 2369 i += MENU_ITEMS_ITEM_LENGTH;
ab6ee1a0
RS
2370 }
2371 }
78589e07 2372 break;
dcfdbac7 2373
78589e07 2374 case XM_FAILURE:
78589e07
RS
2375 *error = "Can't activate menu";
2376 case XM_IA_SELECT:
2377 case XM_NO_SELECT:
2378 entry = Qnil;
2379 break;
dcfdbac7 2380 }
92280f67 2381 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
a5285df3 2382
87485d6f 2383#ifdef HAVE_X_WINDOWS
a5285df3
RS
2384 /* State that no mouse buttons are now held.
2385 (The oldXMenu code doesn't track this info for us.)
2386 That is not necessarily true, but the fiction leads to reasonable
2387 results, and it is a pain to ask which are actually held now. */
e9a79fb2 2388 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
87485d6f 2389#endif
a5285df3 2390
78589e07 2391 return entry;
dcfdbac7 2392}
4dedbfe0 2393
78589e07 2394#endif /* not USE_X_TOOLKIT */
088831f6 2395\f
78589e07 2396syms_of_xmenu ()
dcfdbac7 2397{
78589e07
RS
2398 staticpro (&menu_items);
2399 menu_items = Qnil;
dcfdbac7 2400
8ed87156 2401#ifdef USE_X_TOOLKIT
4dedbfe0 2402 widget_id_tick = (1<<16);
8ed87156
RS
2403#endif
2404
bd3a4da2
RS
2405 staticpro (&frame_vector);
2406 frame_vector = Fmake_vector (make_number (10), Qnil);
2407
78589e07 2408 defsubr (&Sx_popup_menu);
165e1749 2409 defsubr (&Sx_popup_dialog);
dcfdbac7 2410}