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