XEmacs 21.2.6
[chise/xemacs-chise.git.1] / src / menubar-msw.c
1 /* Implements an elisp-programmable menubar -- Win32
2    Copyright (C) 1993, 1994 Free Software Foundation, Inc.
3    Copyright (C) 1995 Tinker Systems and INS Engineering Corp.
4    Copyright (C) 1997 Kirill M. Katsnelson <kkm@kis.ru>
5
6 This file is part of XEmacs.
7
8 XEmacs is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 2, or (at your option) any
11 later version.
12
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with XEmacs; see the file COPYING.  If not, write to
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  */
22
23 /* Synched up with: Not in FSF. */
24
25 /* Author:
26    Initially written by kkm 12/24/97,
27    peeking into and copying stuff from menubar-x.c
28    */
29
30 /* Algorithm for handling menus is as follows. When window's menubar
31  * is created, current-menubar is not traversed in depth. Rather, only
32  * top level items, both items and pulldowns, are added to the
33  * menubar. Each pulldown is initially empty. When a pulldown is
34  * selected and about to open, corresponding element of
35  * current-menubar is found, and the newly open pulldown is
36  * populated. This is made again in the same non-recursive manner.
37  *
38  * This algorithm uses hash tables to find out element of the menu
39  * descriptor list given menu handle. The key is an opaque ptr data
40  * type, keeping menu handle, and the value is a list of strings
41  * representing the path from the root of the menu to the item
42  * descriptor. Each frame has an associated hash table.
43  *
44  * Leaf items are assigned a unique id based on item's hash. When an
45  * item is selected, Windows sends back the id. Unfortunately, only
46  * low 16 bit of the ID are sent, and there's no way to get the 32-bit
47  * value. Yes, Win32 is just a different set of bugs than X! Aside
48  * from this blame, another hashing mechanism is required to map menu
49  * ids to commands (which are actually Lisp_Object's). This mapping is
50  * performed in the same hash table, as the lifetime of both maps is
51  * exactly the same. This is unambigous, as menu handles are
52  * represented by lisp opaques, while command ids are by lisp
53  * integers. The additional advantage for this is that command forms
54  * are automatically GC-protected, which is important because these
55  * may be transient forms generated by :filter functions.
56  *
57  * The hash table is not allowed to grow too much; it is pruned
58  * whenever this is safe to do. This is done by re-creating the menu
59  * bar, and clearing and refilling the hash table from scratch.
60  *
61  * Popup menus are handled identically to pulldowns. A static hash
62  * table is used for popup menus, and lookup is made not in
63  * current-menubar but in a lisp form supplied to the `popup'
64  * function.
65  *
66  * Another Windows weirdness is that there's no way to tell that a
67  * popup has been dismissed without making selection. We need to know
68  * that to cleanup the popup menu hash table, but this is not honestly
69  * doable using *documented* sequence of messages. Sticking to
70  * particular knowledge is bad because this may break in Windows NT
71  * 5.0, or Windows 98, or other future version. Instead, I allow the
72  * hash tables to hang around, and not clear them, unless WM_COMMAND is
73  * received. This is worthy some memory but more safe. Hacks welcome,
74  * anyways!
75  *
76  */
77
78 #include <config.h>
79 #include "lisp.h"
80 #include <limits.h>
81
82 #include "buffer.h"
83 #include "commands.h"
84 #include "console-msw.h"
85 #include "elhash.h"
86 #include "events.h"
87 #include "frame.h"
88 #include "gui.h"
89 #include "lisp.h"
90 #include "menubar.h"
91 #include "menubar-msw.h"
92 #include "opaque.h"
93 #include "window.h"
94
95 /* #### */
96 #define REPLACE_ME_WITH_GLOBAL_VARIABLE_WHICH_CONTROLS_RIHGT_FLUSH 0
97
98 #define EMPTY_ITEM_ID ((UINT)LISP_TO_VOID (Qunbound))
99 #define EMPTY_ITEM_NAME "(empty)"
100
101 /* Current menu (bar or popup) descriptor. gcpro'ed */
102 static Lisp_Object current_menudesc;
103
104 /* Current menubar or popup hash table. gcpro'ed */
105 static Lisp_Object current_hash_table;
106
107 /* This is used to allocate unique ids to menu items.
108    Items ids are in MENU_ITEM_ID_MIN to MENU_ITEM_ID_MAX.
109    Allocation checks that the item is not already in
110    the TOP_LEVEL_MENU */
111
112 /* #### defines go to gui-msw.h, as the range is shared with toolbars
113    (If only toolbars will be implemented as common controls) */
114 #define MENU_ITEM_ID_MIN 0x8000
115 #define MENU_ITEM_ID_MAX 0xFFFF
116 #define MENU_ITEM_ID_BITS(x) (((x) & 0x7FFF) | 0x8000)
117 static HMENU top_level_menu;
118
119 #define MAX_MENUITEM_LENGTH 128
120
121 /*
122  * This returns Windows-style menu item string:
123  * "Left Flush\tRight Flush"
124  */
125 static char*
126 displayable_menu_item (struct gui_item* pgui_item, int bar_p)
127 {
128   /* We construct the name in a static buffer. That's fine, because
129      menu items longer than 128 chars are probably programming errors,
130      and better be caught than displayed! */
131   
132   static char buf[MAX_MENUITEM_LENGTH+2];
133   unsigned int ll, lr;
134
135   /* Left flush part of the string */
136   ll = gui_item_display_flush_left (pgui_item, buf, MAX_MENUITEM_LENGTH);
137
138   /* Right flush part, unless we're at the top-level where it's not allowed */
139   if (!bar_p)
140     {
141       assert (MAX_MENUITEM_LENGTH > ll + 1);
142       lr = gui_item_display_flush_right (pgui_item, buf + ll + 1,
143                                          MAX_MENUITEM_LENGTH - ll - 1);
144       if (lr)
145         buf [ll] = '\t';
146      }
147
148   return buf;
149 }
150
151 /*
152  * hmenu_to_lisp_object() returns an opaque ptr given menu handle.
153  */
154 static Lisp_Object
155 hmenu_to_lisp_object (HMENU hmenu)
156 {
157   return make_opaque_ptr (hmenu);
158 }
159
160 /*
161  * Allocation tries a hash based on item's path and name first. This
162  * almost guarantees that the same item will override its old value in
163  * the hash table rather than abandon it.
164  */
165 static Lisp_Object
166 allocate_menu_item_id (Lisp_Object path, Lisp_Object name, Lisp_Object suffix)
167 {
168   UINT id = MENU_ITEM_ID_BITS (HASH3 (internal_hash (path, 0),
169                                       internal_hash (name, 0),
170                                       internal_hash (suffix, 0)));
171   do {
172       id = MENU_ITEM_ID_BITS (id + 1);
173   } while (GetMenuState (top_level_menu, id, MF_BYCOMMAND) != 0xFFFFFFFF);
174   return make_int (id);
175 }
176
177 static HMENU
178 create_empty_popup_menu (void)
179 {
180   return CreatePopupMenu ();
181 }
182
183 static void
184 empty_menu (HMENU menu, int add_empty_p)
185 {
186   while (DeleteMenu (menu, 0, MF_BYPOSITION));
187   if (add_empty_p)
188     AppendMenu (menu, MF_STRING | MF_GRAYED, EMPTY_ITEM_ID, EMPTY_ITEM_NAME);
189 }
190
191 /*
192  * The idea of checksumming is that we must hash minimal object
193  * which is necessarily changes when the item changes. For separator
194  * this is a constant, for grey strings and submenus these are hashes
195  * of names, since submenus are unpopulated until opened so always
196  * equal otherwise. For items, this is a full hash value of a callback,
197  * because a callback may me a form which can be changed only somewhere
198  * in depth.
199  */
200 static unsigned long
201 checksum_menu_item (Lisp_Object item)
202 {
203   if (STRINGP (item))
204     {
205       /* Separator or unselectable text - hash as a string + 13 */
206       if (separator_string_p (XSTRING_DATA (item)))
207         return 13;
208       else
209         return internal_hash (item, 0) + 13;
210     }
211   else if (CONSP (item))
212     {
213       /* Submenu - hash by its string name + 0 */
214       return internal_hash (XCAR(item), 0);
215     }
216   else if (VECTORP (item))
217     {
218       /* An ordinary item - hash its name and callback form. */
219       return HASH2 (internal_hash (XVECTOR_DATA(item)[0], 0),
220                     internal_hash (XVECTOR_DATA(item)[1], 0));
221     }
222  
223   /* An error - will be caught later */
224   return 0;
225 }
226
227 static void
228 populate_menu_add_item (HMENU menu, Lisp_Object path,
229                         Lisp_Object hash_tab, Lisp_Object item,
230                         int flush_right, int bar_p)
231 {
232   MENUITEMINFO item_info;
233
234   item_info.cbSize = sizeof (item_info);
235   item_info.fMask = MIIM_TYPE | MIIM_STATE | MIIM_ID;
236   item_info.fState = 0;
237   item_info.wID = 0;
238   item_info.fType = 0;
239
240   if (STRINGP (item))
241     {
242       /* Separator or unselectable text */
243       if (separator_string_p (XSTRING_DATA (item)))
244         item_info.fType = MFT_SEPARATOR;
245       else
246         {
247           item_info.fType = MFT_STRING;
248           item_info.fState = MFS_DISABLED;
249           item_info.dwTypeData = XSTRING_DATA (item);
250         }
251     }
252   else if (CONSP (item))
253     {
254       /* Submenu */
255       HMENU submenu;
256       struct gui_item gui_item;
257       struct gcpro gcpro1;
258
259       gui_item_init (&gui_item);
260       GCPRO_GUI_ITEM (&gui_item);
261
262       menu_parse_submenu_keywords (item, &gui_item);
263
264       if (!STRINGP (gui_item.name))
265         signal_simple_error ("Menu name (first element) must be a string", item);
266
267       if (!gui_item_included_p (&gui_item, Vmenubar_configuration))
268         return;
269
270       if (!gui_item_active_p (&gui_item))
271         item_info.fState = MFS_GRAYED;
272       /* Temptation is to put 'else' right here. Although, the
273          displayed item won't have an arrow indicating that it is a
274          popup.  So we go ahead a little bit more and create a popup */
275       submenu = create_empty_popup_menu();
276
277       item_info.fMask |= MIIM_SUBMENU;
278       item_info.dwTypeData = displayable_menu_item (&gui_item, bar_p);
279       item_info.hSubMenu = submenu;
280
281       if (!(item_info.fState & MFS_GRAYED))
282         {
283           /* Now add the full submenu path as a value to the hash table,
284              keyed by menu handle */
285           if (NILP(path))
286             /* list1 cannot GC */
287             path = list1 (gui_item.name);
288           else
289             {
290               Lisp_Object arg[2];
291               arg[0] = path;
292               arg[1] = list1 (gui_item.name);
293               /* Fappend gcpro'es its arg */
294               path = Fappend (2, arg);
295             }
296
297           /* Fputhash GCPRO'es PATH */
298           Fputhash (hmenu_to_lisp_object (submenu), path, hash_tab);
299         }
300       UNGCPRO; /* gui_item */
301     } 
302   else if (VECTORP (item))
303     {
304       /* An ordinary item */
305       Lisp_Object style, id;
306       struct gui_item gui_item;
307       struct gcpro gcpro1;
308
309       gui_item_init (&gui_item);
310       GCPRO_GUI_ITEM (&gui_item);
311
312       gui_parse_item_keywords (item, &gui_item);
313
314       if (!gui_item_included_p (&gui_item, Vmenubar_configuration))
315         return;
316
317       if (!gui_item_active_p (&gui_item))
318         item_info.fState = MFS_GRAYED;
319
320       style = (NILP (gui_item.selected) || NILP (Feval (gui_item.selected))
321                ? Qnil : gui_item.style);
322
323       if (EQ (style, Qradio))
324         {
325           item_info.fType |= MFT_RADIOCHECK;
326           item_info.fState |= MFS_CHECKED;
327         }
328       else if (EQ (style, Qtoggle))
329         {
330           item_info.fState |= MFS_CHECKED;
331         }
332
333       id = allocate_menu_item_id (path, gui_item.name,
334                                   gui_item.suffix);
335       Fputhash (id, gui_item.callback, hash_tab);
336
337       item_info.wID = (UINT) XINT(id);
338       item_info.fType |= MFT_STRING;
339       item_info.dwTypeData = displayable_menu_item (&gui_item, bar_p);
340
341       UNGCPRO; /* gui_item */
342     }
343   else
344     {
345       signal_simple_error ("Malformed menu item descriptor", item);
346     }
347
348   if (flush_right)
349     item_info.fType |= MFT_RIGHTJUSTIFY;
350
351   InsertMenuItem (menu, UINT_MAX, TRUE, &item_info);
352 }  
353
354 /*
355  * This function is called from populate_menu and checksum_menu.
356  * When called to populate, MENU is a menu handle, PATH is a
357  * list of strings representing menu path from root to this submenu,
358  * DESCRIPTOR is a menu descriptor, HASH_TAB is a hash table associated
359  * with root menu, BAR_P indicates whether this called for a menubar or
360  * a popup, and POPULATE_P is non-zero. Return value must be ignored.
361  * When called to checksum, DESCRIPTOR has the same meaning, POPULATE_P
362  * is zero, PATH must be Qnil, and the rest of parameters is ignored.
363  * Return value is the menu checksum.
364  */
365 static unsigned long
366 populate_or_checksum_helper (HMENU menu, Lisp_Object path, Lisp_Object desc,
367                              Lisp_Object hash_tab, int bar_p, int populate_p)
368 {
369   Lisp_Object item_desc;
370   int deep_p, flush_right;
371   struct gcpro gcpro1;
372   unsigned long checksum;
373   struct gui_item gui_item;
374
375   gui_item_init (&gui_item);
376   GCPRO_GUI_ITEM (&gui_item);
377
378   /* We are sometimes called with the menubar unchanged, and with changed
379      right flush. We have to update the menubar in this case,
380      so account for the compliance setting in the hash value */
381   checksum = REPLACE_ME_WITH_GLOBAL_VARIABLE_WHICH_CONTROLS_RIHGT_FLUSH;
382
383   /* Will initially contain only "(empty)" */
384   if (populate_p)
385     empty_menu (menu, 1);
386
387   /* PATH set to nil indicates top-level popup or menubar */
388   deep_p = !NILP (path);
389
390   /* Fetch keywords prepending the item list */
391   desc = menu_parse_submenu_keywords (desc, &gui_item);
392
393   /* Check that menu name is specified when expected */
394   if (NILP (gui_item.name) && deep_p)
395     signal_simple_error ("Menu must have a name", desc);
396
397   /* Apply filter if specified */
398   if (!NILP (gui_item.filter))
399     desc = call1 (gui_item.filter, desc);
400
401   /* Loop thru the desc's CDR and add items for each entry */
402   flush_right = 0;
403   EXTERNAL_LIST_LOOP (item_desc, desc)
404     {
405       if (NILP (XCAR (item_desc)))
406         {
407           /* Do not flush right menubar items when MS style compliant */
408           if (bar_p && !REPLACE_ME_WITH_GLOBAL_VARIABLE_WHICH_CONTROLS_RIHGT_FLUSH)
409             flush_right = 1;
410           if (!populate_p)
411             checksum = HASH2 (checksum, LISP_HASH (Qnil));
412         }
413       else if (populate_p)
414         populate_menu_add_item (menu, path, hash_tab,
415                                 XCAR (item_desc), flush_right, bar_p);
416       else
417         checksum = HASH2 (checksum,
418                           checksum_menu_item (XCAR (item_desc)));
419     }
420   
421   if (populate_p)
422     {
423       /* Remove the "(empty)" item, if there are other ones */
424       if (GetMenuItemCount (menu) > 1)
425         RemoveMenu (menu, EMPTY_ITEM_ID, MF_BYCOMMAND);
426
427       /* Add the header to the popup, if told so. The same as in X - an
428          insensitive item, and a separator (Seems to me, there were
429          two separators in X... In Windows this looks ugly, anyways. */
430       if (!bar_p && !deep_p && popup_menu_titles && !NILP(gui_item.name))
431         {
432           CHECK_STRING (gui_item.name);
433           InsertMenu (menu, 0, MF_BYPOSITION | MF_STRING | MF_DISABLED,
434                       0, XSTRING_DATA(gui_item.name));
435           InsertMenu (menu, 1, MF_BYPOSITION | MF_SEPARATOR, 0, NULL);
436           SetMenuDefaultItem (menu, 0, MF_BYPOSITION);
437         }
438     }
439   UNGCPRO; /* gui_item */
440   return checksum;
441 }
442
443 static void
444 populate_menu (HMENU menu, Lisp_Object path, Lisp_Object desc,
445                              Lisp_Object hash_tab, int bar_p)
446 {
447   populate_or_checksum_helper (menu, path, desc, hash_tab, bar_p, 1);
448 }
449
450 static unsigned long
451 checksum_menu (Lisp_Object desc)
452 {
453   return populate_or_checksum_helper (NULL, Qnil, desc, Qunbound, 0, 0);
454 }
455
456 static void
457 update_frame_menubar_maybe (struct frame* f)
458 {
459   HMENU menubar = GetMenu (FRAME_MSWINDOWS_HANDLE (f));
460   struct window *w = XWINDOW (FRAME_LAST_NONMINIBUF_WINDOW (f));
461   Lisp_Object desc = (!NILP (w->menubar_visible_p)
462                       ? symbol_value_in_buffer (Qcurrent_menubar, w->buffer)
463                       : Qnil);
464
465   top_level_menu = menubar;
466
467   if (NILP (desc) && menubar != NULL)
468     {
469       /* Menubar has gone */
470       FRAME_MSWINDOWS_MENU_HASH_TABLE(f) = Qnil;
471       SetMenu (FRAME_MSWINDOWS_HANDLE (f), NULL);
472       DestroyMenu (menubar);
473       DrawMenuBar (FRAME_MSWINDOWS_HANDLE (f));
474       return;
475     }
476
477   if (!NILP (desc) && menubar == NULL)
478     {
479       /* Menubar has appeared */
480       menubar = CreateMenu ();
481       goto populate;
482     }
483
484   if (NILP (desc))
485     {
486       /* We did not have the bar and are not going to */
487       return;
488     }
489
490   /* Now we bail out if the menubar has not changed */
491   if (FRAME_MSWINDOWS_MENU_CHECKSUM(f) == checksum_menu (desc))
492     return;
493
494 populate:
495   /* Come with empty hash table */
496   if (NILP (FRAME_MSWINDOWS_MENU_HASH_TABLE(f)))
497     FRAME_MSWINDOWS_MENU_HASH_TABLE(f) =
498       make_lisp_hash_table (50, HASH_TABLE_NON_WEAK, HASH_TABLE_EQUAL);
499   else
500     Fclrhash (FRAME_MSWINDOWS_MENU_HASH_TABLE(f));
501
502   Fputhash (hmenu_to_lisp_object (menubar), Qnil,
503             FRAME_MSWINDOWS_MENU_HASH_TABLE(f));
504   populate_menu (menubar, Qnil, desc,
505                  FRAME_MSWINDOWS_MENU_HASH_TABLE(f), 1);
506   SetMenu (FRAME_MSWINDOWS_HANDLE (f), menubar);
507   DrawMenuBar (FRAME_MSWINDOWS_HANDLE (f));
508
509   FRAME_MSWINDOWS_MENU_CHECKSUM(f) = checksum_menu (desc);
510 }
511
512 static void
513 prune_menubar (struct frame *f)
514 {
515   HMENU menubar = GetMenu (FRAME_MSWINDOWS_HANDLE (f));
516   Lisp_Object desc = current_frame_menubar (f);
517   if (menubar == NULL)
518     return;
519
520   /* #### If a filter function has set desc to Qnil, this abort()
521      triggers. To resolve, we must prevent filters explicitly from
522      mangling with the active menu. In apply_filter probably?
523      Is copy-tree on the whole menu too expensive? */
524   if (NILP(desc))
525     /* abort(); */
526     return;
527
528   /* We do the trick by removing all items and re-populating top level */
529   empty_menu (menubar, 0);
530
531   assert (HASH_TABLEP (FRAME_MSWINDOWS_MENU_HASH_TABLE(f)));
532   Fclrhash (FRAME_MSWINDOWS_MENU_HASH_TABLE(f));
533
534   Fputhash (hmenu_to_lisp_object (menubar), Qnil,
535             FRAME_MSWINDOWS_MENU_HASH_TABLE(f));
536   populate_menu (menubar, Qnil, desc, 
537                  FRAME_MSWINDOWS_MENU_HASH_TABLE(f), 1);
538 }
539
540 /*
541  * This is called when cleanup is possible. It is better not to
542  * clean things up at all than do it too early!
543  */
544 static void
545 menu_cleanup (struct frame *f)
546 {
547   /* This function can GC */
548   current_menudesc = Qnil;
549   current_hash_table = Qnil;
550   prune_menubar (f);
551 }
552   
553 \f
554 /*------------------------------------------------------------------------*/
555 /* Message handlers                                                       */
556 /*------------------------------------------------------------------------*/
557 static Lisp_Object
558 unsafe_handle_wm_initmenupopup_1 (HMENU menu, struct frame* f)
559 {
560   /* This function can call lisp, beat dogs and stick chewing gum to
561      everything! */
562
563   Lisp_Object path, desc;
564   struct gcpro gcpro1;
565
566   /* Find which guy is going to explode */
567   path = Fgethash (hmenu_to_lisp_object (menu), current_hash_table, Qunbound);
568   assert (!UNBOUNDP (path));
569 #ifdef DEBUG_XEMACS
570   /* Allow to continue in a debugger after assert - not so fatal */
571   if (UNBOUNDP (path))
572     error ("internal menu error");
573 #endif
574
575   /* Now find a desc chunk for it. If none, then probably menu open
576      hook has played too much games around stuff */
577   desc = Fmenu_find_real_submenu (current_menudesc, path);
578   if (NILP (desc))
579     signal_simple_error ("This menu does not exist any more", path);
580
581   /* Now, stuff it */
582   /* DESC may be generated by filter, so we have to gcpro it */
583   GCPRO1 (desc);
584   populate_menu (menu, path, desc, current_hash_table, 0);
585   UNGCPRO;
586   return Qt;
587 }
588
589 static Lisp_Object
590 unsafe_handle_wm_initmenu_1 (struct frame* f)
591 {
592   /* This function can call lisp */
593
594   /* NOTE: This is called for the bar only, WM_INITMENU
595      for popups is filtered out */
596
597   /* #### - this menubar update mechanism is expensively anti-social and
598      the activate-menubar-hook is now mostly obsolete. */
599
600   /* We simply ignore return value. In any case, we construct the bar
601      on the fly */
602   run_hook (Qactivate_menubar_hook);
603
604   update_frame_menubar_maybe (f);
605
606   current_menudesc = current_frame_menubar (f);
607   current_hash_table = FRAME_MSWINDOWS_MENU_HASH_TABLE(f);
608   assert (HASH_TABLEP (current_hash_table));
609
610   return Qt;
611 }
612
613 /*
614  * Return value is Qt if we have dispatched the command,
615  * or Qnil if id has not been mapped to a callback.
616  * Window procedure may try other targets to route the
617  * command if we return nil
618  */
619 Lisp_Object
620 mswindows_handle_wm_command (struct frame* f, WORD id)
621 {
622   /* Try to map the command id through the proper hash table */
623   Lisp_Object data, fn, arg, frame;
624   struct gcpro gcpro1;
625
626   if (NILP (current_hash_table))
627     return Qnil;
628
629   data = Fgethash (make_int (id), current_hash_table, Qunbound);
630
631   if (UNBOUNDP (data))
632     {
633       menu_cleanup (f);
634       return Qnil;
635     }
636
637   /* Need to gcpro because the hash table may get destroyed by
638      menu_cleanup(), and will not gcpro the data any more */
639   GCPRO1 (data);
640   menu_cleanup (f);
641
642   /* Ok, this is our one. Enqueue it. */
643   get_gui_callback (data, &fn, &arg);
644   XSETFRAME (frame, f);
645   /* this used to call mswindows_enqueue_misc_user_event but that
646      breaks customize because the misc_event gets eval'ed in some
647      cicumstances. Don't change it back unless you can fix the
648      customize problem also.*/
649   enqueue_misc_user_event (frame, fn, arg);
650   mswindows_enqueue_magic_event (NULL, XM_BUMPQUEUE);
651
652   UNGCPRO; /* data */
653   return Qt;
654 }
655
656 \f
657 /*------------------------------------------------------------------------*/
658 /* Message handling proxies                                               */
659 /*------------------------------------------------------------------------*/
660
661 static HMENU wm_initmenu_menu;
662 static struct frame* wm_initmenu_frame;
663
664 static Lisp_Object
665 unsafe_handle_wm_initmenupopup (Lisp_Object u_n_u_s_e_d)
666 {
667   return unsafe_handle_wm_initmenupopup_1 (wm_initmenu_menu, wm_initmenu_frame);
668 }
669
670 static Lisp_Object
671 unsafe_handle_wm_initmenu (Lisp_Object u_n_u_s_e_d)
672 {
673   return unsafe_handle_wm_initmenu_1 (wm_initmenu_frame);
674 }
675
676 Lisp_Object
677 mswindows_handle_wm_initmenupopup (HMENU hmenu, struct frame* frm)
678 {
679   /* We cannot pass hmenu as a lisp object. Use static var */
680   wm_initmenu_menu = hmenu;
681   wm_initmenu_frame = frm;
682   return mswindows_protect_modal_loop (unsafe_handle_wm_initmenupopup, Qnil);
683 }
684
685 Lisp_Object
686 mswindows_handle_wm_initmenu (HMENU hmenu, struct frame* f)
687 {
688   /* Handle only frame menubar, ignore if from popup or system menu */
689   if (GetMenu (FRAME_MSWINDOWS_HANDLE(f)) == hmenu)
690     {
691       wm_initmenu_frame = f;
692       return mswindows_protect_modal_loop (unsafe_handle_wm_initmenu, Qnil);
693     }
694   return Qt;
695 }
696
697 \f
698 /*------------------------------------------------------------------------*/
699 /* Methods                                                                */
700 /*------------------------------------------------------------------------*/
701
702 static void
703 mswindows_update_frame_menubars (struct frame* f)
704 {
705   update_frame_menubar_maybe (f);
706 }
707
708 static void
709 mswindows_free_frame_menubars (struct frame* f)
710 {
711   FRAME_MSWINDOWS_MENU_HASH_TABLE(f) = Qnil;
712 }
713
714 static void
715 mswindows_popup_menu (Lisp_Object menu_desc, Lisp_Object event)
716 {
717   struct frame *f = selected_frame ();
718   struct Lisp_Event *eev = NULL;
719   HMENU menu;
720   POINT pt;
721   int ok;
722
723   if (!NILP (event))
724     {
725       CHECK_LIVE_EVENT (event);
726       eev = XEVENT (event);
727       if (eev->event_type != button_press_event
728           && eev->event_type != button_release_event)
729         wrong_type_argument (Qmouse_event_p, event);
730     }
731   else if (!NILP (Vthis_command_keys))
732     {
733       /* if an event wasn't passed, use the last event of the event sequence
734          currently being executed, if that event is a mouse event */
735       eev = XEVENT (Vthis_command_keys); /* last event first */
736       if (eev->event_type != button_press_event
737           && eev->event_type != button_release_event)
738         eev = NULL;
739     }
740
741   /* Default is to put the menu at the point (10, 10) in frame */
742   if (eev)
743     {
744       pt.x = eev->event.button.x;
745       pt.y = eev->event.button.y;
746       ClientToScreen (FRAME_MSWINDOWS_HANDLE (f), &pt);
747     }
748   else
749     pt.x = pt.y = 10;
750
751   if (SYMBOLP (menu_desc))
752     menu_desc = Fsymbol_value (menu_desc);
753   CHECK_CONS (menu_desc);
754   CHECK_STRING (XCAR (menu_desc));
755
756   current_menudesc = menu_desc;
757   current_hash_table =
758     make_lisp_hash_table (10, HASH_TABLE_NON_WEAK, HASH_TABLE_EQUAL);
759   menu = create_empty_popup_menu();
760   Fputhash (hmenu_to_lisp_object (menu), Qnil, current_hash_table);
761   top_level_menu = menu;
762   
763   /* see comments in menubar-x.c */
764   if (zmacs_regions)
765     zmacs_region_stays = 1;
766   
767   ok = TrackPopupMenu (menu,
768                        TPM_LEFTALIGN | TPM_LEFTBUTTON | TPM_RIGHTBUTTON,
769                        pt.x, pt.y, 0,
770                        FRAME_MSWINDOWS_HANDLE (f), NULL);
771
772   DestroyMenu (menu);
773
774   /* Signal a signal if caught by Track...() modal loop */
775   mswindows_unmodalize_signal_maybe ();
776
777   /* This is probably the only real reason for failure */
778   if (!ok) {
779     menu_cleanup (f);
780     signal_simple_error ("Cannot track popup menu while in menu",
781                          menu_desc);
782   }
783 }
784
785 \f
786 /*------------------------------------------------------------------------*/
787 /* Initialization                                                         */
788 /*------------------------------------------------------------------------*/
789 void
790 syms_of_menubar_mswindows (void)
791 {
792 }
793
794 void
795 console_type_create_menubar_mswindows (void)
796 {
797   CONSOLE_HAS_METHOD (mswindows, update_frame_menubars);
798   CONSOLE_HAS_METHOD (mswindows, free_frame_menubars);
799   CONSOLE_HAS_METHOD (mswindows, popup_menu);
800 }
801
802 void
803 vars_of_menubar_mswindows (void)
804 {
805   current_menudesc = Qnil;
806   current_hash_table = Qnil;
807
808   staticpro (&current_menudesc);
809   staticpro (&current_hash_table);
810 }