New post-self-insert-hook.
[bpt/emacs.git] / src / w32menu.c
CommitLineData
e9e23e23 1/* Menu support for GNU Emacs on the Microsoft W32 API.
429ab54e 2 Copyright (C) 1986, 1988, 1993, 1994, 1996, 1998, 1999, 2001, 2002,
114f9c96 3 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
8cabe764 4 Free Software Foundation, Inc.
ee78dc32
GV
5
6This file is part of GNU Emacs.
7
9ec0b715 8GNU Emacs is free software: you can redistribute it and/or modify
ee78dc32 9it under the terms of the GNU General Public License as published by
9ec0b715
GM
10the Free Software Foundation, either version 3 of the License, or
11(at your option) any later version.
ee78dc32
GV
12
13GNU Emacs is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
9ec0b715 19along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
ee78dc32 20
ee78dc32 21#include <config.h>
162d2499 22
7ab7006c 23#include <signal.h>
ee78dc32 24#include <stdio.h>
af41f8a8 25#include <mbstring.h>
d7306fe6 26#include <setjmp.h>
7ab7006c 27
ee78dc32 28#include "lisp.h"
15d36dee 29#include "keyboard.h"
5ee707b8 30#include "keymap.h"
ee78dc32 31#include "frame.h"
7ab7006c 32#include "termhooks.h"
ee78dc32 33#include "window.h"
ee78dc32 34#include "blockinput.h"
fdc12c4d 35#include "buffer.h"
6915ded0 36#include "charset.h"
c949d9d0 37#include "character.h"
6915ded0 38#include "coding.h"
ef7417fd 39#include "menu.h"
ee78dc32
GV
40
41/* This may include sys/types.h, and that somehow loses
42 if this is not done before the other system files. */
43#include "w32term.h"
44
45/* Load sys/types.h if not already loaded.
46 In some systems loading it twice is suicidal. */
47#ifndef makedev
48#include <sys/types.h>
49#endif
50
51#include "dispextern.h"
52
222456a1 53#undef HAVE_DIALOGS /* TODO: Implement native dialogs. */
162d2499 54
485015ca
GV
55#ifndef TRUE
56#define TRUE 1
57#define FALSE 0
58#endif /* no TRUE */
59
b2a916a0 60HMENU current_popup_menu;
ace9b298 61
b56ceb92
JB
62void syms_of_w32menu (void);
63void globals_of_w32menu (void);
f60ae425
BK
64
65typedef BOOL (WINAPI * GetMenuItemInfoA_Proc) (
66 IN HMENU,
67 IN UINT,
68 IN BOOL,
1f06d367 69 IN OUT LPMENUITEMINFOA);
f60ae425
BK
70typedef BOOL (WINAPI * SetMenuItemInfoA_Proc) (
71 IN HMENU,
72 IN UINT,
73 IN BOOL,
1f06d367 74 IN LPCMENUITEMINFOA);
1c9b4129
JR
75typedef int (WINAPI * MessageBoxW_Proc) (
76 IN HWND window,
77 IN WCHAR *text,
78 IN WCHAR *caption,
79 IN UINT type);
f60ae425 80
1f06d367
JR
81GetMenuItemInfoA_Proc get_menu_item_info = NULL;
82SetMenuItemInfoA_Proc set_menu_item_info = NULL;
83AppendMenuW_Proc unicode_append_menu = NULL;
1c9b4129 84MessageBoxW_Proc unicode_message_box = NULL;
ace9b298 85
fdc12c4d
RS
86Lisp_Object Qdebug_on_next_call;
87
ee78dc32 88extern Lisp_Object Qmenu_bar;
485015ca
GV
89
90extern Lisp_Object QCtoggle, QCradio;
ee78dc32 91
fdc12c4d
RS
92extern Lisp_Object Voverriding_local_map;
93extern Lisp_Object Voverriding_local_map_menu_flag;
94
95extern Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
96
97extern Lisp_Object Qmenu_bar_update_hook;
98
f57e2426 99void set_frame_menubar (FRAME_PTR, int, int);
014510b0 100
1c5acb8c 101#ifdef HAVE_DIALOGS
f57e2426 102static Lisp_Object w32_dialog_show (FRAME_PTR, int, Lisp_Object, char**);
31403b24 103#else
f57e2426
J
104static int is_simple_dialog (Lisp_Object);
105static Lisp_Object simple_dialog_show (FRAME_PTR, Lisp_Object, Lisp_Object);
1c5acb8c 106#endif
31403b24 107
1c9b4129
JR
108static void utf8to16 (unsigned char *, int, WCHAR *);
109
f57e2426 110void w32_free_menu_strings (HWND);
485015ca 111\f
6fc032ed 112
485015ca
GV
113/* This is set nonzero after the user activates the menu bar, and set
114 to zero again after the menu bars are redisplayed by prepare_menu_bar.
115 While it is nonzero, all calls to set_frame_menubar go deep.
116
117 I don't understand why this is needed, but it does seem to be
118 needed on Motif, according to Marcus Daniels <marcus@sysc.pdx.edu>. */
ee78dc32 119
485015ca
GV
120int pending_menu_activation;
121\f
485015ca
GV
122#ifdef HAVE_MENUS
123
16b12668 124DEFUN ("x-popup-dialog", Fx_popup_dialog, Sx_popup_dialog, 2, 3, 0,
33f09670
JR
125 doc: /* Pop up a dialog box and return user's selection.
126POSITION specifies which frame to use.
127This is normally a mouse button event or a window or frame.
128If POSITION is t, it means to use the frame the mouse is on.
129The dialog box appears in the middle of the specified frame.
130
131CONTENTS specifies the alternatives to display in the dialog box.
132It is a list of the form (TITLE ITEM1 ITEM2...).
133Each ITEM is a cons cell (STRING . VALUE).
134The return value is VALUE from the chosen item.
135
136An ITEM may also be just a string--that makes a nonselectable item.
137An ITEM may also be nil--that means to put all preceding items
138on the left of the dialog box and all following items on the right.
d23928c7
NR
139\(By default, approximately half appear on each side.)
140
141If HEADER is non-nil, the frame title for the box is "Information",
142otherwise it is "Question". */)
5842a27b 143 (Lisp_Object position, Lisp_Object contents, Lisp_Object header)
ee78dc32 144{
b2123f81 145 FRAME_PTR f = NULL;
ee78dc32 146 Lisp_Object window;
485015ca
GV
147
148 check_w32 ();
149
ee78dc32 150 /* Decode the first argument: find the window or frame to use. */
485015ca 151 if (EQ (position, Qt)
0b6bb670
JR
152 || (CONSP (position) && (EQ (XCAR (position), Qmenu_bar)
153 || EQ (XCAR (position), Qtool_bar))))
ee78dc32 154 {
485015ca
GV
155#if 0 /* Using the frame the mouse is on may not be right. */
156 /* Use the mouse's current position. */
162d2499 157 FRAME_PTR new_f = SELECTED_FRAME ();
485015ca 158 Lisp_Object bar_window;
15d36dee 159 enum scroll_bar_part part;
485015ca
GV
160 unsigned long time;
161 Lisp_Object x, y;
162
163 (*mouse_position_hook) (&new_f, 1, &bar_window, &part, &x, &y, &time);
164
165 if (new_f != 0)
166 XSETFRAME (window, new_f);
167 else
ee78dc32 168 window = selected_window;
485015ca
GV
169#endif
170 window = selected_window;
ee78dc32
GV
171 }
172 else if (CONSP (position))
173 {
174 Lisp_Object tem;
175 tem = Fcar (position);
485015ca 176 if (CONSP (tem))
ee78dc32
GV
177 window = Fcar (Fcdr (position));
178 else
179 {
485015ca
GV
180 tem = Fcar (Fcdr (position)); /* EVENT_START (position) */
181 window = Fcar (tem); /* POSN_WINDOW (tem) */
ee78dc32
GV
182 }
183 }
184 else if (WINDOWP (position) || FRAMEP (position))
185 window = position;
485015ca
GV
186 else
187 window = Qnil;
188
ee78dc32 189 /* Decode where to put the menu. */
485015ca 190
ee78dc32
GV
191 if (FRAMEP (window))
192 f = XFRAME (window);
193 else if (WINDOWP (window))
194 {
b7826503 195 CHECK_LIVE_WINDOW (window);
ee78dc32
GV
196 f = XFRAME (WINDOW_FRAME (XWINDOW (window)));
197 }
198 else
199 /* ??? Not really clean; should be CHECK_WINDOW_OR_FRAME,
200 but I don't want to make one now. */
b7826503 201 CHECK_WINDOW (window);
485015ca 202
162d2499 203#ifndef HAVE_DIALOGS
31403b24 204
ee78dc32 205 {
31403b24
JR
206 /* Handle simple Yes/No choices as MessageBox popups. */
207 if (is_simple_dialog (contents))
208 return simple_dialog_show (f, contents, header);
209 else
210 {
211 /* Display a menu with these alternatives
212 in the middle of frame F. */
213 Lisp_Object x, y, frame, newpos;
214 XSETFRAME (frame, f);
215 XSETINT (x, x_pixel_width (f) / 2);
216 XSETINT (y, x_pixel_height (f) / 2);
217 newpos = Fcons (Fcons (x, Fcons (y, Qnil)), Fcons (frame, Qnil));
218 return Fx_popup_menu (newpos,
219 Fcons (Fcar (contents), Fcons (contents, Qnil)));
220 }
ee78dc32 221 }
162d2499 222#else /* HAVE_DIALOGS */
ee78dc32
GV
223 {
224 Lisp_Object title;
225 char *error_name;
226 Lisp_Object selection;
227
228 /* Decode the dialog items from what was specified. */
229 title = Fcar (contents);
b7826503 230 CHECK_STRING (title);
ee78dc32
GV
231
232 list_of_panes (Fcons (contents, Qnil));
233
234 /* Display them in a dialog box. */
235 BLOCK_INPUT;
d23928c7 236 selection = w32_dialog_show (f, 0, title, header, &error_name);
ee78dc32
GV
237 UNBLOCK_INPUT;
238
239 discard_menu_items ();
38f2b112 240 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
ee78dc32
GV
241
242 if (error_name) error (error_name);
243 return selection;
244 }
162d2499 245#endif /* HAVE_DIALOGS */
ee78dc32
GV
246}
247
014510b0
GV
248/* Activate the menu bar of frame F.
249 This is called from keyboard.c when it gets the
3b8f9651 250 MENU_BAR_ACTIVATE_EVENT out of the Emacs event queue.
014510b0
GV
251
252 To activate the menu bar, we signal to the input thread that it can
253 return from the WM_INITMENU message, allowing the normal Windows
254 processing of the menus.
255
256 But first we recompute the menu bar contents (the whole tree).
257
258 This way we can safely execute Lisp code. */
177c0ea7 259
162d2499 260void
b56ceb92 261x_activate_menubar (FRAME_PTR f)
014510b0
GV
262{
263 set_frame_menubar (f, 0, 1);
264
265 /* Lock out further menubar changes while active. */
266 f->output_data.w32->menubar_active = 1;
267
268 /* Signal input thread to return from WM_INITMENU. */
269 complete_deferred_msg (FRAME_W32_WINDOW (f), WM_INITMENU, 0);
270}
271
485015ca
GV
272/* This callback is called from the menu bar pulldown menu
273 when the user makes a selection.
274 Figure out what the user chose
275 and put the appropriate events into the keyboard buffer. */
276
277void
278menubar_selection_callback (FRAME_PTR f, void * client_data)
ee78dc32 279{
485015ca
GV
280 Lisp_Object prefix, entry;
281 Lisp_Object vector;
282 Lisp_Object *subprefix_stack;
283 int submenu_depth = 0;
ee78dc32 284 int i;
fdc12c4d 285
485015ca 286 if (!f)
014510b0 287 return;
fe5a0162 288 entry = Qnil;
485015ca
GV
289 subprefix_stack = (Lisp_Object *) alloca (f->menu_bar_items_used * sizeof (Lisp_Object));
290 vector = f->menu_bar_vector;
291 prefix = Qnil;
292 i = 0;
293 while (i < f->menu_bar_items_used)
294 {
6ed09cf0 295 if (EQ (AREF (vector, i), Qnil))
485015ca
GV
296 {
297 subprefix_stack[submenu_depth++] = prefix;
298 prefix = entry;
299 i++;
300 }
6ed09cf0 301 else if (EQ (AREF (vector, i), Qlambda))
485015ca
GV
302 {
303 prefix = subprefix_stack[--submenu_depth];
304 i++;
305 }
6ed09cf0 306 else if (EQ (AREF (vector, i), Qt))
485015ca 307 {
6ed09cf0 308 prefix = AREF (vector, i + MENU_ITEMS_PANE_PREFIX);
485015ca
GV
309 i += MENU_ITEMS_PANE_LENGTH;
310 }
311 else
312 {
6ed09cf0 313 entry = AREF (vector, i + MENU_ITEMS_ITEM_VALUE);
485015ca
GV
314 /* The EMACS_INT cast avoids a warning. There's no problem
315 as long as pointers have enough bits to hold small integers. */
316 if ((int) (EMACS_INT) client_data == i)
317 {
318 int j;
319 struct input_event buf;
320 Lisp_Object frame;
f456401b 321 EVENT_INIT (buf);
014510b0 322
485015ca 323 XSETFRAME (frame, f);
20501278
GM
324 buf.kind = MENU_BAR_EVENT;
325 buf.frame_or_window = frame;
326 buf.arg = frame;
485015ca 327 kbd_buffer_store_event (&buf);
014510b0 328
485015ca
GV
329 for (j = 0; j < submenu_depth; j++)
330 if (!NILP (subprefix_stack[j]))
331 {
20501278
GM
332 buf.kind = MENU_BAR_EVENT;
333 buf.frame_or_window = frame;
334 buf.arg = subprefix_stack[j];
485015ca
GV
335 kbd_buffer_store_event (&buf);
336 }
fdc12c4d 337
485015ca
GV
338 if (!NILP (prefix))
339 {
20501278
GM
340 buf.kind = MENU_BAR_EVENT;
341 buf.frame_or_window = frame;
342 buf.arg = prefix;
485015ca
GV
343 kbd_buffer_store_event (&buf);
344 }
fdc12c4d 345
20501278
GM
346 buf.kind = MENU_BAR_EVENT;
347 buf.frame_or_window = frame;
348 buf.arg = entry;
71f6b295
JR
349 /* Free memory used by owner-drawn and help-echo strings. */
350 w32_free_menu_strings (FRAME_W32_WINDOW (f));
b2a916a0
JR
351 kbd_buffer_store_event (&buf);
352
71f6b295 353 f->output_data.w32->menubar_active = 0;
485015ca
GV
354 return;
355 }
356 i += MENU_ITEMS_ITEM_LENGTH;
357 }
014510b0 358 }
71f6b295
JR
359 /* Free memory used by owner-drawn and help-echo strings. */
360 w32_free_menu_strings (FRAME_W32_WINDOW (f));
71f6b295 361 f->output_data.w32->menubar_active = 0;
485015ca 362}
014510b0 363
ee78dc32 364\f
485015ca
GV
365/* Set the contents of the menubar widgets of frame F.
366 The argument FIRST_TIME is currently ignored;
367 it is set the first time this is called, from initialize_frame_menubar. */
368
369void
b56ceb92 370set_frame_menubar (FRAME_PTR f, int first_time, int deep_p)
485015ca
GV
371{
372 HMENU menubar_widget = f->output_data.w32->menubar_widget;
162d2499 373 Lisp_Object items;
485015ca 374 widget_value *wv, *first_wv, *prev_wv = 0;
6ed09cf0
RS
375 int i, last_i;
376 int *submenu_start, *submenu_end;
fe04b8c8 377 int *submenu_top_level_items, *submenu_n_panes;
485015ca
GV
378
379 /* We must not change the menubar when actually in use. */
380 if (f->output_data.w32->menubar_active)
381 return;
382
383 XSETFRAME (Vmenu_updating_frame, f);
384
385 if (! menubar_widget)
386 deep_p = 1;
387 else if (pending_menu_activation && !deep_p)
388 deep_p = 1;
389
485015ca
GV
390 if (deep_p)
391 {
392 /* Make a widget-value tree representing the entire menu trees. */
393
394 struct buffer *prev = current_buffer;
395 Lisp_Object buffer;
aed13378 396 int specpdl_count = SPECPDL_INDEX ();
485015ca
GV
397 int previous_menu_items_used = f->menu_bar_items_used;
398 Lisp_Object *previous_items
399 = (Lisp_Object *) alloca (previous_menu_items_used
400 * sizeof (Lisp_Object));
401
402 /* If we are making a new widget, its contents are empty,
403 do always reinitialize them. */
404 if (! menubar_widget)
405 previous_menu_items_used = 0;
406
407 buffer = XWINDOW (FRAME_SELECTED_WINDOW (f))->buffer;
408 specbind (Qinhibit_quit, Qt);
409 /* Don't let the debugger step into this code
410 because it is not reentrant. */
411 specbind (Qdebug_on_next_call, Qnil);
412
89f2614d
KS
413 record_unwind_save_match_data ();
414
485015ca
GV
415 if (NILP (Voverriding_local_map_menu_flag))
416 {
417 specbind (Qoverriding_terminal_local_map, Qnil);
418 specbind (Qoverriding_local_map, Qnil);
419 }
420
421 set_buffer_internal_1 (XBUFFER (buffer));
422
423 /* Run the Lucid hook. */
c53b6500 424 safe_run_hooks (Qactivate_menubar_hook);
485015ca
GV
425 /* If it has changed current-menubar from previous value,
426 really recompute the menubar from the value. */
427 if (! NILP (Vlucid_menu_bar_dirty_flag))
428 call0 (Qrecompute_lucid_menubar);
429 safe_run_hooks (Qmenu_bar_update_hook);
430 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
431
432 items = FRAME_MENU_BAR_ITEMS (f);
433
485015ca 434 /* Save the frame's previous menu bar contents data. */
c30dce3d 435 if (previous_menu_items_used)
72af86bd
AS
436 memcpy (previous_items, XVECTOR (f->menu_bar_vector)->contents,
437 previous_menu_items_used * sizeof (Lisp_Object));
485015ca 438
6ed09cf0
RS
439 /* Fill in menu_items with the current menu bar contents.
440 This can evaluate Lisp code. */
df80fd9d
JR
441 save_menu_items ();
442
485015ca 443 menu_items = f->menu_bar_vector;
c30dce3d 444 menu_items_allocated = VECTORP (menu_items) ? ASIZE (menu_items) : 0;
6ed09cf0
RS
445 submenu_start = (int *) alloca (XVECTOR (items)->size * sizeof (int *));
446 submenu_end = (int *) alloca (XVECTOR (items)->size * sizeof (int *));
fe04b8c8 447 submenu_n_panes = (int *) alloca (XVECTOR (items)->size * sizeof (int));
6ed09cf0
RS
448 submenu_top_level_items
449 = (int *) alloca (XVECTOR (items)->size * sizeof (int *));
485015ca 450 init_menu_items ();
6ed09cf0 451 for (i = 0; i < ASIZE (items); i += 4)
485015ca
GV
452 {
453 Lisp_Object key, string, maps;
454
6ed09cf0
RS
455 last_i = i;
456
457 key = AREF (items, i);
458 string = AREF (items, i + 1);
459 maps = AREF (items, i + 2);
485015ca
GV
460 if (NILP (string))
461 break;
462
6ed09cf0
RS
463 submenu_start[i] = menu_items_used;
464
465 menu_items_n_panes = 0;
466 submenu_top_level_items[i]
467 = parse_single_submenu (key, string, maps);
fe04b8c8 468 submenu_n_panes[i] = menu_items_n_panes;
6ed09cf0
RS
469
470 submenu_end[i] = menu_items_used;
471 }
472
473 finish_menu_items ();
474
475 /* Convert menu_items into widget_value trees
476 to display the menu. This cannot evaluate Lisp code. */
477
478 wv = xmalloc_widget_value ();
479 wv->name = "menubar";
480 wv->value = 0;
481 wv->enabled = 1;
482 wv->button_type = BUTTON_TYPE_NONE;
483 wv->help = Qnil;
484 first_wv = wv;
485
486 for (i = 0; i < last_i; i += 4)
487 {
fe04b8c8 488 menu_items_n_panes = submenu_n_panes[i];
6ed09cf0
RS
489 wv = digest_single_submenu (submenu_start[i], submenu_end[i],
490 submenu_top_level_items[i]);
177c0ea7 491 if (prev_wv)
485015ca
GV
492 prev_wv->next = wv;
493 else
494 first_wv->contents = wv;
495 /* Don't set wv->name here; GC during the loop might relocate it. */
496 wv->enabled = 1;
162d2499 497 wv->button_type = BUTTON_TYPE_NONE;
485015ca
GV
498 prev_wv = wv;
499 }
500
485015ca 501 set_buffer_internal_1 (prev);
485015ca
GV
502
503 /* If there has been no change in the Lisp-level contents
504 of the menu bar, skip redisplaying it. Just exit. */
505
506 for (i = 0; i < previous_menu_items_used; i++)
507 if (menu_items_used == i
6ed09cf0 508 || (!EQ (previous_items[i], AREF (menu_items, i))))
485015ca
GV
509 break;
510 if (i == menu_items_used && i == previous_menu_items_used && i != 0)
511 {
512 free_menubar_widget_value_tree (first_wv);
df80fd9d
JR
513 discard_menu_items ();
514 unbind_to (specpdl_count, Qnil);
485015ca
GV
515 return;
516 }
517
df80fd9d
JR
518 f->menu_bar_vector = menu_items;
519 f->menu_bar_items_used = menu_items_used;
520
521 /* This undoes save_menu_items. */
522 unbind_to (specpdl_count, Qnil);
523
485015ca 524 /* Now GC cannot happen during the lifetime of the widget_value,
ace9b298
JR
525 so it's safe to store data from a Lisp_String, as long as
526 local copies are made when the actual menu is created.
527 Windows takes care of this for normal string items, but
528 not for owner-drawn items or additional item-info. */
485015ca 529 wv = first_wv->contents;
6ed09cf0 530 for (i = 0; i < ASIZE (items); i += 4)
485015ca
GV
531 {
532 Lisp_Object string;
6ed09cf0 533 string = AREF (items, i + 1);
485015ca
GV
534 if (NILP (string))
535 break;
d5db4077 536 wv->name = (char *) SDATA (string);
1f06d367 537 update_submenu_strings (wv->contents);
485015ca
GV
538 wv = wv->next;
539 }
485015ca
GV
540 }
541 else
542 {
543 /* Make a widget-value tree containing
162d2499 544 just the top level menu bar strings. */
485015ca 545
6ed09cf0
RS
546 wv = xmalloc_widget_value ();
547 wv->name = "menubar";
548 wv->value = 0;
549 wv->enabled = 1;
550 wv->button_type = BUTTON_TYPE_NONE;
551 wv->help = Qnil;
552 first_wv = wv;
553
485015ca 554 items = FRAME_MENU_BAR_ITEMS (f);
6ed09cf0 555 for (i = 0; i < ASIZE (items); i += 4)
485015ca
GV
556 {
557 Lisp_Object string;
558
6ed09cf0 559 string = AREF (items, i + 1);
485015ca
GV
560 if (NILP (string))
561 break;
562
563 wv = xmalloc_widget_value ();
d5db4077 564 wv->name = (char *) SDATA (string);
485015ca
GV
565 wv->value = 0;
566 wv->enabled = 1;
162d2499 567 wv->button_type = BUTTON_TYPE_NONE;
2d10309f 568 wv->help = Qnil;
485015ca
GV
569 /* This prevents lwlib from assuming this
570 menu item is really supposed to be empty. */
571 /* The EMACS_INT cast avoids a warning.
572 This value just has to be different from small integers. */
573 wv->call_data = (void *) (EMACS_INT) (-1);
574
177c0ea7 575 if (prev_wv)
485015ca
GV
576 prev_wv->next = wv;
577 else
578 first_wv->contents = wv;
579 prev_wv = wv;
580 }
581
162d2499
JR
582 /* Forget what we thought we knew about what is in the
583 detailed contents of the menu bar menus.
584 Changing the top level always destroys the contents. */
585 f->menu_bar_items_used = 0;
485015ca
GV
586 }
587
588 /* Create or update the menu bar widget. */
ee78dc32 589
485015ca 590 BLOCK_INPUT;
ee78dc32 591
485015ca
GV
592 if (menubar_widget)
593 {
594 /* Empty current menubar, rather than creating a fresh one. */
595 while (DeleteMenu (menubar_widget, 0, MF_BYPOSITION))
596 ;
597 }
598 else
599 {
600 menubar_widget = CreateMenu ();
601 }
602 fill_in_menu (menubar_widget, first_wv->contents);
ee78dc32 603
485015ca 604 free_menubar_widget_value_tree (first_wv);
ee78dc32 605
485015ca
GV
606 {
607 HMENU old_widget = f->output_data.w32->menubar_widget;
ee78dc32 608
485015ca
GV
609 f->output_data.w32->menubar_widget = menubar_widget;
610 SetMenu (FRAME_W32_WINDOW (f), f->output_data.w32->menubar_widget);
177c0ea7 611 /* Causes flicker when menu bar is updated
485015ca 612 DrawMenuBar (FRAME_W32_WINDOW (f)); */
ee78dc32 613
485015ca
GV
614 /* Force the window size to be recomputed so that the frame's text
615 area remains the same, if menubar has just been created. */
616 if (old_widget == NULL)
90022f5a 617 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
ee78dc32 618 }
485015ca
GV
619
620 UNBLOCK_INPUT;
ee78dc32
GV
621}
622
485015ca
GV
623/* Called from Fx_create_frame to create the initial menubar of a frame
624 before it is mapped, so that the window is mapped with the menubar already
625 there instead of us tacking it on later and thrashing the window after it
626 is visible. */
627
628void
b56ceb92 629initialize_frame_menubar (FRAME_PTR f)
485015ca
GV
630{
631 /* This function is called before the first chance to redisplay
632 the frame. It has to be, so the frame will have the right size. */
633 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items (FRAME_MENU_BAR_ITEMS (f));
634 set_frame_menubar (f, 1, 1);
ee78dc32
GV
635}
636
485015ca
GV
637/* Get rid of the menu bar of frame F, and free its storage.
638 This is used when deleting a frame, and when turning off the menu bar. */
639
640void
b56ceb92 641free_frame_menubar (FRAME_PTR f)
485015ca
GV
642{
643 BLOCK_INPUT;
644
645 {
646 HMENU old = GetMenu (FRAME_W32_WINDOW (f));
647 SetMenu (FRAME_W32_WINDOW (f), NULL);
648 f->output_data.w32->menubar_widget = NULL;
649 DestroyMenu (old);
650 }
29250851 651
485015ca
GV
652 UNBLOCK_INPUT;
653}
ee78dc32 654
485015ca
GV
655\f
656/* w32_menu_show actually displays a menu using the panes and items in
657 menu_items and returns the value selected from it; we assume input
658 is blocked by the caller. */
ee78dc32
GV
659
660/* F is the frame the menu is for.
661 X and Y are the frame-relative specified position,
662 relative to the inside upper left corner of the frame F.
485015ca 663 FOR_CLICK is nonzero if this menu was invoked for a mouse click.
ee78dc32 664 KEYMAPS is 1 if this menu was specified with keymaps;
485015ca
GV
665 in that case, we return a list containing the chosen item's value
666 and perhaps also the pane's prefix.
ee78dc32
GV
667 TITLE is the specified menu title.
668 ERROR is a place to store an error message string in case of failure.
669 (We return nil on failure, but the value doesn't actually matter.) */
670
ef7417fd
SM
671Lisp_Object
672w32_menu_show (FRAME_PTR f, int x, int y, int for_click, int keymaps,
42ca4633 673 Lisp_Object title, const char **error)
ee78dc32 674{
485015ca
GV
675 int i;
676 int menu_item_selection;
677 HMENU menu;
ee78dc32 678 POINT pos;
485015ca
GV
679 widget_value *wv, *save_wv = 0, *first_wv = 0, *prev_wv = 0;
680 widget_value **submenu_stack
681 = (widget_value **) alloca (menu_items_used * sizeof (widget_value *));
682 Lisp_Object *subprefix_stack
683 = (Lisp_Object *) alloca (menu_items_used * sizeof (Lisp_Object));
684 int submenu_depth = 0;
485015ca 685 int first_pane;
485015ca 686
ee78dc32 687 *error = NULL;
485015ca 688
df80fd9d
JR
689 if (menu_items_n_panes == 0)
690 return Qnil;
691
485015ca 692 if (menu_items_used <= MENU_ITEMS_PANE_LENGTH)
ee78dc32
GV
693 {
694 *error = "Empty menu";
695 return Qnil;
696 }
485015ca
GV
697
698 /* Create a tree of widget_value objects
699 representing the panes and their items. */
700 wv = xmalloc_widget_value ();
701 wv->name = "menu";
702 wv->value = 0;
703 wv->enabled = 1;
162d2499 704 wv->button_type = BUTTON_TYPE_NONE;
e6bb685b 705 wv->help = Qnil;
485015ca
GV
706 first_wv = wv;
707 first_pane = 1;
177c0ea7 708
485015ca
GV
709 /* Loop over all panes and items, filling in the tree. */
710 i = 0;
711 while (i < menu_items_used)
712 {
6ed09cf0 713 if (EQ (AREF (menu_items, i), Qnil))
485015ca
GV
714 {
715 submenu_stack[submenu_depth++] = save_wv;
716 save_wv = prev_wv;
717 prev_wv = 0;
718 first_pane = 1;
719 i++;
720 }
6ed09cf0 721 else if (EQ (AREF (menu_items, i), Qlambda))
485015ca
GV
722 {
723 prev_wv = save_wv;
724 save_wv = submenu_stack[--submenu_depth];
725 first_pane = 0;
726 i++;
727 }
6ed09cf0 728 else if (EQ (AREF (menu_items, i), Qt)
485015ca
GV
729 && submenu_depth != 0)
730 i += MENU_ITEMS_PANE_LENGTH;
731 /* Ignore a nil in the item list.
732 It's meaningful only for dialog boxes. */
6ed09cf0 733 else if (EQ (AREF (menu_items, i), Qquote))
485015ca 734 i += 1;
6ed09cf0 735 else if (EQ (AREF (menu_items, i), Qt))
485015ca
GV
736 {
737 /* Create a new pane. */
738 Lisp_Object pane_name, prefix;
739 char *pane_string;
29250851
JR
740 pane_name = AREF (menu_items, i + MENU_ITEMS_PANE_NAME);
741 prefix = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
1f06d367
JR
742
743 if (STRINGP (pane_name))
29250851 744 {
1f06d367
JR
745 if (unicode_append_menu)
746 pane_name = ENCODE_UTF_8 (pane_name);
747 else if (STRING_MULTIBYTE (pane_name))
748 pane_name = ENCODE_SYSTEM (pane_name);
749
6ed09cf0 750 ASET (menu_items, i + MENU_ITEMS_PANE_NAME, pane_name);
29250851 751 }
1f06d367 752
485015ca 753 pane_string = (NILP (pane_name)
d5db4077 754 ? "" : (char *) SDATA (pane_name));
485015ca
GV
755 /* If there is just one top-level pane, put all its items directly
756 under the top-level menu. */
757 if (menu_items_n_panes == 1)
758 pane_string = "";
759
760 /* If the pane has a meaningful name,
761 make the pane a top-level menu item
762 with its items as a submenu beneath it. */
763 if (!keymaps && strcmp (pane_string, ""))
764 {
765 wv = xmalloc_widget_value ();
766 if (save_wv)
767 save_wv->next = wv;
768 else
769 first_wv->contents = wv;
770 wv->name = pane_string;
771 if (keymaps && !NILP (prefix))
772 wv->name++;
773 wv->value = 0;
774 wv->enabled = 1;
162d2499 775 wv->button_type = BUTTON_TYPE_NONE;
2d10309f 776 wv->help = Qnil;
485015ca
GV
777 save_wv = wv;
778 prev_wv = 0;
779 }
780 else if (first_pane)
781 {
782 save_wv = wv;
783 prev_wv = 0;
784 }
785 first_pane = 0;
786 i += MENU_ITEMS_PANE_LENGTH;
787 }
788 else
789 {
790 /* Create a new item within current pane. */
b65a2f83 791 Lisp_Object item_name, enable, descrip, def, type, selected, help;
b65a2f83 792
29250851
JR
793 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
794 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
795 descrip = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
796 def = AREF (menu_items, i + MENU_ITEMS_ITEM_DEFINITION);
797 type = AREF (menu_items, i + MENU_ITEMS_ITEM_TYPE);
798 selected = AREF (menu_items, i + MENU_ITEMS_ITEM_SELECTED);
799 help = AREF (menu_items, i + MENU_ITEMS_ITEM_HELP);
162d2499 800
1f06d367 801 if (STRINGP (item_name))
29250851 802 {
1f06d367
JR
803 if (unicode_append_menu)
804 item_name = ENCODE_UTF_8 (item_name);
805 else if (STRING_MULTIBYTE (item_name))
806 item_name = ENCODE_SYSTEM (item_name);
807
6ed09cf0 808 ASET (menu_items, i + MENU_ITEMS_ITEM_NAME, item_name);
29250851 809 }
1f06d367
JR
810
811 if (STRINGP (descrip) && STRING_MULTIBYTE (descrip))
29250851
JR
812 {
813 descrip = ENCODE_SYSTEM (descrip);
6ed09cf0 814 ASET (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY, descrip);
29250851 815 }
485015ca
GV
816
817 wv = xmalloc_widget_value ();
177c0ea7 818 if (prev_wv)
485015ca 819 prev_wv->next = wv;
177c0ea7 820 else
485015ca 821 save_wv->contents = wv;
d5db4077 822 wv->name = (char *) SDATA (item_name);
485015ca 823 if (!NILP (descrip))
d5db4077 824 wv->key = (char *) SDATA (descrip);
485015ca
GV
825 wv->value = 0;
826 /* Use the contents index as call_data, since we are
2cd23960 827 restricted to 16-bits. */
e59fe83b 828 wv->call_data = !NILP (def) ? (void *) (EMACS_INT) i : 0;
485015ca 829 wv->enabled = !NILP (enable);
162d2499
JR
830
831 if (NILP (type))
832 wv->button_type = BUTTON_TYPE_NONE;
833 else if (EQ (type, QCtoggle))
834 wv->button_type = BUTTON_TYPE_TOGGLE;
835 else if (EQ (type, QCradio))
836 wv->button_type = BUTTON_TYPE_RADIO;
837 else
838 abort ();
839
840 wv->selected = !NILP (selected);
df80fd9d 841
d1fffd1d
JR
842 if (!STRINGP (help))
843 help = Qnil;
844
845 wv->help = help;
7d8e57da 846
485015ca
GV
847 prev_wv = wv;
848
849 i += MENU_ITEMS_ITEM_LENGTH;
850 }
851 }
852
853 /* Deal with the title, if it is non-nil. */
854 if (!NILP (title))
855 {
856 widget_value *wv_title = xmalloc_widget_value ();
857 widget_value *wv_sep = xmalloc_widget_value ();
858
859 /* Maybe replace this separator with a bitmap or owner-draw item
860 so that it looks better. Having two separators looks odd. */
861 wv_sep->name = "--";
862 wv_sep->next = first_wv->contents;
2d10309f 863 wv_sep->help = Qnil;
485015ca 864
1f06d367
JR
865 if (unicode_append_menu)
866 title = ENCODE_UTF_8 (title);
867 else if (STRING_MULTIBYTE (title))
6915ded0 868 title = ENCODE_SYSTEM (title);
1f06d367 869
d5db4077 870 wv_title->name = (char *) SDATA (title);
02067692
SM
871 wv_title->enabled = TRUE;
872 wv_title->title = TRUE;
162d2499 873 wv_title->button_type = BUTTON_TYPE_NONE;
2d10309f 874 wv_title->help = Qnil;
485015ca
GV
875 wv_title->next = wv_sep;
876 first_wv->contents = wv_title;
877 }
878
df80fd9d
JR
879 /* No selection has been chosen yet. */
880 menu_item_selection = 0;
881
485015ca 882 /* Actually create the menu. */
ace9b298 883 current_popup_menu = menu = CreatePopupMenu ();
485015ca 884 fill_in_menu (menu, first_wv->contents);
162d2499 885
485015ca 886 /* Adjust coordinates to be root-window-relative. */
ee78dc32
GV
887 pos.x = x;
888 pos.y = y;
fbd6baed 889 ClientToScreen (FRAME_W32_WINDOW (f), &pos);
485015ca 890
ee78dc32 891 /* Display the menu. */
177c0ea7 892 menu_item_selection = SendMessage (FRAME_W32_WINDOW (f),
485015ca
GV
893 WM_EMACS_TRACKPOPUPMENU,
894 (WPARAM)menu, (LPARAM)&pos);
014510b0
GV
895
896 /* Clean up extraneous mouse events which might have been generated
897 during the call. */
898 discard_mouse_events ();
38f2b112 899 FRAME_X_DISPLAY_INFO (f)->grabbed = 0;
014510b0 900
86fb1a79
JR
901 /* Free the widget_value objects we used to specify the contents. */
902 free_menubar_widget_value_tree (first_wv);
903
485015ca
GV
904 DestroyMenu (menu);
905
563cd4c0
JR
906 /* Free the owner-drawn and help-echo menu strings. */
907 w32_free_menu_strings (FRAME_W32_WINDOW (f));
5339f50c 908 f->output_data.w32->menubar_active = 0;
563cd4c0 909
ee78dc32
GV
910 /* Find the selected item, and its pane, to return
911 the proper value. */
485015ca 912 if (menu_item_selection != 0)
ee78dc32 913 {
485015ca
GV
914 Lisp_Object prefix, entry;
915
fe5a0162 916 prefix = entry = Qnil;
485015ca
GV
917 i = 0;
918 while (i < menu_items_used)
919 {
6ed09cf0 920 if (EQ (AREF (menu_items, i), Qnil))
485015ca
GV
921 {
922 subprefix_stack[submenu_depth++] = prefix;
923 prefix = entry;
924 i++;
925 }
6ed09cf0 926 else if (EQ (AREF (menu_items, i), Qlambda))
485015ca
GV
927 {
928 prefix = subprefix_stack[--submenu_depth];
929 i++;
930 }
6ed09cf0 931 else if (EQ (AREF (menu_items, i), Qt))
485015ca 932 {
6ed09cf0 933 prefix = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
485015ca
GV
934 i += MENU_ITEMS_PANE_LENGTH;
935 }
936 /* Ignore a nil in the item list.
937 It's meaningful only for dialog boxes. */
6ed09cf0 938 else if (EQ (AREF (menu_items, i), Qquote))
485015ca
GV
939 i += 1;
940 else
941 {
6ed09cf0 942 entry = AREF (menu_items, i + MENU_ITEMS_ITEM_VALUE);
485015ca
GV
943 if (menu_item_selection == i)
944 {
945 if (keymaps != 0)
946 {
947 int j;
948
949 entry = Fcons (entry, Qnil);
950 if (!NILP (prefix))
951 entry = Fcons (prefix, entry);
952 for (j = submenu_depth - 1; j >= 0; j--)
953 if (!NILP (subprefix_stack[j]))
954 entry = Fcons (subprefix_stack[j], entry);
955 }
956 return entry;
957 }
958 i += MENU_ITEMS_ITEM_LENGTH;
959 }
960 }
ee78dc32 961 }
f3e0a6de
JR
962 else if (!for_click)
963 /* Make "Cancel" equivalent to C-g. */
964 Fsignal (Qquit, Qnil);
014510b0 965
ee78dc32
GV
966 return Qnil;
967}
485015ca 968\f
ee78dc32 969
ace9b298 970#ifdef HAVE_DIALOGS
31403b24
JR
971/* TODO: On Windows, there are two ways of defining a dialog.
972
973 1. Create a predefined dialog resource and include it in nt/emacs.rc.
974 Using this method, we could then set the titles and make unneeded
975 buttons invisible before displaying the dialog. Everything would
976 be a fixed size though, so there is a risk that text does not
977 fit on a button.
978 2. Create the dialog template in memory on the fly. This allows us
979 to size the dialog and buttons dynamically, probably giving more
980 natural looking results for dialogs with few buttons, and eliminating
981 the problem of text overflowing the buttons. But the API for this is
982 quite complex - structures have to be allocated in particular ways,
983 text content is tacked onto the end of structures in variable length
984 arrays with further structures tacked on after these, there are
985 certain alignment requirements for all this, and we have to
986 measure all the text and convert to "dialog coordinates" to figure
987 out how big to make everything.
988
989 For now, we'll just stick with menus for dialogs that are more
990 complicated than simple yes/no type questions for which we can use
991 the MessageBox function.
992*/
38fecd52 993
485015ca 994static char * button_names [] = {
ee78dc32 995 "button1", "button2", "button3", "button4", "button5",
485015ca 996 "button6", "button7", "button8", "button9", "button10" };
ee78dc32
GV
997
998static Lisp_Object
b56ceb92
JB
999w32_dialog_show (FRAME_PTR f, int keymaps,
1000 Lisp_Object title, Lisp_Object header,
1001 char **error)
ee78dc32
GV
1002{
1003 int i, nb_buttons=0;
ee78dc32 1004 char dialog_name[6];
485015ca
GV
1005 int menu_item_selection;
1006
fe5a0162 1007 widget_value *wv, *first_wv = 0, *prev_wv = 0;
485015ca 1008
ee78dc32
GV
1009 /* Number of elements seen so far, before boundary. */
1010 int left_count = 0;
1011 /* 1 means we've seen the boundary between left-hand elts and right-hand. */
1012 int boundary_seen = 0;
485015ca 1013
ee78dc32 1014 *error = NULL;
485015ca 1015
ee78dc32
GV
1016 if (menu_items_n_panes > 1)
1017 {
1018 *error = "Multiple panes in dialog box";
1019 return Qnil;
1020 }
485015ca 1021
ee78dc32
GV
1022 /* Create a tree of widget_value objects
1023 representing the text label and buttons. */
1024 {
1025 Lisp_Object pane_name, prefix;
1026 char *pane_string;
6ed09cf0
RS
1027 pane_name = AREF (menu_items, MENU_ITEMS_PANE_NAME);
1028 prefix = AREF (menu_items, MENU_ITEMS_PANE_PREFIX);
ee78dc32 1029 pane_string = (NILP (pane_name)
177c0ea7 1030 ? "" : (char *) SDATA (pane_name));
485015ca 1031 prev_wv = xmalloc_widget_value ();
ee78dc32
GV
1032 prev_wv->value = pane_string;
1033 if (keymaps && !NILP (prefix))
1034 prev_wv->name++;
1035 prev_wv->enabled = 1;
1036 prev_wv->name = "message";
2d10309f 1037 prev_wv->help = Qnil;
ee78dc32 1038 first_wv = prev_wv;
177c0ea7 1039
ee78dc32
GV
1040 /* Loop over all panes and items, filling in the tree. */
1041 i = MENU_ITEMS_PANE_LENGTH;
1042 while (i < menu_items_used)
1043 {
177c0ea7 1044
ee78dc32 1045 /* Create a new item within current pane. */
b65a2f83 1046 Lisp_Object item_name, enable, descrip, help;
b65a2f83 1047
6ed09cf0
RS
1048 item_name = AREF (menu_items, i + MENU_ITEMS_ITEM_NAME);
1049 enable = AREF (menu_items, i + MENU_ITEMS_ITEM_ENABLE);
1050 descrip = AREF (menu_items, i + MENU_ITEMS_ITEM_EQUIV_KEY);
1051 help = AREF (menu_items, i + MENU_ITEMS_ITEM_HELP);
177c0ea7 1052
ee78dc32
GV
1053 if (NILP (item_name))
1054 {
1055 free_menubar_widget_value_tree (first_wv);
1056 *error = "Submenu in dialog items";
1057 return Qnil;
1058 }
1059 if (EQ (item_name, Qquote))
1060 {
1061 /* This is the boundary between left-side elts
1062 and right-side elts. Stop incrementing right_count. */
1063 boundary_seen = 1;
1064 i++;
1065 continue;
1066 }
485015ca 1067 if (nb_buttons >= 9)
ee78dc32
GV
1068 {
1069 free_menubar_widget_value_tree (first_wv);
1070 *error = "Too many dialog items";
1071 return Qnil;
1072 }
485015ca
GV
1073
1074 wv = xmalloc_widget_value ();
ee78dc32
GV
1075 prev_wv->next = wv;
1076 wv->name = (char *) button_names[nb_buttons];
1077 if (!NILP (descrip))
d5db4077
KR
1078 wv->key = (char *) SDATA (descrip);
1079 wv->value = (char *) SDATA (item_name);
6ed09cf0 1080 wv->call_data = (void *) &AREF (menu_items, i);
ee78dc32 1081 wv->enabled = !NILP (enable);
2d10309f 1082 wv->help = Qnil;
ee78dc32 1083 prev_wv = wv;
485015ca 1084
ee78dc32
GV
1085 if (! boundary_seen)
1086 left_count++;
485015ca 1087
ee78dc32
GV
1088 nb_buttons++;
1089 i += MENU_ITEMS_ITEM_LENGTH;
1090 }
485015ca 1091
ee78dc32
GV
1092 /* If the boundary was not specified,
1093 by default put half on the left and half on the right. */
1094 if (! boundary_seen)
1095 left_count = nb_buttons - nb_buttons / 2;
485015ca
GV
1096
1097 wv = xmalloc_widget_value ();
ee78dc32 1098 wv->name = dialog_name;
2d10309f 1099 wv->help = Qnil;
485015ca 1100
d23928c7
NR
1101 /* Frame title: 'Q' = Question, 'I' = Information.
1102 Can also have 'E' = Error if, one day, we want
1103 a popup for errors. */
ed3751c8 1104 if (NILP (header))
d23928c7
NR
1105 dialog_name[0] = 'Q';
1106 else
1107 dialog_name[0] = 'I';
1108
ee78dc32
GV
1109 /* Dialog boxes use a really stupid name encoding
1110 which specifies how many buttons to use
d23928c7 1111 and how many buttons are on the right. */
ee78dc32
GV
1112 dialog_name[1] = '0' + nb_buttons;
1113 dialog_name[2] = 'B';
1114 dialog_name[3] = 'R';
1115 /* Number of buttons to put on the right. */
1116 dialog_name[4] = '0' + nb_buttons - left_count;
1117 dialog_name[5] = 0;
1118 wv->contents = first_wv;
1119 first_wv = wv;
1120 }
485015ca 1121
ee78dc32 1122 /* Actually create the dialog. */
485015ca 1123 dialog_id = widget_id_tick++;
ee78dc32 1124 menu = lw_create_widget (first_wv->name, "dialog", dialog_id, first_wv,
fbd6baed 1125 f->output_data.w32->widget, 1, 0,
ee78dc32 1126 dialog_selection_callback, 0);
02067692 1127 lw_modify_all_widgets (dialog_id, first_wv->contents, TRUE);
485015ca 1128
ee78dc32
GV
1129 /* Free the widget_value objects we used to specify the contents. */
1130 free_menubar_widget_value_tree (first_wv);
485015ca 1131
ee78dc32
GV
1132 /* No selection has been chosen yet. */
1133 menu_item_selection = 0;
485015ca 1134
ee78dc32
GV
1135 /* Display the menu. */
1136 lw_pop_up_all_widgets (dialog_id);
485015ca 1137
ee78dc32 1138 /* Process events that apply to the menu. */
485015ca 1139 popup_get_selection ((XEvent *) 0, FRAME_X_DISPLAY_INFO (f), dialog_id);
ee78dc32 1140
177c0ea7 1141 lw_destroy_all_widgets (dialog_id);
ee78dc32 1142
ee78dc32
GV
1143 /* Find the selected item, and its pane, to return
1144 the proper value. */
1145 if (menu_item_selection != 0)
1146 {
1147 Lisp_Object prefix;
485015ca 1148
ee78dc32
GV
1149 prefix = Qnil;
1150 i = 0;
1151 while (i < menu_items_used)
1152 {
1153 Lisp_Object entry;
1154
6ed09cf0 1155 if (EQ (AREF (menu_items, i), Qt))
ee78dc32 1156 {
6ed09cf0 1157 prefix = AREF (menu_items, i + MENU_ITEMS_PANE_PREFIX);
ee78dc32
GV
1158 i += MENU_ITEMS_PANE_LENGTH;
1159 }
1160 else
1161 {
6ed09cf0 1162 entry = AREF (menu_items, i + MENU_ITEMS_ITEM_VALUE);
485015ca 1163 if (menu_item_selection == i)
ee78dc32
GV
1164 {
1165 if (keymaps != 0)
1166 {
1167 entry = Fcons (entry, Qnil);
1168 if (!NILP (prefix))
1169 entry = Fcons (prefix, entry);
1170 }
1171 return entry;
1172 }
1173 i += MENU_ITEMS_ITEM_LENGTH;
1174 }
1175 }
1176 }
f3e0a6de
JR
1177 else
1178 /* Make "Cancel" equivalent to C-g. */
1179 Fsignal (Qquit, Qnil);
485015ca 1180
ee78dc32
GV
1181 return Qnil;
1182}
31403b24
JR
1183#else /* !HAVE_DIALOGS */
1184
1185/* Currently we only handle Yes No dialogs (y-or-n-p and yes-or-no-p) as
1186 simple dialogs. We could handle a few more, but I'm not aware of
1187 anywhere in Emacs that uses the other specific dialog choices that
1188 MessageBox provides. */
1189
b56ceb92
JB
1190static int
1191is_simple_dialog (Lisp_Object contents)
31403b24
JR
1192{
1193 Lisp_Object options = XCDR (contents);
1194 Lisp_Object name, yes, no, other;
1195
1196 yes = build_string ("Yes");
1197 no = build_string ("No");
1198
1199 if (!CONSP (options))
1200 return 0;
1201
1202 name = XCAR (XCAR (options));
1203 if (!CONSP (options))
1204 return 0;
1205
1206 if (!NILP (Fstring_equal (name, yes)))
1207 other = no;
1208 else if (!NILP (Fstring_equal (name, no)))
1209 other = yes;
1210 else
1211 return 0;
1212
1213 options = XCDR (options);
1214 if (!CONSP (options))
1215 return 0;
1216
1217 name = XCAR (XCAR (options));
1218 if (NILP (Fstring_equal (name, other)))
1219 return 0;
1220
1221 /* Check there are no more options. */
1222 options = XCDR (options);
1223 return !(CONSP (options));
1224}
1225
b56ceb92
JB
1226static Lisp_Object
1227simple_dialog_show (FRAME_PTR f, Lisp_Object contents, Lisp_Object header)
31403b24
JR
1228{
1229 int answer;
1230 UINT type;
31403b24
JR
1231 Lisp_Object lispy_answer = Qnil, temp = XCAR (contents);
1232
1c9b4129
JR
1233 type = MB_YESNO;
1234
1235 /* Since we only handle Yes/No dialogs, and we already checked
1236 is_simple_dialog, we don't need to worry about checking contents
1237 to see what type of dialog to use. */
31403b24 1238
1c9b4129
JR
1239 /* Use unicode if possible, so any language can be displayed. */
1240 if (unicode_message_box)
31403b24 1241 {
1c9b4129
JR
1242 WCHAR *text, *title;
1243
1244 if (STRINGP (temp))
1245 {
1246 char *utf8_text = SDATA (ENCODE_UTF_8 (temp));
1247 /* Be pessimistic about the number of characters needed.
1248 Remember characters outside the BMP will take more than
1249 one utf16 word, so we cannot simply use the character
1250 length of temp. */
1251 int utf8_len = strlen (utf8_text);
1252 text = alloca ((utf8_len + 1) * sizeof (WCHAR));
1253 utf8to16 (utf8_text, utf8_len, text);
1254 }
1255 else
1256 {
1257 text = L"";
1258 }
1259
1260 if (NILP (header))
1261 {
1262 title = L"Question";
1263 type |= MB_ICONQUESTION;
1264 }
1265 else
1266 {
1267 title = L"Information";
1268 type |= MB_ICONINFORMATION;
1269 }
1270
1271 answer = unicode_message_box (FRAME_W32_WINDOW (f), text, title, type);
31403b24
JR
1272 }
1273 else
1274 {
1c9b4129 1275 char *text, *title;
31403b24 1276
1c9b4129
JR
1277 /* Fall back on ANSI message box, but at least use system
1278 encoding so questions representable by the system codepage
1279 are encoded properly. */
1280 if (STRINGP (temp))
1281 text = SDATA (ENCODE_SYSTEM (temp));
1282 else
1283 text = "";
1284
1285 if (NILP (header))
1286 {
1287 title = "Question";
1288 type |= MB_ICONQUESTION;
1289 }
1290 else
1291 {
1292 title = "Information";
1293 type |= MB_ICONINFORMATION;
1294 }
1295
1296 answer = MessageBox (FRAME_W32_WINDOW (f), text, title, type);
1297 }
31403b24
JR
1298
1299 if (answer == IDYES)
1300 lispy_answer = build_string ("Yes");
1301 else if (answer == IDNO)
1302 lispy_answer = build_string ("No");
1303 else
1304 Fsignal (Qquit, Qnil);
1305
1306 for (temp = XCDR (contents); CONSP (temp); temp = XCDR (temp))
1307 {
1308 Lisp_Object item, name, value;
1309 item = XCAR (temp);
1310 if (CONSP (item))
1311 {
1312 name = XCAR (item);
1313 value = XCDR (item);
1314 }
1315 else
1316 {
1317 name = item;
1318 value = Qnil;
1319 }
1320
1321 if (!NILP (Fstring_equal (name, lispy_answer)))
1322 {
1323 return value;
1324 }
1325 }
1326 Fsignal (Qquit, Qnil);
1327 return Qnil;
1328}
1329#endif /* !HAVE_DIALOGS */
485015ca
GV
1330\f
1331
1332/* Is this item a separator? */
1333static int
94c97d85 1334name_is_separator (const char *name)
485015ca 1335{
94c97d85 1336 const char *start = name;
fe5a0162
SM
1337
1338 /* Check if name string consists of only dashes ('-'). */
485015ca 1339 while (*name == '-') name++;
fe5a0162
SM
1340 /* Separators can also be of the form "--:TripleSuperMegaEtched"
1341 or "--deep-shadow". We don't implement them yet, se we just treat
1342 them like normal separators. */
1343 return (*name == '\0' || start + 2 == name);
485015ca
GV
1344}
1345
1f06d367
JR
1346/* UTF8: 0xxxxxxx, 110xxxxx 10xxxxxx, 1110xxxx, 10xxxxxx, 10xxxxxx */
1347static void
1348utf8to16 (unsigned char * src, int len, WCHAR * dest)
1349{
1350 while (len > 0)
1351 {
1352 int utf16;
1353 if (*src < 0x80)
1354 {
1355 *dest = (WCHAR) *src;
1356 dest++; src++; len--;
1357 }
1358 /* Since we might get >3 byte sequences which we don't handle, ignore the extra parts. */
1359 else if (*src < 0xC0)
1360 {
1361 src++; len--;
1362 }
1363 /* 2 char UTF-8 sequence. */
1364 else if (*src < 0xE0)
1365 {
1366 *dest = (WCHAR) (((*src & 0x1f) << 6)
1367 | (*(src + 1) & 0x3f));
1368 src += 2; len -= 2; dest++;
1369 }
1370 else if (*src < 0xF0)
1371 {
1372 *dest = (WCHAR) (((*src & 0x0f) << 12)
1373 | ((*(src + 1) & 0x3f) << 6)
1374 | (*(src + 2) & 0x3f));
1375 src += 3; len -= 3; dest++;
1376 }
1377 else /* Not encodable. Insert Unicode Substitution char. */
1378 {
1379 *dest = (WCHAR) 0xfffd;
1380 src++; len--; dest++;
1381 }
1382 }
1383 *dest = 0;
1384}
1385
485015ca
GV
1386static int
1387add_menu_item (HMENU menu, widget_value *wv, HMENU item)
1388{
1389 UINT fuFlags;
af41f8a8 1390 char *out_string, *p, *q;
37ad8b63 1391 int return_value;
af41f8a8 1392 size_t nlen, orig_len;
485015ca
GV
1393
1394 if (name_is_separator (wv->name))
222456a1
JR
1395 {
1396 fuFlags = MF_SEPARATOR;
1397 out_string = NULL;
1398 }
177c0ea7 1399 else
485015ca 1400 {
070d1949 1401 if (wv->enabled)
485015ca
GV
1402 fuFlags = MF_STRING;
1403 else
1404 fuFlags = MF_STRING | MF_GRAYED;
1405
1406 if (wv->key != NULL)
1407 {
1408 out_string = alloca (strlen (wv->name) + strlen (wv->key) + 2);
1409 strcpy (out_string, wv->name);
1410 strcat (out_string, "\t");
1411 strcat (out_string, wv->key);
1412 }
1413 else
94c97d85 1414 out_string = (char *)wv->name;
485015ca 1415
af41f8a8
EZ
1416 /* Quote any special characters within the menu item's text and
1417 key binding. */
1418 nlen = orig_len = strlen (out_string);
ff25d115
JR
1419 if (unicode_append_menu)
1420 {
1421 /* With UTF-8, & cannot be part of a multibyte character. */
1422 for (p = out_string; *p; p++)
1423 {
1424 if (*p == '&')
1425 nlen++;
1426 }
1427 }
1428 else
1429 {
1430 /* If encoded with the system codepage, use multibyte string
1431 functions in case of multibyte characters that contain '&'. */
1432 for (p = out_string; *p; p = _mbsinc (p))
1433 {
1434 if (_mbsnextc (p) == '&')
1435 nlen++;
1436 }
1437 }
1438
af41f8a8 1439 if (nlen > orig_len)
ff25d115
JR
1440 {
1441 p = out_string;
1442 out_string = alloca (nlen + 1);
1443 q = out_string;
1444 while (*p)
1445 {
1446 if (unicode_append_menu)
1447 {
1448 if (*p == '&')
1449 *q++ = *p;
1450 *q++ = *p++;
1451 }
1452 else
1453 {
1454 if (_mbsnextc (p) == '&')
1455 {
1456 _mbsncpy (q, p, 1);
1457 q = _mbsinc (q);
1458 }
1459 _mbsncpy (q, p, 1);
1460 p = _mbsinc (p);
1461 q = _mbsinc (q);
1462 }
1463 }
1464 *q = '\0';
1465 }
af41f8a8 1466
d1fffd1d
JR
1467 if (item != NULL)
1468 fuFlags = MF_POPUP;
1469 else if (wv->title || wv->call_data == 0)
485015ca 1470 {
ace9b298
JR
1471 /* Only use MF_OWNERDRAW if GetMenuItemInfo is usable, since
1472 we can't deallocate the memory otherwise. */
1473 if (get_menu_item_info)
1474 {
6ed09cf0
RS
1475 out_string = (char *) local_alloc (strlen (wv->name) + 1);
1476 strcpy (out_string, wv->name);
d1fffd1d 1477#ifdef MENU_DEBUG
6ed09cf0 1478 DebPrint ("Menu: allocing %ld for owner-draw", out_string);
d1fffd1d 1479#endif
ace9b298
JR
1480 fuFlags = MF_OWNERDRAW | MF_DISABLED;
1481 }
1482 else
1483 fuFlags = MF_DISABLED;
485015ca 1484 }
1c5acb8c 1485
162d2499 1486 /* Draw radio buttons and tickboxes. */
4cdf6a6c 1487 else if (wv->selected && (wv->button_type == BUTTON_TYPE_TOGGLE ||
6f665da9 1488 wv->button_type == BUTTON_TYPE_RADIO))
4cdf6a6c 1489 fuFlags |= MF_CHECKED;
37ad8b63 1490 else
4cdf6a6c 1491 fuFlags |= MF_UNCHECKED;
485015ca 1492 }
4cdf6a6c 1493
1f06d367
JR
1494 if (unicode_append_menu && out_string)
1495 {
1496 /* Convert out_string from UTF-8 to UTF-16-LE. */
1497 int utf8_len = strlen (out_string);
1498 WCHAR * utf16_string;
1499 if (fuFlags & MF_OWNERDRAW)
1500 utf16_string = local_alloc ((utf8_len + 1) * sizeof (WCHAR));
1501 else
1502 utf16_string = alloca ((utf8_len + 1) * sizeof (WCHAR));
1503
1504 utf8to16 (out_string, utf8_len, utf16_string);
1505 return_value = unicode_append_menu (menu, fuFlags,
1506 item != NULL ? (UINT) item
1507 : (UINT) wv->call_data,
1508 utf16_string);
d749b6fa
JR
1509 if (!return_value)
1510 {
1511 /* On W9x/ME, unicode menus are not supported, though AppendMenuW
1512 apparently does exist at least in some cases and appears to be
1513 stubbed out to do nothing. out_string is UTF-8, but since
1514 our standard menus are in English and this is only going to
1515 happen the first time a menu is used, the encoding is
1516 of minor importance compared with menus not working at all. */
1517 return_value =
1518 AppendMenu (menu, fuFlags,
1519 item != NULL ? (UINT) item: (UINT) wv->call_data,
1520 out_string);
1521 /* Don't use unicode menus in future. */
1522 unicode_append_menu = NULL;
1523 }
1524
1525 if (unicode_append_menu && (fuFlags & MF_OWNERDRAW))
1f06d367
JR
1526 local_free (out_string);
1527 }
1528 else
1529 {
1530 return_value =
1531 AppendMenu (menu,
1532 fuFlags,
1533 item != NULL ? (UINT) item : (UINT) wv->call_data,
1534 out_string );
1535 }
37ad8b63
JR
1536
1537 /* This must be done after the menu item is created. */
6f665da9 1538 if (!wv->title && wv->call_data != 0)
4cdf6a6c 1539 {
4cdf6a6c
AI
1540 if (set_menu_item_info)
1541 {
1542 MENUITEMINFO info;
72af86bd 1543 memset (&info, 0, sizeof (info));
4cdf6a6c
AI
1544 info.cbSize = sizeof (info);
1545 info.fMask = MIIM_DATA;
1546
d1fffd1d
JR
1547 /* Set help string for menu item. Leave it as a Lisp_Object
1548 until it is ready to be displayed, since GC can happen while
1549 menus are active. */
24ee9763
JR
1550 if (!NILP (wv->help))
1551#ifdef USE_LISP_UNION_TYPE
1552 info.dwItemData = (DWORD) (wv->help).i;
1553#else
1554 info.dwItemData = (DWORD) (wv->help);
1555#endif
4cdf6a6c
AI
1556 if (wv->button_type == BUTTON_TYPE_RADIO)
1557 {
1558 /* CheckMenuRadioItem allows us to differentiate TOGGLE and
1559 RADIO items, but is not available on NT 3.51 and earlier. */
1560 info.fMask |= MIIM_TYPE | MIIM_STATE;
1561 info.fType = MFT_RADIOCHECK | MFT_STRING;
1562 info.dwTypeData = out_string;
1563 info.fState = wv->selected ? MFS_CHECKED : MFS_UNCHECKED;
1564 }
1565
1566 set_menu_item_info (menu,
1567 item != NULL ? (UINT) item : (UINT) wv->call_data,
1568 FALSE, &info);
1569 }
1570 }
37ad8b63 1571 return return_value;
485015ca
GV
1572}
1573
1574/* Construct native Windows menu(bar) based on widget_value tree. */
15d36dee 1575int
485015ca
GV
1576fill_in_menu (HMENU menu, widget_value *wv)
1577{
1578 int items_added = 0;
ee78dc32 1579
485015ca
GV
1580 for ( ; wv != NULL; wv = wv->next)
1581 {
1582 if (wv->contents)
1583 {
1584 HMENU sub_menu = CreatePopupMenu ();
1585
1586 if (sub_menu == NULL)
1587 return 0;
1588
1589 if (!fill_in_menu (sub_menu, wv->contents) ||
1590 !add_menu_item (menu, wv, sub_menu))
1591 {
1592 DestroyMenu (sub_menu);
1593 return 0;
1594 }
1595 }
1596 else
1597 {
1598 if (!add_menu_item (menu, wv, NULL))
1599 return 0;
1600 }
1601 }
1602 return 1;
1603}
1604
7d8e57da
JR
1605/* Display help string for currently pointed to menu item. Not
1606 supported on NT 3.51 and earlier, as GetMenuItemInfo is not
1607 available. */
1608void
59a86c99 1609w32_menu_display_help (HWND owner, HMENU menu, UINT item, UINT flags)
7d8e57da 1610{
7d8e57da
JR
1611 if (get_menu_item_info)
1612 {
1c5acb8c
JR
1613 struct frame *f = x_window_to_frame (&one_w32_display_info, owner);
1614 Lisp_Object frame, help;
7d8e57da 1615
94c7f257
JR
1616 /* No help echo on owner-draw menu items, or when the keyboard is used
1617 to navigate the menus, since tooltips are distracting if they pop
1618 up elsewhere. */
1619 if (flags & MF_OWNERDRAW || flags & MF_POPUP
1620 || !(flags & MF_MOUSESELECT))
ace9b298
JR
1621 help = Qnil;
1622 else
1623 {
1624 MENUITEMINFO info;
7d8e57da 1625
72af86bd 1626 memset (&info, 0, sizeof (info));
ace9b298
JR
1627 info.cbSize = sizeof (info);
1628 info.fMask = MIIM_DATA;
1629 get_menu_item_info (menu, item, FALSE, &info);
1630
24ee9763
JR
1631#ifdef USE_LISP_UNION_TYPE
1632 help = info.dwItemData ? (Lisp_Object) ((EMACS_INT) info.dwItemData)
1633 : Qnil;
1634#else
d1fffd1d 1635 help = info.dwItemData ? (Lisp_Object) info.dwItemData : Qnil;
24ee9763 1636#endif
ace9b298 1637 }
e5cd3d11 1638
1c5acb8c
JR
1639 /* Store the help echo in the keyboard buffer as the X toolkit
1640 version does, rather than directly showing it. This seems to
1641 solve the GC problems that were present when we based the
1642 Windows code on the non-toolkit version. */
1643 if (f)
1644 {
1645 XSETFRAME (frame, f);
1646 kbd_buffer_store_help_event (frame, help);
1647 }
1648 else
1649 /* X version has a loop through frames here, which doesn't
1650 appear to do anything, unless it has some side effect. */
1651 show_help_echo (help, Qnil, Qnil, Qnil, 1);
7d8e57da
JR
1652 }
1653}
1654
d1fffd1d 1655/* Free memory used by owner-drawn strings. */
ace9b298 1656static void
b56ceb92 1657w32_free_submenu_strings (HMENU menu)
ace9b298
JR
1658{
1659 int i, num = GetMenuItemCount (menu);
1660 for (i = 0; i < num; i++)
1661 {
1662 MENUITEMINFO info;
72af86bd 1663 memset (&info, 0, sizeof (info));
ace9b298 1664 info.cbSize = sizeof (info);
d1fffd1d 1665 info.fMask = MIIM_DATA | MIIM_TYPE | MIIM_SUBMENU;
7d8e57da 1666
ace9b298
JR
1667 get_menu_item_info (menu, i, TRUE, &info);
1668
d1fffd1d
JR
1669 /* Owner-drawn names are held in dwItemData. */
1670 if ((info.fType & MF_OWNERDRAW) && info.dwItemData)
1671 {
1672#ifdef MENU_DEBUG
1673 DebPrint ("Menu: freeing %ld for owner-draw", info.dwItemData);
1674#endif
6ed09cf0 1675 local_free (info.dwItemData);
d1fffd1d 1676 }
ace9b298
JR
1677
1678 /* Recurse down submenus. */
1679 if (info.hSubMenu)
1680 w32_free_submenu_strings (info.hSubMenu);
1681 }
1682}
1683
1684void
b56ceb92 1685w32_free_menu_strings (HWND hwnd)
ace9b298
JR
1686{
1687 HMENU menu = current_popup_menu;
1688
1689 if (get_menu_item_info)
1690 {
1691 /* If there is no popup menu active, free the strings from the frame's
1692 menubar. */
1693 if (!menu)
1694 menu = GetMenu (hwnd);
1695
1696 if (menu)
1697 w32_free_submenu_strings (menu);
1698 }
1699
1700 current_popup_menu = NULL;
1701}
7d8e57da 1702
485015ca 1703#endif /* HAVE_MENUS */
ace9b298 1704
e3135734
CY
1705/* The following is used by delayed window autoselection. */
1706
1707DEFUN ("menu-or-popup-active-p", Fmenu_or_popup_active_p, Smenu_or_popup_active_p, 0, 0, 0,
1708 doc: /* Return t if a menu or popup dialog is active on selected frame. */)
5842a27b 1709 (void)
e3135734
CY
1710{
1711#ifdef HAVE_MENUS
1712 FRAME_PTR f;
1713 f = SELECTED_FRAME ();
1714 return (f->output_data.w32->menubar_active > 0) ? Qt : Qnil;
1715#else
1716 return Qnil;
1717#endif /* HAVE_MENUS */
1718}
1719
b56ceb92
JB
1720void
1721syms_of_w32menu (void)
ee78dc32 1722{
019e3c1a 1723 globals_of_w32menu ();
485015ca 1724
ace9b298
JR
1725 current_popup_menu = NULL;
1726
019e3c1a 1727 DEFSYM (Qdebug_on_next_call, "debug-on-next-call");
fdc12c4d 1728
e5d3d18d 1729 defsubr (&Smenu_or_popup_active_p);
485015ca 1730#ifdef HAVE_MENUS
ee78dc32 1731 defsubr (&Sx_popup_dialog);
485015ca 1732#endif
ee78dc32 1733}
9785d95b
BK
1734
1735/*
1736 globals_of_w32menu is used to initialize those global variables that
1737 must always be initialized on startup even when the global variable
1738 initialized is non zero (see the function main in emacs.c).
1739 globals_of_w32menu is called from syms_of_w32menu when the global
1740 variable initialized is 0 and directly from main when initialized
1741 is non zero.
1742 */
b56ceb92
JB
1743void
1744globals_of_w32menu (void)
9785d95b
BK
1745{
1746 /* See if Get/SetMenuItemInfo functions are available. */
1747 HMODULE user32 = GetModuleHandle ("user32.dll");
1748 get_menu_item_info = (GetMenuItemInfoA_Proc) GetProcAddress (user32, "GetMenuItemInfoA");
1749 set_menu_item_info = (SetMenuItemInfoA_Proc) GetProcAddress (user32, "SetMenuItemInfoA");
1f06d367 1750 unicode_append_menu = (AppendMenuW_Proc) GetProcAddress (user32, "AppendMenuW");
1c9b4129 1751 unicode_message_box = (MessageBoxW_Proc) GetProcAddress (user32, "MessageBoxW");
9785d95b 1752}
ab5796a9
MB
1753
1754/* arch-tag: 0eaed431-bb4e-4aac-a527-95a1b4f1fed0
1755 (do not change this comment) */