(frames_bury_buffer): Don't add a buffer to the frame's
[bpt/emacs.git] / src / xmenu.c
1 /* X Communication module for terminals which understand the X protocol.
2 Copyright (C) 1986, 88, 93, 94, 96, 1999 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21 /* X pop-up deck-of-cards menu facility for gnuemacs.
22 *
23 * Written by Jon Arnold and Roman Budzianowski
24 * Mods and rewrite by Robert Krawitz
25 *
26 */
27
28 /* Modified by Fred Pierresteguy on December 93
29 to make the popup menus and menubar use the Xt. */
30
31 /* Rewritten for clarity and GC protection by rms in Feb 94. */
32
33 #include <config.h>
34
35 /* On 4.3 this loses if it comes after xterm.h. */
36 #include <signal.h>
37
38 #include <stdio.h>
39 #include "lisp.h"
40 #include "termhooks.h"
41 #include "frame.h"
42 #include "window.h"
43 #include "keyboard.h"
44 #include "blockinput.h"
45 #include "buffer.h"
46
47 #ifdef MSDOS
48 #include "msdos.h"
49 #endif
50
51 #ifdef HAVE_X_WINDOWS
52 /* This may include sys/types.h, and that somehow loses
53 if this is not done before the other system files. */
54 #include "xterm.h"
55 #endif
56
57 /* Load sys/types.h if not already loaded.
58 In some systems loading it twice is suicidal. */
59 #ifndef makedev
60 #include <sys/types.h>
61 #endif
62
63 #include "dispextern.h"
64
65 #ifdef HAVE_X_WINDOWS
66 #undef HAVE_MULTILINGUAL_MENU
67 #ifdef USE_X_TOOLKIT
68 #include <X11/Xlib.h>
69 #include <X11/IntrinsicP.h>
70 #include <X11/CoreP.h>
71 #include <X11/StringDefs.h>
72 #include <X11/Shell.h>
73 #ifdef USE_LUCID
74 #include <X11/Xaw/Paned.h>
75 #endif /* USE_LUCID */
76 #include "../lwlib/lwlib.h"
77 #else /* not USE_X_TOOLKIT */
78 #include "../oldXMenu/XMenu.h"
79 #endif /* not USE_X_TOOLKIT */
80 #endif /* HAVE_X_WINDOWS */
81
82 #ifdef USE_MOTIF
83 #include <Xm/Xm.h> /* for LESSTIF_VERSION */
84 #endif
85
86 #define min(x,y) (((x) < (y)) ? (x) : (y))
87 #define max(x,y) (((x) > (y)) ? (x) : (y))
88
89 #ifndef TRUE
90 #define TRUE 1
91 #define FALSE 0
92 #endif /* no TRUE */
93
94 Lisp_Object Vmenu_updating_frame;
95
96 Lisp_Object Qdebug_on_next_call;
97
98 extern Lisp_Object Qmenu_bar;
99 extern Lisp_Object Qmouse_click, Qevent_kind;
100
101 extern Lisp_Object QCtoggle, QCradio;
102
103 extern Lisp_Object Voverriding_local_map;
104 extern Lisp_Object Voverriding_local_map_menu_flag;
105
106 extern Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
107
108 extern Lisp_Object Qmenu_bar_update_hook;
109
110 #ifdef USE_X_TOOLKIT
111 extern void set_frame_menubar ();
112 extern void process_expose_from_menu ();
113 extern XtAppContext Xt_app_con;
114
115 static Lisp_Object xdialog_show ();
116 void popup_get_selection ();
117 #endif
118
119 #ifdef USE_X_TOOLKIT
120
121 /* Define HAVE_BOXES if meus can handle radio and toggle buttons. */
122
123 #define HAVE_BOXES 1
124 #endif
125
126 static void push_menu_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
127 Lisp_Object, Lisp_Object, Lisp_Object,
128 Lisp_Object, Lisp_Object));
129 static Lisp_Object xmenu_show ();
130 static void keymap_panes ();
131 static void single_keymap_panes ();
132 static void single_menu_item ();
133 static void list_of_panes ();
134 static void list_of_items ();
135 \f
136 /* This holds a Lisp vector that holds the results of decoding
137 the keymaps or alist-of-alists that specify a menu.
138
139 It describes the panes and items within the panes.
140
141 Each pane is described by 3 elements in the vector:
142 t, the pane name, the pane's prefix key.
143 Then follow the pane's items, with 5 elements per item:
144 the item string, the enable flag, the item's value,
145 the definition, and the equivalent keyboard key's description string.
146
147 In some cases, multiple levels of menus may be described.
148 A single vector slot containing nil indicates the start of a submenu.
149 A single vector slot containing lambda indicates the end of a submenu.
150 The submenu follows a menu item which is the way to reach the submenu.
151
152 A single vector slot containing quote indicates that the
153 following items should appear on the right of a dialog box.
154
155 Using a Lisp vector to hold this information while we decode it
156 takes care of protecting all the data from GC. */
157
158 #define MENU_ITEMS_PANE_NAME 1
159 #define MENU_ITEMS_PANE_PREFIX 2
160 #define MENU_ITEMS_PANE_LENGTH 3
161
162 enum menu_item_idx
163 {
164 MENU_ITEMS_ITEM_NAME = 0,
165 MENU_ITEMS_ITEM_ENABLE,
166 MENU_ITEMS_ITEM_VALUE,
167 MENU_ITEMS_ITEM_EQUIV_KEY,
168 MENU_ITEMS_ITEM_DEFINITION,
169 MENU_ITEMS_ITEM_TYPE,
170 MENU_ITEMS_ITEM_SELECTED,
171 MENU_ITEMS_ITEM_HELP,
172 MENU_ITEMS_ITEM_LENGTH
173 };
174
175 static Lisp_Object menu_items;
176
177 /* Number of slots currently allocated in menu_items. */
178 static int menu_items_allocated;
179
180 /* This is the index in menu_items of the first empty slot. */
181 static int menu_items_used;
182
183 /* The number of panes currently recorded in menu_items,
184 excluding those within submenus. */
185 static int menu_items_n_panes;
186
187 /* Current depth within submenus. */
188 static int menu_items_submenu_depth;
189
190 /* Flag which when set indicates a dialog or menu has been posted by
191 Xt on behalf of one of the widget sets. */
192 int popup_activated_flag;
193
194 static int next_menubar_widget_id;
195
196 /* This is set nonzero after the user activates the menu bar, and set
197 to zero again after the menu bars are redisplayed by prepare_menu_bar.
198 While it is nonzero, all calls to set_frame_menubar go deep.
199
200 I don't understand why this is needed, but it does seem to be
201 needed on Motif, according to Marcus Daniels <marcus@sysc.pdx.edu>. */
202
203 int pending_menu_activation;
204 \f
205 #ifdef USE_X_TOOLKIT
206
207 /* Return the frame whose ->output_data.x->id equals ID, or 0 if none. */
208
209 static struct frame *
210 menubar_id_to_frame (id)
211 LWLIB_ID id;
212 {
213 Lisp_Object tail, frame;
214 FRAME_PTR f;
215
216 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
217 {
218 frame = XCAR (tail);
219 if (!GC_FRAMEP (frame))
220 continue;
221 f = XFRAME (frame);
222 if (!FRAME_WINDOW_P (f))
223 continue;
224 if (f->output_data.x->id == id)
225 return f;
226 }
227 return 0;
228 }
229
230 #endif
231 \f
232 /* Initialize the menu_items structure if we haven't already done so.
233 Also mark it as currently empty. */
234
235 static void
236 init_menu_items ()
237 {
238 if (NILP (menu_items))
239 {
240 menu_items_allocated = 60;
241 menu_items = Fmake_vector (make_number (menu_items_allocated), Qnil);
242 }
243
244 menu_items_used = 0;
245 menu_items_n_panes = 0;
246 menu_items_submenu_depth = 0;
247 }
248
249 /* Call at the end of generating the data in menu_items.
250 This fills in the number of items in the last pane. */
251
252 static void
253 finish_menu_items ()
254 {
255 }
256
257 /* Call when finished using the data for the current menu
258 in menu_items. */
259
260 static void
261 discard_menu_items ()
262 {
263 /* Free the structure if it is especially large.
264 Otherwise, hold on to it, to save time. */
265 if (menu_items_allocated > 200)
266 {
267 menu_items = Qnil;
268 menu_items_allocated = 0;
269 }
270 }
271
272 /* Make the menu_items vector twice as large. */
273
274 static void
275 grow_menu_items ()
276 {
277 Lisp_Object old;
278 int old_size = menu_items_allocated;
279 old = menu_items;
280
281 menu_items_allocated *= 2;
282 menu_items = Fmake_vector (make_number (menu_items_allocated), Qnil);
283 bcopy (XVECTOR (old)->contents, XVECTOR (menu_items)->contents,
284 old_size * sizeof (Lisp_Object));
285 }
286
287 /* Begin a submenu. */
288
289 static void
290 push_submenu_start ()
291 {
292 if (menu_items_used + 1 > menu_items_allocated)
293 grow_menu_items ();
294
295 XVECTOR (menu_items)->contents[menu_items_used++] = Qnil;
296 menu_items_submenu_depth++;
297 }
298
299 /* End a submenu. */
300
301 static void
302 push_submenu_end ()
303 {
304 if (menu_items_used + 1 > menu_items_allocated)
305 grow_menu_items ();
306
307 XVECTOR (menu_items)->contents[menu_items_used++] = Qlambda;
308 menu_items_submenu_depth--;
309 }
310
311 /* Indicate boundary between left and right. */
312
313 static void
314 push_left_right_boundary ()
315 {
316 if (menu_items_used + 1 > menu_items_allocated)
317 grow_menu_items ();
318
319 XVECTOR (menu_items)->contents[menu_items_used++] = Qquote;
320 }
321
322 /* Start a new menu pane in menu_items..
323 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */
324
325 static void
326 push_menu_pane (name, prefix_vec)
327 Lisp_Object name, prefix_vec;
328 {
329 if (menu_items_used + MENU_ITEMS_PANE_LENGTH > menu_items_allocated)
330 grow_menu_items ();
331
332 if (menu_items_submenu_depth == 0)
333 menu_items_n_panes++;
334 XVECTOR (menu_items)->contents[menu_items_used++] = Qt;
335 XVECTOR (menu_items)->contents[menu_items_used++] = name;
336 XVECTOR (menu_items)->contents[menu_items_used++] = prefix_vec;
337 }
338
339 /* Push one menu item into the current pane. NAME is the string to
340 display. ENABLE if non-nil means this item can be selected. KEY
341 is the key generated by choosing this item, or nil if this item
342 doesn't really have a definition. DEF is the definition of this
343 item. EQUIV is the textual description of the keyboard equivalent
344 for this item (or nil if none). TYPE is the type of this menu
345 item, one of nil, `toggle' or `radio'. */
346
347 static void
348 push_menu_item (name, enable, key, def, equiv, type, selected, help)
349 Lisp_Object name, enable, key, def, equiv, type, selected, help;
350 {
351 if (menu_items_used + MENU_ITEMS_ITEM_LENGTH > menu_items_allocated)
352 grow_menu_items ();
353
354 XVECTOR (menu_items)->contents[menu_items_used++] = name;
355 XVECTOR (menu_items)->contents[menu_items_used++] = enable;
356 XVECTOR (menu_items)->contents[menu_items_used++] = key;
357 XVECTOR (menu_items)->contents[menu_items_used++] = equiv;
358 XVECTOR (menu_items)->contents[menu_items_used++] = def;
359 XVECTOR (menu_items)->contents[menu_items_used++] = type;
360 XVECTOR (menu_items)->contents[menu_items_used++] = selected;
361 XVECTOR (menu_items)->contents[menu_items_used++] = help;
362 }
363 \f
364 /* Look through KEYMAPS, a vector of keymaps that is NMAPS long,
365 and generate menu panes for them in menu_items.
366 If NOTREAL is nonzero,
367 don't bother really computing whether an item is enabled. */
368
369 static void
370 keymap_panes (keymaps, nmaps, notreal)
371 Lisp_Object *keymaps;
372 int nmaps;
373 int notreal;
374 {
375 int mapno;
376
377 init_menu_items ();
378
379 /* Loop over the given keymaps, making a pane for each map.
380 But don't make a pane that is empty--ignore that map instead.
381 P is the number of panes we have made so far. */
382 for (mapno = 0; mapno < nmaps; mapno++)
383 single_keymap_panes (keymaps[mapno], Qnil, Qnil, notreal, 10);
384
385 finish_menu_items ();
386 }
387
388 /* This is a recursive subroutine of keymap_panes.
389 It handles one keymap, KEYMAP.
390 The other arguments are passed along
391 or point to local variables of the previous function.
392 If NOTREAL is nonzero, only check for equivalent key bindings, don't
393 evaluate expressions in menu items and don't make any menu.
394
395 If we encounter submenus deeper than MAXDEPTH levels, ignore them. */
396
397 static void
398 single_keymap_panes (keymap, pane_name, prefix, notreal, maxdepth)
399 Lisp_Object keymap;
400 Lisp_Object pane_name;
401 Lisp_Object prefix;
402 int notreal;
403 int maxdepth;
404 {
405 Lisp_Object pending_maps = Qnil;
406 Lisp_Object tail, item;
407 struct gcpro gcpro1, gcpro2;
408 int notbuttons = 0;
409
410 if (maxdepth <= 0)
411 return;
412
413 push_menu_pane (pane_name, prefix);
414
415 #ifndef HAVE_BOXES
416 /* Remember index for first item in this pane so we can go back and
417 add a prefix when (if) we see the first button. After that, notbuttons
418 is set to 0, to mark that we have seen a button and all non button
419 items need a prefix. */
420 notbuttons = menu_items_used;
421 #endif
422
423 for (tail = keymap; CONSP (tail); tail = XCDR (tail))
424 {
425 GCPRO2 (keymap, pending_maps);
426 /* Look at each key binding, and if it is a menu item add it
427 to this menu. */
428 item = XCAR (tail);
429 if (CONSP (item))
430 single_menu_item (XCAR (item), XCDR (item),
431 &pending_maps, notreal, maxdepth, &notbuttons);
432 else if (VECTORP (item))
433 {
434 /* Loop over the char values represented in the vector. */
435 int len = XVECTOR (item)->size;
436 int c;
437 for (c = 0; c < len; c++)
438 {
439 Lisp_Object character;
440 XSETFASTINT (character, c);
441 single_menu_item (character, XVECTOR (item)->contents[c],
442 &pending_maps, notreal, maxdepth, &notbuttons);
443 }
444 }
445 UNGCPRO;
446 }
447
448 /* Process now any submenus which want to be panes at this level. */
449 while (!NILP (pending_maps))
450 {
451 Lisp_Object elt, eltcdr, string;
452 elt = Fcar (pending_maps);
453 eltcdr = XCDR (elt);
454 string = XCAR (eltcdr);
455 /* We no longer discard the @ from the beginning of the string here.
456 Instead, we do this in xmenu_show. */
457 single_keymap_panes (Fcar (elt), string,
458 XCDR (eltcdr), notreal, maxdepth - 1);
459 pending_maps = Fcdr (pending_maps);
460 }
461 }
462 \f
463 /* This is a subroutine of single_keymap_panes that handles one
464 keymap entry.
465 KEY is a key in a keymap and ITEM is its binding.
466 PENDING_MAPS_PTR points to a list of keymaps waiting to be made into
467 separate panes.
468 If NOTREAL is nonzero, only check for equivalent key bindings, don't
469 evaluate expressions in menu items and don't make any menu.
470 If we encounter submenus deeper than MAXDEPTH levels, ignore them.
471 NOTBUTTONS_PTR is only used when simulating toggle boxes and radio
472 buttons. It points to variable notbuttons in single_keymap_panes,
473 which keeps track of if we have seen a button in this menu or not. */
474
475 static void
476 single_menu_item (key, item, pending_maps_ptr, notreal, maxdepth,
477 notbuttons_ptr)
478 Lisp_Object key, item;
479 Lisp_Object *pending_maps_ptr;
480 int maxdepth, notreal;
481 int *notbuttons_ptr;
482 {
483 Lisp_Object map, item_string, enabled;
484 struct gcpro gcpro1, gcpro2;
485 int res;
486
487 /* Parse the menu item and leave the result in item_properties. */
488 GCPRO2 (key, item);
489 res = parse_menu_item (item, notreal, 0);
490 UNGCPRO;
491 if (!res)
492 return; /* Not a menu item. */
493
494 map = XVECTOR (item_properties)->contents[ITEM_PROPERTY_MAP];
495
496 if (notreal)
497 {
498 /* We don't want to make a menu, just traverse the keymaps to
499 precompute equivalent key bindings. */
500 if (!NILP (map))
501 single_keymap_panes (map, Qnil, key, 1, maxdepth - 1);
502 return;
503 }
504
505 enabled = XVECTOR (item_properties)->contents[ITEM_PROPERTY_ENABLE];
506 item_string = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
507
508 if (!NILP (map) && XSTRING (item_string)->data[0] == '@')
509 {
510 if (!NILP (enabled))
511 /* An enabled separate pane. Remember this to handle it later. */
512 *pending_maps_ptr = Fcons (Fcons (map, Fcons (item_string, key)),
513 *pending_maps_ptr);
514 return;
515 }
516
517 #ifndef HAVE_BOXES
518 /* Simulate radio buttons and toggle boxes by putting a prefix in
519 front of them. */
520 {
521 Lisp_Object prefix = Qnil;
522 Lisp_Object type = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE];
523 if (!NILP (type))
524 {
525 Lisp_Object selected
526 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED];
527
528 if (*notbuttons_ptr)
529 /* The first button. Line up previous items in this menu. */
530 {
531 int index = *notbuttons_ptr; /* Index for first item this menu. */
532 int submenu = 0;
533 Lisp_Object tem;
534 while (index < menu_items_used)
535 {
536 tem
537 = XVECTOR (menu_items)->contents[index + MENU_ITEMS_ITEM_NAME];
538 if (NILP (tem))
539 {
540 index++;
541 submenu++; /* Skip sub menu. */
542 }
543 else if (EQ (tem, Qlambda))
544 {
545 index++;
546 submenu--; /* End sub menu. */
547 }
548 else if (EQ (tem, Qt))
549 index += 3; /* Skip new pane marker. */
550 else if (EQ (tem, Qquote))
551 index++; /* Skip a left, right divider. */
552 else
553 {
554 if (!submenu && XSTRING (tem)->data[0] != '\0'
555 && XSTRING (tem)->data[0] != '-')
556 XVECTOR (menu_items)->contents[index + MENU_ITEMS_ITEM_NAME]
557 = concat2 (build_string (" "), tem);
558 index += MENU_ITEMS_ITEM_LENGTH;
559 }
560 }
561 *notbuttons_ptr = 0;
562 }
563
564 /* Calculate prefix, if any, for this item. */
565 if (EQ (type, QCtoggle))
566 prefix = build_string (NILP (selected) ? "[ ] " : "[X] ");
567 else if (EQ (type, QCradio))
568 prefix = build_string (NILP (selected) ? "( ) " : "(*) ");
569 }
570 /* Not a button. If we have earlier buttons, then we need a prefix. */
571 else if (!*notbuttons_ptr && XSTRING (item_string)->data[0] != '\0'
572 && XSTRING (item_string)->data[0] != '-')
573 prefix = build_string (" ");
574
575 if (!NILP (prefix))
576 item_string = concat2 (prefix, item_string);
577 }
578 #endif /* not HAVE_BOXES */
579
580 #ifndef USE_X_TOOLKIT
581 if (!NILP(map))
582 /* Indicate visually that this is a submenu. */
583 item_string = concat2 (item_string, build_string (" >"));
584 #endif
585
586 push_menu_item (item_string, enabled, key,
587 XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF],
588 XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ],
589 XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE],
590 XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED],
591 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP]);
592
593 #ifdef USE_X_TOOLKIT
594 /* Display a submenu using the toolkit. */
595 if (! (NILP (map) || NILP (enabled)))
596 {
597 push_submenu_start ();
598 single_keymap_panes (map, Qnil, key, 0, maxdepth - 1);
599 push_submenu_end ();
600 }
601 #endif
602 }
603 \f
604 /* Push all the panes and items of a menu described by the
605 alist-of-alists MENU.
606 This handles old-fashioned calls to x-popup-menu. */
607
608 static void
609 list_of_panes (menu)
610 Lisp_Object menu;
611 {
612 Lisp_Object tail;
613
614 init_menu_items ();
615
616 for (tail = menu; !NILP (tail); tail = Fcdr (tail))
617 {
618 Lisp_Object elt, pane_name, pane_data;
619 elt = Fcar (tail);
620 pane_name = Fcar (elt);
621 CHECK_STRING (pane_name, 0);
622 push_menu_pane (pane_name, Qnil);
623 pane_data = Fcdr (elt);
624 CHECK_CONS (pane_data, 0);
625 list_of_items (pane_data);
626 }
627
628 finish_menu_items ();
629 }
630
631 /* Push the items in a single pane defined by the alist PANE. */
632
633 static void
634 list_of_items (pane)
635 Lisp_Object pane;
636 {
637 Lisp_Object tail, item, item1;
638
639 for (tail = pane; !NILP (tail); tail = Fcdr (tail))
640 {
641 item = Fcar (tail);
642 if (STRINGP (item))
643 push_menu_item (item, Qnil, Qnil, Qt, Qnil, Qnil, Qnil, Qnil);
644 else if (NILP (item))
645 push_left_right_boundary ();
646 else
647 {
648 CHECK_CONS (item, 0);
649 item1 = Fcar (item);
650 CHECK_STRING (item1, 1);
651 push_menu_item (item1, Qt, Fcdr (item), Qt, Qnil, Qnil, Qnil, Qnil);
652 }
653 }
654 }
655 \f
656 DEFUN ("x-popup-menu", Fx_popup_menu, Sx_popup_menu, 2, 2, 0,
657 "Pop up a deck-of-cards menu and return user's selection.\n\
658 POSITION is a position specification. This is either a mouse button event\n\
659 or a list ((XOFFSET YOFFSET) WINDOW)\n\
660 where XOFFSET and YOFFSET are positions in pixels from the top left\n\
661 corner of WINDOW's frame. (WINDOW may be a frame object instead of a window.)\n\
662 This controls the position of the center of the first line\n\
663 in the first pane of the menu, not the top left of the menu as a whole.\n\
664 If POSITION is t, it means to use the current mouse position.\n\
665 \n\
666 MENU is a specifier for a menu. For the simplest case, MENU is a keymap.\n\
667 The menu items come from key bindings that have a menu string as well as\n\
668 a definition; actually, the \"definition\" in such a key binding looks like\n\
669 \(STRING . REAL-DEFINITION). To give the menu a title, put a string into\n\
670 the keymap as a top-level element.\n\n\
671 If REAL-DEFINITION is nil, that puts a nonselectable string in the menu.\n\
672 Otherwise, REAL-DEFINITION should be a valid key binding definition.\n\
673 \n\
674 You can also use a list of keymaps as MENU.\n\
675 Then each keymap makes a separate pane.\n\
676 When MENU is a keymap or a list of keymaps, the return value\n\
677 is a list of events.\n\n\
678 \n\
679 Alternatively, you can specify a menu of multiple panes\n\
680 with a list of the form (TITLE PANE1 PANE2...),\n\
681 where each pane is a list of form (TITLE ITEM1 ITEM2...).\n\
682 Each ITEM is normally a cons cell (STRING . VALUE);\n\
683 but a string can appear as an item--that makes a nonselectable line\n\
684 in the menu.\n\
685 With this form of menu, the return value is VALUE from the chosen item.\n\
686 \n\
687 If POSITION is nil, don't display the menu at all, just precalculate the\n\
688 cached information about equivalent key sequences.")
689 (position, menu)
690 Lisp_Object position, menu;
691 {
692 Lisp_Object keymap, tem;
693 int xpos, ypos;
694 Lisp_Object title;
695 char *error_name;
696 Lisp_Object selection;
697 FRAME_PTR f;
698 Lisp_Object x, y, window;
699 int keymaps = 0;
700 int for_click = 0;
701 struct gcpro gcpro1;
702
703 #ifdef HAVE_MENUS
704 if (! NILP (position))
705 {
706 check_x ();
707
708 /* Decode the first argument: find the window and the coordinates. */
709 if (EQ (position, Qt)
710 || (CONSP (position) && EQ (XCAR (position), Qmenu_bar)))
711 {
712 /* Use the mouse's current position. */
713 FRAME_PTR new_f = SELECTED_FRAME ();
714 Lisp_Object bar_window;
715 enum scroll_bar_part part;
716 unsigned long time;
717
718 if (mouse_position_hook)
719 (*mouse_position_hook) (&new_f, 1, &bar_window,
720 &part, &x, &y, &time);
721 if (new_f != 0)
722 XSETFRAME (window, new_f);
723 else
724 {
725 window = selected_window;
726 XSETFASTINT (x, 0);
727 XSETFASTINT (y, 0);
728 }
729 }
730 else
731 {
732 tem = Fcar (position);
733 if (CONSP (tem))
734 {
735 window = Fcar (Fcdr (position));
736 x = Fcar (tem);
737 y = Fcar (Fcdr (tem));
738 }
739 else
740 {
741 for_click = 1;
742 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
743 window = Fcar (tem); /* POSN_WINDOW (tem) */
744 tem = Fcar (Fcdr (Fcdr (tem))); /* POSN_WINDOW_POSN (tem) */
745 x = Fcar (tem);
746 y = Fcdr (tem);
747 }
748 }
749
750 CHECK_NUMBER (x, 0);
751 CHECK_NUMBER (y, 0);
752
753 /* Decode where to put the menu. */
754
755 if (FRAMEP (window))
756 {
757 f = XFRAME (window);
758 xpos = 0;
759 ypos = 0;
760 }
761 else if (WINDOWP (window))
762 {
763 CHECK_LIVE_WINDOW (window, 0);
764 f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
765
766 xpos = (FONT_WIDTH (f->output_data.x->font)
767 * XFASTINT (XWINDOW (window)->left));
768 ypos = (f->output_data.x->line_height
769 * XFASTINT (XWINDOW (window)->top));
770 }
771 else
772 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
773 but I don't want to make one now. */
774 CHECK_WINDOW (window, 0);
775
776 xpos += XINT (x);
777 ypos += XINT (y);
778
779 XSETFRAME (Vmenu_updating_frame, f);
780 }
781 Vmenu_updating_frame = Qnil;
782 #endif /* HAVE_MENUS */
783
784 title = Qnil;
785 GCPRO1 (title);
786
787 /* Decode the menu items from what was specified. */
788
789 keymap = Fkeymapp (menu);
790 tem = Qnil;
791 if (CONSP (menu))
792 tem = Fkeymapp (Fcar (menu));
793 if (!NILP (keymap))
794 {
795 /* We were given a keymap. Extract menu info from the keymap. */
796 Lisp_Object prompt;
797 keymap = get_keymap (menu);
798
799 /* Extract the detailed info to make one pane. */
800 keymap_panes (&menu, 1, NILP (position));
801
802 /* Search for a string appearing directly as an element of the keymap.
803 That string is the title of the menu. */
804 prompt = map_prompt (keymap);
805 if (NILP (title) && !NILP (prompt))
806 title = prompt;
807
808 /* Make that be the pane title of the first pane. */
809 if (!NILP (prompt) && menu_items_n_panes >= 0)
810 XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME] = prompt;
811
812 keymaps = 1;
813 }
814 else if (!NILP (tem))
815 {
816 /* We were given a list of keymaps. */
817 int nmaps = XFASTINT (Flength (menu));
818 Lisp_Object *maps
819 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
820 int i;
821
822 title = Qnil;
823
824 /* The first keymap that has a prompt string
825 supplies the menu title. */
826 for (tem = menu, i = 0; CONSP (tem); tem = Fcdr (tem))
827 {
828 Lisp_Object prompt;
829
830 maps[i++] = keymap = get_keymap (Fcar (tem));
831
832 prompt = map_prompt (keymap);
833 if (NILP (title) && !NILP (prompt))
834 title = prompt;
835 }
836
837 /* Extract the detailed info to make one pane. */
838 keymap_panes (maps, nmaps, NILP (position));
839
840 /* Make the title be the pane title of the first pane. */
841 if (!NILP (title) && menu_items_n_panes >= 0)
842 XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME] = title;
843
844 keymaps = 1;
845 }
846 else
847 {
848 /* We were given an old-fashioned menu. */
849 title = Fcar (menu);
850 CHECK_STRING (title, 1);
851
852 list_of_panes (Fcdr (menu));
853
854 keymaps = 0;
855 }
856
857 if (NILP (position))
858 {
859 discard_menu_items ();
860 UNGCPRO;
861 return Qnil;
862 }
863
864 #ifdef HAVE_MENUS
865 /* Display them in a menu. */
866 BLOCK_INPUT;
867
868 selection = xmenu_show (f, xpos, ypos, for_click,
869 keymaps, title, &error_name);
870 UNBLOCK_INPUT;
871
872 discard_menu_items ();
873
874 UNGCPRO;
875 #endif /* HAVE_MENUS */
876
877 if (error_name) error (error_name);
878 return selection;
879 }
880
881 #ifdef HAVE_MENUS
882
883 DEFUN ("x-popup-dialog", Fx_popup_dialog, Sx_popup_dialog, 2, 2, 0,
884 "Pop up a dialog box and return user's selection.\n\
885 POSITION specifies which frame to use.\n\
886 This is normally a mouse button event or a window or frame.\n\
887 If POSITION is t, it means to use the frame the mouse is on.\n\
888 The dialog box appears in the middle of the specified frame.\n\
889 \n\
890 CONTENTS specifies the alternatives to display in the dialog box.\n\
891 It is a list of the form (TITLE ITEM1 ITEM2...).\n\
892 Each ITEM is a cons cell (STRING . VALUE).\n\
893 The return value is VALUE from the chosen item.\n\n\
894 An ITEM may also be just a string--that makes a nonselectable item.\n\
895 An ITEM may also be nil--that means to put all preceding items\n\
896 on the left of the dialog box and all following items on the right.\n\
897 \(By default, approximately half appear on each side.)")
898 (position, contents)
899 Lisp_Object position, contents;
900 {
901 FRAME_PTR f;
902 Lisp_Object window;
903
904 check_x ();
905
906 /* Decode the first argument: find the window or frame to use. */
907 if (EQ (position, Qt)
908 || (CONSP (position) && EQ (XCAR (position), Qmenu_bar)))
909 {
910 #if 0 /* Using the frame the mouse is on may not be right. */
911 /* Use the mouse's current position. */
912 FRAME_PTR new_f = SELECTED_FRAME ();
913 Lisp_Object bar_window;
914 int part;
915 unsigned long time;
916 Lisp_Object x, y;
917
918 (*mouse_position_hook) (&new_f, 1, &bar_window, &part, &x, &y, &time);
919
920 if (new_f != 0)
921 XSETFRAME (window, new_f);
922 else
923 window = selected_window;
924 #endif
925 window = selected_window;
926 }
927 else if (CONSP (position))
928 {
929 Lisp_Object tem;
930 tem = Fcar (position);
931 if (CONSP (tem))
932 window = Fcar (Fcdr (position));
933 else
934 {
935 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
936 window = Fcar (tem); /* POSN_WINDOW (tem) */
937 }
938 }
939 else if (WINDOWP (position) || FRAMEP (position))
940 window = position;
941 else
942 window = Qnil;
943
944 /* Decode where to put the menu. */
945
946 if (FRAMEP (window))
947 f = XFRAME (window);
948 else if (WINDOWP (window))
949 {
950 CHECK_LIVE_WINDOW (window, 0);
951 f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
952 }
953 else
954 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
955 but I don't want to make one now. */
956 CHECK_WINDOW (window, 0);
957
958 #ifndef USE_X_TOOLKIT
959 /* Display a menu with these alternatives
960 in the middle of frame F. */
961 {
962 Lisp_Object x, y, frame, newpos;
963 XSETFRAME (frame, f);
964 XSETINT (x, x_pixel_width (f) / 2);
965 XSETINT (y, x_pixel_height (f) / 2);
966 newpos = Fcons (Fcons (x, Fcons (y, Qnil)), Fcons (frame, Qnil));
967
968 return Fx_popup_menu (newpos,
969 Fcons (Fcar (contents), Fcons (contents, Qnil)));
970 }
971 #else
972 {
973 Lisp_Object title;
974 char *error_name;
975 Lisp_Object selection;
976
977 /* Decode the dialog items from what was specified. */
978 title = Fcar (contents);
979 CHECK_STRING (title, 1);
980
981 list_of_panes (Fcons (contents, Qnil));
982
983 /* Display them in a dialog box. */
984 BLOCK_INPUT;
985 selection = xdialog_show (f, 0, title, &error_name);
986 UNBLOCK_INPUT;
987
988 discard_menu_items ();
989
990 if (error_name) error (error_name);
991 return selection;
992 }
993 #endif
994 }
995 \f
996 #ifdef USE_X_TOOLKIT
997
998 /* Loop in Xt until the menu pulldown or dialog popup has been
999 popped down (deactivated). This is used for x-popup-menu
1000 and x-popup-dialog; it is not used for the menu bar any more.
1001
1002 NOTE: All calls to popup_get_selection should be protected
1003 with BLOCK_INPUT, UNBLOCK_INPUT wrappers. */
1004
1005 void
1006 popup_get_selection (initial_event, dpyinfo, id)
1007 XEvent *initial_event;
1008 struct x_display_info *dpyinfo;
1009 LWLIB_ID id;
1010 {
1011 XEvent event;
1012
1013 /* Define a queue to save up for later unreading
1014 all X events that don't pertain to the menu. */
1015 struct event_queue
1016 {
1017 XEvent event;
1018 struct event_queue *next;
1019 };
1020
1021 struct event_queue *queue = NULL;
1022 struct event_queue *queue_tmp;
1023
1024 if (initial_event)
1025 event = *initial_event;
1026 else
1027 XtAppNextEvent (Xt_app_con, &event);
1028
1029 while (1)
1030 {
1031 /* Handle expose events for editor frames right away. */
1032 if (event.type == Expose)
1033 process_expose_from_menu (event);
1034 /* Make sure we don't consider buttons grabbed after menu goes.
1035 And make sure to deactivate for any ButtonRelease,
1036 even if XtDispatchEvent doesn't do that. */
1037 else if (event.type == ButtonRelease
1038 && dpyinfo->display == event.xbutton.display)
1039 {
1040 dpyinfo->grabbed &= ~(1 << event.xbutton.button);
1041 popup_activated_flag = 0;
1042 #ifdef USE_MOTIF /* Pretending that the event came from a
1043 Btn1Down seems the only way to convince Motif to
1044 activate its callbacks; setting the XmNmenuPost
1045 isn't working. --marcus@sysc.pdx.edu. */
1046 event.xbutton.button = 1;
1047 #endif
1048 }
1049 /* If the user presses a key, deactivate the menu.
1050 The user is likely to do that if we get wedged. */
1051 else if (event.type == KeyPress
1052 && dpyinfo->display == event.xbutton.display)
1053 {
1054 KeySym keysym = XLookupKeysym (&event.xkey, 0);
1055 if (!IsModifierKey (keysym))
1056 {
1057 popup_activated_flag = 0;
1058 break;
1059 }
1060 }
1061 /* Button presses outside the menu also pop it down. */
1062 else if (event.type == ButtonPress
1063 && event.xany.display == dpyinfo->display
1064 && x_any_window_to_frame (dpyinfo, event.xany.window))
1065 {
1066 popup_activated_flag = 0;
1067 break;
1068 }
1069
1070 /* Queue all events not for this popup,
1071 except for Expose, which we've already handled, and ButtonRelease.
1072 Note that the X window is associated with the frame if this
1073 is a menu bar popup, but not if it's a dialog box. So we use
1074 x_non_menubar_window_to_frame, not x_any_window_to_frame. */
1075 if (event.type != Expose
1076 && !(event.type == ButtonRelease
1077 && dpyinfo->display == event.xbutton.display)
1078 && (event.xany.display != dpyinfo->display
1079 || x_non_menubar_window_to_frame (dpyinfo, event.xany.window)))
1080 {
1081 queue_tmp = (struct event_queue *) malloc (sizeof (struct event_queue));
1082
1083 if (queue_tmp != NULL)
1084 {
1085 queue_tmp->event = event;
1086 queue_tmp->next = queue;
1087 queue = queue_tmp;
1088 }
1089 }
1090 else
1091 XtDispatchEvent (&event);
1092
1093 if (!popup_activated ())
1094 break;
1095 XtAppNextEvent (Xt_app_con, &event);
1096 }
1097
1098 /* Unread any events that we got but did not handle. */
1099 while (queue != NULL)
1100 {
1101 queue_tmp = queue;
1102 XPutBackEvent (queue_tmp->event.xany.display, &queue_tmp->event);
1103 queue = queue_tmp->next;
1104 free ((char *)queue_tmp);
1105 /* Cause these events to get read as soon as we UNBLOCK_INPUT. */
1106 interrupt_input_pending = 1;
1107 }
1108 }
1109
1110 /* Activate the menu bar of frame F.
1111 This is called from keyboard.c when it gets the
1112 menu_bar_activate_event out of the Emacs event queue.
1113
1114 To activate the menu bar, we use the X button-press event
1115 that was saved in saved_menu_event.
1116 That makes the toolkit do its thing.
1117
1118 But first we recompute the menu bar contents (the whole tree).
1119
1120 The reason for saving the button event until here, instead of
1121 passing it to the toolkit right away, is that we can safely
1122 execute Lisp code. */
1123
1124 void
1125 x_activate_menubar (f)
1126 FRAME_PTR f;
1127 {
1128 if (!f->output_data.x->saved_menu_event->type)
1129 return;
1130
1131 set_frame_menubar (f, 0, 1);
1132 BLOCK_INPUT;
1133 XtDispatchEvent ((XEvent *) f->output_data.x->saved_menu_event);
1134 UNBLOCK_INPUT;
1135 #ifdef USE_MOTIF
1136 if (f->output_data.x->saved_menu_event->type == ButtonRelease)
1137 pending_menu_activation = 1;
1138 #endif
1139
1140 /* Ignore this if we get it a second time. */
1141 f->output_data.x->saved_menu_event->type = 0;
1142 }
1143
1144 /* Detect if a dialog or menu has been posted. */
1145
1146 int
1147 popup_activated ()
1148 {
1149 return popup_activated_flag;
1150 }
1151
1152 /* This callback is invoked when the user selects a menubar cascade
1153 pushbutton, but before the pulldown menu is posted. */
1154
1155 static void
1156 popup_activate_callback (widget, id, client_data)
1157 Widget widget;
1158 LWLIB_ID id;
1159 XtPointer client_data;
1160 {
1161 #ifdef USE_MOTIF
1162 ++popup_activated_flag;
1163 #else
1164 popup_activated_flag = 1;
1165 #endif
1166 }
1167
1168 /* This callback is invoked when a dialog or menu is finished being
1169 used and has been unposted. */
1170
1171 static void
1172 popup_deactivate_callback (widget, id, client_data)
1173 Widget widget;
1174 LWLIB_ID id;
1175 XtPointer client_data;
1176 {
1177 #ifdef USE_MOTIF
1178 --popup_activated_flag;
1179 #else
1180 popup_activated_flag = 0;
1181 #endif
1182 }
1183
1184 /* Lwlib callback called when menu items are highlighted/unhighlighted
1185 while moving the mouse over them. WIDGET is the menu bar or menu
1186 popup widget. ID is its LWLIB_ID. CALL_DATA contains a pointer to
1187 the widget_value structure for the menu item, or null in case of
1188 unhighlighting. */
1189
1190 void
1191 menu_highlight_callback (widget, id, call_data)
1192 Widget widget;
1193 LWLIB_ID id;
1194 void *call_data;
1195 {
1196 widget_value *wv = (widget_value *) call_data;
1197 struct frame *f;
1198 Lisp_Object frame, help;
1199 struct input_event buf;
1200
1201 /* Determine the frame for the help event. */
1202 f = menubar_id_to_frame (id);
1203 if (f)
1204 XSETFRAME (frame, f);
1205 else
1206 {
1207 /* WIDGET is the popup menu. It's parent is the frame's
1208 widget. See which frame that is. */
1209 Widget frame_widget = XtParent (widget);
1210 Lisp_Object tail;
1211
1212 for (tail = Vframe_list; GC_CONSP (tail); tail = XCDR (tail))
1213 {
1214 frame = XCAR (tail);
1215 if (GC_FRAMEP (frame)
1216 && (f = XFRAME (frame),
1217 FRAME_X_P (f) && f->output_data.x->widget == frame_widget))
1218 break;
1219 }
1220 }
1221
1222 /* Store the help event. */
1223 help = wv && wv->help ? build_string (wv->help) : Qnil;
1224 buf.kind = HELP_EVENT;
1225 buf.frame_or_window = Fcons (frame, help);
1226 kbd_buffer_store_event (&buf);
1227 }
1228
1229 /* This callback is called from the menu bar pulldown menu
1230 when the user makes a selection.
1231 Figure out what the user chose
1232 and put the appropriate events into the keyboard buffer. */
1233
1234 static void
1235 menubar_selection_callback (widget, id, client_data)
1236 Widget widget;
1237 LWLIB_ID id;
1238 XtPointer client_data;
1239 {
1240 Lisp_Object prefix, entry;
1241 FRAME_PTR f = menubar_id_to_frame (id);
1242 Lisp_Object vector;
1243 Lisp_Object *subprefix_stack;
1244 int submenu_depth = 0;
1245 int i;
1246
1247 if (!f)
1248 return;
1249 subprefix_stack = (Lisp_Object *) alloca (f->menu_bar_items_used * sizeof (Lisp_Object));
1250 vector = f->menu_bar_vector;
1251 prefix = Qnil;
1252 i = 0;
1253 while (i < f->menu_bar_items_used)
1254 {
1255 if (EQ (XVECTOR (vector)->contents[i], Qnil))
1256 {
1257 subprefix_stack[submenu_depth++] = prefix;
1258 prefix = entry;
1259 i++;
1260 }
1261 else if (EQ (XVECTOR (vector)->contents[i], Qlambda))
1262 {
1263 prefix = subprefix_stack[--submenu_depth];
1264 i++;
1265 }
1266 else if (EQ (XVECTOR (vector)->contents[i], Qt))
1267 {
1268 prefix = XVECTOR (vector)->contents[i + MENU_ITEMS_PANE_PREFIX];
1269 i += MENU_ITEMS_PANE_LENGTH;
1270 }
1271 else
1272 {
1273 entry = XVECTOR (vector)->contents[i + MENU_ITEMS_ITEM_VALUE];
1274 /* The EMACS_INT cast avoids a warning. There's no problem
1275 as long as pointers have enough bits to hold small integers. */
1276 if ((int) (EMACS_INT) client_data == i)
1277 {
1278 int j;
1279 struct input_event buf;
1280 Lisp_Object frame;
1281
1282 XSETFRAME (frame, f);
1283 buf.kind = menu_bar_event;
1284 buf.frame_or_window = Fcons (frame, Fcons (Qmenu_bar, Qnil));
1285 kbd_buffer_store_event (&buf);
1286
1287 for (j = 0; j < submenu_depth; j++)
1288 if (!NILP (subprefix_stack[j]))
1289 {
1290 buf.kind = menu_bar_event;
1291 buf.frame_or_window = Fcons (frame, subprefix_stack[j]);
1292 kbd_buffer_store_event (&buf);
1293 }
1294
1295 if (!NILP (prefix))
1296 {
1297 buf.kind = menu_bar_event;
1298 buf.frame_or_window = Fcons (frame, prefix);
1299 kbd_buffer_store_event (&buf);
1300 }
1301
1302 buf.kind = menu_bar_event;
1303 buf.frame_or_window = Fcons (frame, entry);
1304 kbd_buffer_store_event (&buf);
1305
1306 return;
1307 }
1308 i += MENU_ITEMS_ITEM_LENGTH;
1309 }
1310 }
1311 }
1312
1313 /* Allocate a widget_value, blocking input. */
1314
1315 widget_value *
1316 xmalloc_widget_value ()
1317 {
1318 widget_value *value;
1319
1320 BLOCK_INPUT;
1321 value = malloc_widget_value ();
1322 UNBLOCK_INPUT;
1323
1324 return value;
1325 }
1326
1327 /* This recursively calls free_widget_value on the tree of widgets.
1328 It must free all data that was malloc'ed for these widget_values.
1329 In Emacs, many slots are pointers into the data of Lisp_Strings, and
1330 must be left alone. */
1331
1332 void
1333 free_menubar_widget_value_tree (wv)
1334 widget_value *wv;
1335 {
1336 if (! wv) return;
1337
1338 wv->name = wv->value = wv->key = (char *) 0xDEADBEEF;
1339
1340 if (wv->contents && (wv->contents != (widget_value*)1))
1341 {
1342 free_menubar_widget_value_tree (wv->contents);
1343 wv->contents = (widget_value *) 0xDEADBEEF;
1344 }
1345 if (wv->next)
1346 {
1347 free_menubar_widget_value_tree (wv->next);
1348 wv->next = (widget_value *) 0xDEADBEEF;
1349 }
1350 BLOCK_INPUT;
1351 free_widget_value (wv);
1352 UNBLOCK_INPUT;
1353 }
1354 \f
1355 /* Return a tree of widget_value structures for a menu bar item
1356 whose event type is ITEM_KEY (with string ITEM_NAME)
1357 and whose contents come from the list of keymaps MAPS. */
1358
1359 static widget_value *
1360 single_submenu (item_key, item_name, maps)
1361 Lisp_Object item_key, item_name, maps;
1362 {
1363 widget_value *wv, *prev_wv, *save_wv, *first_wv;
1364 int i;
1365 int submenu_depth = 0;
1366 Lisp_Object length;
1367 int len;
1368 Lisp_Object *mapvec;
1369 widget_value **submenu_stack;
1370 int previous_items = menu_items_used;
1371 int top_level_items = 0;
1372
1373 length = Flength (maps);
1374 len = XINT (length);
1375
1376 /* Convert the list MAPS into a vector MAPVEC. */
1377 mapvec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
1378 for (i = 0; i < len; i++)
1379 {
1380 mapvec[i] = Fcar (maps);
1381 maps = Fcdr (maps);
1382 }
1383
1384 menu_items_n_panes = 0;
1385
1386 /* Loop over the given keymaps, making a pane for each map.
1387 But don't make a pane that is empty--ignore that map instead. */
1388 for (i = 0; i < len; i++)
1389 {
1390 if (SYMBOLP (mapvec[i])
1391 || (CONSP (mapvec[i])
1392 && NILP (Fkeymapp (mapvec[i]))))
1393 {
1394 /* Here we have a command at top level in the menu bar
1395 as opposed to a submenu. */
1396 top_level_items = 1;
1397 push_menu_pane (Qnil, Qnil);
1398 push_menu_item (item_name, Qt, item_key, mapvec[i],
1399 Qnil, Qnil, Qnil, Qnil);
1400 }
1401 else
1402 single_keymap_panes (mapvec[i], item_name, item_key, 0, 10);
1403 }
1404
1405 /* Create a tree of widget_value objects
1406 representing the panes and their items. */
1407
1408 submenu_stack
1409 = (widget_value **) alloca (menu_items_used * sizeof (widget_value *));
1410 wv = xmalloc_widget_value ();
1411 wv->name = "menu";
1412 wv->value = 0;
1413 wv->enabled = 1;
1414 wv->button_type = BUTTON_TYPE_NONE;
1415 first_wv = wv;
1416 save_wv = 0;
1417 prev_wv = 0;
1418
1419 /* Loop over all panes and items made during this call
1420 and construct a tree of widget_value objects.
1421 Ignore the panes and items made by previous calls to
1422 single_submenu, even though those are also in menu_items. */
1423 i = previous_items;
1424 while (i < menu_items_used)
1425 {
1426 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
1427 {
1428 submenu_stack[submenu_depth++] = save_wv;
1429 save_wv = prev_wv;
1430 prev_wv = 0;
1431 i++;
1432 }
1433 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
1434 {
1435 prev_wv = save_wv;
1436 save_wv = submenu_stack[--submenu_depth];
1437 i++;
1438 }
1439 else if (EQ (XVECTOR (menu_items)->contents[i], Qt)
1440 && submenu_depth != 0)
1441 i += MENU_ITEMS_PANE_LENGTH;
1442 /* Ignore a nil in the item list.
1443 It's meaningful only for dialog boxes. */
1444 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
1445 i += 1;
1446 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
1447 {
1448 /* Create a new pane. */
1449 Lisp_Object pane_name, prefix;
1450 char *pane_string;
1451 pane_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_NAME];
1452 prefix = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
1453 #ifndef HAVE_MULTILINGUAL_MENU
1454 if (STRINGP (pane_name) && STRING_MULTIBYTE (pane_name))
1455 pane_name = string_make_unibyte (pane_name);
1456 #endif
1457 pane_string = (NILP (pane_name)
1458 ? "" : (char *) XSTRING (pane_name)->data);
1459 /* If there is just one top-level pane, put all its items directly
1460 under the top-level menu. */
1461 if (menu_items_n_panes == 1)
1462 pane_string = "";
1463
1464 /* If the pane has a meaningful name,
1465 make the pane a top-level menu item
1466 with its items as a submenu beneath it. */
1467 if (strcmp (pane_string, ""))
1468 {
1469 wv = xmalloc_widget_value ();
1470 if (save_wv)
1471 save_wv->next = wv;
1472 else
1473 first_wv->contents = wv;
1474 wv->name = pane_string;
1475 /* Ignore the @ that means "separate pane".
1476 This is a kludge, but this isn't worth more time. */
1477 if (!NILP (prefix) && wv->name[0] == '@')
1478 wv->name++;
1479 wv->value = 0;
1480 wv->enabled = 1;
1481 wv->button_type = BUTTON_TYPE_NONE;
1482 }
1483 save_wv = wv;
1484 prev_wv = 0;
1485 i += MENU_ITEMS_PANE_LENGTH;
1486 }
1487 else
1488 {
1489 /* Create a new item within current pane. */
1490 Lisp_Object item_name, enable, descrip, def, type, selected;
1491 Lisp_Object help;
1492
1493 item_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_NAME];
1494 enable = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_ENABLE];
1495 descrip
1496 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_EQUIV_KEY];
1497 def = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_DEFINITION];
1498 type = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_TYPE];
1499 selected = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_SELECTED];
1500 help = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_HELP];
1501
1502 #ifndef HAVE_MULTILINGUAL_MENU
1503 if (STRING_MULTIBYTE (item_name))
1504 item_name = string_make_unibyte (item_name);
1505 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
1506 descrip = string_make_unibyte (descrip);
1507 #endif
1508
1509 wv = xmalloc_widget_value ();
1510 if (prev_wv)
1511 prev_wv->next = wv;
1512 else
1513 save_wv->contents = wv;
1514
1515 wv->name = (char *) XSTRING (item_name)->data;
1516 if (!NILP (descrip))
1517 wv->key = (char *) XSTRING (descrip)->data;
1518 wv->value = 0;
1519 /* The EMACS_INT cast avoids a warning. There's no problem
1520 as long as pointers have enough bits to hold small integers. */
1521 wv->call_data = (!NILP (def) ? (void *) (EMACS_INT) i : 0);
1522 wv->enabled = !NILP (enable);
1523
1524 if (NILP (type))
1525 wv->button_type = BUTTON_TYPE_NONE;
1526 else if (EQ (type, QCradio))
1527 wv->button_type = BUTTON_TYPE_RADIO;
1528 else if (EQ (type, QCtoggle))
1529 wv->button_type = BUTTON_TYPE_TOGGLE;
1530 else
1531 abort ();
1532
1533 wv->selected = !NILP (selected);
1534 if (STRINGP (help))
1535 wv->help = XSTRING (help)->data;
1536
1537 prev_wv = wv;
1538
1539 i += MENU_ITEMS_ITEM_LENGTH;
1540 }
1541 }
1542
1543 /* If we have just one "menu item"
1544 that was originally a button, return it by itself. */
1545 if (top_level_items && first_wv->contents && first_wv->contents->next == 0)
1546 {
1547 wv = first_wv->contents;
1548 free_widget_value (first_wv);
1549 return wv;
1550 }
1551
1552 return first_wv;
1553 }
1554 \f
1555 extern void EmacsFrameSetCharSize ();
1556
1557 /* Recompute all the widgets of frame F, when the menu bar
1558 has been changed. */
1559
1560 static void
1561 update_frame_menubar (f)
1562 FRAME_PTR f;
1563 {
1564 struct x_output *x = f->output_data.x;
1565 int columns, rows;
1566 int menubar_changed;
1567
1568 /* We assume the menubar contents has changed if the global flag is set,
1569 or if the current buffer has changed, or if the menubar has never
1570 been updated before.
1571 */
1572 menubar_changed = (x->menubar_widget
1573 && !XtIsManaged (x->menubar_widget));
1574
1575 if (! (menubar_changed))
1576 return;
1577
1578 BLOCK_INPUT;
1579 /* Save the size of the frame because the pane widget doesn't accept to
1580 resize itself. So force it. */
1581 columns = f->width;
1582 rows = f->height;
1583
1584 /* Do the voodoo which means "I'm changing lots of things, don't try to
1585 refigure sizes until I'm done." */
1586 lw_refigure_widget (x->column_widget, False);
1587
1588 /* the order in which children are managed is the top to
1589 bottom order in which they are displayed in the paned window.
1590 First, remove the text-area widget.
1591 */
1592 XtUnmanageChild (x->edit_widget);
1593
1594 /* remove the menubar that is there now, and put up the menubar that
1595 should be there.
1596 */
1597 if (menubar_changed)
1598 {
1599 XtManageChild (x->menubar_widget);
1600 XtMapWidget (x->menubar_widget);
1601 XtVaSetValues (x->menubar_widget, XtNmappedWhenManaged, 1, 0);
1602 }
1603
1604 /* Re-manage the text-area widget, and then thrash the sizes. */
1605 XtManageChild (x->edit_widget);
1606 x_set_menu_resources_from_menu_face (f, x->menubar_widget);
1607 lw_refigure_widget (x->column_widget, True);
1608
1609 /* Force the pane widget to resize itself with the right values. */
1610 EmacsFrameSetCharSize (x->edit_widget, columns, rows);
1611 UNBLOCK_INPUT;
1612 }
1613
1614 /* Set the contents of the menubar widgets of frame F.
1615 The argument FIRST_TIME is currently ignored;
1616 it is set the first time this is called, from initialize_frame_menubar. */
1617
1618 void
1619 set_frame_menubar (f, first_time, deep_p)
1620 FRAME_PTR f;
1621 int first_time;
1622 int deep_p;
1623 {
1624 Widget menubar_widget = f->output_data.x->menubar_widget;
1625 Lisp_Object items;
1626 widget_value *wv, *first_wv, *prev_wv = 0;
1627 int i;
1628 LWLIB_ID id;
1629
1630 XSETFRAME (Vmenu_updating_frame, f);
1631
1632 if (f->output_data.x->id == 0)
1633 f->output_data.x->id = next_menubar_widget_id++;
1634 id = f->output_data.x->id;
1635
1636 if (! menubar_widget)
1637 deep_p = 1;
1638 else if (pending_menu_activation && !deep_p)
1639 deep_p = 1;
1640 /* Make the first call for any given frame always go deep. */
1641 else if (!f->output_data.x->saved_menu_event && !deep_p)
1642 {
1643 deep_p = 1;
1644 f->output_data.x->saved_menu_event = (XEvent*)xmalloc (sizeof (XEvent));
1645 f->output_data.x->saved_menu_event->type = 0;
1646 }
1647
1648 wv = xmalloc_widget_value ();
1649 wv->name = "menubar";
1650 wv->value = 0;
1651 wv->enabled = 1;
1652 wv->button_type = BUTTON_TYPE_NONE;
1653 first_wv = wv;
1654
1655 if (deep_p)
1656 {
1657 /* Make a widget-value tree representing the entire menu trees. */
1658
1659 struct buffer *prev = current_buffer;
1660 Lisp_Object buffer;
1661 int specpdl_count = specpdl_ptr - specpdl;
1662 int previous_menu_items_used = f->menu_bar_items_used;
1663 Lisp_Object *previous_items
1664 = (Lisp_Object *) alloca (previous_menu_items_used
1665 * sizeof (Lisp_Object));
1666
1667 /* If we are making a new widget, its contents are empty,
1668 do always reinitialize them. */
1669 if (! menubar_widget)
1670 previous_menu_items_used = 0;
1671
1672 buffer = XWINDOW (FRAME_SELECTED_WINDOW (f))->buffer;
1673 specbind (Qinhibit_quit, Qt);
1674 /* Don't let the debugger step into this code
1675 because it is not reentrant. */
1676 specbind (Qdebug_on_next_call, Qnil);
1677
1678 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
1679 if (NILP (Voverriding_local_map_menu_flag))
1680 {
1681 specbind (Qoverriding_terminal_local_map, Qnil);
1682 specbind (Qoverriding_local_map, Qnil);
1683 }
1684
1685 set_buffer_internal_1 (XBUFFER (buffer));
1686
1687 /* Run the Lucid hook. */
1688 call1 (Vrun_hooks, Qactivate_menubar_hook);
1689 /* If it has changed current-menubar from previous value,
1690 really recompute the menubar from the value. */
1691 if (! NILP (Vlucid_menu_bar_dirty_flag))
1692 call0 (Qrecompute_lucid_menubar);
1693 safe_run_hooks (Qmenu_bar_update_hook);
1694 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
1695
1696 items = FRAME_MENU_BAR_ITEMS (f);
1697
1698 inhibit_garbage_collection ();
1699
1700 /* Save the frame's previous menu bar contents data. */
1701 bcopy (XVECTOR (f->menu_bar_vector)->contents, previous_items,
1702 previous_menu_items_used * sizeof (Lisp_Object));
1703
1704 /* Fill in the current menu bar contents. */
1705 menu_items = f->menu_bar_vector;
1706 menu_items_allocated = XVECTOR (menu_items)->size;
1707 init_menu_items ();
1708 for (i = 0; i < XVECTOR (items)->size; i += 4)
1709 {
1710 Lisp_Object key, string, maps;
1711
1712 key = XVECTOR (items)->contents[i];
1713 string = XVECTOR (items)->contents[i + 1];
1714 maps = XVECTOR (items)->contents[i + 2];
1715 if (NILP (string))
1716 break;
1717
1718 wv = single_submenu (key, string, maps);
1719 if (prev_wv)
1720 prev_wv->next = wv;
1721 else
1722 first_wv->contents = wv;
1723 /* Don't set wv->name here; GC during the loop might relocate it. */
1724 wv->enabled = 1;
1725 wv->button_type = BUTTON_TYPE_NONE;
1726 prev_wv = wv;
1727 }
1728
1729 finish_menu_items ();
1730
1731 set_buffer_internal_1 (prev);
1732 unbind_to (specpdl_count, Qnil);
1733
1734 /* If there has been no change in the Lisp-level contents
1735 of the menu bar, skip redisplaying it. Just exit. */
1736
1737 for (i = 0; i < previous_menu_items_used; i++)
1738 if (menu_items_used == i
1739 || (!EQ (previous_items[i], XVECTOR (menu_items)->contents[i])))
1740 break;
1741 if (i == menu_items_used && i == previous_menu_items_used && i != 0)
1742 {
1743 free_menubar_widget_value_tree (first_wv);
1744 menu_items = Qnil;
1745
1746 return;
1747 }
1748
1749 /* Now GC cannot happen during the lifetime of the widget_value,
1750 so it's safe to store data from a Lisp_String. */
1751 wv = first_wv->contents;
1752 for (i = 0; i < XVECTOR (items)->size; i += 4)
1753 {
1754 Lisp_Object string;
1755 string = XVECTOR (items)->contents[i + 1];
1756 if (NILP (string))
1757 break;
1758 wv->name = (char *) XSTRING (string)->data;
1759 wv = wv->next;
1760 }
1761
1762 f->menu_bar_vector = menu_items;
1763 f->menu_bar_items_used = menu_items_used;
1764 menu_items = Qnil;
1765 }
1766 else
1767 {
1768 /* Make a widget-value tree containing
1769 just the top level menu bar strings. */
1770
1771 items = FRAME_MENU_BAR_ITEMS (f);
1772 for (i = 0; i < XVECTOR (items)->size; i += 4)
1773 {
1774 Lisp_Object string;
1775
1776 string = XVECTOR (items)->contents[i + 1];
1777 if (NILP (string))
1778 break;
1779
1780 wv = xmalloc_widget_value ();
1781 wv->name = (char *) XSTRING (string)->data;
1782 wv->value = 0;
1783 wv->enabled = 1;
1784 wv->button_type = BUTTON_TYPE_NONE;
1785 /* This prevents lwlib from assuming this
1786 menu item is really supposed to be empty. */
1787 /* The EMACS_INT cast avoids a warning.
1788 This value just has to be different from small integers. */
1789 wv->call_data = (void *) (EMACS_INT) (-1);
1790
1791 if (prev_wv)
1792 prev_wv->next = wv;
1793 else
1794 first_wv->contents = wv;
1795 prev_wv = wv;
1796 }
1797
1798 /* Forget what we thought we knew about what is in the
1799 detailed contents of the menu bar menus.
1800 Changing the top level always destroys the contents. */
1801 f->menu_bar_items_used = 0;
1802 }
1803
1804 /* Create or update the menu bar widget. */
1805
1806 BLOCK_INPUT;
1807
1808 if (menubar_widget)
1809 {
1810 /* Disable resizing (done for Motif!) */
1811 lw_allow_resizing (f->output_data.x->widget, False);
1812
1813 /* The third arg is DEEP_P, which says to consider the entire
1814 menu trees we supply, rather than just the menu bar item names. */
1815 lw_modify_all_widgets (id, first_wv, deep_p);
1816
1817 /* Re-enable the edit widget to resize. */
1818 lw_allow_resizing (f->output_data.x->widget, True);
1819 }
1820 else
1821 {
1822 menubar_widget = lw_create_widget ("menubar", "menubar", id, first_wv,
1823 f->output_data.x->column_widget,
1824 0,
1825 popup_activate_callback,
1826 menubar_selection_callback,
1827 popup_deactivate_callback,
1828 menu_highlight_callback);
1829 f->output_data.x->menubar_widget = menubar_widget;
1830 }
1831
1832 {
1833 int menubar_size
1834 = (f->output_data.x->menubar_widget
1835 ? (f->output_data.x->menubar_widget->core.height
1836 + f->output_data.x->menubar_widget->core.border_width)
1837 : 0);
1838
1839 #if 0 /* Experimentally, we now get the right results
1840 for -geometry -0-0 without this. 24 Aug 96, rms. */
1841 #ifdef USE_LUCID
1842 if (FRAME_EXTERNAL_MENU_BAR (f))
1843 {
1844 Dimension ibw = 0;
1845 XtVaGetValues (f->output_data.x->column_widget,
1846 XtNinternalBorderWidth, &ibw, NULL);
1847 menubar_size += ibw;
1848 }
1849 #endif /* USE_LUCID */
1850 #endif /* 0 */
1851
1852 f->output_data.x->menubar_height = menubar_size;
1853 }
1854
1855 free_menubar_widget_value_tree (first_wv);
1856 update_frame_menubar (f);
1857
1858 UNBLOCK_INPUT;
1859 }
1860
1861 /* Called from Fx_create_frame to create the initial menubar of a frame
1862 before it is mapped, so that the window is mapped with the menubar already
1863 there instead of us tacking it on later and thrashing the window after it
1864 is visible. */
1865
1866 void
1867 initialize_frame_menubar (f)
1868 FRAME_PTR f;
1869 {
1870 /* This function is called before the first chance to redisplay
1871 the frame. It has to be, so the frame will have the right size. */
1872 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
1873 set_frame_menubar (f, 1, 1);
1874 }
1875
1876 /* Get rid of the menu bar of frame F, and free its storage.
1877 This is used when deleting a frame, and when turning off the menu bar. */
1878
1879 void
1880 free_frame_menubar (f)
1881 FRAME_PTR f;
1882 {
1883 Widget menubar_widget;
1884
1885 menubar_widget = f->output_data.x->menubar_widget;
1886
1887 f->output_data.x->menubar_height = 0;
1888
1889 if (menubar_widget)
1890 {
1891 BLOCK_INPUT;
1892 lw_destroy_all_widgets ((LWLIB_ID) f->output_data.x->id);
1893 UNBLOCK_INPUT;
1894 }
1895 }
1896
1897 #endif /* USE_X_TOOLKIT */
1898 \f
1899 /* xmenu_show actually displays a menu using the panes and items in menu_items
1900 and returns the value selected from it.
1901 There are two versions of xmenu_show, one for Xt and one for Xlib.
1902 Both assume input is blocked by the caller. */
1903
1904 /* F is the frame the menu is for.
1905 X and Y are the frame-relative specified position,
1906 relative to the inside upper left corner of the frame F.
1907 FOR_CLICK is nonzero if this menu was invoked for a mouse click.
1908 KEYMAPS is 1 if this menu was specified with keymaps;
1909 in that case, we return a list containing the chosen item's value
1910 and perhaps also the pane's prefix.
1911 TITLE is the specified menu title.
1912 ERROR is a place to store an error message string in case of failure.
1913 (We return nil on failure, but the value doesn't actually matter.) */
1914
1915 #ifdef USE_X_TOOLKIT
1916
1917 /* We need a unique id for each widget handled by the Lucid Widget
1918 library.
1919
1920 For the main windows, and popup menus, we use this counter,
1921 which we increment each time after use. This starts from 1<<16.
1922
1923 For menu bars, we use numbers starting at 0, counted in
1924 next_menubar_widget_id. */
1925 LWLIB_ID widget_id_tick;
1926
1927 #ifdef __STDC__
1928 static Lisp_Object *volatile menu_item_selection;
1929 #else
1930 static Lisp_Object *menu_item_selection;
1931 #endif
1932
1933 static void
1934 popup_selection_callback (widget, id, client_data)
1935 Widget widget;
1936 LWLIB_ID id;
1937 XtPointer client_data;
1938 {
1939 menu_item_selection = (Lisp_Object *) client_data;
1940 }
1941
1942 static Lisp_Object
1943 xmenu_show (f, x, y, for_click, keymaps, title, error)
1944 FRAME_PTR f;
1945 int x;
1946 int y;
1947 int for_click;
1948 int keymaps;
1949 Lisp_Object title;
1950 char **error;
1951 {
1952 int i;
1953 LWLIB_ID menu_id;
1954 Widget menu;
1955 Arg av[2];
1956 int ac = 0;
1957 widget_value *wv, *save_wv = 0, *first_wv = 0, *prev_wv = 0;
1958 widget_value **submenu_stack
1959 = (widget_value **) alloca (menu_items_used * sizeof (widget_value *));
1960 Lisp_Object *subprefix_stack
1961 = (Lisp_Object *) alloca (menu_items_used * sizeof (Lisp_Object));
1962 int submenu_depth = 0;
1963 XButtonPressedEvent dummy;
1964
1965 int first_pane;
1966
1967 *error = NULL;
1968
1969 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
1970 {
1971 *error = "Empty menu";
1972 return Qnil;
1973 }
1974
1975 /* Create a tree of widget_value objects
1976 representing the panes and their items. */
1977 wv = xmalloc_widget_value ();
1978 wv->name = "menu";
1979 wv->value = 0;
1980 wv->enabled = 1;
1981 wv->button_type = BUTTON_TYPE_NONE;
1982 first_wv = wv;
1983 first_pane = 1;
1984
1985 /* Loop over all panes and items, filling in the tree. */
1986 i = 0;
1987 while (i < menu_items_used)
1988 {
1989 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
1990 {
1991 submenu_stack[submenu_depth++] = save_wv;
1992 save_wv = prev_wv;
1993 prev_wv = 0;
1994 first_pane = 1;
1995 i++;
1996 }
1997 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
1998 {
1999 prev_wv = save_wv;
2000 save_wv = submenu_stack[--submenu_depth];
2001 first_pane = 0;
2002 i++;
2003 }
2004 else if (EQ (XVECTOR (menu_items)->contents[i], Qt)
2005 && submenu_depth != 0)
2006 i += MENU_ITEMS_PANE_LENGTH;
2007 /* Ignore a nil in the item list.
2008 It's meaningful only for dialog boxes. */
2009 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
2010 i += 1;
2011 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
2012 {
2013 /* Create a new pane. */
2014 Lisp_Object pane_name, prefix;
2015 char *pane_string;
2016 pane_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_NAME];
2017 prefix = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
2018 #ifndef HAVE_MULTILINGUAL_MENU
2019 if (!NILP (pane_name) && STRING_MULTIBYTE (pane_name))
2020 pane_name = string_make_unibyte (pane_name);
2021 #endif
2022 pane_string = (NILP (pane_name)
2023 ? "" : (char *) XSTRING (pane_name)->data);
2024 /* If there is just one top-level pane, put all its items directly
2025 under the top-level menu. */
2026 if (menu_items_n_panes == 1)
2027 pane_string = "";
2028
2029 /* If the pane has a meaningful name,
2030 make the pane a top-level menu item
2031 with its items as a submenu beneath it. */
2032 if (!keymaps && strcmp (pane_string, ""))
2033 {
2034 wv = xmalloc_widget_value ();
2035 if (save_wv)
2036 save_wv->next = wv;
2037 else
2038 first_wv->contents = wv;
2039 wv->name = pane_string;
2040 if (keymaps && !NILP (prefix))
2041 wv->name++;
2042 wv->value = 0;
2043 wv->enabled = 1;
2044 wv->button_type = BUTTON_TYPE_NONE;
2045 save_wv = wv;
2046 prev_wv = 0;
2047 }
2048 else if (first_pane)
2049 {
2050 save_wv = wv;
2051 prev_wv = 0;
2052 }
2053 first_pane = 0;
2054 i += MENU_ITEMS_PANE_LENGTH;
2055 }
2056 else
2057 {
2058 /* Create a new item within current pane. */
2059 Lisp_Object item_name, enable, descrip, def, type, selected;
2060 item_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_NAME];
2061 enable = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_ENABLE];
2062 descrip
2063 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_EQUIV_KEY];
2064 def = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_DEFINITION];
2065 type = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_TYPE];
2066 selected = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_SELECTED];
2067
2068 #ifndef HAVE_MULTILINGUAL_MENU
2069 if (STRINGP (item_name) && STRING_MULTIBYTE (item_name))
2070 item_name = string_make_unibyte (item_name);
2071 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
2072 item_name = string_make_unibyte (descrip);
2073 #endif
2074
2075 wv = xmalloc_widget_value ();
2076 if (prev_wv)
2077 prev_wv->next = wv;
2078 else
2079 save_wv->contents = wv;
2080 wv->name = (char *) XSTRING (item_name)->data;
2081 if (!NILP (descrip))
2082 wv->key = (char *) XSTRING (descrip)->data;
2083 wv->value = 0;
2084 /* If this item has a null value,
2085 make the call_data null so that it won't display a box
2086 when the mouse is on it. */
2087 wv->call_data
2088 = (!NILP (def) ? (void *) &XVECTOR (menu_items)->contents[i] : 0);
2089 wv->enabled = !NILP (enable);
2090
2091 if (NILP (type))
2092 wv->button_type = BUTTON_TYPE_NONE;
2093 else if (EQ (type, QCtoggle))
2094 wv->button_type = BUTTON_TYPE_TOGGLE;
2095 else if (EQ (type, QCradio))
2096 wv->button_type = BUTTON_TYPE_RADIO;
2097 else
2098 abort ();
2099
2100 wv->selected = !NILP (selected);
2101
2102 prev_wv = wv;
2103
2104 i += MENU_ITEMS_ITEM_LENGTH;
2105 }
2106 }
2107
2108 /* Deal with the title, if it is non-nil. */
2109 if (!NILP (title))
2110 {
2111 widget_value *wv_title = xmalloc_widget_value ();
2112 widget_value *wv_sep1 = xmalloc_widget_value ();
2113 widget_value *wv_sep2 = xmalloc_widget_value ();
2114
2115 wv_sep2->name = "--";
2116 wv_sep2->next = first_wv->contents;
2117
2118 wv_sep1->name = "--";
2119 wv_sep1->next = wv_sep2;
2120
2121 #ifndef HAVE_MULTILINGUAL_MENU
2122 if (STRING_MULTIBYTE (title))
2123 title = string_make_unibyte (title);
2124 #endif
2125 wv_title->name = (char *) XSTRING (title)->data;
2126 wv_title->enabled = True;
2127 wv_title->button_type = BUTTON_TYPE_NONE;
2128 wv_title->next = wv_sep1;
2129 first_wv->contents = wv_title;
2130 }
2131
2132 /* Actually create the menu. */
2133 menu_id = widget_id_tick++;
2134 menu = lw_create_widget ("popup", first_wv->name, menu_id, first_wv,
2135 f->output_data.x->widget, 1, 0,
2136 popup_selection_callback,
2137 popup_deactivate_callback,
2138 menu_highlight_callback);
2139
2140 /* Adjust coordinates to relative to the outer (window manager) window. */
2141 {
2142 Window child;
2143 int win_x = 0, win_y = 0;
2144
2145 /* Find the position of the outside upper-left corner of
2146 the inner window, with respect to the outer window. */
2147 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
2148 {
2149 BLOCK_INPUT;
2150 XTranslateCoordinates (FRAME_X_DISPLAY (f),
2151
2152 /* From-window, to-window. */
2153 f->output_data.x->window_desc,
2154 f->output_data.x->parent_desc,
2155
2156 /* From-position, to-position. */
2157 0, 0, &win_x, &win_y,
2158
2159 /* Child of window. */
2160 &child);
2161 UNBLOCK_INPUT;
2162 x += win_x;
2163 y += win_y;
2164 }
2165 }
2166
2167 /* Adjust coordinates to be root-window-relative. */
2168 x += f->output_data.x->left_pos;
2169 y += f->output_data.x->top_pos;
2170
2171 dummy.type = ButtonPress;
2172 dummy.serial = 0;
2173 dummy.send_event = 0;
2174 dummy.display = FRAME_X_DISPLAY (f);
2175 dummy.time = CurrentTime;
2176 dummy.root = FRAME_X_DISPLAY_INFO (f)->root_window;
2177 dummy.window = dummy.root;
2178 dummy.subwindow = dummy.root;
2179 dummy.x_root = x;
2180 dummy.y_root = y;
2181 dummy.x = x;
2182 dummy.y = y;
2183 dummy.state = (FRAME_X_DISPLAY_INFO (f)->grabbed >> 1) * Button1Mask;
2184 dummy.button = 0;
2185 for (i = 0; i < 5; i++)
2186 if (FRAME_X_DISPLAY_INFO (f)->grabbed & (1 << i))
2187 dummy.button = i;
2188
2189 /* Don't allow any geometry request from the user. */
2190 XtSetArg (av[ac], XtNgeometry, 0); ac++;
2191 XtSetValues (menu, av, ac);
2192
2193 /* Free the widget_value objects we used to specify the contents. */
2194 free_menubar_widget_value_tree (first_wv);
2195
2196 /* No selection has been chosen yet. */
2197 menu_item_selection = 0;
2198
2199 /* Display the menu. */
2200 lw_popup_menu (menu, &dummy);
2201 x_set_menu_resources_from_menu_face (f, menu);
2202 popup_activated_flag = 1;
2203
2204 /* Process events that apply to the menu. */
2205 popup_get_selection ((XEvent *) 0, FRAME_X_DISPLAY_INFO (f), menu_id);
2206
2207 #ifdef LESSTIF_VERSION
2208 /* Nov 1998: For an unknown reason a button grab remains active
2209 after the popup menu has gone. */
2210 XUngrabButton (XtDisplay (f->output_data.x->widget),
2211 AnyButton, AnyModifier,
2212 XtWindow (f->output_data.x->widget));
2213 XUngrabButton (XtDisplay (f->output_data.x->edit_widget),
2214 AnyButton, AnyModifier,
2215 XtWindow (f->output_data.x->edit_widget));
2216 #endif /* LESSTIF_VERSION */
2217
2218 /* fp turned off the following statement and wrote a comment
2219 that it is unnecessary--that the menu has already disappeared.
2220 Nowadays the menu disappears ok, all right, but
2221 we need to delete the widgets or multiple ones will pile up. */
2222 lw_destroy_all_widgets (menu_id);
2223
2224 /* Find the selected item, and its pane, to return
2225 the proper value. */
2226 if (menu_item_selection != 0)
2227 {
2228 Lisp_Object prefix, entry;
2229
2230 prefix = Qnil;
2231 i = 0;
2232 while (i < menu_items_used)
2233 {
2234 if (EQ (XVECTOR (menu_items)->contents[i], Qnil))
2235 {
2236 subprefix_stack[submenu_depth++] = prefix;
2237 prefix = entry;
2238 i++;
2239 }
2240 else if (EQ (XVECTOR (menu_items)->contents[i], Qlambda))
2241 {
2242 prefix = subprefix_stack[--submenu_depth];
2243 i++;
2244 }
2245 else if (EQ (XVECTOR (menu_items)->contents[i], Qt))
2246 {
2247 prefix
2248 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
2249 i += MENU_ITEMS_PANE_LENGTH;
2250 }
2251 /* Ignore a nil in the item list.
2252 It's meaningful only for dialog boxes. */
2253 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
2254 i += 1;
2255 else
2256 {
2257 entry
2258 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
2259 if (menu_item_selection == &XVECTOR (menu_items)->contents[i])
2260 {
2261 if (keymaps != 0)
2262 {
2263 int j;
2264
2265 entry = Fcons (entry, Qnil);
2266 if (!NILP (prefix))
2267 entry = Fcons (prefix, entry);
2268 for (j = submenu_depth - 1; j >= 0; j--)
2269 if (!NILP (subprefix_stack[j]))
2270 entry = Fcons (subprefix_stack[j], entry);
2271 }
2272 return entry;
2273 }
2274 i += MENU_ITEMS_ITEM_LENGTH;
2275 }
2276 }
2277 }
2278
2279 return Qnil;
2280 }
2281 \f
2282 static void
2283 dialog_selection_callback (widget, id, client_data)
2284 Widget widget;
2285 LWLIB_ID id;
2286 XtPointer client_data;
2287 {
2288 /* The EMACS_INT cast avoids a warning. There's no problem
2289 as long as pointers have enough bits to hold small integers. */
2290 if ((int) (EMACS_INT) client_data != -1)
2291 menu_item_selection = (Lisp_Object *) client_data;
2292 BLOCK_INPUT;
2293 lw_destroy_all_widgets (id);
2294 UNBLOCK_INPUT;
2295 popup_activated_flag = 0;
2296 }
2297
2298 static char * button_names [] = {
2299 "button1", "button2", "button3", "button4", "button5",
2300 "button6", "button7", "button8", "button9", "button10" };
2301
2302 static Lisp_Object
2303 xdialog_show (f, keymaps, title, error)
2304 FRAME_PTR f;
2305 int keymaps;
2306 Lisp_Object title;
2307 char **error;
2308 {
2309 int i, nb_buttons=0;
2310 LWLIB_ID dialog_id;
2311 Widget menu;
2312 char dialog_name[6];
2313
2314 widget_value *wv, *first_wv = 0, *prev_wv = 0;
2315
2316 /* Number of elements seen so far, before boundary. */
2317 int left_count = 0;
2318 /* 1 means we've seen the boundary between left-hand elts and right-hand. */
2319 int boundary_seen = 0;
2320
2321 *error = NULL;
2322
2323 if (menu_items_n_panes > 1)
2324 {
2325 *error = "Multiple panes in dialog box";
2326 return Qnil;
2327 }
2328
2329 /* Create a tree of widget_value objects
2330 representing the text label and buttons. */
2331 {
2332 Lisp_Object pane_name, prefix;
2333 char *pane_string;
2334 pane_name = XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_NAME];
2335 prefix = XVECTOR (menu_items)->contents[MENU_ITEMS_PANE_PREFIX];
2336 pane_string = (NILP (pane_name)
2337 ? "" : (char *) XSTRING (pane_name)->data);
2338 prev_wv = xmalloc_widget_value ();
2339 prev_wv->value = pane_string;
2340 if (keymaps && !NILP (prefix))
2341 prev_wv->name++;
2342 prev_wv->enabled = 1;
2343 prev_wv->name = "message";
2344 first_wv = prev_wv;
2345
2346 /* Loop over all panes and items, filling in the tree. */
2347 i = MENU_ITEMS_PANE_LENGTH;
2348 while (i < menu_items_used)
2349 {
2350
2351 /* Create a new item within current pane. */
2352 Lisp_Object item_name, enable, descrip;
2353 item_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_NAME];
2354 enable = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_ENABLE];
2355 descrip
2356 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_EQUIV_KEY];
2357
2358 if (NILP (item_name))
2359 {
2360 free_menubar_widget_value_tree (first_wv);
2361 *error = "Submenu in dialog items";
2362 return Qnil;
2363 }
2364 if (EQ (item_name, Qquote))
2365 {
2366 /* This is the boundary between left-side elts
2367 and right-side elts. Stop incrementing right_count. */
2368 boundary_seen = 1;
2369 i++;
2370 continue;
2371 }
2372 if (nb_buttons >= 9)
2373 {
2374 free_menubar_widget_value_tree (first_wv);
2375 *error = "Too many dialog items";
2376 return Qnil;
2377 }
2378
2379 wv = xmalloc_widget_value ();
2380 prev_wv->next = wv;
2381 wv->name = (char *) button_names[nb_buttons];
2382 if (!NILP (descrip))
2383 wv->key = (char *) XSTRING (descrip)->data;
2384 wv->value = (char *) XSTRING (item_name)->data;
2385 wv->call_data = (void *) &XVECTOR (menu_items)->contents[i];
2386 wv->enabled = !NILP (enable);
2387 prev_wv = wv;
2388
2389 if (! boundary_seen)
2390 left_count++;
2391
2392 nb_buttons++;
2393 i += MENU_ITEMS_ITEM_LENGTH;
2394 }
2395
2396 /* If the boundary was not specified,
2397 by default put half on the left and half on the right. */
2398 if (! boundary_seen)
2399 left_count = nb_buttons - nb_buttons / 2;
2400
2401 wv = xmalloc_widget_value ();
2402 wv->name = dialog_name;
2403
2404 /* Dialog boxes use a really stupid name encoding
2405 which specifies how many buttons to use
2406 and how many buttons are on the right.
2407 The Q means something also. */
2408 dialog_name[0] = 'Q';
2409 dialog_name[1] = '0' + nb_buttons;
2410 dialog_name[2] = 'B';
2411 dialog_name[3] = 'R';
2412 /* Number of buttons to put on the right. */
2413 dialog_name[4] = '0' + nb_buttons - left_count;
2414 dialog_name[5] = 0;
2415 wv->contents = first_wv;
2416 first_wv = wv;
2417 }
2418
2419 /* Actually create the dialog. */
2420 dialog_id = widget_id_tick++;
2421 menu = lw_create_widget (first_wv->name, "dialog", dialog_id, first_wv,
2422 f->output_data.x->widget, 1, 0,
2423 dialog_selection_callback, 0, 0);
2424 lw_modify_all_widgets (dialog_id, first_wv->contents, True);
2425 /* Free the widget_value objects we used to specify the contents. */
2426 free_menubar_widget_value_tree (first_wv);
2427
2428 /* No selection has been chosen yet. */
2429 menu_item_selection = 0;
2430
2431 /* Display the menu. */
2432 lw_pop_up_all_widgets (dialog_id);
2433 popup_activated_flag = 1;
2434
2435 /* Process events that apply to the menu. */
2436 popup_get_selection ((XEvent *) 0, FRAME_X_DISPLAY_INFO (f), dialog_id);
2437
2438 lw_destroy_all_widgets (dialog_id);
2439
2440 /* Find the selected item, and its pane, to return
2441 the proper value. */
2442 if (menu_item_selection != 0)
2443 {
2444 Lisp_Object prefix;
2445
2446 prefix = Qnil;
2447 i = 0;
2448 while (i < menu_items_used)
2449 {
2450 Lisp_Object entry;
2451
2452 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
2453 {
2454 prefix
2455 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
2456 i += MENU_ITEMS_PANE_LENGTH;
2457 }
2458 else
2459 {
2460 entry
2461 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
2462 if (menu_item_selection == &XVECTOR (menu_items)->contents[i])
2463 {
2464 if (keymaps != 0)
2465 {
2466 entry = Fcons (entry, Qnil);
2467 if (!NILP (prefix))
2468 entry = Fcons (prefix, entry);
2469 }
2470 return entry;
2471 }
2472 i += MENU_ITEMS_ITEM_LENGTH;
2473 }
2474 }
2475 }
2476
2477 return Qnil;
2478 }
2479 #else /* not USE_X_TOOLKIT */
2480
2481 /* The frame of the last activated non-toolkit menu bar.
2482 Used to generate menu help events. */
2483
2484 static struct frame *menu_help_frame;
2485
2486
2487 /* Show help HELP_STRING, or clear help if HELP_STRING is null. This
2488 cannot be done with generating a HELP_EVENT because XMenuActivate
2489 contains a loop that doesn't let Emacs process keyboard events. */
2490
2491 static void
2492 menu_help_callback (help_string)
2493 char *help_string;
2494 {
2495 Lisp_Object msg;
2496 extern Lisp_Object Vshow_help_function;
2497 struct gcpro gcpro1;
2498
2499 msg = help_string ? build_string (help_string) : Qnil;
2500 GCPRO1 (msg);
2501
2502 if (!NILP (Vshow_help_function))
2503 call1 (Vshow_help_function, msg);
2504 else if (!MINI_WINDOW_P (XWINDOW (selected_window)))
2505 {
2506 if (STRINGP (msg))
2507 message3_nolog (msg, XSTRING (msg)->size, STRING_MULTIBYTE (msg));
2508 else
2509 message (0);
2510 }
2511
2512 UNGCPRO;
2513 }
2514
2515
2516 static Lisp_Object
2517 xmenu_show (f, x, y, for_click, keymaps, title, error)
2518 FRAME_PTR f;
2519 int x, y;
2520 int for_click;
2521 int keymaps;
2522 Lisp_Object title;
2523 char **error;
2524 {
2525 Window root;
2526 XMenu *menu;
2527 int pane, selidx, lpane, status;
2528 Lisp_Object entry, pane_prefix;
2529 char *datap;
2530 int ulx, uly, width, height;
2531 int dispwidth, dispheight;
2532 int i, j;
2533 int maxwidth;
2534 int dummy_int;
2535 unsigned int dummy_uint;
2536
2537 *error = 0;
2538 if (menu_items_n_panes == 0)
2539 return Qnil;
2540
2541 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
2542 {
2543 *error = "Empty menu";
2544 return Qnil;
2545 }
2546
2547 /* Figure out which root window F is on. */
2548 XGetGeometry (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), &root,
2549 &dummy_int, &dummy_int, &dummy_uint, &dummy_uint,
2550 &dummy_uint, &dummy_uint);
2551
2552 /* Make the menu on that window. */
2553 menu = XMenuCreate (FRAME_X_DISPLAY (f), root, "emacs");
2554 if (menu == NULL)
2555 {
2556 *error = "Can't create menu";
2557 return Qnil;
2558 }
2559
2560 #ifdef HAVE_X_WINDOWS
2561 /* Adjust coordinates to relative to the outer (window manager) window. */
2562 {
2563 Window child;
2564 int win_x = 0, win_y = 0;
2565
2566 /* Find the position of the outside upper-left corner of
2567 the inner window, with respect to the outer window. */
2568 if (f->output_data.x->parent_desc != FRAME_X_DISPLAY_INFO (f)->root_window)
2569 {
2570 BLOCK_INPUT;
2571 XTranslateCoordinates (FRAME_X_DISPLAY (f),
2572
2573 /* From-window, to-window. */
2574 f->output_data.x->window_desc,
2575 f->output_data.x->parent_desc,
2576
2577 /* From-position, to-position. */
2578 0, 0, &win_x, &win_y,
2579
2580 /* Child of window. */
2581 &child);
2582 UNBLOCK_INPUT;
2583 x += win_x;
2584 y += win_y;
2585 }
2586 }
2587 #endif /* HAVE_X_WINDOWS */
2588
2589 /* Adjust coordinates to be root-window-relative. */
2590 x += f->output_data.x->left_pos;
2591 y += f->output_data.x->top_pos;
2592
2593 /* Create all the necessary panes and their items. */
2594 i = 0;
2595 while (i < menu_items_used)
2596 {
2597 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
2598 {
2599 /* Create a new pane. */
2600 Lisp_Object pane_name, prefix;
2601 char *pane_string;
2602
2603 pane_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_NAME];
2604 prefix = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
2605 pane_string = (NILP (pane_name)
2606 ? "" : (char *) XSTRING (pane_name)->data);
2607 if (keymaps && !NILP (prefix))
2608 pane_string++;
2609
2610 lpane = XMenuAddPane (FRAME_X_DISPLAY (f), menu, pane_string, TRUE);
2611 if (lpane == XM_FAILURE)
2612 {
2613 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
2614 *error = "Can't create pane";
2615 return Qnil;
2616 }
2617 i += MENU_ITEMS_PANE_LENGTH;
2618
2619 /* Find the width of the widest item in this pane. */
2620 maxwidth = 0;
2621 j = i;
2622 while (j < menu_items_used)
2623 {
2624 Lisp_Object item;
2625 item = XVECTOR (menu_items)->contents[j];
2626 if (EQ (item, Qt))
2627 break;
2628 if (NILP (item))
2629 {
2630 j++;
2631 continue;
2632 }
2633 width = STRING_BYTES (XSTRING (item));
2634 if (width > maxwidth)
2635 maxwidth = width;
2636
2637 j += MENU_ITEMS_ITEM_LENGTH;
2638 }
2639 }
2640 /* Ignore a nil in the item list.
2641 It's meaningful only for dialog boxes. */
2642 else if (EQ (XVECTOR (menu_items)->contents[i], Qquote))
2643 i += 1;
2644 else
2645 {
2646 /* Create a new item within current pane. */
2647 Lisp_Object item_name, enable, descrip, help;
2648 unsigned char *item_data;
2649 char *help_string;
2650
2651 item_name = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_NAME];
2652 enable = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_ENABLE];
2653 descrip
2654 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_EQUIV_KEY];
2655 help = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_HELP];
2656 help_string = STRINGP (help) ? XSTRING (help)->data : NULL;
2657
2658 if (!NILP (descrip))
2659 {
2660 int gap = maxwidth - STRING_BYTES (XSTRING (item_name));
2661 #ifdef C_ALLOCA
2662 Lisp_Object spacer;
2663 spacer = Fmake_string (make_number (gap), make_number (' '));
2664 item_name = concat2 (item_name, spacer);
2665 item_name = concat2 (item_name, descrip);
2666 item_data = XSTRING (item_name)->data;
2667 #else
2668 /* if alloca is fast, use that to make the space,
2669 to reduce gc needs. */
2670 item_data
2671 = (unsigned char *) alloca (maxwidth
2672 + STRING_BYTES (XSTRING (descrip)) + 1);
2673 bcopy (XSTRING (item_name)->data, item_data,
2674 STRING_BYTES (XSTRING (item_name)));
2675 for (j = XSTRING (item_name)->size; j < maxwidth; j++)
2676 item_data[j] = ' ';
2677 bcopy (XSTRING (descrip)->data, item_data + j,
2678 STRING_BYTES (XSTRING (descrip)));
2679 item_data[j + STRING_BYTES (XSTRING (descrip))] = 0;
2680 #endif
2681 }
2682 else
2683 item_data = XSTRING (item_name)->data;
2684
2685 if (XMenuAddSelection (FRAME_X_DISPLAY (f),
2686 menu, lpane, 0, item_data,
2687 !NILP (enable), help_string)
2688 == XM_FAILURE)
2689 {
2690 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
2691 *error = "Can't add selection to menu";
2692 return Qnil;
2693 }
2694 i += MENU_ITEMS_ITEM_LENGTH;
2695 }
2696 }
2697
2698 /* All set and ready to fly. */
2699 XMenuRecompute (FRAME_X_DISPLAY (f), menu);
2700 dispwidth = DisplayWidth (FRAME_X_DISPLAY (f),
2701 XScreenNumberOfScreen (FRAME_X_SCREEN (f)));
2702 dispheight = DisplayHeight (FRAME_X_DISPLAY (f),
2703 XScreenNumberOfScreen (FRAME_X_SCREEN (f)));
2704 x = min (x, dispwidth);
2705 y = min (y, dispheight);
2706 x = max (x, 1);
2707 y = max (y, 1);
2708 XMenuLocate (FRAME_X_DISPLAY (f), menu, 0, 0, x, y,
2709 &ulx, &uly, &width, &height);
2710 if (ulx+width > dispwidth)
2711 {
2712 x -= (ulx + width) - dispwidth;
2713 ulx = dispwidth - width;
2714 }
2715 if (uly+height > dispheight)
2716 {
2717 y -= (uly + height) - dispheight;
2718 uly = dispheight - height;
2719 }
2720 if (ulx < 0) x -= ulx;
2721 if (uly < 0) y -= uly;
2722
2723 XMenuSetAEQ (menu, TRUE);
2724 XMenuSetFreeze (menu, TRUE);
2725 pane = selidx = 0;
2726
2727 /* Help display under X won't work because XMenuActivate contains
2728 a loop that doesn't give Emacs a chance to process it. */
2729 menu_help_frame = f;
2730 status = XMenuActivate (FRAME_X_DISPLAY (f), menu, &pane, &selidx,
2731 x, y, ButtonReleaseMask, &datap,
2732 menu_help_callback);
2733
2734
2735 #ifdef HAVE_X_WINDOWS
2736 /* Assume the mouse has moved out of the X window.
2737 If it has actually moved in, we will get an EnterNotify. */
2738 x_mouse_leave (FRAME_X_DISPLAY_INFO (f));
2739 #endif
2740
2741 switch (status)
2742 {
2743 case XM_SUCCESS:
2744 #ifdef XDEBUG
2745 fprintf (stderr, "pane= %d line = %d\n", panes, selidx);
2746 #endif
2747
2748 /* Find the item number SELIDX in pane number PANE. */
2749 i = 0;
2750 while (i < menu_items_used)
2751 {
2752 if (EQ (XVECTOR (menu_items)->contents[i], Qt))
2753 {
2754 if (pane == 0)
2755 pane_prefix
2756 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_PANE_PREFIX];
2757 pane--;
2758 i += MENU_ITEMS_PANE_LENGTH;
2759 }
2760 else
2761 {
2762 if (pane == -1)
2763 {
2764 if (selidx == 0)
2765 {
2766 entry
2767 = XVECTOR (menu_items)->contents[i + MENU_ITEMS_ITEM_VALUE];
2768 if (keymaps != 0)
2769 {
2770 entry = Fcons (entry, Qnil);
2771 if (!NILP (pane_prefix))
2772 entry = Fcons (pane_prefix, entry);
2773 }
2774 break;
2775 }
2776 selidx--;
2777 }
2778 i += MENU_ITEMS_ITEM_LENGTH;
2779 }
2780 }
2781 break;
2782
2783 case XM_FAILURE:
2784 *error = "Can't activate menu";
2785 case XM_IA_SELECT:
2786 case XM_NO_SELECT:
2787 entry = Qnil;
2788 break;
2789 }
2790 XMenuDestroy (FRAME_X_DISPLAY (f), menu);
2791
2792 #ifdef HAVE_X_WINDOWS
2793 /* State that no mouse buttons are now held.
2794 (The oldXMenu code doesn't track this info for us.)
2795 That is not necessarily true, but the fiction leads to reasonable
2796 results, and it is a pain to ask which are actually held now. */
2797 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
2798 #endif
2799
2800 return entry;
2801 }
2802
2803 #endif /* not USE_X_TOOLKIT */
2804
2805 #endif /* HAVE_MENUS */
2806 \f
2807 void
2808 syms_of_xmenu ()
2809 {
2810 staticpro (&menu_items);
2811 menu_items = Qnil;
2812
2813 Qdebug_on_next_call = intern ("debug-on-next-call");
2814 staticpro (&Qdebug_on_next_call);
2815
2816 DEFVAR_LISP ("menu-updating-frame", &Vmenu_updating_frame,
2817 "Frame for which we are updating a menu.\n\
2818 The enable predicate for a menu command should check this variable.");
2819 Vmenu_updating_frame = Qnil;
2820
2821 #ifdef USE_X_TOOLKIT
2822 widget_id_tick = (1<<16);
2823 next_menubar_widget_id = 1;
2824 #endif
2825
2826 defsubr (&Sx_popup_menu);
2827 #ifdef HAVE_MENUS
2828 defsubr (&Sx_popup_dialog);
2829 #endif
2830 }