1 /* X Communication module for terminals which understand the X protocol.
2 Copyright (C) 1986, 1988, 1993, 1994 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20 /* X pop-up deck-of-cards menu facility for gnuemacs.
22 * Written by Jon Arnold and Roman Budzianowski
23 * Mods and rewrite by Robert Krawitz
27 /* Modified by Fred Pierresteguy on December 93
28 to make the popup menus and menubar use the Xt. */
30 /* Rewritten for clarity and GC protection by rms in Feb 94. */
34 /* On 4.3 this loses if it comes after xterm.h. */
38 #include "termhooks.h"
42 #include "blockinput.h"
44 /* This may include sys/types.h, and that somehow loses
45 if this is not done before the other system files. */
48 /* Load sys/types.h if not already loaded.
49 In some systems loading it twice is suicidal. */
51 #include <sys/types.h>
54 #include "dispextern.h"
57 #include "../oldXMenu/XMenu.h"
64 #include <X11/IntrinsicP.h>
65 #include <X11/CoreP.h>
66 #include <X11/StringDefs.h>
67 #include <X11/Xaw/Paned.h>
68 #include "../lwlib/lwlib.h"
69 #include "../lwlib/xlwmenuP.h"
70 #endif /* USE_X_TOOLKIT */
72 #define min(x,y) (((x) < (y)) ? (x) : (y))
73 #define max(x,y) (((x) > (y)) ? (x) : (y))
81 extern Display
*x_current_display
;
83 #define ButtonReleaseMask ButtonReleased
84 #endif /* not HAVE_X11 */
86 /* We need a unique id for each popup menu and dialog box. */
87 static unsigned int popup_id_tick
;
89 extern Lisp_Object Qmenu_enable
;
90 extern Lisp_Object Qmenu_bar
;
93 extern void process_expose_from_menu ();
94 extern XtAppContext Xt_app_con
;
96 static int string_width ();
97 static Lisp_Object
xdialog_show ();
100 static Lisp_Object
xmenu_show ();
101 static void keymap_panes ();
102 static void single_keymap_panes ();
103 static void list_of_panes ();
104 static void list_of_items ();
106 /* This holds a Lisp vector that holds the results of decoding
107 the keymaps or alist-of-alists that specify a menu.
109 It describes the panes and items within the panes.
111 Each pane is described by 3 elements in the vector:
112 t, the pane name, the pane's prefix key.
113 Then follow the pane's items, with 4 elements per item:
114 the item string, the enable flag, the item's value,
115 and the equivalent keyboard key's description string.
117 In some cases, multiple levels of menus may be described.
118 A single vector slot containing nil indicates the start of a submenu.
119 A single vector slot containing lambda indicates the end of a submenu.
120 The submenu follows a menu item which is the way to reach the submenu.
122 A single vector slot containing quote indicates that the
123 following items should appear on the right of a dialog box.
125 Using a Lisp vector to hold this information while we decode it
126 takes care of protecting all the data from GC. */
128 #define MENU_ITEMS_PANE_NAME 1
129 #define MENU_ITEMS_PANE_PREFIX 2
130 #define MENU_ITEMS_PANE_LENGTH 3
132 #define MENU_ITEMS_ITEM_NAME 0
133 #define MENU_ITEMS_ITEM_ENABLE 1
134 #define MENU_ITEMS_ITEM_VALUE 2
135 #define MENU_ITEMS_ITEM_EQUIV_KEY 3
136 #define MENU_ITEMS_ITEM_LENGTH 4
138 static Lisp_Object menu_items
;
140 /* Number of slots currently allocated in menu_items. */
141 static int menu_items_allocated
;
143 /* This is the index in menu_items of the first empty slot. */
144 static int menu_items_used
;
146 /* The number of panes currently recorded in menu_items,
147 excluding those within submenus. */
148 static int menu_items_n_panes
;
150 /* Current depth within submenus. */
151 static int menu_items_submenu_depth
;
153 /* Initialize the menu_items structure if we haven't already done so.
154 Also mark it as currently empty. */
159 if (NILP (menu_items
))
161 menu_items_allocated
= 60;
162 menu_items
= Fmake_vector (make_number (menu_items_allocated
), Qnil
);
166 menu_items_n_panes
= 0;
167 menu_items_submenu_depth
= 0;
170 /* Call at the end of generating the data in menu_items.
171 This fills in the number of items in the last pane. */
178 /* Call when finished using the data for the current menu
182 discard_menu_items ()
184 /* Free the structure if it is especially large.
185 Otherwise, hold on to it, to save time. */
186 if (menu_items_allocated
> 200)
189 menu_items_allocated
= 0;
193 /* Make the menu_items vector twice as large. */
199 int old_size
= menu_items_allocated
;
202 menu_items_allocated
*= 2;
203 menu_items
= Fmake_vector (make_number (menu_items_allocated
), Qnil
);
204 bcopy (XVECTOR (old
)->contents
, XVECTOR (menu_items
)->contents
,
205 old_size
* sizeof (Lisp_Object
));
208 /* Begin a submenu. */
211 push_submenu_start ()
213 if (menu_items_used
+ 1 > menu_items_allocated
)
216 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qnil
;
217 menu_items_submenu_depth
++;
225 if (menu_items_used
+ 1 > menu_items_allocated
)
228 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qlambda
;
229 menu_items_submenu_depth
--;
232 /* Indicate boundary between left and right. */
235 push_left_right_boundary ()
237 if (menu_items_used
+ 1 > menu_items_allocated
)
240 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qquote
;
243 /* Start a new menu pane in menu_items..
244 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */
247 push_menu_pane (name
, prefix_vec
)
248 Lisp_Object name
, prefix_vec
;
250 if (menu_items_used
+ MENU_ITEMS_PANE_LENGTH
> menu_items_allocated
)
253 if (menu_items_submenu_depth
== 0)
254 menu_items_n_panes
++;
255 XVECTOR (menu_items
)->contents
[menu_items_used
++] = Qt
;
256 XVECTOR (menu_items
)->contents
[menu_items_used
++] = name
;
257 XVECTOR (menu_items
)->contents
[menu_items_used
++] = prefix_vec
;
260 /* Push one menu item into the current pane.
261 NAME is the string to display. ENABLE if non-nil means
262 this item can be selected. KEY is the key generated by
263 choosing this item. EQUIV is the textual description
264 of the keyboard equivalent for this item (or nil if none). */
267 push_menu_item (name
, enable
, key
, equiv
)
268 Lisp_Object name
, enable
, key
, equiv
;
270 if (menu_items_used
+ MENU_ITEMS_ITEM_LENGTH
> menu_items_allocated
)
273 XVECTOR (menu_items
)->contents
[menu_items_used
++] = name
;
274 XVECTOR (menu_items
)->contents
[menu_items_used
++] = enable
;
275 XVECTOR (menu_items
)->contents
[menu_items_used
++] = key
;
276 XVECTOR (menu_items
)->contents
[menu_items_used
++] = equiv
;
279 /* Figure out the current keyboard equivalent of a menu item ITEM1.
280 The item string for menu display should be ITEM_STRING.
281 Store the equivalent keyboard key sequence's
282 textual description into *DESCRIP_PTR.
283 Also cache them in the item itself.
284 Return the real definition to execute. */
287 menu_item_equiv_key (item_string
, item1
, descrip_ptr
)
288 Lisp_Object item_string
;
290 Lisp_Object
*descrip_ptr
;
292 /* This is the real definition--the function to run. */
294 /* This is the sublist that records cached equiv key data
295 so we can save time. */
296 Lisp_Object cachelist
;
297 /* These are the saved equivalent keyboard key sequence
298 and its key-description. */
299 Lisp_Object savedkey
, descrip
;
303 /* If a help string follows the item string, skip it. */
304 if (CONSP (XCONS (item1
)->cdr
)
305 && STRINGP (XCONS (XCONS (item1
)->cdr
)->car
))
306 item1
= XCONS (item1
)->cdr
;
310 /* Get out the saved equivalent-keyboard-key info. */
311 cachelist
= savedkey
= descrip
= Qnil
;
312 if (CONSP (def
) && CONSP (XCONS (def
)->car
)
313 && (NILP (XCONS (XCONS (def
)->car
)->car
)
314 || VECTORP (XCONS (XCONS (def
)->car
)->car
)))
316 cachelist
= XCONS (def
)->car
;
317 def
= XCONS (def
)->cdr
;
318 savedkey
= XCONS (cachelist
)->car
;
319 descrip
= XCONS (cachelist
)->cdr
;
322 /* Is it still valid? */
324 if (!NILP (savedkey
))
325 def1
= Fkey_binding (savedkey
, Qnil
);
326 /* If not, update it. */
328 /* If something had no key binding before, don't recheck it--
329 doing that takes too much time and makes menus too slow. */
330 && !(!NILP (cachelist
) && NILP (savedkey
)))
334 savedkey
= Fwhere_is_internal (def
, Qnil
, Qt
, Qnil
);
335 if (VECTORP (savedkey
)
336 && EQ (XVECTOR (savedkey
)->contents
[0], Qmenu_bar
))
338 if (!NILP (savedkey
))
340 descrip
= Fkey_description (savedkey
);
341 descrip
= concat2 (make_string (" (", 3), descrip
);
342 descrip
= concat2 (descrip
, make_string (")", 1));
346 /* Cache the data we just got in a sublist of the menu binding. */
347 if (NILP (cachelist
))
348 XCONS (item1
)->cdr
= Fcons (Fcons (savedkey
, descrip
), def
);
351 XCONS (cachelist
)->car
= savedkey
;
352 XCONS (cachelist
)->cdr
= descrip
;
355 *descrip_ptr
= descrip
;
359 /* This is used as the handler when calling internal_condition_case_1. */
362 menu_item_enabled_p_1 (arg
)
368 /* Return non-nil if the command DEF is enabled when used as a menu item.
369 This is based on looking for a menu-enable property.
370 If NOTREAL is set, don't bother really computing this. */
373 menu_item_enabled_p (def
, notreal
)
376 Lisp_Object enabled
, tem
;
381 if (XTYPE (def
) == Lisp_Symbol
)
383 /* No property, or nil, means enable.
384 Otherwise, enable if value is not nil. */
385 tem
= Fget (def
, Qmenu_enable
);
387 /* (condition-case nil (eval tem)
389 enabled
= internal_condition_case_1 (Feval
, tem
, Qerror
,
390 menu_item_enabled_p_1
);
395 /* Look through KEYMAPS, a vector of keymaps that is NMAPS long,
396 and generate menu panes for them in menu_items.
397 If NOTREAL is nonzero,
398 don't bother really computing whether an item is enabled. */
401 keymap_panes (keymaps
, nmaps
, notreal
)
402 Lisp_Object
*keymaps
;
410 /* Loop over the given keymaps, making a pane for each map.
411 But don't make a pane that is empty--ignore that map instead.
412 P is the number of panes we have made so far. */
413 for (mapno
= 0; mapno
< nmaps
; mapno
++)
414 single_keymap_panes (keymaps
[mapno
], Qnil
, Qnil
, notreal
);
416 finish_menu_items ();
419 /* This is a recursive subroutine of keymap_panes.
420 It handles one keymap, KEYMAP.
421 The other arguments are passed along
422 or point to local variables of the previous function.
423 If NOTREAL is nonzero,
424 don't bother really computing whether an item is enabled. */
427 single_keymap_panes (keymap
, pane_name
, prefix
, notreal
)
429 Lisp_Object pane_name
;
433 Lisp_Object pending_maps
;
434 Lisp_Object tail
, item
, item1
, item_string
, table
;
435 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
439 push_menu_pane (pane_name
, prefix
);
441 for (tail
= keymap
; XTYPE (tail
) == Lisp_Cons
; tail
= XCONS (tail
)->cdr
)
443 /* Look at each key binding, and if it has a menu string,
444 make a menu item from it. */
445 item
= XCONS (tail
)->car
;
446 if (XTYPE (item
) == Lisp_Cons
)
448 item1
= XCONS (item
)->cdr
;
449 if (XTYPE (item1
) == Lisp_Cons
)
451 item_string
= XCONS (item1
)->car
;
452 if (XTYPE (item_string
) == Lisp_String
)
454 /* This is the real definition--the function to run. */
456 /* These are the saved equivalent keyboard key sequence
457 and its key-description. */
459 Lisp_Object tem
, enabled
;
461 def
= menu_item_equiv_key (item_string
, item1
, &descrip
);
463 /* GCPRO because we will call eval.
464 Protecting KEYMAP preserves everything we use;
465 aside from that, must protect whatever might be
466 a string. Since there's no GCPRO5, we refetch
467 item_string instead of protecting it. */
468 GCPRO4 (keymap
, pending_maps
, def
, descrip
);
469 enabled
= menu_item_enabled_p (def
, notreal
);
473 item_string
= XCONS (item1
)->car
;
475 tem
= Fkeymapp (def
);
476 if (XSTRING (item_string
)->data
[0] == '@' && !NILP (tem
))
477 pending_maps
= Fcons (Fcons (def
, Fcons (item_string
, XCONS (item
)->car
)),
482 submap
= get_keymap_1 (def
, 0, 1);
483 #ifndef USE_X_TOOLKIT
484 /* Indicate visually that this is a submenu. */
486 item_string
= concat2 (item_string
,
487 build_string (" >"));
489 push_menu_item (item_string
, enabled
, XCONS (item
)->car
,
492 /* Display a submenu using the toolkit. */
495 push_submenu_start ();
496 single_keymap_panes (submap
, Qnil
,
497 XCONS (item
)->car
, notreal
);
505 else if (XTYPE (item
) == Lisp_Vector
)
507 /* Loop over the char values represented in the vector. */
508 int len
= XVECTOR (item
)->size
;
510 for (c
= 0; c
< len
; c
++)
512 Lisp_Object character
;
513 XFASTINT (character
) = c
;
514 item1
= XVECTOR (item
)->contents
[c
];
515 if (XTYPE (item1
) == Lisp_Cons
)
517 item_string
= XCONS (item1
)->car
;
518 if (XTYPE (item_string
) == Lisp_String
)
522 /* These are the saved equivalent keyboard key sequence
523 and its key-description. */
525 Lisp_Object tem
, enabled
;
527 def
= menu_item_equiv_key (item_string
, item1
, &descrip
);
529 /* GCPRO because we will call eval.
530 Protecting KEYMAP preserves everything we use;
531 aside from that, must protect whatever might be
532 a string. Since there's no GCPRO5, we refetch
533 item_string instead of protecting it. */
534 GCPRO4 (keymap
, pending_maps
, def
, descrip
);
535 enabled
= menu_item_enabled_p (def
, notreal
);
538 item_string
= XCONS (item1
)->car
;
540 tem
= Fkeymapp (def
);
541 if (XSTRING (item_string
)->data
[0] == '@' && !NILP (tem
))
542 pending_maps
= Fcons (Fcons (def
, Fcons (item_string
, character
)),
547 submap
= get_keymap_1 (def
, 0, 1);
548 #ifndef USE_X_TOOLKIT
550 item_string
= concat2 (item_string
,
551 build_string (" >"));
553 push_menu_item (item_string
, enabled
, character
,
558 push_submenu_start ();
559 single_keymap_panes (submap
, Qnil
,
571 /* Process now any submenus which want to be panes at this level. */
572 while (!NILP (pending_maps
))
574 Lisp_Object elt
, eltcdr
, string
;
575 elt
= Fcar (pending_maps
);
576 eltcdr
= XCONS (elt
)->cdr
;
577 string
= XCONS (eltcdr
)->car
;
578 /* We no longer discard the @ from the beginning of the string here.
579 Instead, we do this in xmenu_show. */
580 single_keymap_panes (Fcar (elt
), string
,
581 XCONS (eltcdr
)->cdr
, notreal
);
582 pending_maps
= Fcdr (pending_maps
);
586 /* Push all the panes and items of a menu decsribed by the
587 alist-of-alists MENU.
588 This handles old-fashioned calls to x-popup-menu. */
598 for (tail
= menu
; !NILP (tail
); tail
= Fcdr (tail
))
600 Lisp_Object elt
, pane_name
, pane_data
;
602 pane_name
= Fcar (elt
);
603 CHECK_STRING (pane_name
, 0);
604 push_menu_pane (pane_name
, Qnil
);
605 pane_data
= Fcdr (elt
);
606 CHECK_CONS (pane_data
, 0);
607 list_of_items (pane_data
);
610 finish_menu_items ();
613 /* Push the items in a single pane defined by the alist PANE. */
619 Lisp_Object tail
, item
, item1
;
621 for (tail
= pane
; !NILP (tail
); tail
= Fcdr (tail
))
625 push_menu_item (item
, Qnil
, Qnil
, Qnil
);
626 else if (NILP (item
))
627 push_left_right_boundary ();
630 CHECK_CONS (item
, 0);
632 CHECK_STRING (item1
, 1);
633 push_menu_item (item1
, Qt
, Fcdr (item
), Qnil
);
638 DEFUN ("x-popup-menu", Fx_popup_menu
, Sx_popup_menu
, 2, 2, 0,
639 "Pop up a deck-of-cards menu and return user's selection.\n\
640 POSITION is a position specification. This is either a mouse button event\n\
641 or a list ((XOFFSET YOFFSET) WINDOW)\n\
642 where XOFFSET and YOFFSET are positions in characters from the top left\n\
643 corner of WINDOW's frame. (WINDOW may be a frame object instead of a window.)\n\
644 This controls the position of the center of the first line\n\
645 in the first pane of the menu, not the top left of the menu as a whole.\n\
646 If POSITION is t, it means to use the current mouse position.\n\
648 MENU is a specifier for a menu. For the simplest case, MENU is a keymap.\n\
649 The menu items come from key bindings that have a menu string as well as\n\
650 a definition; actually, the \"definition\" in such a key binding looks like\n\
651 \(STRING . REAL-DEFINITION). To give the menu a title, put a string into\n\
652 the keymap as a top-level element.\n\n\
653 You can also use a list of keymaps as MENU.\n\
654 Then each keymap makes a separate pane.\n\
655 When MENU is a keymap or a list of keymaps, the return value\n\
656 is a list of events.\n\n\
657 Alternatively, you can specify a menu of multiple panes\n\
658 with a list of the form (TITLE PANE1 PANE2...),\n\
659 where each pane is a list of form (TITLE ITEM1 ITEM2...).\n\
660 Each ITEM is normally a cons cell (STRING . VALUE);\n\
661 but a string can appear as an item--that makes a nonselectable line\n\
663 With this form of menu, the return value is VALUE from the chosen item.\n\
665 If POSITION is nil, don't display the menu at all, just precalculate the\n\
666 cached information about equivalent key sequences.")
668 Lisp_Object position
, menu
;
670 int number_of_panes
, panes
;
671 Lisp_Object keymap
, tem
;
675 Lisp_Object selection
;
678 Lisp_Object x
, y
, window
;
683 if (! NILP (position
))
687 /* Decode the first argument: find the window and the coordinates. */
688 if (EQ (position
, Qt
))
690 /* Use the mouse's current position. */
692 Lisp_Object bar_window
;
697 XSET (window
, Lisp_Frame
, new_f
);
700 window
= selected_window
;
707 tem
= Fcar (position
);
708 if (XTYPE (tem
) == Lisp_Cons
)
710 window
= Fcar (Fcdr (position
));
712 y
= Fcar (Fcdr (tem
));
716 tem
= Fcar (Fcdr (position
)); /* EVENT_START (position) */
717 window
= Fcar (tem
); /* POSN_WINDOW (tem) */
718 tem
= Fcar (Fcdr (Fcdr (tem
))); /* POSN_WINDOW_POSN (tem) */
722 /* Determine whether this menu is handling a menu bar click. */
723 tem
= Fcar (Fcdr (Fcar (Fcdr (position
))));
724 if (XTYPE (Fcar (position
)) != Lisp_Cons
726 && EQ (Fcar (tem
), Qmenu_bar
))
734 /* Decode where to put the menu. */
736 if (XTYPE (window
) == Lisp_Frame
)
743 else if (XTYPE (window
) == Lisp_Window
)
745 CHECK_LIVE_WINDOW (window
, 0);
746 f
= XFRAME (WINDOW_FRAME (XWINDOW (window
)));
748 xpos
= (FONT_WIDTH (f
->display
.x
->font
) * XWINDOW (window
)->left
);
749 ypos
= (f
->display
.x
->line_height
* XWINDOW (window
)->top
);
752 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
753 but I don't want to make one now. */
754 CHECK_WINDOW (window
, 0);
763 /* Decode the menu items from what was specified. */
765 keymap
= Fkeymapp (menu
);
767 if (XTYPE (menu
) == Lisp_Cons
)
768 tem
= Fkeymapp (Fcar (menu
));
771 /* We were given a keymap. Extract menu info from the keymap. */
773 keymap
= get_keymap (menu
);
775 /* Extract the detailed info to make one pane. */
776 keymap_panes (&menu
, 1, NILP (position
));
778 /* Search for a string appearing directly as an element of the keymap.
779 That string is the title of the menu. */
780 prompt
= map_prompt (keymap
);
782 /* Make that be the pane title of the first pane. */
783 if (!NILP (prompt
) && menu_items_n_panes
>= 0)
784 XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_NAME
] = prompt
;
788 else if (!NILP (tem
))
790 /* We were given a list of keymaps. */
791 int nmaps
= XFASTINT (Flength (menu
));
793 = (Lisp_Object
*) alloca (nmaps
* sizeof (Lisp_Object
));
798 /* The first keymap that has a prompt string
799 supplies the menu title. */
800 for (tem
= menu
, i
= 0; XTYPE (tem
) == Lisp_Cons
; tem
= Fcdr (tem
))
804 maps
[i
++] = keymap
= get_keymap (Fcar (tem
));
806 prompt
= map_prompt (keymap
);
807 if (NILP (title
) && !NILP (prompt
))
811 /* Extract the detailed info to make one pane. */
812 keymap_panes (maps
, nmaps
, NILP (position
));
814 /* Make the title be the pane title of the first pane. */
815 if (!NILP (title
) && menu_items_n_panes
>= 0)
816 XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_NAME
] = title
;
822 /* We were given an old-fashioned menu. */
824 CHECK_STRING (title
, 1);
826 list_of_panes (Fcdr (menu
));
833 discard_menu_items ();
838 /* Display them in a menu. */
841 selection
= xmenu_show (f
, xpos
, ypos
, menubarp
,
842 keymaps
, title
, &error_name
);
845 discard_menu_items ();
849 if (error_name
) error (error_name
);
853 DEFUN ("x-popup-dialog", Fx_popup_dialog
, Sx_popup_dialog
, 2, 2, 0,
854 "Pop up a dialog box and return user's selection.\n\
855 POSITION specifies which frame to use.\n\
856 This is normally a mouse button event or a window or frame.\n\
857 If POSITION is t, it means to use the frame the mouse is on.\n\
858 The dialog box appears in the middle of the specified frame.\n\
860 CONTENTS specifies the alternatives to display in the dialog box.\n\
861 It is a list of the form (TITLE ITEM1 ITEM2...).\n\
862 Each ITEM is a cons cell (STRING . VALUE).\n\
863 The return value is VALUE from the chosen item.\n\n\
864 An ITEM may also be just a string--that makes a nonselectable item.\n\
865 An ITEM may also be nil--that means to put all preceding items\n\
866 on the left of the dialog box and all following items on the right.\n\
867 \(By default, approximately half appear on each side.)")
869 Lisp_Object position
, contents
;
876 /* Decode the first argument: find the window or frame to use. */
877 if (EQ (position
, Qt
))
879 #if 0 /* Using the frame the mouse is on may not be right. */
880 /* Use the mouse's current position. */
882 Lisp_Object bar_window
;
887 (*mouse_position_hook
) (&new_f
, &bar_window
, &part
, &x
, &y
, &time
);
890 XSET (window
, Lisp_Frame
, new_f
);
892 window
= selected_window
;
894 /* Decode the first argument: find the window and the coordinates. */
895 if (EQ (position
, Qt
))
896 window
= selected_window
;
898 else if (CONSP (position
))
901 tem
= Fcar (position
);
902 if (XTYPE (tem
) == Lisp_Cons
)
903 window
= Fcar (Fcdr (position
));
906 tem
= Fcar (Fcdr (position
)); /* EVENT_START (position) */
907 window
= Fcar (tem
); /* POSN_WINDOW (tem) */
910 else if (WINDOWP (position
) || FRAMEP (position
))
913 /* Decode where to put the menu. */
915 if (XTYPE (window
) == Lisp_Frame
)
917 else if (XTYPE (window
) == Lisp_Window
)
919 CHECK_LIVE_WINDOW (window
, 0);
920 f
= XFRAME (WINDOW_FRAME (XWINDOW (window
)));
923 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
924 but I don't want to make one now. */
925 CHECK_WINDOW (window
, 0);
927 #ifndef USE_X_TOOLKIT
928 /* Display a menu with these alternatives
929 in the middle of frame F. */
931 Lisp_Object x
, y
, frame
, newpos
;
932 XSET (frame
, Lisp_Frame
, f
);
933 XSET (x
, Lisp_Int
, x_pixel_width (f
) / 2);
934 XSET (y
, Lisp_Int
, x_pixel_height (f
) / 2);
935 newpos
= Fcons (Fcons (x
, Fcons (y
, Qnil
)), Fcons (frame
, Qnil
));
937 return Fx_popup_menu (newpos
,
938 Fcons (Fcar (contents
), Fcons (contents
, Qnil
)));
944 Lisp_Object selection
;
946 /* Decode the dialog items from what was specified. */
947 title
= Fcar (contents
);
948 CHECK_STRING (title
, 1);
950 list_of_panes (Fcons (contents
, Qnil
));
952 /* Display them in a dialog box. */
954 selection
= xdialog_show (f
, 0, 0, title
, &error_name
);
957 discard_menu_items ();
959 if (error_name
) error (error_name
);
968 dispatch_dummy_expose (w
, x
, y
)
976 dummy
.window
= XtWindow (w
);
979 dummy
.send_event
= 0;
980 dummy
.display
= XtDisplay (w
);
984 XtDispatchEvent ((XEvent
*) &dummy
);
995 XTextExtents (mw
->menu
.font
, s
, strlen (s
), &drop
, &drop
, &drop
, &xcs
);
1000 event_is_in_menu_item (mw
, event
, name
, string_w
)
1002 struct input_event
*event
;
1006 *string_w
+= (string_width (mw
, name
)
1007 + 2 * (mw
->menu
.horizontal_spacing
1008 + mw
->menu
.shadow_thickness
));
1009 return XINT (event
->x
) < *string_w
;
1013 /* Return the menu bar key which corresponds to event EVENT in frame F. */
1016 map_event_to_object (event
, f
)
1017 struct input_event
*event
;
1022 XlwMenuWidget mw
= (XlwMenuWidget
) f
->display
.x
->menubar_widget
;
1027 /* Find the window */
1028 for (val
= mw
->menu
.old_stack
[0]->contents
; val
; val
= val
->next
)
1030 ws
= &mw
->menu
.windows
[0];
1031 if (ws
&& event_is_in_menu_item (mw
, event
, val
->name
, &string_w
))
1036 items
= FRAME_MENU_BAR_ITEMS (f
);
1038 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 3)
1040 Lisp_Object pos
, string
, item
;
1041 item
= XVECTOR (items
)->contents
[i
];
1042 string
= XVECTOR (items
)->contents
[i
+ 1];
1043 pos
= XVECTOR (items
)->contents
[i
+ 2];
1047 if (!strcmp (val
->name
, XSTRING (string
)->data
))
1055 static Lisp_Object
*menu_item_selection
;
1058 popup_selection_callback (widget
, id
, client_data
)
1061 XtPointer client_data
;
1063 menu_item_selection
= (Lisp_Object
*) client_data
;
1067 popup_down_callback (widget
, id
, client_data
)
1070 XtPointer client_data
;
1073 lw_destroy_all_widgets (id
);
1078 dialog_selection_callback (widget
, id
, client_data
)
1081 XtPointer client_data
;
1083 if ((int)client_data
!= -1)
1084 menu_item_selection
= (Lisp_Object
*) client_data
;
1086 lw_destroy_all_widgets (id
);
1090 /* This recursively calls free_widget_value() on the tree of widgets.
1091 It must free all data that was malloc'ed for these widget_values.
1092 In Emacs, many slots are pointers into the data of Lisp_Strings, and
1093 must be left alone. */
1096 free_menubar_widget_value_tree (wv
)
1101 wv
->name
= wv
->value
= wv
->key
= (char *) 0xDEADBEEF;
1103 if (wv
->contents
&& (wv
->contents
!= (widget_value
*)1))
1105 free_menubar_widget_value_tree (wv
->contents
);
1106 wv
->contents
= (widget_value
*) 0xDEADBEEF;
1110 free_menubar_widget_value_tree (wv
->next
);
1111 wv
->next
= (widget_value
*) 0xDEADBEEF;
1114 free_widget_value (wv
);
1118 extern void EmacsFrameSetCharSize ();
1121 update_frame_menubar (f
)
1124 struct x_display
*x
= f
->display
.x
;
1126 int menubar_changed
;
1128 menubar_changed
= (x
->menubar_widget
1129 && !XtIsManaged (x
->menubar_widget
));
1131 if (! (menubar_changed
))
1135 /* Save the size of the frame because the pane widget doesn't accept to
1136 resize itself. So force it. */
1141 XawPanedSetRefigureMode (x
->column_widget
, 0);
1143 /* the order in which children are managed is the top to
1144 bottom order in which they are displayed in the paned window.
1145 First, remove the text-area widget.
1147 XtUnmanageChild (x
->edit_widget
);
1149 /* remove the menubar that is there now, and put up the menubar that
1152 if (menubar_changed
)
1154 XtManageChild (x
->menubar_widget
);
1155 XtMapWidget (x
->menubar_widget
);
1156 XtVaSetValues (x
->menubar_widget
, XtNmappedWhenManaged
, 1, 0);
1160 /* Re-manage the text-area widget */
1161 XtManageChild (x
->edit_widget
);
1163 /* and now thrash the sizes */
1164 XawPanedSetRefigureMode (x
->column_widget
, 1);
1166 /* Force the pane widget to resize itself with the right values. */
1167 EmacsFrameSetCharSize (x
->edit_widget
, columns
, rows
);
1173 set_frame_menubar (f
, first_time
)
1177 Widget menubar_widget
= f
->display
.x
->menubar_widget
;
1179 Lisp_Object tail
, items
;
1180 widget_value
*wv
, *save_wv
, *first_wv
, *prev_wv
= 0;
1185 wv
= malloc_widget_value ();
1186 wv
->name
= "menubar";
1189 save_wv
= first_wv
= wv
;
1191 if (NILP (items
= FRAME_MENU_BAR_ITEMS (f
)))
1192 items
= FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
1194 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 3)
1198 string
= XVECTOR (items
)->contents
[i
+ 1];
1202 wv
= malloc_widget_value ();
1206 save_wv
->contents
= wv
;
1207 wv
->name
= (char *) XSTRING (string
)->data
;
1214 lw_modify_all_widgets (id
, first_wv
, False
);
1217 menubar_widget
= lw_create_widget ("menubar", "menubar",
1219 f
->display
.x
->column_widget
,
1222 f
->display
.x
->menubar_widget
= menubar_widget
;
1223 XtVaSetValues (menubar_widget
,
1225 XtNresizeToPreferred
, 1,
1230 free_menubar_widget_value_tree (first_wv
);
1232 /* Don't update the menubar the first time it is created via x_window. */
1234 update_frame_menubar (f
);
1240 free_frame_menubar (f
)
1243 Widget menubar_widget
;
1246 menubar_widget
= f
->display
.x
->menubar_widget
;
1252 lw_destroy_all_widgets (id
);
1256 /* Called from Fx_create_frame to create the inital menubar of a frame
1257 before it is mapped, so that the window is mapped with the menubar already
1258 there instead of us tacking it on later and thrashing the window after it
1261 initialize_frame_menubar (f
)
1264 set_frame_menubar (f
, 1);
1267 /* Horizontal bounds of the current menu bar item. */
1269 static int this_menu_bar_item_beg
;
1270 static int this_menu_bar_item_end
;
1272 /* Horizontal position of the end of the last menu bar item. */
1274 static int last_menu_bar_item_end
;
1276 /* Nonzero if position X, Y is in the menu bar and in some menu bar item
1277 but not in the current menu bar item. */
1280 other_menu_bar_item_p (f
, x
, y
)
1285 && y
< f
->display
.x
->menubar_widget
->core
.height
1287 && x
< last_menu_bar_item_end
1288 && (x
>= this_menu_bar_item_end
1289 || x
< this_menu_bar_item_beg
));
1292 /* Unread a button-press event in the menu bar of frame F
1293 at x position XPOS relative to the inside of the frame. */
1296 unread_menu_bar_button (f
, xpos
)
1302 event
.type
= ButtonPress
;
1303 event
.xbutton
.display
= x_current_display
;
1304 event
.xbutton
.serial
= 0;
1305 event
.xbutton
.send_event
= 0;
1306 event
.xbutton
.time
= CurrentTime
;
1307 event
.xbutton
.button
= Button1
;
1308 event
.xbutton
.window
= XtWindow (f
->display
.x
->menubar_widget
);
1309 event
.xbutton
.x
= xpos
;
1310 XPutBackEvent (XDISPLAY
&event
);
1313 /* If the mouse has moved to another menu bar item,
1314 return 1 and unread a button press event for that item.
1315 Otherwise return 0. */
1318 check_mouse_other_menu_bar (f
)
1322 Lisp_Object bar_window
;
1327 (*mouse_position_hook
) (&new_f
, &bar_window
, &part
, &x
, &y
, &time
);
1329 if (f
== new_f
&& other_menu_bar_item_p (f
, x
, y
))
1331 unread_menu_bar_button (f
, x
);
1337 #endif /* USE_X_TOOLKIT */
1339 /* xmenu_show actually displays a menu using the panes and items in menu_items
1340 and returns the value selected from it.
1341 There are two versions of xmenu_show, one for Xt and one for Xlib.
1342 Both assume input is blocked by the caller. */
1344 /* F is the frame the menu is for.
1345 X and Y are the frame-relative specified position,
1346 relative to the inside upper left corner of the frame F.
1347 MENUBARP is 1 if the click that asked for this menu came from the menu bar.
1348 KEYMAPS is 1 if this menu was specified with keymaps;
1349 in that case, we return a list containing the chosen item's value
1350 and perhaps also the pane's prefix.
1351 TITLE is the specified menu title.
1352 ERROR is a place to store an error message string in case of failure.
1353 (We return nil on failure, but the value doesn't actually matter.) */
1355 #ifdef USE_X_TOOLKIT
1357 extern unsigned int x_mouse_grabbed
;
1358 extern Lisp_Object Vmouse_depressed
;
1361 xmenu_show (f
, x
, y
, menubarp
, keymaps
, title
, error
)
1373 XlwMenuWidget menubar
= (XlwMenuWidget
) f
->display
.x
->menubar_widget
;
1375 /* This is the menu bar item (if any) that led to this menu. */
1376 widget_value
*menubar_item
= 0;
1378 widget_value
*wv
, *save_wv
= 0, *first_wv
= 0, *prev_wv
= 0;
1379 widget_value
**submenu_stack
1380 = (widget_value
**) alloca (menu_items_used
* sizeof (widget_value
*));
1381 Lisp_Object
*subprefix_stack
1382 = (Lisp_Object
*) alloca (menu_items_used
* sizeof (Lisp_Object
));
1383 int submenu_depth
= 0;
1385 /* Define a queue to save up for later unreading
1386 all X events that don't pertain to the menu. */
1390 struct event_queue
*next
;
1393 struct event_queue
*queue
= NULL
;
1394 struct event_queue
*queue_tmp
;
1396 Position root_x
, root_y
;
1400 this_menu_bar_item_beg
= -1;
1401 this_menu_bar_item_end
= -1;
1402 last_menu_bar_item_end
= -1;
1404 /* Figure out which menu bar item, if any, this menu is for. */
1410 for (menubar_item
= menubar
->menu
.old_stack
[0]->contents
;
1412 menubar_item
= menubar_item
->next
)
1415 xend
+= (string_width (menubar
, menubar_item
->name
)
1416 + 2 * (menubar
->menu
.horizontal_spacing
1417 + menubar
->menu
.shadow_thickness
));
1418 if (x
>= xbeg
&& x
< xend
)
1422 /* Arrange to show a different menu if we move in the menu bar
1423 to a different item. */
1424 this_menu_bar_item_beg
= xbeg
;
1425 this_menu_bar_item_end
= xend
;
1428 last_menu_bar_item_end
= xend
;
1430 if (menubar_item
== 0)
1433 /* Offset the coordinates to root-relative. */
1434 XtTranslateCoords (f
->display
.x
->widget
,
1435 x
, y
+ f
->display
.x
->menubar_widget
->core
.height
,
1440 /* Create a tree of widget_value objects
1441 representing the panes and their items. */
1442 wv
= malloc_widget_value ();
1448 /* Loop over all panes and items, filling in the tree. */
1450 while (i
< menu_items_used
)
1452 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
1454 submenu_stack
[submenu_depth
++] = save_wv
;
1459 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
1462 save_wv
= submenu_stack
[--submenu_depth
];
1465 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
)
1466 && submenu_depth
!= 0)
1467 i
+= MENU_ITEMS_PANE_LENGTH
;
1468 /* Ignore a nil in the item list.
1469 It's meaningful only for dialog boxes. */
1470 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
1472 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
1474 /* Create a new pane. */
1475 Lisp_Object pane_name
, prefix
;
1477 pane_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_NAME
];
1478 prefix
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
1479 pane_string
= (NILP (pane_name
)
1480 ? "" : (char *) XSTRING (pane_name
)->data
);
1481 /* If there is just one top-level pane, put all its items directly
1482 under the top-level menu. */
1483 if (menu_items_n_panes
== 1)
1486 /* If the pane has a meaningful name,
1487 make the pane a top-level menu item
1488 with its items as a submenu beneath it. */
1489 if (strcmp (pane_string
, ""))
1491 wv
= malloc_widget_value ();
1495 first_wv
->contents
= wv
;
1496 wv
->name
= pane_string
;
1497 if (keymaps
&& !NILP (prefix
))
1504 i
+= MENU_ITEMS_PANE_LENGTH
;
1508 /* Create a new item within current pane. */
1509 Lisp_Object item_name
, enable
, descrip
;
1510 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
1511 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
1513 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
1515 wv
= malloc_widget_value ();
1519 save_wv
->contents
= wv
;
1520 wv
->name
= (char *) XSTRING (item_name
)->data
;
1521 if (!NILP (descrip
))
1522 wv
->key
= (char *) XSTRING (descrip
)->data
;
1524 wv
->call_data
= (void *) &XVECTOR (menu_items
)->contents
[i
];
1525 wv
->enabled
= !NILP (enable
);
1528 i
+= MENU_ITEMS_ITEM_LENGTH
;
1532 /* Actually create the menu. */
1533 menu_id
= ++popup_id_tick
;
1534 menu
= lw_create_widget ("popup", first_wv
->name
, menu_id
, first_wv
,
1535 f
->display
.x
->widget
, 1, 0,
1536 popup_selection_callback
, popup_down_callback
);
1537 /* Free the widget_value objects we used to specify the contents. */
1538 free_menubar_widget_value_tree (first_wv
);
1540 /* No selection has been chosen yet. */
1541 menu_item_selection
= 0;
1543 /* If the mouse moves out of the menu before we show the menu,
1544 don't show it at all. */
1545 if (check_mouse_other_menu_bar (f
))
1547 lw_destroy_all_widgets (menu_id
);
1552 /* Highlight the menu bar item (if any) that led to this menu. */
1555 menubar_item
->call_data
= (XtPointer
) 1;
1556 dispatch_dummy_expose (f
->display
.x
->menubar_widget
, x
, y
);
1559 /* Display the menu. */
1561 XButtonPressedEvent dummy
;
1564 mw
= (XlwMenuWidget
) ((CompositeWidget
)menu
)->composite
.children
[0];
1566 dummy
.type
= ButtonPress
;
1568 dummy
.send_event
= 0;
1569 dummy
.display
= XtDisplay (menu
);
1570 dummy
.window
= XtWindow (XtParent (menu
));
1571 dummy
.time
= CurrentTime
;
1576 /* We activate directly the lucid implementation. */
1577 pop_up_menu (mw
, &dummy
);
1580 /* No need to check a second time since this is done in the XEvent loop.
1581 This slows done the execution. */
1583 /* Check again whether the mouse has moved to another menu bar item. */
1584 if (check_mouse_other_menu_bar (f
))
1586 /* The mouse moved into a different menu bar item.
1587 We should bring up that item's menu instead.
1588 First pop down this menu. */
1589 XtUngrabPointer ((Widget
)
1591 ((CompositeWidget
)menu
)->composite
.children
[0]),
1593 lw_destroy_all_widgets (menu_id
);
1598 /* Process events that apply to the menu. */
1603 XtAppNextEvent (Xt_app_con
, &event
);
1604 if (event
.type
== ButtonRelease
)
1606 XtDispatchEvent (&event
);
1609 /* Do the work of construct_mouse_click since it can't
1610 be called. Initially, the popup menu has been called
1611 from a ButtonPress in the edit_widget. Then the mouse
1612 has been set to grabbed. Reset it now. */
1613 x_mouse_grabbed
&= ~(1 << event
.xbutton
.button
);
1614 if (!x_mouse_grabbed
)
1615 Vmouse_depressed
= Qnil
;
1619 else if (event
.type
== Expose
)
1620 process_expose_from_menu (event
);
1621 else if (event
.type
== MotionNotify
)
1623 int event_x
= (event
.xmotion
.x_root
1624 - (f
->display
.x
->widget
->core
.x
1625 + f
->display
.x
->widget
->core
.border_width
));
1626 int event_y
= (event
.xmotion
.y_root
1627 - (f
->display
.x
->widget
->core
.y
1628 + f
->display
.x
->widget
->core
.border_width
));
1630 if (other_menu_bar_item_p (f
, event_x
, event_y
))
1632 /* The mouse moved into a different menu bar item.
1633 We should bring up that item's menu instead.
1634 First pop down this menu. */
1635 XtUngrabPointer ((Widget
)
1637 ((CompositeWidget
)menu
)->composite
.children
[0]),
1638 event
.xbutton
.time
);
1639 lw_destroy_all_widgets (menu_id
);
1641 /* Put back an event that will bring up the other item's menu. */
1642 unread_menu_bar_button (f
, event_x
);
1643 /* Don't let us select anything in this case. */
1644 menu_item_selection
= 0;
1649 XtDispatchEvent (&event
);
1650 if (XtWindowToWidget(XDISPLAY event
.xany
.window
) != menu
)
1653 = (struct event_queue
*) malloc (sizeof (struct event_queue
));
1655 if (queue_tmp
!= NULL
)
1657 queue_tmp
->event
= event
;
1658 queue_tmp
->next
= queue
;
1665 /* Unhighlight the menu bar item (if any) that led to this menu. */
1668 menubar_item
->call_data
= (XtPointer
) 0;
1669 dispatch_dummy_expose (f
->display
.x
->menubar_widget
, x
, y
);
1672 /* fp turned off the following statement and wrote a comment
1673 that it is unnecessary--that the menu has already disappeared.
1674 I observer that is not so. -- rms. */
1675 /* Make sure the menu disappears. */
1676 lw_destroy_all_widgets (menu_id
);
1678 /* Unread any events that we got but did not handle. */
1679 while (queue
!= NULL
)
1682 XPutBackEvent (XDISPLAY
&queue_tmp
->event
);
1683 queue
= queue_tmp
->next
;
1684 free ((char *)queue_tmp
);
1687 /* Find the selected item, and its pane, to return
1688 the proper value. */
1689 if (menu_item_selection
!= 0)
1695 while (i
< menu_items_used
)
1699 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qnil
))
1701 subprefix_stack
[submenu_depth
++] = prefix
;
1705 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qlambda
))
1707 prefix
= subprefix_stack
[--submenu_depth
];
1710 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
1713 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
1714 i
+= MENU_ITEMS_PANE_LENGTH
;
1719 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
1720 if (menu_item_selection
== &XVECTOR (menu_items
)->contents
[i
])
1726 entry
= Fcons (entry
, Qnil
);
1728 entry
= Fcons (prefix
, entry
);
1729 for (j
= submenu_depth
- 1; j
>= 0; j
--)
1730 if (!NILP (subprefix_stack
[j
]))
1731 entry
= Fcons (subprefix_stack
[j
], entry
);
1735 i
+= MENU_ITEMS_ITEM_LENGTH
;
1743 static char * button_names
[] = {
1744 "button1", "button2", "button3", "button4", "button5",
1745 "button6", "button7", "button8", "button9", "button10" };
1748 xdialog_show (f
, menubarp
, keymaps
, title
, error
)
1755 int i
, nb_buttons
=0;
1758 XlwMenuWidget menubar
= (XlwMenuWidget
) f
->display
.x
->menubar_widget
;
1759 char dialog_name
[6];
1761 /* This is the menu bar item (if any) that led to this menu. */
1762 widget_value
*menubar_item
= 0;
1764 widget_value
*wv
, *save_wv
= 0, *first_wv
= 0, *prev_wv
= 0;
1766 /* Define a queue to save up for later unreading
1767 all X events that don't pertain to the menu. */
1771 struct event_queue
*next
;
1774 struct event_queue
*queue
= NULL
;
1775 struct event_queue
*queue_tmp
;
1777 /* Number of elements seen so far, before boundary. */
1779 /* 1 means we've seen the boundary between left-hand elts and right-hand. */
1780 int boundary_seen
= 0;
1784 if (menu_items_n_panes
> 1)
1786 *error
= "Multiple panes in dialog box";
1790 /* Create a tree of widget_value objects
1791 representing the text label and buttons. */
1793 Lisp_Object pane_name
, prefix
;
1795 pane_name
= XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_NAME
];
1796 prefix
= XVECTOR (menu_items
)->contents
[MENU_ITEMS_PANE_PREFIX
];
1797 pane_string
= (NILP (pane_name
)
1798 ? "" : (char *) XSTRING (pane_name
)->data
);
1799 prev_wv
= malloc_widget_value ();
1800 prev_wv
->value
= pane_string
;
1801 if (keymaps
&& !NILP (prefix
))
1803 prev_wv
->enabled
= 1;
1804 prev_wv
->name
= "message";
1807 /* Loop over all panes and items, filling in the tree. */
1808 i
= MENU_ITEMS_PANE_LENGTH
;
1809 while (i
< menu_items_used
)
1812 /* Create a new item within current pane. */
1813 Lisp_Object item_name
, enable
, descrip
;
1814 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
1815 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
1817 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
1819 if (NILP (item_name
))
1821 free_menubar_widget_value_tree (first_wv
);
1822 *error
= "Submenu in dialog items";
1825 if (EQ (item_name
, Qquote
))
1827 /* This is the boundary between left-side elts
1828 and right-side elts. Stop incrementing right_count. */
1833 if (nb_buttons
>= 10)
1835 free_menubar_widget_value_tree (first_wv
);
1836 *error
= "Too many dialog items";
1840 wv
= malloc_widget_value ();
1842 wv
->name
= (char *) button_names
[nb_buttons
];
1843 if (!NILP (descrip
))
1844 wv
->key
= (char *) XSTRING (descrip
)->data
;
1845 wv
->value
= (char *) XSTRING (item_name
)->data
;
1846 wv
->call_data
= (void *) &XVECTOR (menu_items
)->contents
[i
];
1847 wv
->enabled
= !NILP (enable
);
1850 if (! boundary_seen
)
1854 i
+= MENU_ITEMS_ITEM_LENGTH
;
1857 /* If the boundary was not specified,
1858 by default put half on the left and half on the right. */
1859 if (! boundary_seen
)
1860 left_count
= nb_buttons
- nb_buttons
/ 2;
1862 wv
= malloc_widget_value ();
1863 wv
->name
= dialog_name
;
1865 /* Dialog boxes use a really stupid name encoding
1866 which specifies how many buttons to use
1867 and how many buttons are on the right.
1868 The Q means something also. */
1869 dialog_name
[0] = 'Q';
1870 dialog_name
[1] = '0' + nb_buttons
;
1871 dialog_name
[2] = 'B';
1872 dialog_name
[3] = 'R';
1873 /* Number of buttons to put on the right. */
1874 dialog_name
[4] = '0' + nb_buttons
- left_count
;
1876 wv
->contents
= first_wv
;
1880 /* Actually create the dialog. */
1881 dialog_id
= ++popup_id_tick
;
1882 menu
= lw_create_widget (first_wv
->name
, "dialog", dialog_id
, first_wv
,
1883 f
->display
.x
->widget
, 1, 0,
1884 dialog_selection_callback
, 0);
1885 #if 0 /* This causes crashes, and seems to be redundant -- rms. */
1886 lw_modify_all_widgets (dialog_id
, first_wv
, True
);
1888 lw_modify_all_widgets (dialog_id
, first_wv
->contents
->next
, True
);
1889 /* Free the widget_value objects we used to specify the contents. */
1890 free_menubar_widget_value_tree (first_wv
);
1892 /* No selection has been chosen yet. */
1893 menu_item_selection
= 0;
1895 /* Display the menu. */
1896 lw_pop_up_all_widgets (dialog_id
);
1898 /* Process events that apply to the menu. */
1903 XtAppNextEvent (Xt_app_con
, &event
);
1904 if (event
.type
== ButtonRelease
)
1906 XtDispatchEvent (&event
);
1909 else if (event
.type
== Expose
)
1910 process_expose_from_menu (event
);
1911 XtDispatchEvent (&event
);
1912 if (XtWindowToWidget(XDISPLAY event
.xany
.window
) != menu
)
1914 queue_tmp
= (struct event_queue
*) malloc (sizeof (struct event_queue
));
1916 if (queue_tmp
!= NULL
)
1918 queue_tmp
->event
= event
;
1919 queue_tmp
->next
= queue
;
1926 /* Unread any events that we got but did not handle. */
1927 while (queue
!= NULL
)
1930 XPutBackEvent (XDISPLAY
&queue_tmp
->event
);
1931 queue
= queue_tmp
->next
;
1932 free ((char *)queue_tmp
);
1935 /* Find the selected item, and its pane, to return
1936 the proper value. */
1937 if (menu_item_selection
!= 0)
1943 while (i
< menu_items_used
)
1947 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
1950 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
1951 i
+= MENU_ITEMS_PANE_LENGTH
;
1956 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
1957 if (menu_item_selection
== &XVECTOR (menu_items
)->contents
[i
])
1961 entry
= Fcons (entry
, Qnil
);
1963 entry
= Fcons (prefix
, entry
);
1967 i
+= MENU_ITEMS_ITEM_LENGTH
;
1974 #else /* not USE_X_TOOLKIT */
1977 xmenu_show (f
, x
, y
, menubarp
, keymaps
, title
, error
)
1987 int pane
, selidx
, lpane
, status
;
1988 Lisp_Object entry
, pane_prefix
;
1990 int ulx
, uly
, width
, height
;
1991 int dispwidth
, dispheight
;
1995 unsigned int dummy_uint
;
1998 if (menu_items_n_panes
== 0)
2001 /* Figure out which root window F is on. */
2002 XGetGeometry (x_current_display
, FRAME_X_WINDOW (f
), &root
,
2003 &dummy_int
, &dummy_int
, &dummy_uint
, &dummy_uint
,
2004 &dummy_uint
, &dummy_uint
);
2006 /* Make the menu on that window. */
2007 menu
= XMenuCreate (XDISPLAY root
, "emacs");
2010 *error
= "Can't create menu";
2014 /* Adjust coordinates to relative to the outer (window manager) window. */
2018 int win_x
= 0, win_y
= 0;
2020 /* Find the position of the outside upper-left corner of
2021 the inner window, with respect to the outer window. */
2022 if (f
->display
.x
->parent_desc
!= ROOT_WINDOW
)
2025 XTranslateCoordinates (x_current_display
,
2027 /* From-window, to-window. */
2028 f
->display
.x
->window_desc
,
2029 f
->display
.x
->parent_desc
,
2031 /* From-position, to-position. */
2032 0, 0, &win_x
, &win_y
,
2034 /* Child of window. */
2041 #endif /* HAVE_X11 */
2043 /* Adjust coordinates to be root-window-relative. */
2044 x
+= f
->display
.x
->left_pos
;
2045 y
+= f
->display
.x
->top_pos
;
2047 /* Create all the necessary panes and their items. */
2049 while (i
< menu_items_used
)
2051 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2053 /* Create a new pane. */
2054 Lisp_Object pane_name
, prefix
;
2057 pane_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_NAME
];
2058 prefix
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2059 pane_string
= (NILP (pane_name
)
2060 ? "" : (char *) XSTRING (pane_name
)->data
);
2061 if (keymaps
&& !NILP (prefix
))
2064 lpane
= XMenuAddPane (XDISPLAY menu
, pane_string
, TRUE
);
2065 if (lpane
== XM_FAILURE
)
2067 XMenuDestroy (XDISPLAY menu
);
2068 *error
= "Can't create pane";
2071 i
+= MENU_ITEMS_PANE_LENGTH
;
2073 /* Find the width of the widest item in this pane. */
2076 while (j
< menu_items_used
)
2079 item
= XVECTOR (menu_items
)->contents
[j
];
2087 width
= XSTRING (item
)->size
;
2088 if (width
> maxwidth
)
2091 j
+= MENU_ITEMS_ITEM_LENGTH
;
2094 /* Ignore a nil in the item list.
2095 It's meaningful only for dialog boxes. */
2096 else if (EQ (XVECTOR (menu_items
)->contents
[i
], Qquote
))
2100 /* Create a new item within current pane. */
2101 Lisp_Object item_name
, enable
, descrip
;
2102 unsigned char *item_data
;
2104 item_name
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_NAME
];
2105 enable
= XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_ENABLE
];
2107 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_EQUIV_KEY
];
2108 if (!NILP (descrip
))
2110 int gap
= maxwidth
- XSTRING (item_name
)->size
;
2113 spacer
= Fmake_string (make_number (gap
), make_number (' '));
2114 item_name
= concat2 (item_name
, spacer
);
2115 item_name
= concat2 (item_name
, descrip
);
2116 item_data
= XSTRING (item_name
)->data
;
2118 /* if alloca is fast, use that to make the space,
2119 to reduce gc needs. */
2121 = (unsigned char *) alloca (maxwidth
2122 + XSTRING (descrip
)->size
+ 1);
2123 bcopy (XSTRING (item_name
)->data
, item_data
,
2124 XSTRING (item_name
)->size
);
2125 for (j
= XSTRING (item_name
)->size
; j
< maxwidth
; j
++)
2127 bcopy (XSTRING (descrip
)->data
, item_data
+ j
,
2128 XSTRING (descrip
)->size
);
2129 item_data
[j
+ XSTRING (descrip
)->size
] = 0;
2133 item_data
= XSTRING (item_name
)->data
;
2135 if (XMenuAddSelection (XDISPLAY menu
, lpane
, 0, item_data
,
2139 XMenuDestroy (XDISPLAY menu
);
2140 *error
= "Can't add selection to menu";
2143 i
+= MENU_ITEMS_ITEM_LENGTH
;
2147 /* All set and ready to fly. */
2148 XMenuRecompute (XDISPLAY menu
);
2149 dispwidth
= DisplayWidth (x_current_display
, XDefaultScreen (x_current_display
));
2150 dispheight
= DisplayHeight (x_current_display
, XDefaultScreen (x_current_display
));
2151 x
= min (x
, dispwidth
);
2152 y
= min (y
, dispheight
);
2155 XMenuLocate (XDISPLAY menu
, 0, 0, x
, y
,
2156 &ulx
, &uly
, &width
, &height
);
2157 if (ulx
+width
> dispwidth
)
2159 x
-= (ulx
+ width
) - dispwidth
;
2160 ulx
= dispwidth
- width
;
2162 if (uly
+height
> dispheight
)
2164 y
-= (uly
+ height
) - dispheight
;
2165 uly
= dispheight
- height
;
2167 if (ulx
< 0) x
-= ulx
;
2168 if (uly
< 0) y
-= uly
;
2170 XMenuSetAEQ (menu
, TRUE
);
2171 XMenuSetFreeze (menu
, TRUE
);
2174 status
= XMenuActivate (XDISPLAY menu
, &pane
, &selidx
,
2175 x
, y
, ButtonReleaseMask
, &datap
);
2180 fprintf (stderr
, "pane= %d line = %d\n", panes
, selidx
);
2183 /* Find the item number SELIDX in pane number PANE. */
2185 while (i
< menu_items_used
)
2187 if (EQ (XVECTOR (menu_items
)->contents
[i
], Qt
))
2191 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_PANE_PREFIX
];
2193 i
+= MENU_ITEMS_PANE_LENGTH
;
2202 = XVECTOR (menu_items
)->contents
[i
+ MENU_ITEMS_ITEM_VALUE
];
2205 entry
= Fcons (entry
, Qnil
);
2206 if (!NILP (pane_prefix
))
2207 entry
= Fcons (pane_prefix
, entry
);
2213 i
+= MENU_ITEMS_ITEM_LENGTH
;
2219 XMenuDestroy (XDISPLAY menu
);
2220 *error
= "Can't activate menu";
2226 XMenuDestroy (XDISPLAY menu
);
2229 #endif /* not USE_X_TOOLKIT */
2233 staticpro (&menu_items
);
2236 popup_id_tick
= (1<<16);
2237 defsubr (&Sx_popup_menu
);
2238 defsubr (&Sx_popup_dialog
);