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