1 /* Menu support for GNU Emacs on the Microsoft W32 API.
2 Copyright (C) 1986, 1988, 1993, 1994, 1996, 1998, 1999, 2002, 2003,
3 2004, 2005 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
27 #include "termhooks.h"
32 #include "blockinput.h"
37 /* This may include sys/types.h, and that somehow loses
38 if this is not done before the other system files. */
41 /* Load sys/types.h if not already loaded.
42 In some systems loading it twice is suicidal. */
44 #include <sys/types.h>
47 #include "dispextern.h"
49 #undef HAVE_DIALOGS /* TODO: Implement native dialogs. */
51 /******************************************************************/
52 /* Definitions copied from lwlib.h */
54 typedef void * XtPointer
;
64 /* This structure is based on the one in ../lwlib/lwlib.h, modified
66 typedef struct _widget_value
71 /* value (meaning depend on widget type) */
73 /* keyboard equivalent. no implications for XtTranslations */
76 /* Help string or nil if none.
77 GC finds this string through the frame's menu_bar_vector
78 or through menu_items. */
82 /* true if selected */
84 /* The type of a button. */
85 enum button_type button_type
;
86 /* true if menu title */
89 /* true if was edited (maintained by get_value) */
91 /* true if has changed (maintained by lw library) */
93 /* true if this widget itself has changed,
94 but not counting the other widgets found in the `next' field. */
95 change_type this_one_change
;
97 /* Contents of the sub-widgets, also selected slot for checkbox */
98 struct _widget_value
* contents
;
99 /* data passed to callback */
101 /* next one in the list */
102 struct _widget_value
* next
;
104 /* slot for the toolkit dependent part. Always initialize to NULL. */
106 /* tell us if we should free the toolkit data slot when freeing the
107 widget_value itself. */
108 Boolean free_toolkit_data
;
110 /* we resource the widget_value structures; this points to the next
111 one on the free list if this one has been deallocated.
113 struct _widget_value
*free_list
;
117 /* Local memory management */
118 #define local_heap (GetProcessHeap ())
119 #define local_alloc(n) (HeapAlloc (local_heap, HEAP_ZERO_MEMORY, (n)))
120 #define local_free(p) (HeapFree (local_heap, 0, ((LPVOID) (p))))
122 #define malloc_widget_value() ((widget_value *) local_alloc (sizeof (widget_value)))
123 #define free_widget_value(wv) (local_free ((wv)))
125 /******************************************************************/
132 static HMENU current_popup_menu
;
134 void syms_of_w32menu ();
135 void globals_of_w32menu ();
137 typedef BOOL (WINAPI
* GetMenuItemInfoA_Proc
) (
141 IN OUT LPMENUITEMINFOA
);
142 typedef BOOL (WINAPI
* SetMenuItemInfoA_Proc
) (
146 IN LPCMENUITEMINFOA
);
148 GetMenuItemInfoA_Proc get_menu_item_info
= NULL
;
149 SetMenuItemInfoA_Proc set_menu_item_info
= NULL
;
150 AppendMenuW_Proc unicode_append_menu
= NULL
;
152 Lisp_Object Vmenu_updating_frame
;
154 Lisp_Object Qdebug_on_next_call
;
156 extern Lisp_Object Qmenu_bar
;
158 extern Lisp_Object QCtoggle
, QCradio
;
160 extern Lisp_Object Voverriding_local_map
;
161 extern Lisp_Object Voverriding_local_map_menu_flag
;
163 extern Lisp_Object Qoverriding_local_map
, Qoverriding_terminal_local_map
;
165 extern Lisp_Object Qmenu_bar_update_hook
;
167 void set_frame_menubar ();
169 static void push_menu_item
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
,
170 Lisp_Object
, Lisp_Object
, Lisp_Object
,
171 Lisp_Object
, Lisp_Object
));
173 static Lisp_Object
w32_dialog_show ();
175 static Lisp_Object
w32_menu_show ();
177 static void keymap_panes ();
178 static void single_keymap_panes ();
179 static void single_menu_item ();
180 static void list_of_panes ();
181 static void list_of_items ();
182 void w32_free_menu_strings (HWND
);
184 /* This holds a Lisp vector that holds the results of decoding
185 the keymaps or alist-of-alists that specify a menu.
187 It describes the panes and items within the panes.
189 Each pane is described by 3 elements in the vector:
190 t, the pane name, the pane's prefix key.
191 Then follow the pane's items, with 5 elements per item:
192 the item string, the enable flag, the item's value,
193 the definition, and the equivalent keyboard key's description string.
195 In some cases, multiple levels of menus may be described.
196 A single vector slot containing nil indicates the start of a submenu.
197 A single vector slot containing lambda indicates the end of a submenu.
198 The submenu follows a menu item which is the way to reach the submenu.
200 A single vector slot containing quote indicates that the
201 following items should appear on the right of a dialog box.
203 Using a Lisp vector to hold this information while we decode it
204 takes care of protecting all the data from GC. */
206 #define MENU_ITEMS_PANE_NAME 1
207 #define MENU_ITEMS_PANE_PREFIX 2
208 #define MENU_ITEMS_PANE_LENGTH 3
212 MENU_ITEMS_ITEM_NAME
= 0,
213 MENU_ITEMS_ITEM_ENABLE
,
214 MENU_ITEMS_ITEM_VALUE
,
215 MENU_ITEMS_ITEM_EQUIV_KEY
,
216 MENU_ITEMS_ITEM_DEFINITION
,
217 MENU_ITEMS_ITEM_TYPE
,
218 MENU_ITEMS_ITEM_SELECTED
,
219 MENU_ITEMS_ITEM_HELP
,
220 MENU_ITEMS_ITEM_LENGTH
223 static Lisp_Object menu_items
;
225 /* Number of slots currently allocated in menu_items. */
226 static int menu_items_allocated
;
228 /* This is the index in menu_items of the first empty slot. */
229 static int menu_items_used
;
231 /* The number of panes currently recorded in menu_items,
232 excluding those within submenus. */
233 static int menu_items_n_panes
;
235 /* Current depth within submenus. */
236 static int menu_items_submenu_depth
;
238 /* Flag which when set indicates a dialog or menu has been posted by
239 Xt on behalf of one of the widget sets. */
240 static int popup_activated_flag
;
242 static int next_menubar_widget_id
;
244 /* This is set nonzero after the user activates the menu bar, and set
245 to zero again after the menu bars are redisplayed by prepare_menu_bar.
246 While it is nonzero, all calls to set_frame_menubar go deep.
248 I don't understand why this is needed, but it does seem to be
249 needed on Motif, according to Marcus Daniels <marcus@sysc.pdx.edu>. */
251 int pending_menu_activation
;
254 /* Return the frame whose ->output_data.w32->menubar_widget equals
257 static struct frame
*
258 menubar_id_to_frame (id
)
261 Lisp_Object tail
, frame
;
264 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
267 if (!GC_FRAMEP (frame
))
270 if (!FRAME_WINDOW_P (f
))
272 if (f
->output_data
.w32
->menubar_widget
== id
)
278 /* Initialize the menu_items structure if we haven't already done so.
279 Also mark it as currently empty. */
284 if (NILP (menu_items
))
286 menu_items_allocated
= 60;
287 menu_items
= Fmake_vector (make_number (menu_items_allocated
), Qnil
);
291 menu_items_n_panes
= 0;
292 menu_items_submenu_depth
= 0;
295 /* Call at the end of generating the data in menu_items.
296 This fills in the number of items in the last pane. */
303 /* Call when finished using the data for the current menu
307 discard_menu_items ()
309 /* Free the structure if it is especially large.
310 Otherwise, hold on to it, to save time. */
311 if (menu_items_allocated
> 200)
314 menu_items_allocated
= 0;
318 /* Make the menu_items vector twice as large. */
324 int old_size
= menu_items_allocated
;
327 menu_items_allocated
*= 2;
328 menu_items
= Fmake_vector (make_number (menu_items_allocated
), Qnil
);
329 bcopy (XVECTOR (old
)->contents
, XVECTOR (menu_items
)->contents
,
330 old_size
* sizeof (Lisp_Object
));
333 /* Begin a submenu. */
336 push_submenu_start ()
338 if (menu_items_used
+ 1 > menu_items_allocated
)
341 ASET (menu_items
, menu_items_used
++, Qnil
);
342 menu_items_submenu_depth
++;
350 if (menu_items_used
+ 1 > menu_items_allocated
)
353 ASET (menu_items
, menu_items_used
++, Qlambda
);
354 menu_items_submenu_depth
--;
357 /* Indicate boundary between left and right. */
360 push_left_right_boundary ()
362 if (menu_items_used
+ 1 > menu_items_allocated
)
365 ASET (menu_items
, menu_items_used
++, Qquote
);
368 /* Start a new menu pane in menu_items.
369 NAME is the pane name. PREFIX_VEC is a prefix key for this pane. */
372 push_menu_pane (name
, prefix_vec
)
373 Lisp_Object name
, prefix_vec
;
375 if (menu_items_used
+ MENU_ITEMS_PANE_LENGTH
> menu_items_allocated
)
378 if (menu_items_submenu_depth
== 0)
379 menu_items_n_panes
++;
380 ASET (menu_items
, menu_items_used
++, Qt
);
381 ASET (menu_items
, menu_items_used
++, name
);
382 ASET (menu_items
, menu_items_used
++, prefix_vec
);
385 /* Push one menu item into the current pane. NAME is the string to
386 display. ENABLE if non-nil means this item can be selected. KEY
387 is the key generated by choosing this item, or nil if this item
388 doesn't really have a definition. DEF is the definition of this
389 item. EQUIV is the textual description of the keyboard equivalent
390 for this item (or nil if none). TYPE is the type of this menu
391 item, one of nil, `toggle' or `radio'. */
394 push_menu_item (name
, enable
, key
, def
, equiv
, type
, selected
, help
)
395 Lisp_Object name
, enable
, key
, def
, equiv
, type
, selected
, help
;
397 if (menu_items_used
+ MENU_ITEMS_ITEM_LENGTH
> menu_items_allocated
)
400 ASET (menu_items
, menu_items_used
++, name
);
401 ASET (menu_items
, menu_items_used
++, enable
);
402 ASET (menu_items
, menu_items_used
++, key
);
403 ASET (menu_items
, menu_items_used
++, equiv
);
404 ASET (menu_items
, menu_items_used
++, def
);
405 ASET (menu_items
, menu_items_used
++, type
);
406 ASET (menu_items
, menu_items_used
++, selected
);
407 ASET (menu_items
, menu_items_used
++, help
);
410 /* Look through KEYMAPS, a vector of keymaps that is NMAPS long,
411 and generate menu panes for them in menu_items.
412 If NOTREAL is nonzero,
413 don't bother really computing whether an item is enabled. */
416 keymap_panes (keymaps
, nmaps
, notreal
)
417 Lisp_Object
*keymaps
;
425 /* Loop over the given keymaps, making a pane for each map.
426 But don't make a pane that is empty--ignore that map instead.
427 P is the number of panes we have made so far. */
428 for (mapno
= 0; mapno
< nmaps
; mapno
++)
429 single_keymap_panes (keymaps
[mapno
],
430 Fkeymap_prompt (keymaps
[mapno
]), Qnil
, notreal
, 10);
432 finish_menu_items ();
435 /* This is a recursive subroutine of keymap_panes.
436 It handles one keymap, KEYMAP.
437 The other arguments are passed along
438 or point to local variables of the previous function.
439 If NOTREAL is nonzero, only check for equivalent key bindings, don't
440 evaluate expressions in menu items and don't make any menu.
442 If we encounter submenus deeper than MAXDEPTH levels, ignore them. */
445 single_keymap_panes (keymap
, pane_name
, prefix
, notreal
, maxdepth
)
447 Lisp_Object pane_name
;
452 Lisp_Object pending_maps
= Qnil
;
453 Lisp_Object tail
, item
;
454 struct gcpro gcpro1
, gcpro2
;
459 push_menu_pane (pane_name
, prefix
);
461 for (tail
= keymap
; CONSP (tail
); tail
= XCDR (tail
))
463 GCPRO2 (keymap
, pending_maps
);
464 /* Look at each key binding, and if it is a menu item add it
468 single_menu_item (XCAR (item
), XCDR (item
),
469 &pending_maps
, notreal
, maxdepth
);
470 else if (VECTORP (item
))
472 /* Loop over the char values represented in the vector. */
473 int len
= ASIZE (item
);
475 for (c
= 0; c
< len
; c
++)
477 Lisp_Object character
;
478 XSETFASTINT (character
, c
);
479 single_menu_item (character
, AREF (item
, c
),
480 &pending_maps
, notreal
, maxdepth
);
486 /* Process now any submenus which want to be panes at this level. */
487 while (!NILP (pending_maps
))
489 Lisp_Object elt
, eltcdr
, string
;
490 elt
= Fcar (pending_maps
);
492 string
= XCAR (eltcdr
);
493 /* We no longer discard the @ from the beginning of the string here.
494 Instead, we do this in w32_menu_show. */
495 single_keymap_panes (Fcar (elt
), string
,
496 XCDR (eltcdr
), notreal
, maxdepth
- 1);
497 pending_maps
= Fcdr (pending_maps
);
501 /* This is a subroutine of single_keymap_panes that handles one
503 KEY is a key in a keymap and ITEM is its binding.
504 PENDING_MAPS_PTR points to a list of keymaps waiting to be made into
506 If NOTREAL is nonzero, only check for equivalent key bindings, don't
507 evaluate expressions in menu items and don't make any menu.
508 If we encounter submenus deeper than MAXDEPTH levels, ignore them. */
511 single_menu_item (key
, item
, pending_maps_ptr
, notreal
, maxdepth
)
512 Lisp_Object key
, item
;
513 Lisp_Object
*pending_maps_ptr
;
514 int maxdepth
, notreal
;
516 Lisp_Object map
, item_string
, enabled
;
517 struct gcpro gcpro1
, gcpro2
;
520 /* Parse the menu item and leave the result in item_properties. */
522 res
= parse_menu_item (item
, notreal
, 0);
525 return; /* Not a menu item. */
527 map
= AREF (item_properties
, ITEM_PROPERTY_MAP
);
531 /* We don't want to make a menu, just traverse the keymaps to
532 precompute equivalent key bindings. */
534 single_keymap_panes (map
, Qnil
, key
, 1, maxdepth
- 1);
538 enabled
= AREF (item_properties
, ITEM_PROPERTY_ENABLE
);
539 item_string
= AREF (item_properties
, ITEM_PROPERTY_NAME
);
541 if (!NILP (map
) && SREF (item_string
, 0) == '@')
544 /* An enabled separate pane. Remember this to handle it later. */
545 *pending_maps_ptr
= Fcons (Fcons (map
, Fcons (item_string
, key
)),
550 push_menu_item (item_string
, enabled
, key
,
551 AREF (item_properties
, ITEM_PROPERTY_DEF
),
552 AREF (item_properties
, ITEM_PROPERTY_KEYEQ
),
553 AREF (item_properties
, ITEM_PROPERTY_TYPE
),
554 AREF (item_properties
, ITEM_PROPERTY_SELECTED
),
555 AREF (item_properties
, ITEM_PROPERTY_HELP
));
557 /* Display a submenu using the toolkit. */
558 if (! (NILP (map
) || NILP (enabled
)))
560 push_submenu_start ();
561 single_keymap_panes (map
, Qnil
, key
, 0, maxdepth
- 1);
566 /* Push all the panes and items of a menu described by the
567 alist-of-alists MENU.
568 This handles old-fashioned calls to x-popup-menu. */
578 for (tail
= menu
; !NILP (tail
); tail
= Fcdr (tail
))
580 Lisp_Object elt
, pane_name
, pane_data
;
582 pane_name
= Fcar (elt
);
583 CHECK_STRING (pane_name
);
584 push_menu_pane (pane_name
, Qnil
);
585 pane_data
= Fcdr (elt
);
586 CHECK_CONS (pane_data
);
587 list_of_items (pane_data
);
590 finish_menu_items ();
593 /* Push the items in a single pane defined by the alist PANE. */
599 Lisp_Object tail
, item
, item1
;
601 for (tail
= pane
; !NILP (tail
); tail
= Fcdr (tail
))
605 push_menu_item (item
, Qnil
, Qnil
, Qt
, Qnil
, Qnil
, Qnil
, Qnil
);
606 else if (NILP (item
))
607 push_left_right_boundary ();
612 CHECK_STRING (item1
);
613 push_menu_item (item1
, Qt
, Fcdr (item
), Qt
, Qnil
, Qnil
, Qnil
, Qnil
);
618 DEFUN ("x-popup-menu", Fx_popup_menu
, Sx_popup_menu
, 2, 2, 0,
619 doc
: /* Pop up a deck-of-cards menu and return user's selection.
620 POSITION is a position specification. This is either a mouse button
621 event or a list ((XOFFSET YOFFSET) WINDOW) where XOFFSET and YOFFSET
622 are positions in pixels from the top left corner of WINDOW's frame
623 \(WINDOW may be a frame object instead of a window). This controls the
624 position of the center of the first line in the first pane of the
625 menu, not the top left of the menu as a whole. If POSITION is t, it
626 means to use the current mouse position.
628 MENU is a specifier for a menu. For the simplest case, MENU is a keymap.
629 The menu items come from key bindings that have a menu string as well as
630 a definition; actually, the \"definition\" in such a key binding looks like
631 \(STRING . REAL-DEFINITION). To give the menu a title, put a string into
632 the keymap as a top-level element.
634 If REAL-DEFINITION is nil, that puts a nonselectable string in the menu.
635 Otherwise, REAL-DEFINITION should be a valid key binding definition.
637 You can also use a list of keymaps as MENU. Then each keymap makes a
638 separate pane. When MENU is a keymap or a list of keymaps, the return
639 value is a list of events.
641 Alternatively, you can specify a menu of multiple panes with a list of
642 the form (TITLE PANE1 PANE2...), where each pane is a list of
643 form (TITLE ITEM1 ITEM2...).
644 Each ITEM is normally a cons cell (STRING . VALUE); but a string can
645 appear as an item--that makes a nonselectable line in the menu.
646 With this form of menu, the return value is VALUE from the chosen item.
648 If POSITION is nil, don't display the menu at all, just precalculate the
649 cached information about equivalent key sequences. */)
651 Lisp_Object position
, menu
;
653 Lisp_Object keymap
, tem
;
654 int xpos
= 0, ypos
= 0;
657 Lisp_Object selection
;
659 Lisp_Object x
, y
, window
;
665 if (! NILP (position
))
669 /* Decode the first argument: find the window and the coordinates. */
670 if (EQ (position
, Qt
)
671 || (CONSP (position
) && (EQ (XCAR (position
), Qmenu_bar
)
672 || EQ (XCAR (position
), Qtool_bar
))))
674 /* Use the mouse's current position. */
675 FRAME_PTR new_f
= SELECTED_FRAME ();
676 Lisp_Object bar_window
;
677 enum scroll_bar_part part
;
680 if (mouse_position_hook
)
681 (*mouse_position_hook
) (&new_f
, 1, &bar_window
,
682 &part
, &x
, &y
, &time
);
684 XSETFRAME (window
, new_f
);
687 window
= selected_window
;
694 tem
= Fcar (position
);
697 window
= Fcar (Fcdr (position
));
699 y
= Fcar (Fcdr (tem
));
704 tem
= Fcar (Fcdr (position
)); /* EVENT_START (position) */
705 window
= Fcar (tem
); /* POSN_WINDOW (tem) */
706 tem
= Fcar (Fcdr (Fcdr (tem
))); /* POSN_WINDOW_POSN (tem) */
715 /* Decode where to put the menu. */
723 else if (WINDOWP (window
))
725 CHECK_LIVE_WINDOW (window
);
726 f
= XFRAME (WINDOW_FRAME (XWINDOW (window
)));
728 xpos
= WINDOW_LEFT_EDGE_X (XWINDOW (window
));
729 ypos
= WINDOW_TOP_EDGE_Y (XWINDOW (window
));
732 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
733 but I don't want to make one now. */
734 CHECK_WINDOW (window
);
739 XSETFRAME (Vmenu_updating_frame
, f
);
741 Vmenu_updating_frame
= Qnil
;
742 #endif /* HAVE_MENUS */
747 /* Decode the menu items from what was specified. */
749 keymap
= get_keymap (menu
, 0, 0);
752 /* We were given a keymap. Extract menu info from the keymap. */
755 /* Extract the detailed info to make one pane. */
756 keymap_panes (&menu
, 1, NILP (position
));
758 /* Search for a string appearing directly as an element of the keymap.
759 That string is the title of the menu. */
760 prompt
= Fkeymap_prompt (keymap
);
761 if (NILP (title
) && !NILP (prompt
))
764 /* Make that be the pane title of the first pane. */
765 if (!NILP (prompt
) && menu_items_n_panes
>= 0)
766 ASET (menu_items
, MENU_ITEMS_PANE_NAME
, prompt
);
770 else if (CONSP (menu
) && KEYMAPP (XCAR (menu
)))
772 /* We were given a list of keymaps. */
773 int nmaps
= XFASTINT (Flength (menu
));
775 = (Lisp_Object
*) alloca (nmaps
* sizeof (Lisp_Object
));
780 /* The first keymap that has a prompt string
781 supplies the menu title. */
782 for (tem
= menu
, i
= 0; CONSP (tem
); tem
= Fcdr (tem
))
786 maps
[i
++] = keymap
= get_keymap (Fcar (tem
), 1, 0);
788 prompt
= Fkeymap_prompt (keymap
);
789 if (NILP (title
) && !NILP (prompt
))
793 /* Extract the detailed info to make one pane. */
794 keymap_panes (maps
, nmaps
, NILP (position
));
796 /* Make the title be the pane title of the first pane. */
797 if (!NILP (title
) && menu_items_n_panes
>= 0)
798 ASET (menu_items
, MENU_ITEMS_PANE_NAME
, title
);
804 /* We were given an old-fashioned menu. */
806 CHECK_STRING (title
);
808 list_of_panes (Fcdr (menu
));
815 discard_menu_items ();
821 /* If resources from a previous popup menu exist yet, does nothing
822 until the `menu_free_timer' has freed them (see w32fns.c).
824 if (current_popup_menu
)
826 discard_menu_items ();
831 /* Display them in a menu. */
834 selection
= w32_menu_show (f
, xpos
, ypos
, for_click
,
835 keymaps
, title
, &error_name
);
838 discard_menu_items ();
839 #endif /* HAVE_MENUS */
843 if (error_name
) error (error_name
);
849 DEFUN ("x-popup-dialog", Fx_popup_dialog
, Sx_popup_dialog
, 2, 3, 0,
850 doc
: /* Pop up a dialog box and return user's selection.
851 POSITION specifies which frame to use.
852 This is normally a mouse button event or a window or frame.
853 If POSITION is t, it means to use the frame the mouse is on.
854 The dialog box appears in the middle of the specified frame.
856 CONTENTS specifies the alternatives to display in the dialog box.
857 It is a list of the form (TITLE ITEM1 ITEM2...).
858 Each ITEM is a cons cell (STRING . VALUE).
859 The return value is VALUE from the chosen item.
861 An ITEM may also be just a string--that makes a nonselectable item.
862 An ITEM may also be nil--that means to put all preceding items
863 on the left of the dialog box and all following items on the right.
864 \(By default, approximately half appear on each side.)
866 If HEADER is non-nil, the frame title for the box is "Information",
867 otherwise it is "Question". */)
868 (position
, contents
, header
)
869 Lisp_Object position
, contents
, header
;
876 /* Decode the first argument: find the window or frame to use. */
877 if (EQ (position
, Qt
)
878 || (CONSP (position
) && (EQ (XCAR (position
), Qmenu_bar
)
879 || EQ (XCAR (position
), Qtool_bar
))))
881 #if 0 /* Using the frame the mouse is on may not be right. */
882 /* Use the mouse's current position. */
883 FRAME_PTR new_f
= SELECTED_FRAME ();
884 Lisp_Object bar_window
;
885 enum scroll_bar_part part
;
889 (*mouse_position_hook
) (&new_f
, 1, &bar_window
, &part
, &x
, &y
, &time
);
892 XSETFRAME (window
, new_f
);
894 window
= selected_window
;
896 window
= selected_window
;
898 else if (CONSP (position
))
901 tem
= Fcar (position
);
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
))
915 /* Decode where to put the menu. */
919 else if (WINDOWP (window
))
921 CHECK_LIVE_WINDOW (window
);
922 f
= XFRAME (WINDOW_FRAME (XWINDOW (window
)));
925 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
926 but I don't want to make one now. */
927 CHECK_WINDOW (window
);
930 /* Display a menu with these alternatives
931 in the middle of frame F. */
933 Lisp_Object x
, y
, frame
, newpos
;
934 XSETFRAME (frame
, f
);
935 XSETINT (x
, x_pixel_width (f
) / 2);
936 XSETINT (y
, x_pixel_height (f
) / 2);
937 newpos
= Fcons (Fcons (x
, Fcons (y
, Qnil
)), Fcons (frame
, Qnil
));
939 return Fx_popup_menu (newpos
,
940 Fcons (Fcar (contents
), Fcons (contents
, Qnil
)));
942 #else /* HAVE_DIALOGS */
946 Lisp_Object selection
;
948 /* Decode the dialog items from what was specified. */
949 title
= Fcar (contents
);
950 CHECK_STRING (title
);
952 list_of_panes (Fcons (contents
, Qnil
));
954 /* Display them in a dialog box. */
956 selection
= w32_dialog_show (f
, 0, title
, header
, &error_name
);
959 discard_menu_items ();
961 if (error_name
) error (error_name
);
964 #endif /* HAVE_DIALOGS */
967 /* Activate the menu bar of frame F.
968 This is called from keyboard.c when it gets the
969 MENU_BAR_ACTIVATE_EVENT out of the Emacs event queue.
971 To activate the menu bar, we signal to the input thread that it can
972 return from the WM_INITMENU message, allowing the normal Windows
973 processing of the menus.
975 But first we recompute the menu bar contents (the whole tree).
977 This way we can safely execute Lisp code. */
980 x_activate_menubar (f
)
983 set_frame_menubar (f
, 0, 1);
985 /* Lock out further menubar changes while active. */
986 f
->output_data
.w32
->menubar_active
= 1;
988 /* Signal input thread to return from WM_INITMENU. */
989 complete_deferred_msg (FRAME_W32_WINDOW (f
), WM_INITMENU
, 0);
992 /* This callback is called from the menu bar pulldown menu
993 when the user makes a selection.
994 Figure out what the user chose
995 and put the appropriate events into the keyboard buffer. */
998 menubar_selection_callback (FRAME_PTR f
, void * client_data
)
1000 Lisp_Object prefix
, entry
;
1002 Lisp_Object
*subprefix_stack
;
1003 int submenu_depth
= 0;
1009 subprefix_stack
= (Lisp_Object
*) alloca (f
->menu_bar_items_used
* sizeof (Lisp_Object
));
1010 vector
= f
->menu_bar_vector
;
1013 while (i
< f
->menu_bar_items_used
)
1015 if (EQ (AREF (vector
, i
), Qnil
))
1017 subprefix_stack
[submenu_depth
++] = prefix
;
1021 else if (EQ (AREF (vector
, i
), Qlambda
))
1023 prefix
= subprefix_stack
[--submenu_depth
];
1026 else if (EQ (AREF (vector
, i
), Qt
))
1028 prefix
= AREF (vector
, i
+ MENU_ITEMS_PANE_PREFIX
);
1029 i
+= MENU_ITEMS_PANE_LENGTH
;
1033 entry
= AREF (vector
, i
+ MENU_ITEMS_ITEM_VALUE
);
1034 /* The EMACS_INT cast avoids a warning. There's no problem
1035 as long as pointers have enough bits to hold small integers. */
1036 if ((int) (EMACS_INT
) client_data
== i
)
1039 struct input_event buf
;
1043 XSETFRAME (frame
, f
);
1044 buf
.kind
= MENU_BAR_EVENT
;
1045 buf
.frame_or_window
= frame
;
1047 kbd_buffer_store_event (&buf
);
1049 for (j
= 0; j
< submenu_depth
; j
++)
1050 if (!NILP (subprefix_stack
[j
]))
1052 buf
.kind
= MENU_BAR_EVENT
;
1053 buf
.frame_or_window
= frame
;
1054 buf
.arg
= subprefix_stack
[j
];
1055 kbd_buffer_store_event (&buf
);
1060 buf
.kind
= MENU_BAR_EVENT
;
1061 buf
.frame_or_window
= frame
;
1063 kbd_buffer_store_event (&buf
);
1066 buf
.kind
= MENU_BAR_EVENT
;
1067 buf
.frame_or_window
= frame
;
1069 kbd_buffer_store_event (&buf
);
1071 /* Free memory used by owner-drawn and help-echo strings. */
1072 w32_free_menu_strings (FRAME_W32_WINDOW (f
));
1073 f
->output_data
.w32
->menu_command_in_progress
= 0;
1074 f
->output_data
.w32
->menubar_active
= 0;
1077 i
+= MENU_ITEMS_ITEM_LENGTH
;
1080 /* Free memory used by owner-drawn and help-echo strings. */
1081 w32_free_menu_strings (FRAME_W32_WINDOW (f
));
1082 f
->output_data
.w32
->menu_command_in_progress
= 0;
1083 f
->output_data
.w32
->menubar_active
= 0;
1086 /* Allocate a widget_value, blocking input. */
1089 xmalloc_widget_value ()
1091 widget_value
*value
;
1094 value
= malloc_widget_value ();
1100 /* This recursively calls free_widget_value on the tree of widgets.
1101 It must free all data that was malloc'ed for these widget_values.
1102 In Emacs, many slots are pointers into the data of Lisp_Strings, and
1103 must be left alone. */
1106 free_menubar_widget_value_tree (wv
)
1111 wv
->name
= wv
->value
= wv
->key
= (char *) 0xDEADBEEF;
1113 if (wv
->contents
&& (wv
->contents
!= (widget_value
*)1))
1115 free_menubar_widget_value_tree (wv
->contents
);
1116 wv
->contents
= (widget_value
*) 0xDEADBEEF;
1120 free_menubar_widget_value_tree (wv
->next
);
1121 wv
->next
= (widget_value
*) 0xDEADBEEF;
1124 free_widget_value (wv
);
1128 /* Set up data i menu_items for a menu bar item
1129 whose event type is ITEM_KEY (with string ITEM_NAME)
1130 and whose contents come from the list of keymaps MAPS. */
1133 parse_single_submenu (item_key
, item_name
, maps
)
1134 Lisp_Object item_key
, item_name
, maps
;
1138 Lisp_Object
*mapvec
;
1140 int top_level_items
= 0;
1142 length
= Flength (maps
);
1143 len
= XINT (length
);
1145 /* Convert the list MAPS into a vector MAPVEC. */
1146 mapvec
= (Lisp_Object
*) alloca (len
* sizeof (Lisp_Object
));
1147 for (i
= 0; i
< len
; i
++)
1149 mapvec
[i
] = Fcar (maps
);
1153 /* Loop over the given keymaps, making a pane for each map.
1154 But don't make a pane that is empty--ignore that map instead. */
1155 for (i
= 0; i
< len
; i
++)
1157 if (SYMBOLP (mapvec
[i
])
1158 || (CONSP (mapvec
[i
]) && !KEYMAPP (mapvec
[i
])))
1160 /* Here we have a command at top level in the menu bar
1161 as opposed to a submenu. */
1162 top_level_items
= 1;
1163 push_menu_pane (Qnil
, Qnil
);
1164 push_menu_item (item_name
, Qt
, item_key
, mapvec
[i
],
1165 Qnil
, Qnil
, Qnil
, Qnil
);
1170 prompt
= Fkeymap_prompt (mapvec
[i
]);
1171 single_keymap_panes (mapvec
[i
],
1172 !NILP (prompt
) ? prompt
: item_name
,
1177 return top_level_items
;
1181 /* Create a tree of widget_value objects
1182 representing the panes and items
1183 in menu_items starting at index START, up to index END. */
1185 static widget_value
*
1186 digest_single_submenu (start
, end
, top_level_items
)
1187 int start
, end
, top_level_items
;
1189 widget_value
*wv
, *prev_wv
, *save_wv
, *first_wv
;
1191 int submenu_depth
= 0;
1192 widget_value
**submenu_stack
;
1195 = (widget_value
**) alloca (menu_items_used
* sizeof (widget_value
*));
1196 wv
= xmalloc_widget_value ();
1200 wv
->button_type
= BUTTON_TYPE_NONE
;
1206 /* Loop over all panes and items made by the preceding call
1207 to parse_single_submenu and construct a tree of widget_value objects.
1208 Ignore the panes and items used by previous calls to
1209 digest_single_submenu, even though those are also in menu_items. */
1213 if (EQ (AREF (menu_items
, i
), Qnil
))
1215 submenu_stack
[submenu_depth
++] = save_wv
;
1220 else if (EQ (AREF (menu_items
, i
), Qlambda
))
1223 save_wv
= submenu_stack
[--submenu_depth
];
1226 else if (EQ (AREF (menu_items
, i
), Qt
)
1227 && submenu_depth
!= 0)
1228 i
+= MENU_ITEMS_PANE_LENGTH
;
1229 /* Ignore a nil in the item list.
1230 It's meaningful only for dialog boxes. */
1231 else if (EQ (AREF (menu_items
, i
), Qquote
))
1233 else if (EQ (AREF (menu_items
, i
), Qt
))
1235 /* Create a new pane. */
1236 Lisp_Object pane_name
, prefix
;
1239 pane_name
= AREF (menu_items
, i
+ MENU_ITEMS_PANE_NAME
);
1240 prefix
= AREF (menu_items
, i
+ MENU_ITEMS_PANE_PREFIX
);
1242 if (STRINGP (pane_name
))
1244 if (unicode_append_menu
)
1245 /* Encode as UTF-8 for now. */
1246 pane_name
= ENCODE_UTF_8 (pane_name
);
1247 else if (STRING_MULTIBYTE (pane_name
))
1248 pane_name
= ENCODE_SYSTEM (pane_name
);
1250 ASET (menu_items
, i
+ MENU_ITEMS_PANE_NAME
, pane_name
);
1253 pane_string
= (NILP (pane_name
)
1254 ? "" : (char *) SDATA (pane_name
));
1255 /* If there is just one top-level pane, put all its items directly
1256 under the top-level menu. */
1257 if (menu_items_n_panes
== 1)
1260 /* If the pane has a meaningful name,
1261 make the pane a top-level menu item
1262 with its items as a submenu beneath it. */
1263 if (strcmp (pane_string
, ""))
1265 wv
= xmalloc_widget_value ();
1269 first_wv
->contents
= wv
;
1270 wv
->lname
= pane_name
;
1271 /* Set value to 1 so update_submenu_strings can handle '@' */
1272 wv
->value
= (char *) 1;
1274 wv
->button_type
= BUTTON_TYPE_NONE
;
1279 i
+= MENU_ITEMS_PANE_LENGTH
;
1283 /* Create a new item within current pane. */
1284 Lisp_Object item_name
, enable
, descrip
, def
, type
, selected
;
1287 item_name
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
);
1288 enable
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_ENABLE
);
1289 descrip
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
);
1290 def
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_DEFINITION
);
1291 type
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_TYPE
);
1292 selected
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_SELECTED
);
1293 help
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_HELP
);
1295 if (STRINGP (item_name
))
1297 if (unicode_append_menu
)
1298 item_name
= ENCODE_UTF_8 (item_name
);
1299 else if (STRING_MULTIBYTE (item_name
))
1300 item_name
= ENCODE_SYSTEM (item_name
);
1302 ASET (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
, item_name
);
1305 if (STRINGP (descrip
) && STRING_MULTIBYTE (descrip
))
1307 descrip
= ENCODE_SYSTEM (descrip
);
1308 ASET (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
, descrip
);
1311 wv
= xmalloc_widget_value ();
1315 save_wv
->contents
= wv
;
1317 wv
->lname
= item_name
;
1318 if (!NILP (descrip
))
1321 /* The EMACS_INT cast avoids a warning. There's no problem
1322 as long as pointers have enough bits to hold small integers. */
1323 wv
->call_data
= (!NILP (def
) ? (void *) (EMACS_INT
) i
: 0);
1324 wv
->enabled
= !NILP (enable
);
1327 wv
->button_type
= BUTTON_TYPE_NONE
;
1328 else if (EQ (type
, QCradio
))
1329 wv
->button_type
= BUTTON_TYPE_RADIO
;
1330 else if (EQ (type
, QCtoggle
))
1331 wv
->button_type
= BUTTON_TYPE_TOGGLE
;
1335 wv
->selected
= !NILP (selected
);
1336 if (!STRINGP (help
))
1343 i
+= MENU_ITEMS_ITEM_LENGTH
;
1347 /* If we have just one "menu item"
1348 that was originally a button, return it by itself. */
1349 if (top_level_items
&& first_wv
->contents
&& first_wv
->contents
->next
== 0)
1351 wv
= first_wv
->contents
;
1352 free_widget_value (first_wv
);
1360 /* Walk through the widget_value tree starting at FIRST_WV and update
1361 the char * pointers from the corresponding lisp values.
1362 We do this after building the whole tree, since GC may happen while the
1363 tree is constructed, and small strings are relocated. So we must wait
1364 until no GC can happen before storing pointers into lisp values. */
1366 update_submenu_strings (first_wv
)
1367 widget_value
*first_wv
;
1371 for (wv
= first_wv
; wv
; wv
= wv
->next
)
1373 if (wv
->lname
&& ! NILP (wv
->lname
))
1375 wv
->name
= SDATA (wv
->lname
);
1377 /* Ignore the @ that means "separate pane".
1378 This is a kludge, but this isn't worth more time. */
1379 if (wv
->value
== (char *)1)
1381 if (wv
->name
[0] == '@')
1387 if (wv
->lkey
&& ! NILP (wv
->lkey
))
1388 wv
->key
= SDATA (wv
->lkey
);
1391 update_submenu_strings (wv
->contents
);
1396 /* Set the contents of the menubar widgets of frame F.
1397 The argument FIRST_TIME is currently ignored;
1398 it is set the first time this is called, from initialize_frame_menubar. */
1401 set_frame_menubar (f
, first_time
, deep_p
)
1406 HMENU menubar_widget
= f
->output_data
.w32
->menubar_widget
;
1408 widget_value
*wv
, *first_wv
, *prev_wv
= 0;
1410 int *submenu_start
, *submenu_end
;
1411 int *submenu_top_level_items
, *submenu_n_panes
;
1413 /* We must not change the menubar when actually in use. */
1414 if (f
->output_data
.w32
->menubar_active
)
1417 XSETFRAME (Vmenu_updating_frame
, f
);
1419 if (! menubar_widget
)
1421 else if (pending_menu_activation
&& !deep_p
)
1426 /* Make a widget-value tree representing the entire menu trees. */
1428 struct buffer
*prev
= current_buffer
;
1430 int specpdl_count
= SPECPDL_INDEX ();
1431 int previous_menu_items_used
= f
->menu_bar_items_used
;
1432 Lisp_Object
*previous_items
1433 = (Lisp_Object
*) alloca (previous_menu_items_used
1434 * sizeof (Lisp_Object
));
1436 /* If we are making a new widget, its contents are empty,
1437 do always reinitialize them. */
1438 if (! menubar_widget
)
1439 previous_menu_items_used
= 0;
1441 buffer
= XWINDOW (FRAME_SELECTED_WINDOW (f
))->buffer
;
1442 specbind (Qinhibit_quit
, Qt
);
1443 /* Don't let the debugger step into this code
1444 because it is not reentrant. */
1445 specbind (Qdebug_on_next_call
, Qnil
);
1447 record_unwind_save_match_data ();
1449 if (NILP (Voverriding_local_map_menu_flag
))
1451 specbind (Qoverriding_terminal_local_map
, Qnil
);
1452 specbind (Qoverriding_local_map
, Qnil
);
1455 set_buffer_internal_1 (XBUFFER (buffer
));
1457 /* Run the Lucid hook. */
1458 safe_run_hooks (Qactivate_menubar_hook
);
1459 /* If it has changed current-menubar from previous value,
1460 really recompute the menubar from the value. */
1461 if (! NILP (Vlucid_menu_bar_dirty_flag
))
1462 call0 (Qrecompute_lucid_menubar
);
1463 safe_run_hooks (Qmenu_bar_update_hook
);
1464 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
1466 items
= FRAME_MENU_BAR_ITEMS (f
);
1468 /* Save the frame's previous menu bar contents data. */
1469 if (previous_menu_items_used
)
1470 bcopy (XVECTOR (f
->menu_bar_vector
)->contents
, previous_items
,
1471 previous_menu_items_used
* sizeof (Lisp_Object
));
1473 /* Fill in menu_items with the current menu bar contents.
1474 This can evaluate Lisp code. */
1475 menu_items
= f
->menu_bar_vector
;
1476 menu_items_allocated
= VECTORP (menu_items
) ? ASIZE (menu_items
) : 0;
1477 submenu_start
= (int *) alloca (XVECTOR (items
)->size
* sizeof (int *));
1478 submenu_end
= (int *) alloca (XVECTOR (items
)->size
* sizeof (int *));
1479 submenu_n_panes
= (int *) alloca (XVECTOR (items
)->size
* sizeof (int));
1480 submenu_top_level_items
1481 = (int *) alloca (XVECTOR (items
)->size
* sizeof (int *));
1483 for (i
= 0; i
< ASIZE (items
); i
+= 4)
1485 Lisp_Object key
, string
, maps
;
1489 key
= AREF (items
, i
);
1490 string
= AREF (items
, i
+ 1);
1491 maps
= AREF (items
, i
+ 2);
1495 submenu_start
[i
] = menu_items_used
;
1497 menu_items_n_panes
= 0;
1498 submenu_top_level_items
[i
]
1499 = parse_single_submenu (key
, string
, maps
);
1500 submenu_n_panes
[i
] = menu_items_n_panes
;
1502 submenu_end
[i
] = menu_items_used
;
1505 finish_menu_items ();
1507 /* Convert menu_items into widget_value trees
1508 to display the menu. This cannot evaluate Lisp code. */
1510 wv
= xmalloc_widget_value ();
1511 wv
->name
= "menubar";
1514 wv
->button_type
= BUTTON_TYPE_NONE
;
1518 for (i
= 0; i
< last_i
; i
+= 4)
1520 menu_items_n_panes
= submenu_n_panes
[i
];
1521 wv
= digest_single_submenu (submenu_start
[i
], submenu_end
[i
],
1522 submenu_top_level_items
[i
]);
1526 first_wv
->contents
= wv
;
1527 /* Don't set wv->name here; GC during the loop might relocate it. */
1529 wv
->button_type
= BUTTON_TYPE_NONE
;
1533 set_buffer_internal_1 (prev
);
1534 unbind_to (specpdl_count
, Qnil
);
1536 /* If there has been no change in the Lisp-level contents
1537 of the menu bar, skip redisplaying it. Just exit. */
1539 for (i
= 0; i
< previous_menu_items_used
; i
++)
1540 if (menu_items_used
== i
1541 || (!EQ (previous_items
[i
], AREF (menu_items
, i
))))
1543 if (i
== menu_items_used
&& i
== previous_menu_items_used
&& i
!= 0)
1545 free_menubar_widget_value_tree (first_wv
);
1551 /* Now GC cannot happen during the lifetime of the widget_value,
1552 so it's safe to store data from a Lisp_String, as long as
1553 local copies are made when the actual menu is created.
1554 Windows takes care of this for normal string items, but
1555 not for owner-drawn items or additional item-info. */
1556 wv
= first_wv
->contents
;
1557 for (i
= 0; i
< ASIZE (items
); i
+= 4)
1560 string
= AREF (items
, i
+ 1);
1563 wv
->name
= (char *) SDATA (string
);
1564 update_submenu_strings (wv
->contents
);
1568 f
->menu_bar_vector
= menu_items
;
1569 f
->menu_bar_items_used
= menu_items_used
;
1574 /* Make a widget-value tree containing
1575 just the top level menu bar strings. */
1577 wv
= xmalloc_widget_value ();
1578 wv
->name
= "menubar";
1581 wv
->button_type
= BUTTON_TYPE_NONE
;
1585 items
= FRAME_MENU_BAR_ITEMS (f
);
1586 for (i
= 0; i
< ASIZE (items
); i
+= 4)
1590 string
= AREF (items
, i
+ 1);
1594 wv
= xmalloc_widget_value ();
1595 wv
->name
= (char *) SDATA (string
);
1598 wv
->button_type
= BUTTON_TYPE_NONE
;
1600 /* This prevents lwlib from assuming this
1601 menu item is really supposed to be empty. */
1602 /* The EMACS_INT cast avoids a warning.
1603 This value just has to be different from small integers. */
1604 wv
->call_data
= (void *) (EMACS_INT
) (-1);
1609 first_wv
->contents
= wv
;
1613 /* Forget what we thought we knew about what is in the
1614 detailed contents of the menu bar menus.
1615 Changing the top level always destroys the contents. */
1616 f
->menu_bar_items_used
= 0;
1619 /* Create or update the menu bar widget. */
1625 /* Empty current menubar, rather than creating a fresh one. */
1626 while (DeleteMenu (menubar_widget
, 0, MF_BYPOSITION
))
1631 menubar_widget
= CreateMenu ();
1633 fill_in_menu (menubar_widget
, first_wv
->contents
);
1635 free_menubar_widget_value_tree (first_wv
);
1638 HMENU old_widget
= f
->output_data
.w32
->menubar_widget
;
1640 f
->output_data
.w32
->menubar_widget
= menubar_widget
;
1641 SetMenu (FRAME_W32_WINDOW (f
), f
->output_data
.w32
->menubar_widget
);
1642 /* Causes flicker when menu bar is updated
1643 DrawMenuBar (FRAME_W32_WINDOW (f)); */
1645 /* Force the window size to be recomputed so that the frame's text
1646 area remains the same, if menubar has just been created. */
1647 if (old_widget
== NULL
)
1648 x_set_window_size (f
, 0, FRAME_COLS (f
), FRAME_LINES (f
));
1654 /* Called from Fx_create_frame to create the initial menubar of a frame
1655 before it is mapped, so that the window is mapped with the menubar already
1656 there instead of us tacking it on later and thrashing the window after it
1660 initialize_frame_menubar (f
)
1663 /* This function is called before the first chance to redisplay
1664 the frame. It has to be, so the frame will have the right size. */
1665 FRAME_MENU_BAR_ITEMS (f
) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f
));
1666 set_frame_menubar (f
, 1, 1);
1669 /* Get rid of the menu bar of frame F, and free its storage.
1670 This is used when deleting a frame, and when turning off the menu bar. */
1673 free_frame_menubar (f
)
1679 HMENU old
= GetMenu (FRAME_W32_WINDOW (f
));
1680 SetMenu (FRAME_W32_WINDOW (f
), NULL
);
1681 f
->output_data
.w32
->menubar_widget
= NULL
;
1689 /* w32_menu_show actually displays a menu using the panes and items in
1690 menu_items and returns the value selected from it; we assume input
1691 is blocked by the caller. */
1693 /* F is the frame the menu is for.
1694 X and Y are the frame-relative specified position,
1695 relative to the inside upper left corner of the frame F.
1696 FOR_CLICK is nonzero if this menu was invoked for a mouse click.
1697 KEYMAPS is 1 if this menu was specified with keymaps;
1698 in that case, we return a list containing the chosen item's value
1699 and perhaps also the pane's prefix.
1700 TITLE is the specified menu title.
1701 ERROR is a place to store an error message string in case of failure.
1702 (We return nil on failure, but the value doesn't actually matter.) */
1705 w32_menu_show (f
, x
, y
, for_click
, keymaps
, title
, error
)
1715 int menu_item_selection
;
1718 widget_value
*wv
, *save_wv
= 0, *first_wv
= 0, *prev_wv
= 0;
1719 widget_value
**submenu_stack
1720 = (widget_value
**) alloca (menu_items_used
* sizeof (widget_value
*));
1721 Lisp_Object
*subprefix_stack
1722 = (Lisp_Object
*) alloca (menu_items_used
* sizeof (Lisp_Object
));
1723 int submenu_depth
= 0;
1728 if (menu_items_used
<= MENU_ITEMS_PANE_LENGTH
)
1730 *error
= "Empty menu";
1734 /* Create a tree of widget_value objects
1735 representing the panes and their items. */
1736 wv
= xmalloc_widget_value ();
1740 wv
->button_type
= BUTTON_TYPE_NONE
;
1745 /* Loop over all panes and items, filling in the tree. */
1747 while (i
< menu_items_used
)
1749 if (EQ (AREF (menu_items
, i
), Qnil
))
1751 submenu_stack
[submenu_depth
++] = save_wv
;
1757 else if (EQ (AREF (menu_items
, i
), Qlambda
))
1760 save_wv
= submenu_stack
[--submenu_depth
];
1764 else if (EQ (AREF (menu_items
, i
), Qt
)
1765 && submenu_depth
!= 0)
1766 i
+= MENU_ITEMS_PANE_LENGTH
;
1767 /* Ignore a nil in the item list.
1768 It's meaningful only for dialog boxes. */
1769 else if (EQ (AREF (menu_items
, i
), Qquote
))
1771 else if (EQ (AREF (menu_items
, i
), Qt
))
1773 /* Create a new pane. */
1774 Lisp_Object pane_name
, prefix
;
1776 pane_name
= AREF (menu_items
, i
+ MENU_ITEMS_PANE_NAME
);
1777 prefix
= AREF (menu_items
, i
+ MENU_ITEMS_PANE_PREFIX
);
1779 if (STRINGP (pane_name
))
1781 if (unicode_append_menu
)
1782 pane_name
= ENCODE_UTF_8 (pane_name
);
1783 else if (STRING_MULTIBYTE (pane_name
))
1784 pane_name
= ENCODE_SYSTEM (pane_name
);
1786 ASET (menu_items
, i
+ MENU_ITEMS_PANE_NAME
, pane_name
);
1789 pane_string
= (NILP (pane_name
)
1790 ? "" : (char *) SDATA (pane_name
));
1791 /* If there is just one top-level pane, put all its items directly
1792 under the top-level menu. */
1793 if (menu_items_n_panes
== 1)
1796 /* If the pane has a meaningful name,
1797 make the pane a top-level menu item
1798 with its items as a submenu beneath it. */
1799 if (!keymaps
&& strcmp (pane_string
, ""))
1801 wv
= xmalloc_widget_value ();
1805 first_wv
->contents
= wv
;
1806 wv
->name
= pane_string
;
1807 if (keymaps
&& !NILP (prefix
))
1811 wv
->button_type
= BUTTON_TYPE_NONE
;
1816 else if (first_pane
)
1822 i
+= MENU_ITEMS_PANE_LENGTH
;
1826 /* Create a new item within current pane. */
1827 Lisp_Object item_name
, enable
, descrip
, def
, type
, selected
, help
;
1829 item_name
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
);
1830 enable
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_ENABLE
);
1831 descrip
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
);
1832 def
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_DEFINITION
);
1833 type
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_TYPE
);
1834 selected
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_SELECTED
);
1835 help
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_HELP
);
1837 if (STRINGP (item_name
))
1839 if (unicode_append_menu
)
1840 item_name
= ENCODE_UTF_8 (item_name
);
1841 else if (STRING_MULTIBYTE (item_name
))
1842 item_name
= ENCODE_SYSTEM (item_name
);
1844 ASET (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
, item_name
);
1847 if (STRINGP (descrip
) && STRING_MULTIBYTE (descrip
))
1849 descrip
= ENCODE_SYSTEM (descrip
);
1850 ASET (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
, descrip
);
1853 wv
= xmalloc_widget_value ();
1857 save_wv
->contents
= wv
;
1858 wv
->name
= (char *) SDATA (item_name
);
1859 if (!NILP (descrip
))
1860 wv
->key
= (char *) SDATA (descrip
);
1862 /* Use the contents index as call_data, since we are
1863 restricted to 16-bits. */
1864 wv
->call_data
= !NILP (def
) ? (void *) (EMACS_INT
) i
: 0;
1865 wv
->enabled
= !NILP (enable
);
1868 wv
->button_type
= BUTTON_TYPE_NONE
;
1869 else if (EQ (type
, QCtoggle
))
1870 wv
->button_type
= BUTTON_TYPE_TOGGLE
;
1871 else if (EQ (type
, QCradio
))
1872 wv
->button_type
= BUTTON_TYPE_RADIO
;
1876 wv
->selected
= !NILP (selected
);
1877 if (!STRINGP (help
))
1884 i
+= MENU_ITEMS_ITEM_LENGTH
;
1888 /* Deal with the title, if it is non-nil. */
1891 widget_value
*wv_title
= xmalloc_widget_value ();
1892 widget_value
*wv_sep
= xmalloc_widget_value ();
1894 /* Maybe replace this separator with a bitmap or owner-draw item
1895 so that it looks better. Having two separators looks odd. */
1896 wv_sep
->name
= "--";
1897 wv_sep
->next
= first_wv
->contents
;
1898 wv_sep
->help
= Qnil
;
1900 if (unicode_append_menu
)
1901 title
= ENCODE_UTF_8 (title
);
1902 else if (STRING_MULTIBYTE (title
))
1903 title
= ENCODE_SYSTEM (title
);
1905 wv_title
->name
= (char *) SDATA (title
);
1906 wv_title
->enabled
= TRUE
;
1907 wv_title
->title
= TRUE
;
1908 wv_title
->button_type
= BUTTON_TYPE_NONE
;
1909 wv_title
->help
= Qnil
;
1910 wv_title
->next
= wv_sep
;
1911 first_wv
->contents
= wv_title
;
1914 /* Actually create the menu. */
1915 current_popup_menu
= menu
= CreatePopupMenu ();
1916 fill_in_menu (menu
, first_wv
->contents
);
1918 /* Adjust coordinates to be root-window-relative. */
1921 ClientToScreen (FRAME_W32_WINDOW (f
), &pos
);
1923 /* No selection has been chosen yet. */
1924 menu_item_selection
= 0;
1926 /* Display the menu. */
1927 menu_item_selection
= SendMessage (FRAME_W32_WINDOW (f
),
1928 WM_EMACS_TRACKPOPUPMENU
,
1929 (WPARAM
)menu
, (LPARAM
)&pos
);
1931 /* Clean up extraneous mouse events which might have been generated
1933 discard_mouse_events ();
1935 /* Free the widget_value objects we used to specify the contents. */
1936 free_menubar_widget_value_tree (first_wv
);
1940 /* Find the selected item, and its pane, to return
1941 the proper value. */
1942 if (menu_item_selection
!= 0)
1944 Lisp_Object prefix
, entry
;
1946 prefix
= entry
= Qnil
;
1948 while (i
< menu_items_used
)
1950 if (EQ (AREF (menu_items
, i
), Qnil
))
1952 subprefix_stack
[submenu_depth
++] = prefix
;
1956 else if (EQ (AREF (menu_items
, i
), Qlambda
))
1958 prefix
= subprefix_stack
[--submenu_depth
];
1961 else if (EQ (AREF (menu_items
, i
), Qt
))
1963 prefix
= AREF (menu_items
, i
+ MENU_ITEMS_PANE_PREFIX
);
1964 i
+= MENU_ITEMS_PANE_LENGTH
;
1966 /* Ignore a nil in the item list.
1967 It's meaningful only for dialog boxes. */
1968 else if (EQ (AREF (menu_items
, i
), Qquote
))
1972 entry
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_VALUE
);
1973 if (menu_item_selection
== i
)
1979 entry
= Fcons (entry
, Qnil
);
1981 entry
= Fcons (prefix
, entry
);
1982 for (j
= submenu_depth
- 1; j
>= 0; j
--)
1983 if (!NILP (subprefix_stack
[j
]))
1984 entry
= Fcons (subprefix_stack
[j
], entry
);
1988 i
+= MENU_ITEMS_ITEM_LENGTH
;
1998 static char * button_names
[] = {
1999 "button1", "button2", "button3", "button4", "button5",
2000 "button6", "button7", "button8", "button9", "button10" };
2003 w32_dialog_show (f
, keymaps
, title
, header
, error
)
2006 Lisp_Object title
, header
;
2009 int i
, nb_buttons
=0;
2010 char dialog_name
[6];
2011 int menu_item_selection
;
2013 widget_value
*wv
, *first_wv
= 0, *prev_wv
= 0;
2015 /* Number of elements seen so far, before boundary. */
2017 /* 1 means we've seen the boundary between left-hand elts and right-hand. */
2018 int boundary_seen
= 0;
2022 if (menu_items_n_panes
> 1)
2024 *error
= "Multiple panes in dialog box";
2028 /* Create a tree of widget_value objects
2029 representing the text label and buttons. */
2031 Lisp_Object pane_name
, prefix
;
2033 pane_name
= AREF (menu_items
, MENU_ITEMS_PANE_NAME
);
2034 prefix
= AREF (menu_items
, MENU_ITEMS_PANE_PREFIX
);
2035 pane_string
= (NILP (pane_name
)
2036 ? "" : (char *) SDATA (pane_name
));
2037 prev_wv
= xmalloc_widget_value ();
2038 prev_wv
->value
= pane_string
;
2039 if (keymaps
&& !NILP (prefix
))
2041 prev_wv
->enabled
= 1;
2042 prev_wv
->name
= "message";
2043 prev_wv
->help
= Qnil
;
2046 /* Loop over all panes and items, filling in the tree. */
2047 i
= MENU_ITEMS_PANE_LENGTH
;
2048 while (i
< menu_items_used
)
2051 /* Create a new item within current pane. */
2052 Lisp_Object item_name
, enable
, descrip
, help
;
2054 item_name
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_NAME
);
2055 enable
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_ENABLE
);
2056 descrip
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_EQUIV_KEY
);
2057 help
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_HELP
);
2059 if (NILP (item_name
))
2061 free_menubar_widget_value_tree (first_wv
);
2062 *error
= "Submenu in dialog items";
2065 if (EQ (item_name
, Qquote
))
2067 /* This is the boundary between left-side elts
2068 and right-side elts. Stop incrementing right_count. */
2073 if (nb_buttons
>= 9)
2075 free_menubar_widget_value_tree (first_wv
);
2076 *error
= "Too many dialog items";
2080 wv
= xmalloc_widget_value ();
2082 wv
->name
= (char *) button_names
[nb_buttons
];
2083 if (!NILP (descrip
))
2084 wv
->key
= (char *) SDATA (descrip
);
2085 wv
->value
= (char *) SDATA (item_name
);
2086 wv
->call_data
= (void *) &AREF (menu_items
, i
);
2087 wv
->enabled
= !NILP (enable
);
2091 if (! boundary_seen
)
2095 i
+= MENU_ITEMS_ITEM_LENGTH
;
2098 /* If the boundary was not specified,
2099 by default put half on the left and half on the right. */
2100 if (! boundary_seen
)
2101 left_count
= nb_buttons
- nb_buttons
/ 2;
2103 wv
= xmalloc_widget_value ();
2104 wv
->name
= dialog_name
;
2107 /* Frame title: 'Q' = Question, 'I' = Information.
2108 Can also have 'E' = Error if, one day, we want
2109 a popup for errors. */
2111 dialog_name
[0] = 'Q';
2113 dialog_name
[0] = 'I';
2115 /* Dialog boxes use a really stupid name encoding
2116 which specifies how many buttons to use
2117 and how many buttons are on the right. */
2118 dialog_name
[1] = '0' + nb_buttons
;
2119 dialog_name
[2] = 'B';
2120 dialog_name
[3] = 'R';
2121 /* Number of buttons to put on the right. */
2122 dialog_name
[4] = '0' + nb_buttons
- left_count
;
2124 wv
->contents
= first_wv
;
2128 /* Actually create the dialog. */
2129 dialog_id
= widget_id_tick
++;
2130 menu
= lw_create_widget (first_wv
->name
, "dialog", dialog_id
, first_wv
,
2131 f
->output_data
.w32
->widget
, 1, 0,
2132 dialog_selection_callback
, 0);
2133 lw_modify_all_widgets (dialog_id
, first_wv
->contents
, TRUE
);
2135 /* Free the widget_value objects we used to specify the contents. */
2136 free_menubar_widget_value_tree (first_wv
);
2138 /* No selection has been chosen yet. */
2139 menu_item_selection
= 0;
2141 /* Display the menu. */
2142 lw_pop_up_all_widgets (dialog_id
);
2143 popup_activated_flag
= 1;
2145 /* Process events that apply to the menu. */
2146 popup_get_selection ((XEvent
*) 0, FRAME_X_DISPLAY_INFO (f
), dialog_id
);
2148 lw_destroy_all_widgets (dialog_id
);
2150 /* Find the selected item, and its pane, to return
2151 the proper value. */
2152 if (menu_item_selection
!= 0)
2158 while (i
< menu_items_used
)
2162 if (EQ (AREF (menu_items
, i
), Qt
))
2164 prefix
= AREF (menu_items
, i
+ MENU_ITEMS_PANE_PREFIX
);
2165 i
+= MENU_ITEMS_PANE_LENGTH
;
2169 entry
= AREF (menu_items
, i
+ MENU_ITEMS_ITEM_VALUE
);
2170 if (menu_item_selection
== i
)
2174 entry
= Fcons (entry
, Qnil
);
2176 entry
= Fcons (prefix
, entry
);
2180 i
+= MENU_ITEMS_ITEM_LENGTH
;
2187 #endif /* HAVE_DIALOGS */
2190 /* Is this item a separator? */
2192 name_is_separator (name
)
2197 /* Check if name string consists of only dashes ('-'). */
2198 while (*name
== '-') name
++;
2199 /* Separators can also be of the form "--:TripleSuperMegaEtched"
2200 or "--deep-shadow". We don't implement them yet, se we just treat
2201 them like normal separators. */
2202 return (*name
== '\0' || start
+ 2 == name
);
2206 /* Indicate boundary between left and right. */
2208 add_left_right_boundary (HMENU menu
)
2210 return AppendMenu (menu
, MF_MENUBARBREAK
, 0, NULL
);
2213 /* UTF8: 0xxxxxxx, 110xxxxx 10xxxxxx, 1110xxxx, 10xxxxxx, 10xxxxxx */
2215 utf8to16 (unsigned char * src
, int len
, WCHAR
* dest
)
2222 *dest
= (WCHAR
) *src
;
2223 dest
++; src
++; len
--;
2225 /* Since we might get >3 byte sequences which we don't handle, ignore the extra parts. */
2226 else if (*src
< 0xC0)
2230 /* 2 char UTF-8 sequence. */
2231 else if (*src
< 0xE0)
2233 *dest
= (WCHAR
) (((*src
& 0x1f) << 6)
2234 | (*(src
+ 1) & 0x3f));
2235 src
+= 2; len
-= 2; dest
++;
2237 else if (*src
< 0xF0)
2239 *dest
= (WCHAR
) (((*src
& 0x0f) << 12)
2240 | ((*(src
+ 1) & 0x3f) << 6)
2241 | (*(src
+ 2) & 0x3f));
2242 src
+= 3; len
-= 3; dest
++;
2244 else /* Not encodable. Insert Unicode Substitution char. */
2246 *dest
= (WCHAR
) 0xfffd;
2247 src
++; len
--; dest
++;
2254 add_menu_item (HMENU menu
, widget_value
*wv
, HMENU item
)
2260 if (name_is_separator (wv
->name
))
2262 fuFlags
= MF_SEPARATOR
;
2268 fuFlags
= MF_STRING
;
2270 fuFlags
= MF_STRING
| MF_GRAYED
;
2272 if (wv
->key
!= NULL
)
2274 out_string
= alloca (strlen (wv
->name
) + strlen (wv
->key
) + 2);
2275 strcpy (out_string
, wv
->name
);
2276 strcat (out_string
, "\t");
2277 strcat (out_string
, wv
->key
);
2280 out_string
= wv
->name
;
2284 else if (wv
->title
|| wv
->call_data
== 0)
2286 /* Only use MF_OWNERDRAW if GetMenuItemInfo is usable, since
2287 we can't deallocate the memory otherwise. */
2288 if (get_menu_item_info
)
2290 out_string
= (char *) local_alloc (strlen (wv
->name
) + 1);
2291 strcpy (out_string
, wv
->name
);
2293 DebPrint ("Menu: allocing %ld for owner-draw", out_string
);
2295 fuFlags
= MF_OWNERDRAW
| MF_DISABLED
;
2298 fuFlags
= MF_DISABLED
;
2301 /* Draw radio buttons and tickboxes. */
2302 else if (wv
->selected
&& (wv
->button_type
== BUTTON_TYPE_TOGGLE
||
2303 wv
->button_type
== BUTTON_TYPE_RADIO
))
2304 fuFlags
|= MF_CHECKED
;
2306 fuFlags
|= MF_UNCHECKED
;
2309 if (unicode_append_menu
&& out_string
)
2311 /* Convert out_string from UTF-8 to UTF-16-LE. */
2312 int utf8_len
= strlen (out_string
);
2313 WCHAR
* utf16_string
;
2314 if (fuFlags
& MF_OWNERDRAW
)
2315 utf16_string
= local_alloc ((utf8_len
+ 1) * sizeof (WCHAR
));
2317 utf16_string
= alloca ((utf8_len
+ 1) * sizeof (WCHAR
));
2319 utf8to16 (out_string
, utf8_len
, utf16_string
);
2320 return_value
= unicode_append_menu (menu
, fuFlags
,
2321 item
!= NULL
? (UINT
) item
2322 : (UINT
) wv
->call_data
,
2326 /* On W9x/ME, unicode menus are not supported, though AppendMenuW
2327 apparently does exist at least in some cases and appears to be
2328 stubbed out to do nothing. out_string is UTF-8, but since
2329 our standard menus are in English and this is only going to
2330 happen the first time a menu is used, the encoding is
2331 of minor importance compared with menus not working at all. */
2333 AppendMenu (menu
, fuFlags
,
2334 item
!= NULL
? (UINT
) item
: (UINT
) wv
->call_data
,
2336 /* Don't use unicode menus in future. */
2337 unicode_append_menu
= NULL
;
2340 if (unicode_append_menu
&& (fuFlags
& MF_OWNERDRAW
))
2341 local_free (out_string
);
2348 item
!= NULL
? (UINT
) item
: (UINT
) wv
->call_data
,
2352 /* This must be done after the menu item is created. */
2353 if (!wv
->title
&& wv
->call_data
!= 0)
2355 if (set_menu_item_info
)
2358 bzero (&info
, sizeof (info
));
2359 info
.cbSize
= sizeof (info
);
2360 info
.fMask
= MIIM_DATA
;
2362 /* Set help string for menu item. Leave it as a Lisp_Object
2363 until it is ready to be displayed, since GC can happen while
2364 menus are active. */
2365 if (!NILP (wv
->help
))
2366 #ifdef USE_LISP_UNION_TYPE
2367 info
.dwItemData
= (DWORD
) (wv
->help
).i
;
2369 info
.dwItemData
= (DWORD
) (wv
->help
);
2371 if (wv
->button_type
== BUTTON_TYPE_RADIO
)
2373 /* CheckMenuRadioItem allows us to differentiate TOGGLE and
2374 RADIO items, but is not available on NT 3.51 and earlier. */
2375 info
.fMask
|= MIIM_TYPE
| MIIM_STATE
;
2376 info
.fType
= MFT_RADIOCHECK
| MFT_STRING
;
2377 info
.dwTypeData
= out_string
;
2378 info
.fState
= wv
->selected
? MFS_CHECKED
: MFS_UNCHECKED
;
2381 set_menu_item_info (menu
,
2382 item
!= NULL
? (UINT
) item
: (UINT
) wv
->call_data
,
2386 return return_value
;
2389 /* Construct native Windows menu(bar) based on widget_value tree. */
2391 fill_in_menu (HMENU menu
, widget_value
*wv
)
2393 int items_added
= 0;
2395 for ( ; wv
!= NULL
; wv
= wv
->next
)
2399 HMENU sub_menu
= CreatePopupMenu ();
2401 if (sub_menu
== NULL
)
2404 if (!fill_in_menu (sub_menu
, wv
->contents
) ||
2405 !add_menu_item (menu
, wv
, sub_menu
))
2407 DestroyMenu (sub_menu
);
2413 if (!add_menu_item (menu
, wv
, NULL
))
2423 /* popup_activated_flag not actually used on W32 */
2427 /* Display help string for currently pointed to menu item. Not
2428 supported on NT 3.51 and earlier, as GetMenuItemInfo is not
2431 w32_menu_display_help (HWND owner
, HMENU menu
, UINT item
, UINT flags
)
2433 if (get_menu_item_info
)
2435 struct frame
*f
= x_window_to_frame (&one_w32_display_info
, owner
);
2436 Lisp_Object frame
, help
;
2438 /* No help echo on owner-draw menu items, or when the keyboard is used
2439 to navigate the menus, since tooltips are distracting if they pop
2441 if (flags
& MF_OWNERDRAW
|| flags
& MF_POPUP
2442 || !(flags
& MF_MOUSESELECT
))
2448 bzero (&info
, sizeof (info
));
2449 info
.cbSize
= sizeof (info
);
2450 info
.fMask
= MIIM_DATA
;
2451 get_menu_item_info (menu
, item
, FALSE
, &info
);
2453 #ifdef USE_LISP_UNION_TYPE
2454 help
= info
.dwItemData
? (Lisp_Object
) ((EMACS_INT
) info
.dwItemData
)
2457 help
= info
.dwItemData
? (Lisp_Object
) info
.dwItemData
: Qnil
;
2461 /* Store the help echo in the keyboard buffer as the X toolkit
2462 version does, rather than directly showing it. This seems to
2463 solve the GC problems that were present when we based the
2464 Windows code on the non-toolkit version. */
2467 XSETFRAME (frame
, f
);
2468 kbd_buffer_store_help_event (frame
, help
);
2471 /* X version has a loop through frames here, which doesn't
2472 appear to do anything, unless it has some side effect. */
2473 show_help_echo (help
, Qnil
, Qnil
, Qnil
, 1);
2477 /* Free memory used by owner-drawn strings. */
2479 w32_free_submenu_strings (menu
)
2482 int i
, num
= GetMenuItemCount (menu
);
2483 for (i
= 0; i
< num
; i
++)
2486 bzero (&info
, sizeof (info
));
2487 info
.cbSize
= sizeof (info
);
2488 info
.fMask
= MIIM_DATA
| MIIM_TYPE
| MIIM_SUBMENU
;
2490 get_menu_item_info (menu
, i
, TRUE
, &info
);
2492 /* Owner-drawn names are held in dwItemData. */
2493 if ((info
.fType
& MF_OWNERDRAW
) && info
.dwItemData
)
2496 DebPrint ("Menu: freeing %ld for owner-draw", info
.dwItemData
);
2498 local_free (info
.dwItemData
);
2501 /* Recurse down submenus. */
2503 w32_free_submenu_strings (info
.hSubMenu
);
2508 w32_free_menu_strings (hwnd
)
2511 HMENU menu
= current_popup_menu
;
2513 if (get_menu_item_info
)
2515 /* If there is no popup menu active, free the strings from the frame's
2518 menu
= GetMenu (hwnd
);
2521 w32_free_submenu_strings (menu
);
2524 current_popup_menu
= NULL
;
2527 #endif /* HAVE_MENUS */
2529 void syms_of_w32menu ()
2531 globals_of_w32menu ();
2532 staticpro (&menu_items
);
2535 current_popup_menu
= NULL
;
2537 Qdebug_on_next_call
= intern ("debug-on-next-call");
2538 staticpro (&Qdebug_on_next_call
);
2540 DEFVAR_LISP ("menu-updating-frame", &Vmenu_updating_frame
,
2541 doc
: /* Frame for which we are updating a menu.
2542 The enable predicate for a menu command should check this variable. */);
2543 Vmenu_updating_frame
= Qnil
;
2545 defsubr (&Sx_popup_menu
);
2547 defsubr (&Sx_popup_dialog
);
2552 globals_of_w32menu is used to initialize those global variables that
2553 must always be initialized on startup even when the global variable
2554 initialized is non zero (see the function main in emacs.c).
2555 globals_of_w32menu is called from syms_of_w32menu when the global
2556 variable initialized is 0 and directly from main when initialized
2559 void globals_of_w32menu ()
2561 /* See if Get/SetMenuItemInfo functions are available. */
2562 HMODULE user32
= GetModuleHandle ("user32.dll");
2563 get_menu_item_info
= (GetMenuItemInfoA_Proc
) GetProcAddress (user32
, "GetMenuItemInfoA");
2564 set_menu_item_info
= (SetMenuItemInfoA_Proc
) GetProcAddress (user32
, "SetMenuItemInfoA");
2565 unicode_append_menu
= (AppendMenuW_Proc
) GetProcAddress (user32
, "AppendMenuW");
2568 /* arch-tag: 0eaed431-bb4e-4aac-a527-95a1b4f1fed0
2569 (do not change this comment) */