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