Documented completion-styles.
[bpt/emacs.git] / src / w32fns.c
CommitLineData
e9e23e23 1/* Graphical user interface functions for the Microsoft W32 API.
0b5538bd 2 Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
76b6f707 3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
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
GV
20
21/* Added by Kevin Gallo */
22
ee78dc32 23#include <config.h>
1edf84e7
GV
24
25#include <signal.h>
ee78dc32 26#include <stdio.h>
1edf84e7
GV
27#include <limits.h>
28#include <errno.h>
b00afeae 29#include <math.h>
ee78dc32
GV
30
31#include "lisp.h"
32#include "w32term.h"
33#include "frame.h"
34#include "window.h"
35#include "buffer.h"
6fc2811b 36#include "intervals.h"
10b4bc33
JR
37#include "dispextern.h"
38#include "keyboard.h"
ee78dc32 39#include "blockinput.h"
57bda87a 40#include "epaths.h"
10b4bc33
JR
41#include "character.h"
42#include "charset.h"
4587b026 43#include "coding.h"
3545439c 44#include "ccl.h"
10b4bc33 45#include "fontset.h"
6fc2811b 46#include "systime.h"
10b4bc33
JR
47#include "termhooks.h"
48#include "w32heap.h"
6fc2811b
JR
49
50#include "bitmaps/gray.xbm"
ee78dc32 51
60860eb3 52#include <commctrl.h>
ee78dc32 53#include <commdlg.h>
cb9e33d4 54#include <shellapi.h>
6fc2811b 55#include <ctype.h>
6b61353c 56#include <winspool.h>
d5781bb6 57#include <objbase.h>
ee78dc32 58
1030b26b 59#include <dlgs.h>
820eff5a 60#include <imm.h>
1030b26b
JR
61#define FILE_NAME_TEXT_FIELD edt1
62
a1fe5c00 63#include "font.h"
1cc06b86 64#include "w32font.h"
a1fe5c00 65
6cf29fe8
JR
66#ifndef FOF_NO_CONNECTED_ELEMENTS
67#define FOF_NO_CONNECTED_ELEMENTS 0x2000
68#endif
69
9785d95b
BK
70void syms_of_w32fns ();
71void globals_of_w32fns ();
72
ee78dc32 73extern void free_frame_menubar ();
6fc2811b 74extern double atof ();
9eb16b62
JR
75extern int w32_console_toggle_lock_key P_ ((int, Lisp_Object));
76extern void w32_menu_display_help P_ ((HWND, HMENU, UINT, UINT));
77extern void w32_free_menu_strings P_ ((HWND));
dfe66c5b 78extern const char *map_w32_filename P_ ((const char *, const char **));
9eb16b62 79
5ac45f98 80extern int quit_char;
ee78dc32 81
ccc2d29c
GV
82extern char *lispy_function_keys[];
83
ee78dc32 84/* The colormap for converting color names to RGB values */
fbd6baed 85Lisp_Object Vw32_color_map;
ee78dc32 86
da36a4d6 87/* Non nil if alt key presses are passed on to Windows. */
fbd6baed 88Lisp_Object Vw32_pass_alt_to_system;
da36a4d6 89
8c205c63
RS
90/* Non nil if alt key is translated to meta_modifier, nil if it is translated
91 to alt_modifier. */
fbd6baed 92Lisp_Object Vw32_alt_is_meta;
8c205c63 93
7d081355 94/* If non-zero, the windows virtual key code for an alternative quit key. */
2ba49441 95int w32_quit_key;
7d081355 96
ccc2d29c
GV
97/* Non nil if left window key events are passed on to Windows (this only
98 affects whether "tapping" the key opens the Start menu). */
99Lisp_Object Vw32_pass_lwindow_to_system;
100
101/* Non nil if right window key events are passed on to Windows (this
102 only affects whether "tapping" the key opens the Start menu). */
103Lisp_Object Vw32_pass_rwindow_to_system;
104
adcc3809
GV
105/* Virtual key code used to generate "phantom" key presses in order
106 to stop system from acting on Windows key events. */
107Lisp_Object Vw32_phantom_key_code;
108
ccc2d29c
GV
109/* Modifier associated with the left "Windows" key, or nil to act as a
110 normal key. */
111Lisp_Object Vw32_lwindow_modifier;
112
113/* Modifier associated with the right "Windows" key, or nil to act as a
114 normal key. */
115Lisp_Object Vw32_rwindow_modifier;
116
117/* Modifier associated with the "Apps" key, or nil to act as a normal
118 key. */
119Lisp_Object Vw32_apps_modifier;
120
121/* Value is nil if Num Lock acts as a function key. */
122Lisp_Object Vw32_enable_num_lock;
123
124/* Value is nil if Caps Lock acts as a function key. */
125Lisp_Object Vw32_enable_caps_lock;
126
127/* Modifier associated with Scroll Lock, or nil to act as a normal key. */
128Lisp_Object Vw32_scroll_lock_modifier;
da36a4d6 129
7ce9aaca 130/* Switch to control whether we inhibit requests for synthesized bold
6fc2811b 131 and italic versions of fonts. */
d84b082d 132int w32_enable_synthesized_fonts;
5ac45f98
GV
133
134/* Enable palette management. */
fbd6baed 135Lisp_Object Vw32_enable_palette;
5ac45f98
GV
136
137/* Control how close left/right button down events must be to
138 be converted to a middle button down event. */
2ba49441 139int w32_mouse_button_tolerance;
5ac45f98 140
84fb1139
KH
141/* Minimum interval between mouse movement (and scroll bar drag)
142 events that are passed on to the event loop. */
2ba49441 143int w32_mouse_move_interval;
84fb1139 144
74214547 145/* Flag to indicate if XBUTTON events should be passed on to Windows. */
74084731 146static int w32_pass_extra_mouse_buttons_to_system;
74214547 147
0b151762 148/* Flag to indicate if media keys should be passed on to Windows. */
74084731 149static int w32_pass_multimedia_buttons_to_system;
0b151762 150
ee78dc32
GV
151/* Non nil if no window manager is in use. */
152Lisp_Object Vx_no_window_manager;
153
d148e14d
JR
154/* If non-zero, a w32 timer that, when it expires, displays an
155 hourglass cursor on all frames. */
156static unsigned hourglass_timer = 0;
157static HWND hourglass_hwnd = NULL;
158
5f004711 159#if 0 /* TODO: Mouse cursor customization. */
ee78dc32
GV
160/* The background and shape of the mouse pointer, and shape when not
161 over text or in the modeline. */
162Lisp_Object Vx_pointer_shape, Vx_nontext_pointer_shape, Vx_mode_pointer_shape;
829b13e2 163Lisp_Object Vx_hourglass_pointer_shape, Vx_window_horizontal_drag_shape;
6fc2811b 164
ee78dc32 165/* The shape when over mouse-sensitive text. */
dfff8a69 166
ee78dc32 167Lisp_Object Vx_sensitive_text_pointer_shape;
5f004711 168#endif
ee78dc32 169
c9b2104d
JR
170#ifndef IDC_HAND
171#define IDC_HAND MAKEINTRESOURCE(32649)
172#endif
173
ee78dc32
GV
174/* Color of chars displayed in cursor box. */
175Lisp_Object Vx_cursor_fore_pixel;
176
1edf84e7 177/* Nonzero if using Windows. */
dfff8a69 178
1edf84e7
GV
179static int w32_in_use;
180
4587b026 181/* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
dfff8a69 182
4587b026
GV
183Lisp_Object Vx_pixel_size_width_font_regexp;
184
33d52f9c
GV
185/* Alist of bdf fonts and the files that define them. */
186Lisp_Object Vw32_bdf_filename_alist;
187
f46e6225 188/* A flag to control whether fonts are matched strictly or not. */
74084731 189static int w32_strict_fontnames;
1075afa9 190
c0611964
AI
191/* A flag to control whether we should only repaint if GetUpdateRect
192 indicates there is an update region. */
74084731 193static int w32_strict_painting;
c0611964 194
ee78dc32 195Lisp_Object Qnone;
ee78dc32 196Lisp_Object Qsuppress_icon;
ee78dc32 197Lisp_Object Qundefined_color;
dc220243 198Lisp_Object Qcancel_timer;
27129af9 199Lisp_Object Qfont_param;
adcc3809
GV
200Lisp_Object Qhyper;
201Lisp_Object Qsuper;
202Lisp_Object Qmeta;
203Lisp_Object Qalt;
204Lisp_Object Qctrl;
205Lisp_Object Qcontrol;
206Lisp_Object Qshift;
207
dfff8a69 208
4bf91535 209/* The ANSI codepage. */
2ba49441 210int w32_ansi_code_page;
4bf91535 211
5a8a15ec
JR
212/* Prefix for system colors. */
213#define SYSTEM_COLOR_PREFIX "System"
214#define SYSTEM_COLOR_PREFIX_LEN (sizeof (SYSTEM_COLOR_PREFIX) - 1)
215
5ac45f98
GV
216/* State variables for emulating a three button mouse. */
217#define LMOUSE 1
218#define MMOUSE 2
219#define RMOUSE 4
220
221static int button_state = 0;
fbd6baed 222static W32Msg saved_mouse_button_msg;
48094ace 223static unsigned mouse_button_timer = 0; /* non-zero when timer is active */
fbd6baed 224static W32Msg saved_mouse_move_msg;
48094ace 225static unsigned mouse_move_timer = 0;
84fb1139 226
9eb16b62
JR
227/* Window that is tracking the mouse. */
228static HWND track_mouse_window;
f60ae425 229
64f0809d
JR
230/* Multi-monitor API definitions that are not pulled from the headers
231 since we are compiling for NT 4. */
232#ifndef MONITOR_DEFAULT_TO_NEAREST
233#define MONITOR_DEFAULT_TO_NEAREST 2
234#endif
235/* MinGW headers define MONITORINFO unconditionally, but MSVC ones don't.
236 To avoid a compile error on one or the other, redefine with a new name. */
237struct MONITOR_INFO
238{
239 DWORD cbSize;
240 RECT rcMonitor;
241 RECT rcWork;
242 DWORD dwFlags;
243};
244
8e764ce0
EZ
245/* Reportedly, VS 6 does not have this in its headers. */
246#if defined(_MSC_VER) && _MSC_VER < 1300
247DECLARE_HANDLE(HMONITOR);
248#endif
249
ccc0fdaa
JR
250typedef BOOL (WINAPI * TrackMouseEvent_Proc)
251 (IN OUT LPTRACKMOUSEEVENT lpEventTrack);
820eff5a
JR
252typedef LONG (WINAPI * ImmGetCompositionString_Proc)
253 (IN HIMC context, IN DWORD index, OUT LPVOID buffer, IN DWORD bufLen);
254typedef HIMC (WINAPI * ImmGetContext_Proc) (IN HWND window);
64f0809d
JR
255typedef HMONITOR (WINAPI * MonitorFromPoint_Proc) (IN POINT pt, IN DWORD flags);
256typedef BOOL (WINAPI * GetMonitorInfo_Proc)
257 (IN HMONITOR monitor, OUT struct MONITOR_INFO* info);
f60ae425 258
ccc0fdaa
JR
259TrackMouseEvent_Proc track_mouse_event_fn = NULL;
260ClipboardSequence_Proc clipboard_sequence_fn = NULL;
820eff5a
JR
261ImmGetCompositionString_Proc get_composition_string_fn = NULL;
262ImmGetContext_Proc get_ime_context_fn = NULL;
64f0809d
JR
263MonitorFromPoint_Proc monitor_from_point_fn = NULL;
264GetMonitorInfo_Proc get_monitor_info_fn = NULL;
820eff5a 265
b4005349 266extern AppendMenuW_Proc unicode_append_menu;
9eb16b62 267
820eff5a
JR
268/* Flag to selectively ignore WM_IME_CHAR messages. */
269static int ignore_ime_char = 0;
270
93fbe8b7 271/* W95 mousewheel handler */
7d0393cf 272unsigned int msh_mousewheel = 0;
93fbe8b7 273
48094ace 274/* Timers */
84fb1139
KH
275#define MOUSE_BUTTON_ID 1
276#define MOUSE_MOVE_ID 2
48094ace 277#define MENU_FREE_ID 3
d148e14d 278#define HOURGLASS_ID 4
48094ace
JR
279/* The delay (milliseconds) before a menu is freed after WM_EXITMENULOOP
280 is received. */
281#define MENU_FREE_DELAY 1000
282static unsigned menu_free_timer = 0;
5ac45f98 283
ee78dc32 284/* The below are defined in frame.c. */
dfff8a69 285
ee78dc32
GV
286extern Lisp_Object Vwindow_system_version;
287
937e601e
AI
288#ifdef GLYPH_DEBUG
289int image_cache_refcount, dpyinfo_refcount;
290#endif
291
292
fbd6baed 293/* From w32term.c. */
2ba49441 294extern int w32_num_mouse_buttons;
ccc2d29c 295extern Lisp_Object Vw32_recognize_altgr;
5ac45f98 296
65906840 297extern HWND w32_system_caret_hwnd;
93f2ca61 298
65906840
JR
299extern int w32_system_caret_height;
300extern int w32_system_caret_x;
301extern int w32_system_caret_y;
93f2ca61
JR
302extern int w32_use_visible_system_caret;
303
d285988b 304static HWND w32_visible_system_caret_hwnd;
65906840 305
5d22ded9
JR
306/* From w32menu.c */
307extern HMENU current_popup_menu;
58e55497 308static int menubar_in_use = 0;
5d22ded9 309
cbfedb1c 310/* From w32uniscribe.c */
cbfedb1c
JR
311extern void syms_of_w32uniscribe ();
312extern int uniscribe_available;
cbfedb1c 313
d148e14d 314/* Function prototypes for hourglass support. */
1391cd54
JR
315static void w32_show_hourglass P_ ((struct frame *));
316static void w32_hide_hourglass P_ ((void));
d148e14d
JR
317
318
ee78dc32 319\f
1edf84e7
GV
320/* Error if we are not connected to MS-Windows. */
321void
322check_w32 ()
323{
324 if (! w32_in_use)
325 error ("MS-Windows not in use or not initialized");
326}
327
328/* Nonzero if we can use mouse menus.
329 You should not call this unless HAVE_MENUS is defined. */
7d0393cf 330
1edf84e7
GV
331int
332have_menus_p ()
333{
334 return w32_in_use;
335}
336
ee78dc32 337/* Extract a frame as a FRAME_PTR, defaulting to the selected frame
fbd6baed 338 and checking validity for W32. */
ee78dc32
GV
339
340FRAME_PTR
341check_x_frame (frame)
342 Lisp_Object frame;
343{
344 FRAME_PTR f;
345
346 if (NILP (frame))
6fc2811b 347 frame = selected_frame;
b7826503 348 CHECK_LIVE_FRAME (frame);
6fc2811b 349 f = XFRAME (frame);
fbd6baed 350 if (! FRAME_W32_P (f))
21517c3d 351 error ("Non-W32 frame used");
ee78dc32
GV
352 return f;
353}
354
7d0393cf 355/* Let the user specify a display with a frame.
fbd6baed 356 nil stands for the selected frame--or, if that is not a w32 frame,
ee78dc32
GV
357 the first display on the list. */
358
6d906347 359struct w32_display_info *
ee78dc32
GV
360check_x_display_info (frame)
361 Lisp_Object frame;
362{
363 if (NILP (frame))
364 {
6fc2811b 365 struct frame *sf = XFRAME (selected_frame);
7d0393cf 366
6fc2811b
JR
367 if (FRAME_W32_P (sf) && FRAME_LIVE_P (sf))
368 return FRAME_W32_DISPLAY_INFO (sf);
ee78dc32 369 else
fbd6baed 370 return &one_w32_display_info;
ee78dc32
GV
371 }
372 else if (STRINGP (frame))
373 return x_display_info_for_name (frame);
374 else
375 {
376 FRAME_PTR f;
377
b7826503 378 CHECK_LIVE_FRAME (frame);
ee78dc32 379 f = XFRAME (frame);
fbd6baed 380 if (! FRAME_W32_P (f))
21517c3d 381 error ("Non-W32 frame used");
fbd6baed 382 return FRAME_W32_DISPLAY_INFO (f);
ee78dc32
GV
383 }
384}
385\f
fbd6baed 386/* Return the Emacs frame-object corresponding to an w32 window.
ee78dc32
GV
387 It could be the frame's main window or an icon window. */
388
389/* This function can be called during GC, so use GC_xxx type test macros. */
390
391struct frame *
392x_window_to_frame (dpyinfo, wdesc)
fbd6baed 393 struct w32_display_info *dpyinfo;
ee78dc32
GV
394 HWND wdesc;
395{
396 Lisp_Object tail, frame;
397 struct frame *f;
398
8e50cc2d 399 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
ee78dc32 400 {
8e713be6 401 frame = XCAR (tail);
8e50cc2d 402 if (!FRAMEP (frame))
ee78dc32
GV
403 continue;
404 f = XFRAME (frame);
2d764c78 405 if (!FRAME_W32_P (f) || FRAME_W32_DISPLAY_INFO (f) != dpyinfo)
ee78dc32 406 continue;
f79e6790 407
fbd6baed 408 if (FRAME_W32_WINDOW (f) == wdesc)
ee78dc32
GV
409 return f;
410 }
411 return 0;
412}
413
414\f
937e601e
AI
415static Lisp_Object unwind_create_frame P_ ((Lisp_Object));
416static Lisp_Object unwind_create_tip_frame P_ ((Lisp_Object));
0962822d
JB
417static void my_create_window P_ ((struct frame *));
418static void my_create_tip_window P_ ((struct frame *));
6d906347 419
767b1ff0 420/* TODO: Native Input Method support; see x_create_im. */
6fc2811b
JR
421void x_set_foreground_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
422void x_set_background_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
423void x_set_mouse_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
424void x_set_cursor_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
425void x_set_border_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
426void x_set_cursor_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
427void x_set_icon_type P_ ((struct frame *, Lisp_Object, Lisp_Object));
428void x_set_icon_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
6fc2811b 429void x_explicitly_set_name P_ ((struct frame *, Lisp_Object, Lisp_Object));
6fc2811b 430void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
6fc2811b 431void x_set_title P_ ((struct frame *, Lisp_Object, Lisp_Object));
6fc2811b 432void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object));
3cf3436e
JR
433static void x_edge_detection P_ ((struct frame *, struct image *, Lisp_Object,
434 Lisp_Object));
ee78dc32 435
ee78dc32 436
ee78dc32 437\f
ee78dc32
GV
438
439/* Store the screen positions of frame F into XPTR and YPTR.
440 These are the positions of the containing window manager window,
441 not Emacs's own window. */
442
443void
444x_real_positions (f, xptr, yptr)
445 FRAME_PTR f;
446 int *xptr, *yptr;
447{
448 POINT pt;
f7b9d4d1 449 RECT rect;
3c190163 450
ee04257d
JR
451 /* Get the bounds of the WM window. */
452 GetWindowRect (FRAME_W32_WINDOW (f), &rect);
f7b9d4d1 453
ee04257d
JR
454 pt.x = 0;
455 pt.y = 0;
ee78dc32 456
ee04257d
JR
457 /* Convert (0, 0) in the client area to screen co-ordinates. */
458 ClientToScreen (FRAME_W32_WINDOW (f), &pt);
ee78dc32 459
f7b9d4d1 460 /* Remember x_pixels_diff and y_pixels_diff. */
be786000
KS
461 f->x_pixels_diff = pt.x - rect.left;
462 f->y_pixels_diff = pt.y - rect.top;
f7b9d4d1 463
ee04257d
JR
464 *xptr = rect.left;
465 *yptr = rect.top;
ee78dc32
GV
466}
467
ee78dc32
GV
468\f
469
74e1aeec
JR
470DEFUN ("w32-define-rgb-color", Fw32_define_rgb_color,
471 Sw32_define_rgb_color, 4, 4, 0,
23f250f4 472 doc: /* Convert RGB numbers to a Windows color reference and associate with NAME.
02b39a28 473This adds or updates a named color to `w32-color-map', making it
74e1aeec
JR
474available for use. The original entry's RGB ref is returned, or nil
475if the entry is new. */)
5ac45f98
GV
476 (red, green, blue, name)
477 Lisp_Object red, green, blue, name;
ee78dc32 478{
5ac45f98
GV
479 Lisp_Object rgb;
480 Lisp_Object oldrgb = Qnil;
481 Lisp_Object entry;
482
b7826503
PJ
483 CHECK_NUMBER (red);
484 CHECK_NUMBER (green);
485 CHECK_NUMBER (blue);
486 CHECK_STRING (name);
ee78dc32 487
74084731 488 XSETINT (rgb, RGB (XUINT (red), XUINT (green), XUINT (blue)));
ee78dc32 489
5ac45f98 490 BLOCK_INPUT;
ee78dc32 491
fbd6baed
GV
492 /* replace existing entry in w32-color-map or add new entry. */
493 entry = Fassoc (name, Vw32_color_map);
5ac45f98
GV
494 if (NILP (entry))
495 {
496 entry = Fcons (name, rgb);
fbd6baed 497 Vw32_color_map = Fcons (entry, Vw32_color_map);
5ac45f98
GV
498 }
499 else
500 {
501 oldrgb = Fcdr (entry);
502 Fsetcdr (entry, rgb);
503 }
504
505 UNBLOCK_INPUT;
506
507 return (oldrgb);
ee78dc32
GV
508}
509
fbd6baed 510/* The default colors for the w32 color map */
7d0393cf 511typedef struct colormap_t
ee78dc32
GV
512{
513 char *name;
514 COLORREF colorref;
515} colormap_t;
516
7d0393cf 517colormap_t w32_color_map[] =
ee78dc32 518{
1da8a614
GV
519 {"snow" , PALETTERGB (255,250,250)},
520 {"ghost white" , PALETTERGB (248,248,255)},
521 {"GhostWhite" , PALETTERGB (248,248,255)},
522 {"white smoke" , PALETTERGB (245,245,245)},
523 {"WhiteSmoke" , PALETTERGB (245,245,245)},
524 {"gainsboro" , PALETTERGB (220,220,220)},
525 {"floral white" , PALETTERGB (255,250,240)},
526 {"FloralWhite" , PALETTERGB (255,250,240)},
527 {"old lace" , PALETTERGB (253,245,230)},
528 {"OldLace" , PALETTERGB (253,245,230)},
529 {"linen" , PALETTERGB (250,240,230)},
530 {"antique white" , PALETTERGB (250,235,215)},
531 {"AntiqueWhite" , PALETTERGB (250,235,215)},
532 {"papaya whip" , PALETTERGB (255,239,213)},
533 {"PapayaWhip" , PALETTERGB (255,239,213)},
534 {"blanched almond" , PALETTERGB (255,235,205)},
535 {"BlanchedAlmond" , PALETTERGB (255,235,205)},
536 {"bisque" , PALETTERGB (255,228,196)},
537 {"peach puff" , PALETTERGB (255,218,185)},
538 {"PeachPuff" , PALETTERGB (255,218,185)},
539 {"navajo white" , PALETTERGB (255,222,173)},
540 {"NavajoWhite" , PALETTERGB (255,222,173)},
541 {"moccasin" , PALETTERGB (255,228,181)},
542 {"cornsilk" , PALETTERGB (255,248,220)},
543 {"ivory" , PALETTERGB (255,255,240)},
544 {"lemon chiffon" , PALETTERGB (255,250,205)},
545 {"LemonChiffon" , PALETTERGB (255,250,205)},
546 {"seashell" , PALETTERGB (255,245,238)},
547 {"honeydew" , PALETTERGB (240,255,240)},
548 {"mint cream" , PALETTERGB (245,255,250)},
549 {"MintCream" , PALETTERGB (245,255,250)},
550 {"azure" , PALETTERGB (240,255,255)},
551 {"alice blue" , PALETTERGB (240,248,255)},
552 {"AliceBlue" , PALETTERGB (240,248,255)},
553 {"lavender" , PALETTERGB (230,230,250)},
554 {"lavender blush" , PALETTERGB (255,240,245)},
555 {"LavenderBlush" , PALETTERGB (255,240,245)},
556 {"misty rose" , PALETTERGB (255,228,225)},
557 {"MistyRose" , PALETTERGB (255,228,225)},
558 {"white" , PALETTERGB (255,255,255)},
559 {"black" , PALETTERGB ( 0, 0, 0)},
560 {"dark slate gray" , PALETTERGB ( 47, 79, 79)},
561 {"DarkSlateGray" , PALETTERGB ( 47, 79, 79)},
562 {"dark slate grey" , PALETTERGB ( 47, 79, 79)},
563 {"DarkSlateGrey" , PALETTERGB ( 47, 79, 79)},
564 {"dim gray" , PALETTERGB (105,105,105)},
565 {"DimGray" , PALETTERGB (105,105,105)},
566 {"dim grey" , PALETTERGB (105,105,105)},
567 {"DimGrey" , PALETTERGB (105,105,105)},
568 {"slate gray" , PALETTERGB (112,128,144)},
569 {"SlateGray" , PALETTERGB (112,128,144)},
570 {"slate grey" , PALETTERGB (112,128,144)},
571 {"SlateGrey" , PALETTERGB (112,128,144)},
572 {"light slate gray" , PALETTERGB (119,136,153)},
573 {"LightSlateGray" , PALETTERGB (119,136,153)},
574 {"light slate grey" , PALETTERGB (119,136,153)},
575 {"LightSlateGrey" , PALETTERGB (119,136,153)},
576 {"gray" , PALETTERGB (190,190,190)},
577 {"grey" , PALETTERGB (190,190,190)},
578 {"light grey" , PALETTERGB (211,211,211)},
579 {"LightGrey" , PALETTERGB (211,211,211)},
580 {"light gray" , PALETTERGB (211,211,211)},
581 {"LightGray" , PALETTERGB (211,211,211)},
582 {"midnight blue" , PALETTERGB ( 25, 25,112)},
583 {"MidnightBlue" , PALETTERGB ( 25, 25,112)},
584 {"navy" , PALETTERGB ( 0, 0,128)},
585 {"navy blue" , PALETTERGB ( 0, 0,128)},
586 {"NavyBlue" , PALETTERGB ( 0, 0,128)},
587 {"cornflower blue" , PALETTERGB (100,149,237)},
588 {"CornflowerBlue" , PALETTERGB (100,149,237)},
589 {"dark slate blue" , PALETTERGB ( 72, 61,139)},
590 {"DarkSlateBlue" , PALETTERGB ( 72, 61,139)},
591 {"slate blue" , PALETTERGB (106, 90,205)},
592 {"SlateBlue" , PALETTERGB (106, 90,205)},
593 {"medium slate blue" , PALETTERGB (123,104,238)},
594 {"MediumSlateBlue" , PALETTERGB (123,104,238)},
595 {"light slate blue" , PALETTERGB (132,112,255)},
596 {"LightSlateBlue" , PALETTERGB (132,112,255)},
597 {"medium blue" , PALETTERGB ( 0, 0,205)},
598 {"MediumBlue" , PALETTERGB ( 0, 0,205)},
599 {"royal blue" , PALETTERGB ( 65,105,225)},
600 {"RoyalBlue" , PALETTERGB ( 65,105,225)},
601 {"blue" , PALETTERGB ( 0, 0,255)},
602 {"dodger blue" , PALETTERGB ( 30,144,255)},
603 {"DodgerBlue" , PALETTERGB ( 30,144,255)},
604 {"deep sky blue" , PALETTERGB ( 0,191,255)},
605 {"DeepSkyBlue" , PALETTERGB ( 0,191,255)},
606 {"sky blue" , PALETTERGB (135,206,235)},
607 {"SkyBlue" , PALETTERGB (135,206,235)},
608 {"light sky blue" , PALETTERGB (135,206,250)},
609 {"LightSkyBlue" , PALETTERGB (135,206,250)},
610 {"steel blue" , PALETTERGB ( 70,130,180)},
611 {"SteelBlue" , PALETTERGB ( 70,130,180)},
612 {"light steel blue" , PALETTERGB (176,196,222)},
613 {"LightSteelBlue" , PALETTERGB (176,196,222)},
614 {"light blue" , PALETTERGB (173,216,230)},
615 {"LightBlue" , PALETTERGB (173,216,230)},
616 {"powder blue" , PALETTERGB (176,224,230)},
617 {"PowderBlue" , PALETTERGB (176,224,230)},
618 {"pale turquoise" , PALETTERGB (175,238,238)},
619 {"PaleTurquoise" , PALETTERGB (175,238,238)},
620 {"dark turquoise" , PALETTERGB ( 0,206,209)},
621 {"DarkTurquoise" , PALETTERGB ( 0,206,209)},
622 {"medium turquoise" , PALETTERGB ( 72,209,204)},
623 {"MediumTurquoise" , PALETTERGB ( 72,209,204)},
624 {"turquoise" , PALETTERGB ( 64,224,208)},
625 {"cyan" , PALETTERGB ( 0,255,255)},
626 {"light cyan" , PALETTERGB (224,255,255)},
627 {"LightCyan" , PALETTERGB (224,255,255)},
628 {"cadet blue" , PALETTERGB ( 95,158,160)},
629 {"CadetBlue" , PALETTERGB ( 95,158,160)},
630 {"medium aquamarine" , PALETTERGB (102,205,170)},
631 {"MediumAquamarine" , PALETTERGB (102,205,170)},
632 {"aquamarine" , PALETTERGB (127,255,212)},
633 {"dark green" , PALETTERGB ( 0,100, 0)},
634 {"DarkGreen" , PALETTERGB ( 0,100, 0)},
635 {"dark olive green" , PALETTERGB ( 85,107, 47)},
636 {"DarkOliveGreen" , PALETTERGB ( 85,107, 47)},
637 {"dark sea green" , PALETTERGB (143,188,143)},
638 {"DarkSeaGreen" , PALETTERGB (143,188,143)},
639 {"sea green" , PALETTERGB ( 46,139, 87)},
640 {"SeaGreen" , PALETTERGB ( 46,139, 87)},
641 {"medium sea green" , PALETTERGB ( 60,179,113)},
642 {"MediumSeaGreen" , PALETTERGB ( 60,179,113)},
643 {"light sea green" , PALETTERGB ( 32,178,170)},
644 {"LightSeaGreen" , PALETTERGB ( 32,178,170)},
645 {"pale green" , PALETTERGB (152,251,152)},
646 {"PaleGreen" , PALETTERGB (152,251,152)},
647 {"spring green" , PALETTERGB ( 0,255,127)},
648 {"SpringGreen" , PALETTERGB ( 0,255,127)},
649 {"lawn green" , PALETTERGB (124,252, 0)},
650 {"LawnGreen" , PALETTERGB (124,252, 0)},
651 {"green" , PALETTERGB ( 0,255, 0)},
652 {"chartreuse" , PALETTERGB (127,255, 0)},
653 {"medium spring green" , PALETTERGB ( 0,250,154)},
654 {"MediumSpringGreen" , PALETTERGB ( 0,250,154)},
655 {"green yellow" , PALETTERGB (173,255, 47)},
656 {"GreenYellow" , PALETTERGB (173,255, 47)},
657 {"lime green" , PALETTERGB ( 50,205, 50)},
658 {"LimeGreen" , PALETTERGB ( 50,205, 50)},
659 {"yellow green" , PALETTERGB (154,205, 50)},
660 {"YellowGreen" , PALETTERGB (154,205, 50)},
661 {"forest green" , PALETTERGB ( 34,139, 34)},
662 {"ForestGreen" , PALETTERGB ( 34,139, 34)},
663 {"olive drab" , PALETTERGB (107,142, 35)},
664 {"OliveDrab" , PALETTERGB (107,142, 35)},
665 {"dark khaki" , PALETTERGB (189,183,107)},
666 {"DarkKhaki" , PALETTERGB (189,183,107)},
667 {"khaki" , PALETTERGB (240,230,140)},
668 {"pale goldenrod" , PALETTERGB (238,232,170)},
669 {"PaleGoldenrod" , PALETTERGB (238,232,170)},
670 {"light goldenrod yellow" , PALETTERGB (250,250,210)},
671 {"LightGoldenrodYellow" , PALETTERGB (250,250,210)},
672 {"light yellow" , PALETTERGB (255,255,224)},
673 {"LightYellow" , PALETTERGB (255,255,224)},
674 {"yellow" , PALETTERGB (255,255, 0)},
675 {"gold" , PALETTERGB (255,215, 0)},
676 {"light goldenrod" , PALETTERGB (238,221,130)},
677 {"LightGoldenrod" , PALETTERGB (238,221,130)},
678 {"goldenrod" , PALETTERGB (218,165, 32)},
679 {"dark goldenrod" , PALETTERGB (184,134, 11)},
680 {"DarkGoldenrod" , PALETTERGB (184,134, 11)},
681 {"rosy brown" , PALETTERGB (188,143,143)},
682 {"RosyBrown" , PALETTERGB (188,143,143)},
683 {"indian red" , PALETTERGB (205, 92, 92)},
684 {"IndianRed" , PALETTERGB (205, 92, 92)},
685 {"saddle brown" , PALETTERGB (139, 69, 19)},
686 {"SaddleBrown" , PALETTERGB (139, 69, 19)},
687 {"sienna" , PALETTERGB (160, 82, 45)},
688 {"peru" , PALETTERGB (205,133, 63)},
689 {"burlywood" , PALETTERGB (222,184,135)},
690 {"beige" , PALETTERGB (245,245,220)},
691 {"wheat" , PALETTERGB (245,222,179)},
692 {"sandy brown" , PALETTERGB (244,164, 96)},
693 {"SandyBrown" , PALETTERGB (244,164, 96)},
694 {"tan" , PALETTERGB (210,180,140)},
695 {"chocolate" , PALETTERGB (210,105, 30)},
696 {"firebrick" , PALETTERGB (178,34, 34)},
697 {"brown" , PALETTERGB (165,42, 42)},
698 {"dark salmon" , PALETTERGB (233,150,122)},
699 {"DarkSalmon" , PALETTERGB (233,150,122)},
700 {"salmon" , PALETTERGB (250,128,114)},
701 {"light salmon" , PALETTERGB (255,160,122)},
702 {"LightSalmon" , PALETTERGB (255,160,122)},
703 {"orange" , PALETTERGB (255,165, 0)},
704 {"dark orange" , PALETTERGB (255,140, 0)},
705 {"DarkOrange" , PALETTERGB (255,140, 0)},
706 {"coral" , PALETTERGB (255,127, 80)},
707 {"light coral" , PALETTERGB (240,128,128)},
708 {"LightCoral" , PALETTERGB (240,128,128)},
709 {"tomato" , PALETTERGB (255, 99, 71)},
710 {"orange red" , PALETTERGB (255, 69, 0)},
711 {"OrangeRed" , PALETTERGB (255, 69, 0)},
712 {"red" , PALETTERGB (255, 0, 0)},
713 {"hot pink" , PALETTERGB (255,105,180)},
714 {"HotPink" , PALETTERGB (255,105,180)},
715 {"deep pink" , PALETTERGB (255, 20,147)},
716 {"DeepPink" , PALETTERGB (255, 20,147)},
717 {"pink" , PALETTERGB (255,192,203)},
718 {"light pink" , PALETTERGB (255,182,193)},
719 {"LightPink" , PALETTERGB (255,182,193)},
720 {"pale violet red" , PALETTERGB (219,112,147)},
721 {"PaleVioletRed" , PALETTERGB (219,112,147)},
722 {"maroon" , PALETTERGB (176, 48, 96)},
723 {"medium violet red" , PALETTERGB (199, 21,133)},
724 {"MediumVioletRed" , PALETTERGB (199, 21,133)},
725 {"violet red" , PALETTERGB (208, 32,144)},
726 {"VioletRed" , PALETTERGB (208, 32,144)},
727 {"magenta" , PALETTERGB (255, 0,255)},
728 {"violet" , PALETTERGB (238,130,238)},
729 {"plum" , PALETTERGB (221,160,221)},
730 {"orchid" , PALETTERGB (218,112,214)},
731 {"medium orchid" , PALETTERGB (186, 85,211)},
732 {"MediumOrchid" , PALETTERGB (186, 85,211)},
733 {"dark orchid" , PALETTERGB (153, 50,204)},
734 {"DarkOrchid" , PALETTERGB (153, 50,204)},
735 {"dark violet" , PALETTERGB (148, 0,211)},
736 {"DarkViolet" , PALETTERGB (148, 0,211)},
737 {"blue violet" , PALETTERGB (138, 43,226)},
738 {"BlueViolet" , PALETTERGB (138, 43,226)},
739 {"purple" , PALETTERGB (160, 32,240)},
740 {"medium purple" , PALETTERGB (147,112,219)},
741 {"MediumPurple" , PALETTERGB (147,112,219)},
742 {"thistle" , PALETTERGB (216,191,216)},
743 {"gray0" , PALETTERGB ( 0, 0, 0)},
744 {"grey0" , PALETTERGB ( 0, 0, 0)},
745 {"dark grey" , PALETTERGB (169,169,169)},
746 {"DarkGrey" , PALETTERGB (169,169,169)},
747 {"dark gray" , PALETTERGB (169,169,169)},
748 {"DarkGray" , PALETTERGB (169,169,169)},
749 {"dark blue" , PALETTERGB ( 0, 0,139)},
750 {"DarkBlue" , PALETTERGB ( 0, 0,139)},
751 {"dark cyan" , PALETTERGB ( 0,139,139)},
752 {"DarkCyan" , PALETTERGB ( 0,139,139)},
753 {"dark magenta" , PALETTERGB (139, 0,139)},
754 {"DarkMagenta" , PALETTERGB (139, 0,139)},
755 {"dark red" , PALETTERGB (139, 0, 0)},
756 {"DarkRed" , PALETTERGB (139, 0, 0)},
757 {"light green" , PALETTERGB (144,238,144)},
758 {"LightGreen" , PALETTERGB (144,238,144)},
ee78dc32
GV
759};
760
fbd6baed 761DEFUN ("w32-default-color-map", Fw32_default_color_map, Sw32_default_color_map,
74e1aeec 762 0, 0, 0, doc: /* Return the default color map. */)
ee78dc32
GV
763 ()
764{
765 int i;
fbd6baed 766 colormap_t *pc = w32_color_map;
ee78dc32 767 Lisp_Object cmap;
7d0393cf 768
ee78dc32 769 BLOCK_INPUT;
7d0393cf 770
ee78dc32 771 cmap = Qnil;
7d0393cf
JB
772
773 for (i = 0; i < sizeof (w32_color_map) / sizeof (w32_color_map[0]);
ee78dc32
GV
774 pc++, i++)
775 cmap = Fcons (Fcons (build_string (pc->name),
776 make_number (pc->colorref)),
777 cmap);
7d0393cf 778
ee78dc32 779 UNBLOCK_INPUT;
7d0393cf 780
ee78dc32
GV
781 return (cmap);
782}
ee78dc32 783
74084731 784static Lisp_Object
fbd6baed 785w32_to_x_color (rgb)
ee78dc32
GV
786 Lisp_Object rgb;
787{
788 Lisp_Object color;
7d0393cf 789
b7826503 790 CHECK_NUMBER (rgb);
7d0393cf 791
ee78dc32 792 BLOCK_INPUT;
7d0393cf 793
fbd6baed 794 color = Frassq (rgb, Vw32_color_map);
7d0393cf 795
ee78dc32 796 UNBLOCK_INPUT;
7d0393cf 797
ee78dc32
GV
798 if (!NILP (color))
799 return (Fcar (color));
800 else
801 return Qnil;
802}
803
2ba49441 804static Lisp_Object
5d7fed93
GV
805w32_color_map_lookup (colorname)
806 char *colorname;
807{
808 Lisp_Object tail, ret = Qnil;
809
810 BLOCK_INPUT;
811
99784d63 812 for (tail = Vw32_color_map; CONSP (tail); tail = XCDR (tail))
5d7fed93
GV
813 {
814 register Lisp_Object elt, tem;
815
99784d63 816 elt = XCAR (tail);
5d7fed93
GV
817 if (!CONSP (elt)) continue;
818
819 tem = Fcar (elt);
820
d5db4077 821 if (lstrcmpi (SDATA (tem), colorname) == 0)
5d7fed93 822 {
2ba49441 823 ret = Fcdr (elt);
5d7fed93
GV
824 break;
825 }
826
827 QUIT;
828 }
829
830
831 UNBLOCK_INPUT;
832
833 return ret;
834}
835
5a8a15ec
JR
836
837static void
838add_system_logical_colors_to_map (system_colors)
839 Lisp_Object *system_colors;
840{
841 HKEY colors_key;
842
843 /* Other registry operations are done with input blocked. */
844 BLOCK_INPUT;
845
846 /* Look for "Control Panel/Colors" under User and Machine registry
847 settings. */
848 if (RegOpenKeyEx (HKEY_CURRENT_USER, "Control Panel\\Colors", 0,
849 KEY_READ, &colors_key) == ERROR_SUCCESS
850 || RegOpenKeyEx (HKEY_LOCAL_MACHINE, "Control Panel\\Colors", 0,
851 KEY_READ, &colors_key) == ERROR_SUCCESS)
852 {
853 /* List all keys. */
854 char color_buffer[64];
855 char full_name_buffer[MAX_PATH + SYSTEM_COLOR_PREFIX_LEN];
856 int index = 0;
857 DWORD name_size, color_size;
858 char *name_buffer = full_name_buffer + SYSTEM_COLOR_PREFIX_LEN;
859
860 name_size = sizeof (full_name_buffer) - SYSTEM_COLOR_PREFIX_LEN;
861 color_size = sizeof (color_buffer);
862
863 strcpy (full_name_buffer, SYSTEM_COLOR_PREFIX);
864
865 while (RegEnumValueA (colors_key, index, name_buffer, &name_size,
866 NULL, NULL, color_buffer, &color_size)
867 == ERROR_SUCCESS)
868 {
869 int r, g, b;
870 if (sscanf (color_buffer, " %u %u %u", &r, &g, &b) == 3)
871 *system_colors = Fcons (Fcons (build_string (full_name_buffer),
872 make_number (RGB (r, g, b))),
873 *system_colors);
874
875 name_size = sizeof (full_name_buffer) - SYSTEM_COLOR_PREFIX_LEN;
876 color_size = sizeof (color_buffer);
877 index++;
878 }
879 RegCloseKey (colors_key);
880 }
881
882 UNBLOCK_INPUT;
883}
884
885
2ba49441 886static Lisp_Object
fbd6baed 887x_to_w32_color (colorname)
ee78dc32
GV
888 char * colorname;
889{
8edb0a6f
JR
890 register Lisp_Object ret = Qnil;
891
ee78dc32 892 BLOCK_INPUT;
1edf84e7
GV
893
894 if (colorname[0] == '#')
895 {
896 /* Could be an old-style RGB Device specification. */
897 char *color;
898 int size;
899 color = colorname + 1;
7d0393cf 900
74084731 901 size = strlen (color);
1edf84e7
GV
902 if (size == 3 || size == 6 || size == 9 || size == 12)
903 {
904 UINT colorval;
905 int i, pos;
906 pos = 0;
907 size /= 3;
908 colorval = 0;
7d0393cf 909
1edf84e7
GV
910 for (i = 0; i < 3; i++)
911 {
912 char *end;
913 char t;
914 unsigned long value;
915
916 /* The check for 'x' in the following conditional takes into
917 account the fact that strtol allows a "0x" in front of
918 our numbers, and we don't. */
74084731 919 if (!isxdigit (color[0]) || color[1] == 'x')
1edf84e7
GV
920 break;
921 t = color[size];
922 color[size] = '\0';
74084731 923 value = strtoul (color, &end, 16);
1edf84e7
GV
924 color[size] = t;
925 if (errno == ERANGE || end - color != size)
926 break;
927 switch (size)
928 {
929 case 1:
930 value = value * 0x10;
931 break;
932 case 2:
933 break;
934 case 3:
935 value /= 0x10;
936 break;
937 case 4:
938 value /= 0x100;
939 break;
940 }
941 colorval |= (value << pos);
942 pos += 0x8;
943 if (i == 2)
944 {
945 UNBLOCK_INPUT;
2ba49441
JR
946 XSETINT (ret, colorval);
947 return ret;
1edf84e7
GV
948 }
949 color = end;
950 }
951 }
952 }
74084731 953 else if (strnicmp (colorname, "rgb:", 4) == 0)
1edf84e7
GV
954 {
955 char *color;
956 UINT colorval;
957 int i, pos;
958 pos = 0;
959
960 colorval = 0;
961 color = colorname + 4;
962 for (i = 0; i < 3; i++)
963 {
964 char *end;
965 unsigned long value;
7d0393cf 966
1edf84e7
GV
967 /* The check for 'x' in the following conditional takes into
968 account the fact that strtol allows a "0x" in front of
969 our numbers, and we don't. */
74084731 970 if (!isxdigit (color[0]) || color[1] == 'x')
1edf84e7 971 break;
74084731 972 value = strtoul (color, &end, 16);
1edf84e7
GV
973 if (errno == ERANGE)
974 break;
975 switch (end - color)
976 {
977 case 1:
978 value = value * 0x10 + value;
979 break;
980 case 2:
981 break;
982 case 3:
983 value /= 0x10;
984 break;
985 case 4:
986 value /= 0x100;
987 break;
988 default:
989 value = ULONG_MAX;
990 }
991 if (value == ULONG_MAX)
992 break;
993 colorval |= (value << pos);
994 pos += 0x8;
995 if (i == 2)
996 {
997 if (*end != '\0')
998 break;
999 UNBLOCK_INPUT;
2ba49441
JR
1000 XSETINT (ret, colorval);
1001 return ret;
1edf84e7
GV
1002 }
1003 if (*end != '/')
1004 break;
1005 color = end + 1;
1006 }
1007 }
74084731 1008 else if (strnicmp (colorname, "rgbi:", 5) == 0)
1edf84e7
GV
1009 {
1010 /* This is an RGB Intensity specification. */
1011 char *color;
1012 UINT colorval;
1013 int i, pos;
1014 pos = 0;
1015
1016 colorval = 0;
1017 color = colorname + 5;
1018 for (i = 0; i < 3; i++)
1019 {
1020 char *end;
1021 double value;
1022 UINT val;
1023
74084731 1024 value = strtod (color, &end);
1edf84e7
GV
1025 if (errno == ERANGE)
1026 break;
1027 if (value < 0.0 || value > 1.0)
1028 break;
1029 val = (UINT)(0x100 * value);
7d0393cf 1030 /* We used 0x100 instead of 0xFF to give a continuous
1edf84e7
GV
1031 range between 0.0 and 1.0 inclusive. The next statement
1032 fixes the 1.0 case. */
1033 if (val == 0x100)
1034 val = 0xFF;
1035 colorval |= (val << pos);
1036 pos += 0x8;
1037 if (i == 2)
1038 {
1039 if (*end != '\0')
1040 break;
1041 UNBLOCK_INPUT;
2ba49441
JR
1042 XSETINT (ret, colorval);
1043 return ret;
1edf84e7
GV
1044 }
1045 if (*end != '/')
1046 break;
1047 color = end + 1;
1048 }
1049 }
1050 /* I am not going to attempt to handle any of the CIE color schemes
1051 or TekHVC, since I don't know the algorithms for conversion to
1052 RGB. */
f695b4b1
GV
1053
1054 /* If we fail to lookup the color name in w32_color_map, then check the
7d0393cf 1055 colorname to see if it can be crudely approximated: If the X color
f695b4b1
GV
1056 ends in a number (e.g., "darkseagreen2"), strip the number and
1057 return the result of looking up the base color name. */
1058 ret = w32_color_map_lookup (colorname);
7d0393cf 1059 if (NILP (ret))
ee78dc32 1060 {
f695b4b1 1061 int len = strlen (colorname);
ee78dc32 1062
7d0393cf 1063 if (isdigit (colorname[len - 1]))
f695b4b1 1064 {
8b77111c 1065 char *ptr, *approx = alloca (len + 1);
ee78dc32 1066
f695b4b1
GV
1067 strcpy (approx, colorname);
1068 ptr = &approx[len - 1];
7d0393cf 1069 while (ptr > approx && isdigit (*ptr))
f695b4b1 1070 *ptr-- = '\0';
ee78dc32 1071
f695b4b1 1072 ret = w32_color_map_lookup (approx);
ee78dc32 1073 }
ee78dc32 1074 }
7d0393cf 1075
ee78dc32 1076 UNBLOCK_INPUT;
ee78dc32
GV
1077 return ret;
1078}
1079
5ac45f98 1080void
fbd6baed 1081w32_regenerate_palette (FRAME_PTR f)
5ac45f98 1082{
fbd6baed 1083 struct w32_palette_entry * list;
5ac45f98
GV
1084 LOGPALETTE * log_palette;
1085 HPALETTE new_palette;
1086 int i;
1087
1088 /* don't bother trying to create palette if not supported */
fbd6baed 1089 if (! FRAME_W32_DISPLAY_INFO (f)->has_palette)
5ac45f98
GV
1090 return;
1091
1092 log_palette = (LOGPALETTE *)
1093 alloca (sizeof (LOGPALETTE) +
fbd6baed 1094 FRAME_W32_DISPLAY_INFO (f)->num_colors * sizeof (PALETTEENTRY));
5ac45f98 1095 log_palette->palVersion = 0x300;
fbd6baed 1096 log_palette->palNumEntries = FRAME_W32_DISPLAY_INFO (f)->num_colors;
5ac45f98 1097
fbd6baed 1098 list = FRAME_W32_DISPLAY_INFO (f)->color_list;
5ac45f98 1099 for (i = 0;
fbd6baed 1100 i < FRAME_W32_DISPLAY_INFO (f)->num_colors;
5ac45f98
GV
1101 i++, list = list->next)
1102 log_palette->palPalEntry[i] = list->entry;
1103
1104 new_palette = CreatePalette (log_palette);
1105
1106 enter_crit ();
1107
fbd6baed
GV
1108 if (FRAME_W32_DISPLAY_INFO (f)->palette)
1109 DeleteObject (FRAME_W32_DISPLAY_INFO (f)->palette);
1110 FRAME_W32_DISPLAY_INFO (f)->palette = new_palette;
5ac45f98
GV
1111
1112 /* Realize display palette and garbage all frames. */
1113 release_frame_dc (f, get_frame_dc (f));
1114
1115 leave_crit ();
1116}
1117
fbd6baed
GV
1118#define W32_COLOR(pe) RGB (pe.peRed, pe.peGreen, pe.peBlue)
1119#define SET_W32_COLOR(pe, color) \
5ac45f98
GV
1120 do \
1121 { \
1122 pe.peRed = GetRValue (color); \
1123 pe.peGreen = GetGValue (color); \
1124 pe.peBlue = GetBValue (color); \
1125 pe.peFlags = 0; \
1126 } while (0)
1127
1128#if 0
1129/* Keep these around in case we ever want to track color usage. */
1130void
fbd6baed 1131w32_map_color (FRAME_PTR f, COLORREF color)
5ac45f98 1132{
fbd6baed 1133 struct w32_palette_entry * list = FRAME_W32_DISPLAY_INFO (f)->color_list;
5ac45f98 1134
fbd6baed 1135 if (NILP (Vw32_enable_palette))
5ac45f98
GV
1136 return;
1137
1138 /* check if color is already mapped */
1139 while (list)
1140 {
fbd6baed 1141 if (W32_COLOR (list->entry) == color)
5ac45f98
GV
1142 {
1143 ++list->refcount;
1144 return;
1145 }
1146 list = list->next;
1147 }
1148
1149 /* not already mapped, so add to list and recreate Windows palette */
fbd6baed
GV
1150 list = (struct w32_palette_entry *)
1151 xmalloc (sizeof (struct w32_palette_entry));
1152 SET_W32_COLOR (list->entry, color);
5ac45f98 1153 list->refcount = 1;
fbd6baed
GV
1154 list->next = FRAME_W32_DISPLAY_INFO (f)->color_list;
1155 FRAME_W32_DISPLAY_INFO (f)->color_list = list;
1156 FRAME_W32_DISPLAY_INFO (f)->num_colors++;
5ac45f98
GV
1157
1158 /* set flag that palette must be regenerated */
fbd6baed 1159 FRAME_W32_DISPLAY_INFO (f)->regen_palette = TRUE;
5ac45f98
GV
1160}
1161
1162void
fbd6baed 1163w32_unmap_color (FRAME_PTR f, COLORREF color)
5ac45f98 1164{
fbd6baed
GV
1165 struct w32_palette_entry * list = FRAME_W32_DISPLAY_INFO (f)->color_list;
1166 struct w32_palette_entry **prev = &FRAME_W32_DISPLAY_INFO (f)->color_list;
5ac45f98 1167
fbd6baed 1168 if (NILP (Vw32_enable_palette))
5ac45f98
GV
1169 return;
1170
1171 /* check if color is already mapped */
1172 while (list)
1173 {
fbd6baed 1174 if (W32_COLOR (list->entry) == color)
5ac45f98
GV
1175 {
1176 if (--list->refcount == 0)
1177 {
1178 *prev = list->next;
1179 xfree (list);
fbd6baed 1180 FRAME_W32_DISPLAY_INFO (f)->num_colors--;
5ac45f98
GV
1181 break;
1182 }
1183 else
1184 return;
1185 }
1186 prev = &list->next;
1187 list = list->next;
1188 }
1189
1190 /* set flag that palette must be regenerated */
fbd6baed 1191 FRAME_W32_DISPLAY_INFO (f)->regen_palette = TRUE;
5ac45f98
GV
1192}
1193#endif
1194
6fc2811b
JR
1195
1196/* Gamma-correct COLOR on frame F. */
1197
1198void
1199gamma_correct (f, color)
1200 struct frame *f;
1201 COLORREF *color;
1202{
1203 if (f->gamma)
1204 {
1205 *color = PALETTERGB (
1206 pow (GetRValue (*color) / 255.0, f->gamma) * 255.0 + 0.5,
1207 pow (GetGValue (*color) / 255.0, f->gamma) * 255.0 + 0.5,
1208 pow (GetBValue (*color) / 255.0, f->gamma) * 255.0 + 0.5);
1209 }
1210}
1211
1212
ee78dc32
GV
1213/* Decide if color named COLOR is valid for the display associated with
1214 the selected frame; if so, return the rgb values in COLOR_DEF.
1215 If ALLOC is nonzero, allocate a new colormap cell. */
1216
1217int
6fc2811b 1218w32_defined_color (f, color, color_def, alloc)
ee78dc32
GV
1219 FRAME_PTR f;
1220 char *color;
6fc2811b 1221 XColor *color_def;
ee78dc32
GV
1222 int alloc;
1223{
1224 register Lisp_Object tem;
6fc2811b 1225 COLORREF w32_color_ref;
3c190163 1226
fbd6baed 1227 tem = x_to_w32_color (color);
3c190163 1228
7d0393cf 1229 if (!NILP (tem))
ee78dc32 1230 {
d88c567c
JR
1231 if (f)
1232 {
1233 /* Apply gamma correction. */
1234 w32_color_ref = XUINT (tem);
1235 gamma_correct (f, &w32_color_ref);
1236 XSETINT (tem, w32_color_ref);
1237 }
9badad41
JR
1238
1239 /* Map this color to the palette if it is enabled. */
fbd6baed 1240 if (!NILP (Vw32_enable_palette))
5ac45f98 1241 {
fbd6baed 1242 struct w32_palette_entry * entry =
d88c567c 1243 one_w32_display_info.color_list;
fbd6baed 1244 struct w32_palette_entry ** prev =
d88c567c 1245 &one_w32_display_info.color_list;
7d0393cf 1246
5ac45f98
GV
1247 /* check if color is already mapped */
1248 while (entry)
1249 {
fbd6baed 1250 if (W32_COLOR (entry->entry) == XUINT (tem))
5ac45f98
GV
1251 break;
1252 prev = &entry->next;
1253 entry = entry->next;
1254 }
1255
1256 if (entry == NULL && alloc)
1257 {
1258 /* not already mapped, so add to list */
fbd6baed
GV
1259 entry = (struct w32_palette_entry *)
1260 xmalloc (sizeof (struct w32_palette_entry));
1261 SET_W32_COLOR (entry->entry, XUINT (tem));
5ac45f98
GV
1262 entry->next = NULL;
1263 *prev = entry;
d88c567c 1264 one_w32_display_info.num_colors++;
5ac45f98
GV
1265
1266 /* set flag that palette must be regenerated */
d88c567c 1267 one_w32_display_info.regen_palette = TRUE;
5ac45f98
GV
1268 }
1269 }
1270 /* Ensure COLORREF value is snapped to nearest color in (default)
1271 palette by simulating the PALETTERGB macro. This works whether
1272 or not the display device has a palette. */
6fc2811b
JR
1273 w32_color_ref = XUINT (tem) | 0x2000000;
1274
6fc2811b 1275 color_def->pixel = w32_color_ref;
197edd35
JR
1276 color_def->red = GetRValue (w32_color_ref) * 256;
1277 color_def->green = GetGValue (w32_color_ref) * 256;
1278 color_def->blue = GetBValue (w32_color_ref) * 256;
6fc2811b 1279
ee78dc32 1280 return 1;
5ac45f98 1281 }
7d0393cf 1282 else
3c190163
GV
1283 {
1284 return 0;
1285 }
ee78dc32
GV
1286}
1287
1288/* Given a string ARG naming a color, compute a pixel value from it
1289 suitable for screen F.
1290 If F is not a color screen, return DEF (default) regardless of what
1291 ARG says. */
1292
1293int
1294x_decode_color (f, arg, def)
1295 FRAME_PTR f;
1296 Lisp_Object arg;
1297 int def;
1298{
6fc2811b 1299 XColor cdef;
ee78dc32 1300
b7826503 1301 CHECK_STRING (arg);
ee78dc32 1302
d5db4077 1303 if (strcmp (SDATA (arg), "black") == 0)
ee78dc32 1304 return BLACK_PIX_DEFAULT (f);
d5db4077 1305 else if (strcmp (SDATA (arg), "white") == 0)
ee78dc32
GV
1306 return WHITE_PIX_DEFAULT (f);
1307
fbd6baed 1308 if ((FRAME_W32_DISPLAY_INFO (f)->n_planes * FRAME_W32_DISPLAY_INFO (f)->n_cbits) == 1)
ee78dc32
GV
1309 return def;
1310
6fc2811b 1311 /* w32_defined_color is responsible for coping with failures
ee78dc32 1312 by looking for a near-miss. */
d5db4077 1313 if (w32_defined_color (f, SDATA (arg), &cdef, 1))
6fc2811b 1314 return cdef.pixel;
ee78dc32
GV
1315
1316 /* defined_color failed; return an ultimate default. */
1317 return def;
1318}
1319\f
6fc2811b
JR
1320
1321
ee78dc32
GV
1322/* Functions called only from `x_set_frame_param'
1323 to set individual parameters.
1324
fbd6baed 1325 If FRAME_W32_WINDOW (f) is 0,
ee78dc32
GV
1326 the frame is being created and its window does not exist yet.
1327 In that case, just record the parameter's new value
1328 in the standard place; do not attempt to change the window. */
1329
1330void
1331x_set_foreground_color (f, arg, oldval)
1332 struct frame *f;
1333 Lisp_Object arg, oldval;
1334{
3cf3436e
JR
1335 struct w32_output *x = f->output_data.w32;
1336 PIX_TYPE fg, old_fg;
1337
1338 fg = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
1339 old_fg = FRAME_FOREGROUND_PIXEL (f);
1340 FRAME_FOREGROUND_PIXEL (f) = fg;
5ac45f98 1341
fbd6baed 1342 if (FRAME_W32_WINDOW (f) != 0)
ee78dc32 1343 {
3cf3436e
JR
1344 if (x->cursor_pixel == old_fg)
1345 x->cursor_pixel = fg;
1346
6fc2811b 1347 update_face_from_frame_parameter (f, Qforeground_color, arg);
ee78dc32
GV
1348 if (FRAME_VISIBLE_P (f))
1349 redraw_frame (f);
1350 }
1351}
1352
1353void
1354x_set_background_color (f, arg, oldval)
1355 struct frame *f;
1356 Lisp_Object arg, oldval;
1357{
6fc2811b 1358 FRAME_BACKGROUND_PIXEL (f)
ee78dc32
GV
1359 = x_decode_color (f, arg, WHITE_PIX_DEFAULT (f));
1360
fbd6baed 1361 if (FRAME_W32_WINDOW (f) != 0)
ee78dc32 1362 {
6fc2811b
JR
1363 SetWindowLong (FRAME_W32_WINDOW (f), WND_BACKGROUND_INDEX,
1364 FRAME_BACKGROUND_PIXEL (f));
ee78dc32 1365
6fc2811b 1366 update_face_from_frame_parameter (f, Qbackground_color, arg);
ee78dc32
GV
1367
1368 if (FRAME_VISIBLE_P (f))
1369 redraw_frame (f);
1370 }
1371}
1372
1373void
1374x_set_mouse_color (f, arg, oldval)
1375 struct frame *f;
1376 Lisp_Object arg, oldval;
1377{
7d63e5e3 1378 Cursor cursor, nontext_cursor, mode_cursor, hand_cursor;
dfc465d3 1379 int count;
ee78dc32
GV
1380 int mask_color;
1381
1382 if (!EQ (Qnil, arg))
fbd6baed 1383 f->output_data.w32->mouse_pixel
ee78dc32 1384 = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
6fc2811b
JR
1385 mask_color = FRAME_BACKGROUND_PIXEL (f);
1386
1387 /* Don't let pointers be invisible. */
fbd6baed 1388 if (mask_color == f->output_data.w32->mouse_pixel
6fc2811b
JR
1389 && mask_color == FRAME_BACKGROUND_PIXEL (f))
1390 f->output_data.w32->mouse_pixel = FRAME_FOREGROUND_PIXEL (f);
ee78dc32 1391
5f004711 1392#if 0 /* TODO : Mouse cursor customization. */
ee78dc32
GV
1393 BLOCK_INPUT;
1394
1395 /* It's not okay to crash if the user selects a screwy cursor. */
fadca6c6 1396 count = x_catch_errors (FRAME_W32_DISPLAY (f));
ee78dc32
GV
1397
1398 if (!EQ (Qnil, Vx_pointer_shape))
1399 {
b7826503 1400 CHECK_NUMBER (Vx_pointer_shape);
fbd6baed 1401 cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XINT (Vx_pointer_shape));
ee78dc32
GV
1402 }
1403 else
fbd6baed
GV
1404 cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_xterm);
1405 x_check_errors (FRAME_W32_DISPLAY (f), "bad text pointer cursor: %s");
ee78dc32
GV
1406
1407 if (!EQ (Qnil, Vx_nontext_pointer_shape))
1408 {
b7826503 1409 CHECK_NUMBER (Vx_nontext_pointer_shape);
fbd6baed 1410 nontext_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f),
ee78dc32
GV
1411 XINT (Vx_nontext_pointer_shape));
1412 }
1413 else
fbd6baed
GV
1414 nontext_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_left_ptr);
1415 x_check_errors (FRAME_W32_DISPLAY (f), "bad nontext pointer cursor: %s");
ee78dc32 1416
0af913d7 1417 if (!EQ (Qnil, Vx_hourglass_pointer_shape))
6fc2811b 1418 {
b7826503 1419 CHECK_NUMBER (Vx_hourglass_pointer_shape);
0af913d7
GM
1420 hourglass_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f),
1421 XINT (Vx_hourglass_pointer_shape));
6fc2811b
JR
1422 }
1423 else
0af913d7 1424 hourglass_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_watch);
6fc2811b 1425 x_check_errors (FRAME_W32_DISPLAY (f), "bad busy pointer cursor: %s");
7d0393cf 1426
6fc2811b 1427 x_check_errors (FRAME_W32_DISPLAY (f), "bad nontext pointer cursor: %s");
ee78dc32
GV
1428 if (!EQ (Qnil, Vx_mode_pointer_shape))
1429 {
b7826503 1430 CHECK_NUMBER (Vx_mode_pointer_shape);
fbd6baed 1431 mode_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f),
ee78dc32
GV
1432 XINT (Vx_mode_pointer_shape));
1433 }
1434 else
fbd6baed
GV
1435 mode_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_xterm);
1436 x_check_errors (FRAME_W32_DISPLAY (f), "bad modeline pointer cursor: %s");
ee78dc32
GV
1437
1438 if (!EQ (Qnil, Vx_sensitive_text_pointer_shape))
1439 {
b7826503 1440 CHECK_NUMBER (Vx_sensitive_text_pointer_shape);
7d63e5e3 1441 hand_cursor
fbd6baed 1442 = XCreateFontCursor (FRAME_W32_DISPLAY (f),
ee78dc32
GV
1443 XINT (Vx_sensitive_text_pointer_shape));
1444 }
1445 else
7d63e5e3 1446 hand_cursor = XCreateFontCursor (FRAME_W32_DISPLAY (f), XC_crosshair);
ee78dc32 1447
4694d762
JR
1448 if (!NILP (Vx_window_horizontal_drag_shape))
1449 {
b7826503 1450 CHECK_NUMBER (Vx_window_horizontal_drag_shape);
4694d762
JR
1451 horizontal_drag_cursor
1452 = XCreateFontCursor (FRAME_X_DISPLAY (f),
1453 XINT (Vx_window_horizontal_drag_shape));
1454 }
1455 else
1456 horizontal_drag_cursor
1457 = XCreateFontCursor (FRAME_X_DISPLAY (f), XC_sb_h_double_arrow);
1458
ee78dc32 1459 /* Check and report errors with the above calls. */
fbd6baed 1460 x_check_errors (FRAME_W32_DISPLAY (f), "can't set cursor shape: %s");
fadca6c6 1461 x_uncatch_errors (FRAME_W32_DISPLAY (f), count);
ee78dc32
GV
1462
1463 {
1464 XColor fore_color, back_color;
1465
fbd6baed 1466 fore_color.pixel = f->output_data.w32->mouse_pixel;
ee78dc32 1467 back_color.pixel = mask_color;
fbd6baed
GV
1468 XQueryColor (FRAME_W32_DISPLAY (f),
1469 DefaultColormap (FRAME_W32_DISPLAY (f),
1470 DefaultScreen (FRAME_W32_DISPLAY (f))),
ee78dc32 1471 &fore_color);
fbd6baed
GV
1472 XQueryColor (FRAME_W32_DISPLAY (f),
1473 DefaultColormap (FRAME_W32_DISPLAY (f),
1474 DefaultScreen (FRAME_W32_DISPLAY (f))),
ee78dc32 1475 &back_color);
fbd6baed 1476 XRecolorCursor (FRAME_W32_DISPLAY (f), cursor,
ee78dc32 1477 &fore_color, &back_color);
fbd6baed 1478 XRecolorCursor (FRAME_W32_DISPLAY (f), nontext_cursor,
ee78dc32 1479 &fore_color, &back_color);
fbd6baed 1480 XRecolorCursor (FRAME_W32_DISPLAY (f), mode_cursor,
ee78dc32 1481 &fore_color, &back_color);
7d63e5e3 1482 XRecolorCursor (FRAME_W32_DISPLAY (f), hand_cursor,
ee78dc32 1483 &fore_color, &back_color);
0af913d7 1484 XRecolorCursor (FRAME_W32_DISPLAY (f), hourglass_cursor,
6fc2811b 1485 &fore_color, &back_color);
ee78dc32
GV
1486 }
1487
fbd6baed 1488 if (FRAME_W32_WINDOW (f) != 0)
6fc2811b 1489 XDefineCursor (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f), cursor);
ee78dc32 1490
fbd6baed
GV
1491 if (cursor != f->output_data.w32->text_cursor && f->output_data.w32->text_cursor != 0)
1492 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->text_cursor);
1493 f->output_data.w32->text_cursor = cursor;
1494
1495 if (nontext_cursor != f->output_data.w32->nontext_cursor
1496 && f->output_data.w32->nontext_cursor != 0)
1497 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->nontext_cursor);
1498 f->output_data.w32->nontext_cursor = nontext_cursor;
1499
0af913d7
GM
1500 if (hourglass_cursor != f->output_data.w32->hourglass_cursor
1501 && f->output_data.w32->hourglass_cursor != 0)
1502 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->hourglass_cursor);
1503 f->output_data.w32->hourglass_cursor = hourglass_cursor;
6fc2811b 1504
fbd6baed
GV
1505 if (mode_cursor != f->output_data.w32->modeline_cursor
1506 && f->output_data.w32->modeline_cursor != 0)
1507 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->modeline_cursor);
1508 f->output_data.w32->modeline_cursor = mode_cursor;
7d0393cf 1509
7d63e5e3
KS
1510 if (hand_cursor != f->output_data.w32->hand_cursor
1511 && f->output_data.w32->hand_cursor != 0)
1512 XFreeCursor (FRAME_W32_DISPLAY (f), f->output_data.w32->hand_cursor);
1513 f->output_data.w32->hand_cursor = hand_cursor;
fbd6baed
GV
1514
1515 XFlush (FRAME_W32_DISPLAY (f));
ee78dc32 1516 UNBLOCK_INPUT;
6fc2811b
JR
1517
1518 update_face_from_frame_parameter (f, Qmouse_color, arg);
767b1ff0 1519#endif /* TODO */
ee78dc32
GV
1520}
1521
1522void
1523x_set_cursor_color (f, arg, oldval)
1524 struct frame *f;
1525 Lisp_Object arg, oldval;
1526{
70a0239a 1527 unsigned long fore_pixel, pixel;
ee78dc32 1528
dfff8a69 1529 if (!NILP (Vx_cursor_fore_pixel))
ee78dc32 1530 fore_pixel = x_decode_color (f, Vx_cursor_fore_pixel,
70a0239a 1531 WHITE_PIX_DEFAULT (f));
ee78dc32 1532 else
6fc2811b 1533 fore_pixel = FRAME_BACKGROUND_PIXEL (f);
70a0239a 1534
6759f872 1535 pixel = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
7d0393cf 1536
ee78dc32 1537 /* Make sure that the cursor color differs from the background color. */
70a0239a 1538 if (pixel == FRAME_BACKGROUND_PIXEL (f))
ee78dc32 1539 {
70a0239a
JR
1540 pixel = f->output_data.w32->mouse_pixel;
1541 if (pixel == fore_pixel)
6fc2811b 1542 fore_pixel = FRAME_BACKGROUND_PIXEL (f);
ee78dc32 1543 }
70a0239a 1544
ac849ba4 1545 f->output_data.w32->cursor_foreground_pixel = fore_pixel;
70a0239a 1546 f->output_data.w32->cursor_pixel = pixel;
ee78dc32 1547
fbd6baed 1548 if (FRAME_W32_WINDOW (f) != 0)
ee78dc32 1549 {
0327b4cc
JR
1550 BLOCK_INPUT;
1551 /* Update frame's cursor_gc. */
1552 f->output_data.w32->cursor_gc->foreground = fore_pixel;
1553 f->output_data.w32->cursor_gc->background = pixel;
1554
1555 UNBLOCK_INPUT;
1556
ee78dc32
GV
1557 if (FRAME_VISIBLE_P (f))
1558 {
70a0239a
JR
1559 x_update_cursor (f, 0);
1560 x_update_cursor (f, 1);
ee78dc32
GV
1561 }
1562 }
6fc2811b
JR
1563
1564 update_face_from_frame_parameter (f, Qcursor_color, arg);
ee78dc32
GV
1565}
1566
33d52f9c
GV
1567/* Set the border-color of frame F to pixel value PIX.
1568 Note that this does not fully take effect if done before
7d0393cf 1569 F has a window. */
6d906347 1570
33d52f9c
GV
1571void
1572x_set_border_pixel (f, pix)
1573 struct frame *f;
1574 int pix;
1575{
6d906347 1576
33d52f9c
GV
1577 f->output_data.w32->border_pixel = pix;
1578
be786000 1579 if (FRAME_W32_WINDOW (f) != 0 && f->border_width > 0)
33d52f9c
GV
1580 {
1581 if (FRAME_VISIBLE_P (f))
1582 redraw_frame (f);
1583 }
1584}
1585
ee78dc32
GV
1586/* Set the border-color of frame F to value described by ARG.
1587 ARG can be a string naming a color.
1588 The border-color is used for the border that is drawn by the server.
1589 Note that this does not fully take effect if done before
1590 F has a window; it must be redone when the window is created. */
1591
1592void
1593x_set_border_color (f, arg, oldval)
1594 struct frame *f;
1595 Lisp_Object arg, oldval;
1596{
ee78dc32
GV
1597 int pix;
1598
b7826503 1599 CHECK_STRING (arg);
ee78dc32 1600 pix = x_decode_color (f, arg, BLACK_PIX_DEFAULT (f));
ee78dc32 1601 x_set_border_pixel (f, pix);
6fc2811b 1602 update_face_from_frame_parameter (f, Qborder_color, arg);
ee78dc32
GV
1603}
1604
dfff8a69
JR
1605
1606void
1607x_set_cursor_type (f, arg, oldval)
1608 FRAME_PTR f;
1609 Lisp_Object arg, oldval;
1610{
50e363e6 1611 set_frame_cursor_types (f, arg);
ee78dc32 1612
623cdbf2 1613 /* Make sure the cursor gets redrawn. */
c922a224 1614 cursor_type_changed = 1;
ee78dc32 1615}
dfff8a69 1616\f
ee78dc32
GV
1617void
1618x_set_icon_type (f, arg, oldval)
1619 struct frame *f;
1620 Lisp_Object arg, oldval;
1621{
ee78dc32
GV
1622 int result;
1623
eb7576ce
GV
1624 if (NILP (arg) && NILP (oldval))
1625 return;
1626
7d0393cf 1627 if (STRINGP (arg) && STRINGP (oldval)
eb7576ce
GV
1628 && EQ (Fstring_equal (oldval, arg), Qt))
1629 return;
1630
1631 if (SYMBOLP (arg) && SYMBOLP (oldval) && EQ (arg, oldval))
ee78dc32
GV
1632 return;
1633
1634 BLOCK_INPUT;
ee78dc32 1635
eb7576ce 1636 result = x_bitmap_icon (f, arg);
ee78dc32
GV
1637 if (result)
1638 {
1639 UNBLOCK_INPUT;
1640 error ("No icon window available");
1641 }
1642
ee78dc32 1643 UNBLOCK_INPUT;
ee78dc32
GV
1644}
1645
ee78dc32
GV
1646void
1647x_set_icon_name (f, arg, oldval)
1648 struct frame *f;
1649 Lisp_Object arg, oldval;
1650{
ee78dc32
GV
1651 if (STRINGP (arg))
1652 {
1653 if (STRINGP (oldval) && EQ (Fstring_equal (oldval, arg), Qt))
1654 return;
1655 }
3f65d6f5 1656 else if (!NILP (arg) || NILP (oldval))
ee78dc32
GV
1657 return;
1658
1659 f->icon_name = arg;
1660
1661#if 0
fbd6baed 1662 if (f->output_data.w32->icon_bitmap != 0)
ee78dc32
GV
1663 return;
1664
1665 BLOCK_INPUT;
1666
1667 result = x_text_icon (f,
d5db4077
KR
1668 (char *) SDATA ((!NILP (f->icon_name)
1669 ? f->icon_name
1670 : !NILP (f->title)
1671 ? f->title
1672 : f->name)));
ee78dc32
GV
1673
1674 if (result)
1675 {
1676 UNBLOCK_INPUT;
1677 error ("No icon window available");
1678 }
1679
1680 /* If the window was unmapped (and its icon was mapped),
1681 the new icon is not mapped, so map the window in its stead. */
1682 if (FRAME_VISIBLE_P (f))
1683 {
1684#ifdef USE_X_TOOLKIT
fbd6baed 1685 XtPopup (f->output_data.w32->widget, XtGrabNone);
ee78dc32 1686#endif
fbd6baed 1687 XMapWindow (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f));
ee78dc32
GV
1688 }
1689
fbd6baed 1690 XFlush (FRAME_W32_DISPLAY (f));
ee78dc32
GV
1691 UNBLOCK_INPUT;
1692#endif
1693}
1694
a1258667 1695\f
ee78dc32
GV
1696void
1697x_set_menu_bar_lines (f, value, oldval)
1698 struct frame *f;
1699 Lisp_Object value, oldval;
1700{
1701 int nlines;
1702 int olines = FRAME_MENU_BAR_LINES (f);
1703
1704 /* Right now, menu bars don't work properly in minibuf-only frames;
1705 most of the commands try to apply themselves to the minibuffer
6fc2811b 1706 frame itself, and get an error because you can't switch buffers
ee78dc32
GV
1707 in or split the minibuffer window. */
1708 if (FRAME_MINIBUF_ONLY_P (f))
1709 return;
1710
1711 if (INTEGERP (value))
1712 nlines = XINT (value);
1713 else
1714 nlines = 0;
1715
1716 FRAME_MENU_BAR_LINES (f) = 0;
1717 if (nlines)
1718 FRAME_EXTERNAL_MENU_BAR (f) = 1;
1719 else
1720 {
1721 if (FRAME_EXTERNAL_MENU_BAR (f) == 1)
1722 free_frame_menubar (f);
1723 FRAME_EXTERNAL_MENU_BAR (f) = 0;
1edf84e7
GV
1724
1725 /* Adjust the frame size so that the client (text) dimensions
1726 remain the same. This depends on FRAME_EXTERNAL_MENU_BAR being
1727 set correctly. */
be786000 1728 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
6fc2811b 1729 do_pending_window_change (0);
ee78dc32 1730 }
6fc2811b
JR
1731 adjust_glyphs (f);
1732}
1733
1734
1735/* Set the number of lines used for the tool bar of frame F to VALUE.
1736 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
1737 is the old number of tool bar lines. This function changes the
1738 height of all windows on frame F to match the new tool bar height.
1739 The frame's height doesn't change. */
1740
1741void
1742x_set_tool_bar_lines (f, value, oldval)
1743 struct frame *f;
1744 Lisp_Object value, oldval;
1745{
36f8209a
JR
1746 int delta, nlines, root_height;
1747 Lisp_Object root_window;
6fc2811b 1748
dc220243
JR
1749 /* Treat tool bars like menu bars. */
1750 if (FRAME_MINIBUF_ONLY_P (f))
1751 return;
1752
6fc2811b
JR
1753 /* Use VALUE only if an integer >= 0. */
1754 if (INTEGERP (value) && XINT (value) >= 0)
1755 nlines = XFASTINT (value);
1756 else
1757 nlines = 0;
1758
1759 /* Make sure we redisplay all windows in this frame. */
1760 ++windows_or_buffers_changed;
1761
1762 delta = nlines - FRAME_TOOL_BAR_LINES (f);
36f8209a
JR
1763
1764 /* Don't resize the tool-bar to more than we have room for. */
1765 root_window = FRAME_ROOT_WINDOW (f);
be786000 1766 root_height = WINDOW_TOTAL_LINES (XWINDOW (root_window));
36f8209a
JR
1767 if (root_height - delta < 1)
1768 {
1769 delta = root_height - 1;
1770 nlines = FRAME_TOOL_BAR_LINES (f) + delta;
1771 }
1772
6fc2811b 1773 FRAME_TOOL_BAR_LINES (f) = nlines;
6d906347 1774 change_window_heights (root_window, delta);
6fc2811b 1775 adjust_glyphs (f);
36f8209a
JR
1776
1777 /* We also have to make sure that the internal border at the top of
1778 the frame, below the menu bar or tool bar, is redrawn when the
1779 tool bar disappears. This is so because the internal border is
1780 below the tool bar if one is displayed, but is below the menu bar
1781 if there isn't a tool bar. The tool bar draws into the area
1782 below the menu bar. */
1783 if (FRAME_W32_WINDOW (f) && FRAME_TOOL_BAR_LINES (f) == 0)
1784 {
2dc8b986 1785 clear_frame (f);
36f8209a 1786 clear_current_matrices (f);
36f8209a
JR
1787 }
1788
1789 /* If the tool bar gets smaller, the internal border below it
1790 has to be cleared. It was formerly part of the display
1791 of the larger tool bar, and updating windows won't clear it. */
1792 if (delta < 0)
1793 {
1794 int height = FRAME_INTERNAL_BORDER_WIDTH (f);
be786000
KS
1795 int width = FRAME_PIXEL_WIDTH (f);
1796 int y = nlines * FRAME_LINE_HEIGHT (f);
36f8209a
JR
1797
1798 BLOCK_INPUT;
1799 {
1800 HDC hdc = get_frame_dc (f);
1801 w32_clear_area (f, hdc, 0, y, width, height);
1802 release_frame_dc (f, hdc);
1803 }
1804 UNBLOCK_INPUT;
3cf3436e
JR
1805
1806 if (WINDOWP (f->tool_bar_window))
1807 clear_glyph_matrix (XWINDOW (f->tool_bar_window)->current_matrix);
36f8209a 1808 }
ee78dc32
GV
1809}
1810
6fc2811b 1811
ee78dc32 1812/* Change the name of frame F to NAME. If NAME is nil, set F's name to
fbd6baed 1813 w32_id_name.
ee78dc32
GV
1814
1815 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1816 name; if NAME is a string, set F's name to NAME and set
1817 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1818
1819 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1820 suggesting a new name, which lisp code should override; if
1821 F->explicit_name is set, ignore the new name; otherwise, set it. */
1822
1823void
1824x_set_name (f, name, explicit)
1825 struct frame *f;
1826 Lisp_Object name;
1827 int explicit;
1828{
7d0393cf 1829 /* Make sure that requests from lisp code override requests from
ee78dc32
GV
1830 Emacs redisplay code. */
1831 if (explicit)
1832 {
1833 /* If we're switching from explicit to implicit, we had better
1834 update the mode lines and thereby update the title. */
1835 if (f->explicit_name && NILP (name))
1836 update_mode_lines = 1;
1837
1838 f->explicit_name = ! NILP (name);
1839 }
1840 else if (f->explicit_name)
1841 return;
1842
fbd6baed 1843 /* If NAME is nil, set the name to the w32_id_name. */
ee78dc32
GV
1844 if (NILP (name))
1845 {
1846 /* Check for no change needed in this very common case
1847 before we do any consing. */
fbd6baed 1848 if (!strcmp (FRAME_W32_DISPLAY_INFO (f)->w32_id_name,
d5db4077 1849 SDATA (f->name)))
ee78dc32 1850 return;
fbd6baed 1851 name = build_string (FRAME_W32_DISPLAY_INFO (f)->w32_id_name);
ee78dc32
GV
1852 }
1853 else
b7826503 1854 CHECK_STRING (name);
ee78dc32
GV
1855
1856 /* Don't change the name if it's already NAME. */
1857 if (! NILP (Fstring_equal (name, f->name)))
1858 return;
1859
1edf84e7
GV
1860 f->name = name;
1861
1862 /* For setting the frame title, the title parameter should override
1863 the name parameter. */
1864 if (! NILP (f->title))
1865 name = f->title;
1866
fbd6baed 1867 if (FRAME_W32_WINDOW (f))
ee78dc32 1868 {
6fc2811b 1869 if (STRING_MULTIBYTE (name))
dfff8a69 1870 name = ENCODE_SYSTEM (name);
6fc2811b 1871
ee78dc32 1872 BLOCK_INPUT;
74084731 1873 SetWindowText (FRAME_W32_WINDOW (f), SDATA (name));
ee78dc32
GV
1874 UNBLOCK_INPUT;
1875 }
ee78dc32
GV
1876}
1877
1878/* This function should be called when the user's lisp code has
1879 specified a name for the frame; the name will override any set by the
1880 redisplay code. */
1881void
1882x_explicitly_set_name (f, arg, oldval)
1883 FRAME_PTR f;
1884 Lisp_Object arg, oldval;
1885{
1886 x_set_name (f, arg, 1);
1887}
1888
1889/* This function should be called by Emacs redisplay code to set the
1890 name; names set this way will never override names set by the user's
1891 lisp code. */
1892void
1893x_implicitly_set_name (f, arg, oldval)
1894 FRAME_PTR f;
1895 Lisp_Object arg, oldval;
1896{
1897 x_set_name (f, arg, 0);
1898}
1edf84e7
GV
1899\f
1900/* Change the title of frame F to NAME.
40aa4c27 1901 If NAME is nil, use the frame name as the title. */
ee78dc32 1902
1edf84e7 1903void
6fc2811b 1904x_set_title (f, name, old_name)
1edf84e7 1905 struct frame *f;
6fc2811b 1906 Lisp_Object name, old_name;
1edf84e7
GV
1907{
1908 /* Don't change the title if it's already NAME. */
1909 if (EQ (name, f->title))
1910 return;
1911
1912 update_mode_lines = 1;
1913
1914 f->title = name;
1915
1916 if (NILP (name))
1917 name = f->name;
1918
1919 if (FRAME_W32_WINDOW (f))
1920 {
6fc2811b 1921 if (STRING_MULTIBYTE (name))
dfff8a69 1922 name = ENCODE_SYSTEM (name);
6fc2811b 1923
1edf84e7 1924 BLOCK_INPUT;
74084731 1925 SetWindowText (FRAME_W32_WINDOW (f), SDATA (name));
1edf84e7
GV
1926 UNBLOCK_INPUT;
1927 }
1928}
ee78dc32 1929
ee78dc32 1930
19f093e5 1931void x_set_scroll_bar_default_width (f)
ee78dc32 1932 struct frame *f;
ee78dc32 1933{
be786000 1934 int wid = FRAME_COLUMN_WIDTH (f);
6fc2811b 1935
be786000
KS
1936 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = GetSystemMetrics (SM_CXVSCROLL);
1937 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) +
1938 wid - 1) / wid;
ee78dc32 1939}
6d906347 1940
ee78dc32 1941\f
3faa984f 1942/* Subroutines for creating a frame. */
ee78dc32 1943
c9b2104d
JR
1944Cursor
1945w32_load_cursor (LPCTSTR name)
1946{
1947 /* Try first to load cursor from application resource. */
74084731 1948 Cursor cursor = LoadImage ((HINSTANCE) GetModuleHandle (NULL),
c9b2104d
JR
1949 name, IMAGE_CURSOR, 0, 0,
1950 LR_DEFAULTCOLOR | LR_DEFAULTSIZE | LR_SHARED);
1951 if (!cursor)
1952 {
1953 /* Then try to load a shared predefined cursor. */
1954 cursor = LoadImage (NULL, name, IMAGE_CURSOR, 0, 0,
1955 LR_DEFAULTCOLOR | LR_DEFAULTSIZE | LR_SHARED);
1956 }
1957 return cursor;
1958}
ee78dc32 1959
fbd6baed 1960extern LRESULT CALLBACK w32_wnd_proc ();
ee78dc32 1961
74084731 1962static BOOL
fbd6baed 1963w32_init_class (hinst)
ee78dc32
GV
1964 HINSTANCE hinst;
1965{
1966 WNDCLASS wc;
1967
5ac45f98 1968 wc.style = CS_HREDRAW | CS_VREDRAW;
fbd6baed 1969 wc.lpfnWndProc = (WNDPROC) w32_wnd_proc;
ee78dc32
GV
1970 wc.cbClsExtra = 0;
1971 wc.cbWndExtra = WND_EXTRA_BYTES;
1972 wc.hInstance = hinst;
1973 wc.hIcon = LoadIcon (hinst, EMACS_CLASS);
c9b2104d 1974 wc.hCursor = w32_load_cursor (IDC_ARROW);
4587b026 1975 wc.hbrBackground = NULL; /* GetStockObject (WHITE_BRUSH); */
ee78dc32
GV
1976 wc.lpszMenuName = NULL;
1977 wc.lpszClassName = EMACS_CLASS;
1978
1979 return (RegisterClass (&wc));
1980}
1981
74084731 1982static HWND
fbd6baed 1983w32_createscrollbar (f, bar)
ee78dc32
GV
1984 struct frame *f;
1985 struct scroll_bar * bar;
1986{
1987 return (CreateWindow ("SCROLLBAR", "", SBS_VERT | WS_CHILD | WS_VISIBLE,
1988 /* Position and size of scroll bar. */
74084731
JB
1989 XINT (bar->left) + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
1990 XINT (bar->top),
1991 XINT (bar->width) - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
1992 XINT (bar->height),
fbd6baed 1993 FRAME_W32_WINDOW (f),
ee78dc32
GV
1994 NULL,
1995 hinst,
1996 NULL));
1997}
1998
74084731 1999static void
fbd6baed 2000w32_createwindow (f)
ee78dc32
GV
2001 struct frame *f;
2002{
2003 HWND hwnd;
1edf84e7 2004 RECT rect;
df70725f
EZ
2005 Lisp_Object top = Qunbound;
2006 Lisp_Object left = Qunbound;
3faa984f 2007 struct w32_display_info *dpyinfo = &one_w32_display_info;
1edf84e7
GV
2008
2009 rect.left = rect.top = 0;
be786000
KS
2010 rect.right = FRAME_PIXEL_WIDTH (f);
2011 rect.bottom = FRAME_PIXEL_HEIGHT (f);
7d0393cf 2012
1edf84e7
GV
2013 AdjustWindowRect (&rect, f->output_data.w32->dwStyle,
2014 FRAME_EXTERNAL_MENU_BAR (f));
7d0393cf 2015
ee78dc32 2016 /* Do first time app init */
7d0393cf 2017
ee78dc32
GV
2018 if (!hprevinst)
2019 {
fbd6baed 2020 w32_init_class (hinst);
ee78dc32 2021 }
7d0393cf 2022
2770d589
JR
2023 if (f->size_hint_flags & USPosition || f->size_hint_flags & PPosition)
2024 {
2025 XSETINT (left, f->left_pos);
2026 XSETINT (top, f->top_pos);
2027 }
2028 else if (EQ (left, Qunbound) && EQ (top, Qunbound))
df70725f
EZ
2029 {
2030 /* When called with RES_TYPE_NUMBER, w32_get_arg will return zero
2031 for anything that is not a number and is not Qunbound. */
3faa984f
JR
2032 left = x_get_arg (dpyinfo, Qnil, Qleft, "left", "Left", RES_TYPE_NUMBER);
2033 top = x_get_arg (dpyinfo, Qnil, Qtop, "top", "Top", RES_TYPE_NUMBER);
df70725f 2034 }
48b62d10 2035
1edf84e7
GV
2036 FRAME_W32_WINDOW (f) = hwnd
2037 = CreateWindow (EMACS_CLASS,
2038 f->namebuf,
9ead1b60 2039 f->output_data.w32->dwStyle | WS_CLIPCHILDREN,
48b62d10
EZ
2040 EQ (left, Qunbound) ? CW_USEDEFAULT : XINT (left),
2041 EQ (top, Qunbound) ? CW_USEDEFAULT : XINT (top),
1edf84e7
GV
2042 rect.right - rect.left,
2043 rect.bottom - rect.top,
2044 NULL,
2045 NULL,
2046 hinst,
2047 NULL);
2048
ee78dc32
GV
2049 if (hwnd)
2050 {
be786000
KS
2051 SetWindowLong (hwnd, WND_FONTWIDTH_INDEX, FRAME_COLUMN_WIDTH (f));
2052 SetWindowLong (hwnd, WND_LINEHEIGHT_INDEX, FRAME_LINE_HEIGHT (f));
2053 SetWindowLong (hwnd, WND_BORDER_INDEX, FRAME_INTERNAL_BORDER_WIDTH (f));
2054 SetWindowLong (hwnd, WND_SCROLLBAR_INDEX, f->scroll_bar_actual_width);
6fc2811b 2055 SetWindowLong (hwnd, WND_BACKGROUND_INDEX, FRAME_BACKGROUND_PIXEL (f));
ee78dc32 2056
cb9e33d4
RS
2057 /* Enable drag-n-drop. */
2058 DragAcceptFiles (hwnd, TRUE);
7d0393cf 2059
5ac45f98
GV
2060 /* Do this to discard the default setting specified by our parent. */
2061 ShowWindow (hwnd, SW_HIDE);
1771bb6e
EZ
2062
2063 /* Update frame positions. */
2064 GetWindowRect (hwnd, &rect);
2065 f->left_pos = rect.left;
2066 f->top_pos = rect.top;
3c190163 2067 }
3c190163
GV
2068}
2069
74084731 2070static void
ee78dc32 2071my_post_msg (wmsg, hwnd, msg, wParam, lParam)
fbd6baed 2072 W32Msg * wmsg;
ee78dc32
GV
2073 HWND hwnd;
2074 UINT msg;
2075 WPARAM wParam;
2076 LPARAM lParam;
2077{
2078 wmsg->msg.hwnd = hwnd;
2079 wmsg->msg.message = msg;
2080 wmsg->msg.wParam = wParam;
2081 wmsg->msg.lParam = lParam;
2082 wmsg->msg.time = GetMessageTime ();
2083
2084 post_msg (wmsg);
2085}
2086
e9e23e23 2087/* GetKeyState and MapVirtualKey on Windows 95 do not actually distinguish
a1a80b40
GV
2088 between left and right keys as advertised. We test for this
2089 support dynamically, and set a flag when the support is absent. If
2090 absent, we keep track of the left and right control and alt keys
2091 ourselves. This is particularly necessary on keyboards that rely
2092 upon the AltGr key, which is represented as having the left control
2093 and right alt keys pressed. For these keyboards, we need to know
2094 when the left alt key has been pressed in addition to the AltGr key
2095 so that we can properly support M-AltGr-key sequences (such as M-@
2096 on Swedish keyboards). */
2097
2098#define EMACS_LCONTROL 0
2099#define EMACS_RCONTROL 1
2100#define EMACS_LMENU 2
2101#define EMACS_RMENU 3
2102
2103static int modifiers[4];
2104static int modifiers_recorded;
2105static int modifier_key_support_tested;
2106
2107static void
2108test_modifier_support (unsigned int wparam)
2109{
2110 unsigned int l, r;
2111
2112 if (wparam != VK_CONTROL && wparam != VK_MENU)
2113 return;
2114 if (wparam == VK_CONTROL)
2115 {
2116 l = VK_LCONTROL;
2117 r = VK_RCONTROL;
2118 }
2119 else
2120 {
2121 l = VK_LMENU;
2122 r = VK_RMENU;
2123 }
2124 if (!(GetKeyState (l) & 0x8000) && !(GetKeyState (r) & 0x8000))
2125 modifiers_recorded = 1;
2126 else
2127 modifiers_recorded = 0;
2128 modifier_key_support_tested = 1;
2129}
2130
2131static void
2132record_keydown (unsigned int wparam, unsigned int lparam)
2133{
2134 int i;
2135
2136 if (!modifier_key_support_tested)
2137 test_modifier_support (wparam);
2138
2139 if ((wparam != VK_CONTROL && wparam != VK_MENU) || !modifiers_recorded)
2140 return;
2141
2142 if (wparam == VK_CONTROL)
2143 i = (lparam & 0x1000000) ? EMACS_RCONTROL : EMACS_LCONTROL;
2144 else
2145 i = (lparam & 0x1000000) ? EMACS_RMENU : EMACS_LMENU;
2146
2147 modifiers[i] = 1;
2148}
2149
2150static void
2151record_keyup (unsigned int wparam, unsigned int lparam)
2152{
2153 int i;
2154
2155 if ((wparam != VK_CONTROL && wparam != VK_MENU) || !modifiers_recorded)
2156 return;
2157
2158 if (wparam == VK_CONTROL)
2159 i = (lparam & 0x1000000) ? EMACS_RCONTROL : EMACS_LCONTROL;
2160 else
2161 i = (lparam & 0x1000000) ? EMACS_RMENU : EMACS_LMENU;
2162
2163 modifiers[i] = 0;
2164}
2165
da36a4d6 2166/* Emacs can lose focus while a modifier key has been pressed. When
7d0393cf 2167 it regains focus, be conservative and clear all modifiers since
da36a4d6
GV
2168 we cannot reconstruct the left and right modifier state. */
2169static void
2170reset_modifiers ()
2171{
8681157a
RS
2172 SHORT ctrl, alt;
2173
adcc3809
GV
2174 if (GetFocus () == NULL)
2175 /* Emacs doesn't have keyboard focus. Do nothing. */
da36a4d6 2176 return;
8681157a
RS
2177
2178 ctrl = GetAsyncKeyState (VK_CONTROL);
2179 alt = GetAsyncKeyState (VK_MENU);
2180
8681157a
RS
2181 if (!(ctrl & 0x08000))
2182 /* Clear any recorded control modifier state. */
2183 modifiers[EMACS_RCONTROL] = modifiers[EMACS_LCONTROL] = 0;
2184
2185 if (!(alt & 0x08000))
2186 /* Clear any recorded alt modifier state. */
2187 modifiers[EMACS_RMENU] = modifiers[EMACS_LMENU] = 0;
2188
adcc3809
GV
2189 /* Update the state of all modifier keys, because modifiers used in
2190 hot-key combinations can get stuck on if Emacs loses focus as a
2191 result of a hot-key being pressed. */
2192 {
2193 BYTE keystate[256];
2194
2195#define CURRENT_STATE(key) ((GetAsyncKeyState (key) & 0x8000) >> 8)
2196
2197 GetKeyboardState (keystate);
2198 keystate[VK_SHIFT] = CURRENT_STATE (VK_SHIFT);
2199 keystate[VK_CONTROL] = CURRENT_STATE (VK_CONTROL);
2200 keystate[VK_LCONTROL] = CURRENT_STATE (VK_LCONTROL);
2201 keystate[VK_RCONTROL] = CURRENT_STATE (VK_RCONTROL);
2202 keystate[VK_MENU] = CURRENT_STATE (VK_MENU);
2203 keystate[VK_LMENU] = CURRENT_STATE (VK_LMENU);
2204 keystate[VK_RMENU] = CURRENT_STATE (VK_RMENU);
2205 keystate[VK_LWIN] = CURRENT_STATE (VK_LWIN);
2206 keystate[VK_RWIN] = CURRENT_STATE (VK_RWIN);
2207 keystate[VK_APPS] = CURRENT_STATE (VK_APPS);
2208 SetKeyboardState (keystate);
2209 }
da36a4d6
GV
2210}
2211
7830e24b
RS
2212/* Synchronize modifier state with what is reported with the current
2213 keystroke. Even if we cannot distinguish between left and right
2214 modifier keys, we know that, if no modifiers are set, then neither
2215 the left or right modifier should be set. */
2216static void
2217sync_modifiers ()
2218{
2219 if (!modifiers_recorded)
2220 return;
2221
7d0393cf 2222 if (!(GetKeyState (VK_CONTROL) & 0x8000))
7830e24b
RS
2223 modifiers[EMACS_RCONTROL] = modifiers[EMACS_LCONTROL] = 0;
2224
7d0393cf 2225 if (!(GetKeyState (VK_MENU) & 0x8000))
7830e24b
RS
2226 modifiers[EMACS_RMENU] = modifiers[EMACS_LMENU] = 0;
2227}
2228
a1a80b40
GV
2229static int
2230modifier_set (int vkey)
2231{
ccc2d29c 2232 if (vkey == VK_CAPITAL || vkey == VK_SCROLL)
891560d6 2233 return (GetKeyState (vkey) & 0x1);
a1a80b40
GV
2234 if (!modifiers_recorded)
2235 return (GetKeyState (vkey) & 0x8000);
2236
2237 switch (vkey)
2238 {
2239 case VK_LCONTROL:
2240 return modifiers[EMACS_LCONTROL];
2241 case VK_RCONTROL:
2242 return modifiers[EMACS_RCONTROL];
2243 case VK_LMENU:
2244 return modifiers[EMACS_LMENU];
2245 case VK_RMENU:
2246 return modifiers[EMACS_RMENU];
a1a80b40
GV
2247 }
2248 return (GetKeyState (vkey) & 0x8000);
2249}
2250
ccc2d29c
GV
2251/* Convert between the modifier bits W32 uses and the modifier bits
2252 Emacs uses. */
2253
2254unsigned int
2255w32_key_to_modifier (int key)
2256{
2257 Lisp_Object key_mapping;
2258
2259 switch (key)
2260 {
2261 case VK_LWIN:
2262 key_mapping = Vw32_lwindow_modifier;
2263 break;
2264 case VK_RWIN:
2265 key_mapping = Vw32_rwindow_modifier;
2266 break;
2267 case VK_APPS:
2268 key_mapping = Vw32_apps_modifier;
2269 break;
2270 case VK_SCROLL:
2271 key_mapping = Vw32_scroll_lock_modifier;
2272 break;
2273 default:
2274 key_mapping = Qnil;
2275 }
2276
adcc3809
GV
2277 /* NB. This code runs in the input thread, asychronously to the lisp
2278 thread, so we must be careful to ensure access to lisp data is
2279 thread-safe. The following code is safe because the modifier
2280 variable values are updated atomically from lisp and symbols are
2281 not relocated by GC. Also, we don't have to worry about seeing GC
2282 markbits here. */
2283 if (EQ (key_mapping, Qhyper))
ccc2d29c 2284 return hyper_modifier;
adcc3809 2285 if (EQ (key_mapping, Qsuper))
ccc2d29c 2286 return super_modifier;
adcc3809 2287 if (EQ (key_mapping, Qmeta))
ccc2d29c 2288 return meta_modifier;
adcc3809 2289 if (EQ (key_mapping, Qalt))
ccc2d29c 2290 return alt_modifier;
adcc3809 2291 if (EQ (key_mapping, Qctrl))
ccc2d29c 2292 return ctrl_modifier;
adcc3809 2293 if (EQ (key_mapping, Qcontrol)) /* synonym for ctrl */
ccc2d29c 2294 return ctrl_modifier;
adcc3809 2295 if (EQ (key_mapping, Qshift))
ccc2d29c
GV
2296 return shift_modifier;
2297
2298 /* Don't generate any modifier if not explicitly requested. */
2299 return 0;
2300}
2301
74084731 2302static unsigned int
ccc2d29c
GV
2303w32_get_modifiers ()
2304{
2305 return ((modifier_set (VK_SHIFT) ? shift_modifier : 0) |
2306 (modifier_set (VK_CONTROL) ? ctrl_modifier : 0) |
2307 (modifier_set (VK_LWIN) ? w32_key_to_modifier (VK_LWIN) : 0) |
2308 (modifier_set (VK_RWIN) ? w32_key_to_modifier (VK_RWIN) : 0) |
2309 (modifier_set (VK_APPS) ? w32_key_to_modifier (VK_APPS) : 0) |
2310 (modifier_set (VK_SCROLL) ? w32_key_to_modifier (VK_SCROLL) : 0) |
2311 (modifier_set (VK_MENU) ?
2312 ((NILP (Vw32_alt_is_meta)) ? alt_modifier : meta_modifier) : 0));
2313}
2314
a1a80b40
GV
2315/* We map the VK_* modifiers into console modifier constants
2316 so that we can use the same routines to handle both console
2317 and window input. */
2318
2319static int
ccc2d29c 2320construct_console_modifiers ()
a1a80b40
GV
2321{
2322 int mods;
2323
a1a80b40
GV
2324 mods = 0;
2325 mods |= (modifier_set (VK_SHIFT)) ? SHIFT_PRESSED : 0;
2326 mods |= (modifier_set (VK_CAPITAL)) ? CAPSLOCK_ON : 0;
ccc2d29c
GV
2327 mods |= (modifier_set (VK_SCROLL)) ? SCROLLLOCK_ON : 0;
2328 mods |= (modifier_set (VK_NUMLOCK)) ? NUMLOCK_ON : 0;
a1a80b40
GV
2329 mods |= (modifier_set (VK_LCONTROL)) ? LEFT_CTRL_PRESSED : 0;
2330 mods |= (modifier_set (VK_RCONTROL)) ? RIGHT_CTRL_PRESSED : 0;
2331 mods |= (modifier_set (VK_LMENU)) ? LEFT_ALT_PRESSED : 0;
2332 mods |= (modifier_set (VK_RMENU)) ? RIGHT_ALT_PRESSED : 0;
ccc2d29c
GV
2333 mods |= (modifier_set (VK_LWIN)) ? LEFT_WIN_PRESSED : 0;
2334 mods |= (modifier_set (VK_RWIN)) ? RIGHT_WIN_PRESSED : 0;
2335 mods |= (modifier_set (VK_APPS)) ? APPS_PRESSED : 0;
a1a80b40
GV
2336
2337 return mods;
2338}
2339
ccc2d29c
GV
2340static int
2341w32_get_key_modifiers (unsigned int wparam, unsigned int lparam)
da36a4d6 2342{
ccc2d29c
GV
2343 int mods;
2344
2345 /* Convert to emacs modifiers. */
2346 mods = w32_kbd_mods_to_emacs (construct_console_modifiers (), wparam);
2347
2348 return mods;
2349}
da36a4d6 2350
ccc2d29c
GV
2351unsigned int
2352map_keypad_keys (unsigned int virt_key, unsigned int extended)
2353{
2354 if (virt_key < VK_CLEAR || virt_key > VK_DELETE)
2355 return virt_key;
da36a4d6 2356
ccc2d29c 2357 if (virt_key == VK_RETURN)
da36a4d6
GV
2358 return (extended ? VK_NUMPAD_ENTER : VK_RETURN);
2359
ccc2d29c
GV
2360 if (virt_key >= VK_PRIOR && virt_key <= VK_DOWN)
2361 return (!extended ? (VK_NUMPAD_PRIOR + (virt_key - VK_PRIOR)) : virt_key);
2362
2363 if (virt_key == VK_INSERT || virt_key == VK_DELETE)
2364 return (!extended ? (VK_NUMPAD_INSERT + (virt_key - VK_INSERT)) : virt_key);
2365
2366 if (virt_key == VK_CLEAR)
2367 return (!extended ? VK_NUMPAD_CLEAR : virt_key);
2368
2369 return virt_key;
2370}
2371
2372/* List of special key combinations which w32 would normally capture,
74084731 2373 but Emacs should grab instead. Not directly visible to lisp, to
ccc2d29c
GV
2374 simplify synchronization. Each item is an integer encoding a virtual
2375 key code and modifier combination to capture. */
74084731 2376static Lisp_Object w32_grabbed_keys;
ccc2d29c 2377
74084731 2378#define HOTKEY(vk, mods) make_number (((vk) & 255) | ((mods) << 8))
ccc2d29c
GV
2379#define HOTKEY_ID(k) (XFASTINT (k) & 0xbfff)
2380#define HOTKEY_VK_CODE(k) (XFASTINT (k) & 255)
2381#define HOTKEY_MODIFIERS(k) (XFASTINT (k) >> 8)
2382
2ba49441
JR
2383#define RAW_HOTKEY_ID(k) ((k) & 0xbfff)
2384#define RAW_HOTKEY_VK_CODE(k) ((k) & 255)
2385#define RAW_HOTKEY_MODIFIERS(k) ((k) >> 8)
2386
ccc2d29c
GV
2387/* Register hot-keys for reserved key combinations when Emacs has
2388 keyboard focus, since this is the only way Emacs can receive key
2389 combinations like Alt-Tab which are used by the system. */
2390
2391static void
2392register_hot_keys (hwnd)
2393 HWND hwnd;
2394{
2395 Lisp_Object keylist;
2396
8e50cc2d
SM
2397 /* Use CONSP, since we are called asynchronously. */
2398 for (keylist = w32_grabbed_keys; CONSP (keylist); keylist = XCDR (keylist))
ccc2d29c
GV
2399 {
2400 Lisp_Object key = XCAR (keylist);
2401
2402 /* Deleted entries get set to nil. */
2403 if (!INTEGERP (key))
2404 continue;
2405
2406 RegisterHotKey (hwnd, HOTKEY_ID (key),
2407 HOTKEY_MODIFIERS (key), HOTKEY_VK_CODE (key));
2408 }
2409}
2410
2411static void
2412unregister_hot_keys (hwnd)
2413 HWND hwnd;
2414{
2415 Lisp_Object keylist;
2416
8e50cc2d 2417 for (keylist = w32_grabbed_keys; CONSP (keylist); keylist = XCDR (keylist))
ccc2d29c
GV
2418 {
2419 Lisp_Object key = XCAR (keylist);
2420
2421 if (!INTEGERP (key))
2422 continue;
2423
2424 UnregisterHotKey (hwnd, HOTKEY_ID (key));
2425 }
2426}
2427
5ac45f98
GV
2428/* Main message dispatch loop. */
2429
1edf84e7
GV
2430static void
2431w32_msg_pump (deferred_msg * msg_buf)
5ac45f98
GV
2432{
2433 MSG msg;
ccc2d29c
GV
2434 int result;
2435 HWND focus_window;
93fbe8b7
GV
2436
2437 msh_mousewheel = RegisterWindowMessage (MSH_MOUSEWHEEL);
7d0393cf 2438
5ac45f98
GV
2439 while (GetMessage (&msg, NULL, 0, 0))
2440 {
2441 if (msg.hwnd == NULL)
2442 {
2443 switch (msg.message)
2444 {
3ef68e6b
AI
2445 case WM_NULL:
2446 /* Produced by complete_deferred_msg; just ignore. */
2447 break;
5ac45f98 2448 case WM_EMACS_CREATEWINDOW:
d5781bb6
JR
2449 /* Initialize COM for this window. Even though we don't use it,
2450 some third party shell extensions can cause it to be used in
2451 system dialogs, which causes a crash if it is not initialized.
2452 This is a known bug in Windows, which was fixed long ago, but
2453 the patch for XP is not publically available until XP SP3,
2454 and older versions will never be patched. */
2455 CoInitialize (NULL);
fbd6baed 2456 w32_createwindow ((struct frame *) msg.wParam);
1edf84e7
GV
2457 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE, 0, 0))
2458 abort ();
5ac45f98 2459 break;
dfdb4047
GV
2460 case WM_EMACS_SETLOCALE:
2461 SetThreadLocale (msg.wParam);
2462 /* Reply is not expected. */
2463 break;
ccc2d29c
GV
2464 case WM_EMACS_SETKEYBOARDLAYOUT:
2465 result = (int) ActivateKeyboardLayout ((HKL) msg.wParam, 0);
2466 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE,
2467 result, 0))
2468 abort ();
2469 break;
2470 case WM_EMACS_REGISTER_HOT_KEY:
2471 focus_window = GetFocus ();
2472 if (focus_window != NULL)
2473 RegisterHotKey (focus_window,
2ba49441
JR
2474 RAW_HOTKEY_ID (msg.wParam),
2475 RAW_HOTKEY_MODIFIERS (msg.wParam),
2476 RAW_HOTKEY_VK_CODE (msg.wParam));
ccc2d29c
GV
2477 /* Reply is not expected. */
2478 break;
2479 case WM_EMACS_UNREGISTER_HOT_KEY:
2480 focus_window = GetFocus ();
2481 if (focus_window != NULL)
2ba49441 2482 UnregisterHotKey (focus_window, RAW_HOTKEY_ID (msg.wParam));
adcc3809
GV
2483 /* Mark item as erased. NB: this code must be
2484 thread-safe. The next line is okay because the cons
2485 cell is never made into garbage and is not relocated by
2486 GC. */
2ba49441 2487 XSETCAR ((Lisp_Object) ((EMACS_INT) msg.lParam), Qnil);
ccc2d29c
GV
2488 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE, 0, 0))
2489 abort ();
2490 break;
adcc3809
GV
2491 case WM_EMACS_TOGGLE_LOCK_KEY:
2492 {
2493 int vk_code = (int) msg.wParam;
2494 int cur_state = (GetKeyState (vk_code) & 1);
2ba49441 2495 Lisp_Object new_state = (Lisp_Object) ((EMACS_INT) msg.lParam);
adcc3809
GV
2496
2497 /* NB: This code must be thread-safe. It is safe to
2498 call NILP because symbols are not relocated by GC,
2499 and pointer here is not touched by GC (so the markbit
2500 can't be set). Numbers are safe because they are
2501 immediate values. */
2502 if (NILP (new_state)
2503 || (NUMBERP (new_state)
8edb0a6f 2504 && ((XUINT (new_state)) & 1) != cur_state))
adcc3809
GV
2505 {
2506 one_w32_display_info.faked_key = vk_code;
2507
2508 keybd_event ((BYTE) vk_code,
2509 (BYTE) MapVirtualKey (vk_code, 0),
2510 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
2511 keybd_event ((BYTE) vk_code,
2512 (BYTE) MapVirtualKey (vk_code, 0),
2513 KEYEVENTF_EXTENDEDKEY | 0, 0);
2514 keybd_event ((BYTE) vk_code,
2515 (BYTE) MapVirtualKey (vk_code, 0),
2516 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
2517 cur_state = !cur_state;
2518 }
2519 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE,
2520 cur_state, 0))
2521 abort ();
2522 }
2523 break;
5dff811e
JR
2524#ifdef MSG_DEBUG
2525 /* Broadcast messages make it here, so you need to be looking
2526 for something in particular for this to be useful. */
1edf84e7 2527 default:
1edf84e7 2528 DebPrint (("msg %x not expected by w32_msg_pump\n", msg.message));
5dff811e 2529#endif
5ac45f98
GV
2530 }
2531 }
2532 else
2533 {
2534 DispatchMessage (&msg);
2535 }
1edf84e7
GV
2536
2537 /* Exit nested loop when our deferred message has completed. */
2538 if (msg_buf->completed)
2539 break;
5ac45f98 2540 }
1edf84e7
GV
2541}
2542
2543deferred_msg * deferred_msg_head;
2544
2545static deferred_msg *
2546find_deferred_msg (HWND hwnd, UINT msg)
2547{
2548 deferred_msg * item;
2549
2550 /* Don't actually need synchronization for read access, since
2551 modification of single pointer is always atomic. */
2552 /* enter_crit (); */
2553
2554 for (item = deferred_msg_head; item != NULL; item = item->next)
2555 if (item->w32msg.msg.hwnd == hwnd
2556 && item->w32msg.msg.message == msg)
2557 break;
2558
2559 /* leave_crit (); */
2560
2561 return item;
2562}
2563
2564static LRESULT
2565send_deferred_msg (deferred_msg * msg_buf,
2566 HWND hwnd,
2567 UINT msg,
2568 WPARAM wParam,
2569 LPARAM lParam)
2570{
2571 /* Only input thread can send deferred messages. */
2572 if (GetCurrentThreadId () != dwWindowsThreadId)
2573 abort ();
2574
2575 /* It is an error to send a message that is already deferred. */
2576 if (find_deferred_msg (hwnd, msg) != NULL)
2577 abort ();
2578
2579 /* Enforced synchronization is not needed because this is the only
2580 function that alters deferred_msg_head, and the following critical
2581 section is guaranteed to only be serially reentered (since only the
2582 input thread can call us). */
2583
2584 /* enter_crit (); */
2585
2586 msg_buf->completed = 0;
2587 msg_buf->next = deferred_msg_head;
2588 deferred_msg_head = msg_buf;
2589 my_post_msg (&msg_buf->w32msg, hwnd, msg, wParam, lParam);
2590
2591 /* leave_crit (); */
2592
2593 /* Start a new nested message loop to process other messages until
2594 this one is completed. */
2595 w32_msg_pump (msg_buf);
2596
2597 deferred_msg_head = msg_buf->next;
2598
2599 return msg_buf->result;
2600}
2601
2602void
2603complete_deferred_msg (HWND hwnd, UINT msg, LRESULT result)
2604{
2605 deferred_msg * msg_buf = find_deferred_msg (hwnd, msg);
2606
2607 if (msg_buf == NULL)
74084731 2608 /* Message may have been cancelled, so don't abort. */
3ef68e6b 2609 return;
1edf84e7
GV
2610
2611 msg_buf->result = result;
2612 msg_buf->completed = 1;
2613
2614 /* Ensure input thread is woken so it notices the completion. */
2615 PostThreadMessage (dwWindowsThreadId, WM_NULL, 0, 0);
2616}
2617
74084731 2618static void
3ef68e6b
AI
2619cancel_all_deferred_msgs ()
2620{
2621 deferred_msg * item;
2622
2623 /* Don't actually need synchronization for read access, since
2624 modification of single pointer is always atomic. */
2625 /* enter_crit (); */
2626
2627 for (item = deferred_msg_head; item != NULL; item = item->next)
2628 {
2629 item->result = 0;
2630 item->completed = 1;
2631 }
2632
2633 /* leave_crit (); */
2634
2635 /* Ensure input thread is woken so it notices the completion. */
2636 PostThreadMessage (dwWindowsThreadId, WM_NULL, 0, 0);
2637}
1edf84e7 2638
992dfd90
JR
2639DWORD WINAPI
2640w32_msg_worker (void *arg)
1edf84e7
GV
2641{
2642 MSG msg;
2643 deferred_msg dummy_buf;
2644
2645 /* Ensure our message queue is created */
7d0393cf 2646
1edf84e7 2647 PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE);
7d0393cf 2648
1edf84e7
GV
2649 if (!PostThreadMessage (dwMainThreadId, WM_EMACS_DONE, 0, 0))
2650 abort ();
2651
2652 memset (&dummy_buf, 0, sizeof (dummy_buf));
2653 dummy_buf.w32msg.msg.hwnd = NULL;
2654 dummy_buf.w32msg.msg.message = WM_NULL;
2655
23f250f4 2656 /* This is the initial message loop which should only exit when the
1edf84e7
GV
2657 application quits. */
2658 w32_msg_pump (&dummy_buf);
2659
2660 return 0;
5ac45f98
GV
2661}
2662
f0c947b5
JR
2663static void
2664signal_user_input ()
2665{
2666 /* Interrupt any lisp that wants to be interrupted by input. */
2667 if (!NILP (Vthrow_on_input))
2668 {
2669 Vquit_flag = Vthrow_on_input;
2670 /* If we're inside a function that wants immediate quits,
2671 do it now. */
2672 if (immediate_quit && NILP (Vinhibit_quit))
2673 {
2674 immediate_quit = 0;
2675 QUIT;
2676 }
2677 }
2678}
2679
2680
3ef68e6b
AI
2681static void
2682post_character_message (hwnd, msg, wParam, lParam, modifiers)
2683 HWND hwnd;
2684 UINT msg;
2685 WPARAM wParam;
2686 LPARAM lParam;
2687 DWORD modifiers;
2688
2689{
2690 W32Msg wmsg;
2691
2692 wmsg.dwModifiers = modifiers;
2693
2694 /* Detect quit_char and set quit-flag directly. Note that we
2695 still need to post a message to ensure the main thread will be
74084731 2696 woken up if blocked in sys_select, but we do NOT want to post
3ef68e6b
AI
2697 the quit_char message itself (because it will usually be as if
2698 the user had typed quit_char twice). Instead, we post a dummy
2699 message that has no particular effect. */
2700 {
2701 int c = wParam;
2702 if (isalpha (c) && wmsg.dwModifiers == ctrl_modifier)
2703 c = make_ctrl_char (c) & 0377;
7d081355
AI
2704 if (c == quit_char
2705 || (wmsg.dwModifiers == 0 &&
2ba49441 2706 w32_quit_key && wParam == w32_quit_key))
3ef68e6b
AI
2707 {
2708 Vquit_flag = Qt;
2709
2710 /* The choice of message is somewhat arbitrary, as long as
2711 the main thread handler just ignores it. */
2712 msg = WM_NULL;
2713
2714 /* Interrupt any blocking system calls. */
2715 signal_quit ();
2716
2717 /* As a safety precaution, forcibly complete any deferred
2718 messages. This is a kludge, but I don't see any particularly
2719 clean way to handle the situation where a deferred message is
2720 "dropped" in the lisp thread, and will thus never be
2721 completed, eg. by the user trying to activate the menubar
2722 when the lisp thread is busy, and then typing C-g when the
2723 menubar doesn't open promptly (with the result that the
2724 menubar never responds at all because the deferred
2725 WM_INITMENU message is never completed). Another problem
2726 situation is when the lisp thread calls SendMessage (to send
2727 a window manager command) when a message has been deferred;
2728 the lisp thread gets blocked indefinitely waiting for the
2729 deferred message to be completed, which itself is waiting for
2730 the lisp thread to respond.
2731
2732 Note that we don't want to block the input thread waiting for
2733 a reponse from the lisp thread (although that would at least
2734 solve the deadlock problem above), because we want to be able
2735 to receive C-g to interrupt the lisp thread. */
2736 cancel_all_deferred_msgs ();
2737 }
f0c947b5
JR
2738 else
2739 signal_user_input ();
3ef68e6b
AI
2740 }
2741
2742 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
2743}
2744
ee78dc32
GV
2745/* Main window procedure */
2746
7d0393cf 2747LRESULT CALLBACK
fbd6baed 2748w32_wnd_proc (hwnd, msg, wParam, lParam)
ee78dc32
GV
2749 HWND hwnd;
2750 UINT msg;
2751 WPARAM wParam;
2752 LPARAM lParam;
2753{
2754 struct frame *f;
fbd6baed
GV
2755 struct w32_display_info *dpyinfo = &one_w32_display_info;
2756 W32Msg wmsg;
84fb1139 2757 int windows_translate;
576ba81c 2758 int key;
84fb1139 2759
a6085637
KH
2760 /* Note that it is okay to call x_window_to_frame, even though we are
2761 not running in the main lisp thread, because frame deletion
2762 requires the lisp thread to synchronize with this thread. Thus, if
2763 a frame struct is returned, it can be used without concern that the
2764 lisp thread might make it disappear while we are using it.
2765
2766 NB. Walking the frame list in this thread is safe (as long as
2767 writes of Lisp_Object slots are atomic, which they are on Windows).
2768 Although delete-frame can destructively modify the frame list while
2769 we are walking it, a garbage collection cannot occur until after
2770 delete-frame has synchronized with this thread.
2771
2772 It is also safe to use functions that make GDI calls, such as
fbd6baed 2773 w32_clear_rect, because these functions must obtain a DC handle
a6085637
KH
2774 from the frame struct using get_frame_dc which is thread-aware. */
2775
7d0393cf 2776 switch (msg)
ee78dc32
GV
2777 {
2778 case WM_ERASEBKGND:
a6085637
KH
2779 f = x_window_to_frame (dpyinfo, hwnd);
2780 if (f)
2781 {
9badad41 2782 HDC hdc = get_frame_dc (f);
a6085637 2783 GetUpdateRect (hwnd, &wmsg.rect, FALSE);
9badad41
JR
2784 w32_clear_rect (f, hdc, &wmsg.rect);
2785 release_frame_dc (f, hdc);
ce6059da
AI
2786
2787#if defined (W32_DEBUG_DISPLAY)
18f0b342
AI
2788 DebPrint (("WM_ERASEBKGND (frame %p): erasing %d,%d-%d,%d\n",
2789 f,
2790 wmsg.rect.left, wmsg.rect.top,
2791 wmsg.rect.right, wmsg.rect.bottom));
ce6059da 2792#endif /* W32_DEBUG_DISPLAY */
a6085637 2793 }
5ac45f98
GV
2794 return 1;
2795 case WM_PALETTECHANGED:
2796 /* ignore our own changes */
2797 if ((HWND)wParam != hwnd)
2798 {
a6085637
KH
2799 f = x_window_to_frame (dpyinfo, hwnd);
2800 if (f)
2801 /* get_frame_dc will realize our palette and force all
2802 frames to be redrawn if needed. */
2803 release_frame_dc (f, get_frame_dc (f));
5ac45f98
GV
2804 }
2805 return 0;
ee78dc32 2806 case WM_PAINT:
ce6059da 2807 {
55dcfc15
AI
2808 PAINTSTRUCT paintStruct;
2809 RECT update_rect;
aa35b6ad 2810 bzero (&update_rect, sizeof (update_rect));
55dcfc15 2811
18f0b342
AI
2812 f = x_window_to_frame (dpyinfo, hwnd);
2813 if (f == 0)
2814 {
2815 DebPrint (("WM_PAINT received for unknown window %p\n", hwnd));
2816 return 0;
2817 }
2818
55dcfc15
AI
2819 /* MSDN Docs say not to call BeginPaint if GetUpdateRect
2820 fails. Apparently this can happen under some
2821 circumstances. */
aa35b6ad 2822 if (GetUpdateRect (hwnd, &update_rect, FALSE) || !w32_strict_painting)
55dcfc15
AI
2823 {
2824 enter_crit ();
2825 BeginPaint (hwnd, &paintStruct);
2826
aa35b6ad
JR
2827 /* The rectangles returned by GetUpdateRect and BeginPaint
2828 do not always match. Play it safe by assuming both areas
2829 are invalid. */
2830 UnionRect (&(wmsg.rect), &update_rect, &(paintStruct.rcPaint));
55dcfc15
AI
2831
2832#if defined (W32_DEBUG_DISPLAY)
18f0b342
AI
2833 DebPrint (("WM_PAINT (frame %p): painting %d,%d-%d,%d\n",
2834 f,
2835 wmsg.rect.left, wmsg.rect.top,
2836 wmsg.rect.right, wmsg.rect.bottom));
2837 DebPrint ((" [update region is %d,%d-%d,%d]\n",
55dcfc15
AI
2838 update_rect.left, update_rect.top,
2839 update_rect.right, update_rect.bottom));
2840#endif
2841 EndPaint (hwnd, &paintStruct);
2842 leave_crit ();
2843
2844 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
7d0393cf 2845
55dcfc15
AI
2846 return 0;
2847 }
c0611964
AI
2848
2849 /* If GetUpdateRect returns 0 (meaning there is no update
2850 region), assume the whole window needs to be repainted. */
74084731 2851 GetClientRect (hwnd, &wmsg.rect);
c0611964
AI
2852 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
2853 return 0;
ee78dc32 2854 }
a1a80b40 2855
ccc2d29c
GV
2856 case WM_INPUTLANGCHANGE:
2857 /* Inform lisp thread of keyboard layout changes. */
2858 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
2859
2860 /* Clear dead keys in the keyboard state; for simplicity only
2861 preserve modifier key states. */
2862 {
2863 int i;
2864 BYTE keystate[256];
2865
2866 GetKeyboardState (keystate);
2867 for (i = 0; i < 256; i++)
2868 if (1
2869 && i != VK_SHIFT
2870 && i != VK_LSHIFT
2871 && i != VK_RSHIFT
2872 && i != VK_CAPITAL
2873 && i != VK_NUMLOCK
2874 && i != VK_SCROLL
2875 && i != VK_CONTROL
2876 && i != VK_LCONTROL
2877 && i != VK_RCONTROL
2878 && i != VK_MENU
2879 && i != VK_LMENU
2880 && i != VK_RMENU
2881 && i != VK_LWIN
2882 && i != VK_RWIN)
2883 keystate[i] = 0;
2884 SetKeyboardState (keystate);
2885 }
2886 goto dflt;
2887
2888 case WM_HOTKEY:
2889 /* Synchronize hot keys with normal input. */
2890 PostMessage (hwnd, WM_KEYDOWN, HIWORD (lParam), 0);
2891 return (0);
2892
a1a80b40
GV
2893 case WM_KEYUP:
2894 case WM_SYSKEYUP:
2895 record_keyup (wParam, lParam);
2896 goto dflt;
2897
ee78dc32
GV
2898 case WM_KEYDOWN:
2899 case WM_SYSKEYDOWN:
ccc2d29c
GV
2900 /* Ignore keystrokes we fake ourself; see below. */
2901 if (dpyinfo->faked_key == wParam)
2902 {
2903 dpyinfo->faked_key = 0;
576ba81c
AI
2904 /* Make sure TranslateMessage sees them though (as long as
2905 they don't produce WM_CHAR messages). This ensures that
2906 indicator lights are toggled promptly on Windows 9x, for
2907 example. */
bf254037 2908 if (wParam < 256 && lispy_function_keys[wParam])
576ba81c
AI
2909 {
2910 windows_translate = 1;
2911 goto translate;
2912 }
2913 return 0;
ccc2d29c
GV
2914 }
2915
7830e24b
RS
2916 /* Synchronize modifiers with current keystroke. */
2917 sync_modifiers ();
a1a80b40 2918 record_keydown (wParam, lParam);
ccc2d29c 2919 wParam = map_keypad_keys (wParam, (lParam & 0x1000000L) != 0);
84fb1139
KH
2920
2921 windows_translate = 0;
ccc2d29c
GV
2922
2923 switch (wParam)
2924 {
2925 case VK_LWIN:
2926 if (NILP (Vw32_pass_lwindow_to_system))
2927 {
2928 /* Prevent system from acting on keyup (which opens the
2929 Start menu if no other key was pressed) by simulating a
2930 press of Space which we will ignore. */
2931 if (GetAsyncKeyState (wParam) & 1)
2932 {
adcc3809 2933 if (NUMBERP (Vw32_phantom_key_code))
576ba81c 2934 key = XUINT (Vw32_phantom_key_code) & 255;
adcc3809 2935 else
576ba81c
AI
2936 key = VK_SPACE;
2937 dpyinfo->faked_key = key;
2938 keybd_event (key, (BYTE) MapVirtualKey (key, 0), 0, 0);
ccc2d29c
GV
2939 }
2940 }
2941 if (!NILP (Vw32_lwindow_modifier))
2942 return 0;
2943 break;
2944 case VK_RWIN:
2945 if (NILP (Vw32_pass_rwindow_to_system))
2946 {
2947 if (GetAsyncKeyState (wParam) & 1)
2948 {
adcc3809 2949 if (NUMBERP (Vw32_phantom_key_code))
576ba81c 2950 key = XUINT (Vw32_phantom_key_code) & 255;
adcc3809 2951 else
576ba81c
AI
2952 key = VK_SPACE;
2953 dpyinfo->faked_key = key;
2954 keybd_event (key, (BYTE) MapVirtualKey (key, 0), 0, 0);
ccc2d29c
GV
2955 }
2956 }
2957 if (!NILP (Vw32_rwindow_modifier))
2958 return 0;
2959 break;
576ba81c 2960 case VK_APPS:
ccc2d29c
GV
2961 if (!NILP (Vw32_apps_modifier))
2962 return 0;
2963 break;
2964 case VK_MENU:
7d0393cf 2965 if (NILP (Vw32_pass_alt_to_system))
adcc3809
GV
2966 /* Prevent DefWindowProc from activating the menu bar if an
2967 Alt key is pressed and released by itself. */
ccc2d29c 2968 return 0;
84fb1139 2969 windows_translate = 1;
ccc2d29c 2970 break;
7d0393cf 2971 case VK_CAPITAL:
ccc2d29c
GV
2972 /* Decide whether to treat as modifier or function key. */
2973 if (NILP (Vw32_enable_caps_lock))
2974 goto disable_lock_key;
adcc3809
GV
2975 windows_translate = 1;
2976 break;
ccc2d29c
GV
2977 case VK_NUMLOCK:
2978 /* Decide whether to treat as modifier or function key. */
2979 if (NILP (Vw32_enable_num_lock))
2980 goto disable_lock_key;
adcc3809
GV
2981 windows_translate = 1;
2982 break;
ccc2d29c
GV
2983 case VK_SCROLL:
2984 /* Decide whether to treat as modifier or function key. */
2985 if (NILP (Vw32_scroll_lock_modifier))
2986 goto disable_lock_key;
adcc3809
GV
2987 windows_translate = 1;
2988 break;
ccc2d29c 2989 disable_lock_key:
adcc3809
GV
2990 /* Ensure the appropriate lock key state (and indicator light)
2991 remains in the same state. We do this by faking another
2992 press of the relevant key. Apparently, this really is the
2993 only way to toggle the state of the indicator lights. */
2994 dpyinfo->faked_key = wParam;
2995 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
2996 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
2997 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
2998 KEYEVENTF_EXTENDEDKEY | 0, 0);
2999 keybd_event ((BYTE) wParam, (BYTE) MapVirtualKey (wParam, 0),
3000 KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
3001 /* Ensure indicator lights are updated promptly on Windows 9x
3002 (TranslateMessage apparently does this), after forwarding
3003 input event. */
3004 post_character_message (hwnd, msg, wParam, lParam,
3005 w32_get_key_modifiers (wParam, lParam));
3006 windows_translate = 1;
ccc2d29c 3007 break;
7d0393cf 3008 case VK_CONTROL:
ccc2d29c
GV
3009 case VK_SHIFT:
3010 case VK_PROCESSKEY: /* Generated by IME. */
3011 windows_translate = 1;
3012 break;
adcc3809
GV
3013 case VK_CANCEL:
3014 /* Windows maps Ctrl-Pause (aka Ctrl-Break) into VK_CANCEL,
3015 which is confusing for purposes of key binding; convert
3016 VK_CANCEL events into VK_PAUSE events. */
3017 wParam = VK_PAUSE;
3018 break;
3019 case VK_PAUSE:
3020 /* Windows maps Ctrl-NumLock into VK_PAUSE, which is confusing
3021 for purposes of key binding; convert these back into
3022 VK_NUMLOCK events, at least when we want to see NumLock key
3023 presses. (Note that there is never any possibility that
3024 VK_PAUSE with Ctrl really is C-Pause as per above.) */
3025 if (NILP (Vw32_enable_num_lock) && modifier_set (VK_CONTROL))
3026 wParam = VK_NUMLOCK;
3027 break;
ccc2d29c
GV
3028 default:
3029 /* If not defined as a function key, change it to a WM_CHAR message. */
bf254037 3030 if (wParam > 255 || !lispy_function_keys[wParam])
ccc2d29c 3031 {
adcc3809
GV
3032 DWORD modifiers = construct_console_modifiers ();
3033
ccc2d29c
GV
3034 if (!NILP (Vw32_recognize_altgr)
3035 && modifier_set (VK_LCONTROL) && modifier_set (VK_RMENU))
3036 {
3037 /* Always let TranslateMessage handle AltGr key chords;
3038 for some reason, ToAscii doesn't always process AltGr
3039 chords correctly. */
3040 windows_translate = 1;
3041 }
adcc3809 3042 else if ((modifiers & (~SHIFT_PRESSED & ~CAPSLOCK_ON)) != 0)
ccc2d29c 3043 {
adcc3809
GV
3044 /* Handle key chords including any modifiers other
3045 than shift directly, in order to preserve as much
3046 modifier information as possible. */
ccc2d29c
GV
3047 if ('A' <= wParam && wParam <= 'Z')
3048 {
3049 /* Don't translate modified alphabetic keystrokes,
3050 so the user doesn't need to constantly switch
3051 layout to type control or meta keystrokes when
3052 the normal layout translates alphabetic
3053 characters to non-ascii characters. */
3054 if (!modifier_set (VK_SHIFT))
3055 wParam += ('a' - 'A');
3056 msg = WM_CHAR;
3057 }
3058 else
3059 {
3060 /* Try to handle other keystrokes by determining the
3061 base character (ie. translating the base key plus
3062 shift modifier). */
3063 int add;
3064 int isdead = 0;
3065 KEY_EVENT_RECORD key;
7d0393cf 3066
ccc2d29c
GV
3067 key.bKeyDown = TRUE;
3068 key.wRepeatCount = 1;
3069 key.wVirtualKeyCode = wParam;
3070 key.wVirtualScanCode = (lParam & 0xFF0000) >> 16;
3071 key.uChar.AsciiChar = 0;
adcc3809 3072 key.dwControlKeyState = modifiers;
ccc2d29c
GV
3073
3074 add = w32_kbd_patch_key (&key);
3075 /* 0 means an unrecognised keycode, negative means
3076 dead key. Ignore both. */
3077 while (--add >= 0)
3078 {
3079 /* Forward asciified character sequence. */
3080 post_character_message
a313b291
JR
3081 (hwnd, WM_CHAR,
3082 (unsigned char) key.uChar.AsciiChar, lParam,
ccc2d29c
GV
3083 w32_get_key_modifiers (wParam, lParam));
3084 w32_kbd_patch_key (&key);
3085 }
3086 return 0;
3087 }
3088 }
3089 else
3090 {
3091 /* Let TranslateMessage handle everything else. */
3092 windows_translate = 1;
3093 }
3094 }
3095 }
a1a80b40 3096
adcc3809 3097 translate:
84fb1139
KH
3098 if (windows_translate)
3099 {
e9e23e23 3100 MSG windows_msg = { hwnd, msg, wParam, lParam, 0, {0,0} };
e9e23e23
GV
3101 windows_msg.time = GetMessageTime ();
3102 TranslateMessage (&windows_msg);
84fb1139
KH
3103 goto dflt;
3104 }
3105
ee78dc32 3106 /* Fall through */
7d0393cf 3107
ee78dc32
GV
3108 case WM_SYSCHAR:
3109 case WM_CHAR:
ccc2d29c
GV
3110 post_character_message (hwnd, msg, wParam, lParam,
3111 w32_get_key_modifiers (wParam, lParam));
ee78dc32 3112 break;
da36a4d6 3113
820eff5a
JR
3114 case WM_UNICHAR:
3115 /* WM_UNICHAR looks promising from the docs, but the exact
3116 circumstances in which TranslateMessage sends it is one of those
3117 Microsoft secret API things that EU and US courts are supposed
3118 to have put a stop to already. Spy++ shows it being sent to Notepad
3119 and other MS apps, but never to Emacs.
3120
3121 Some third party IMEs send it in accordance with the official
3122 documentation though, so handle it here.
3123
3124 UNICODE_NOCHAR is used to test for support for this message.
3125 TRUE indicates that the message is supported. */
3126 if (wParam == UNICODE_NOCHAR)
3127 return TRUE;
3128
3129 {
3130 W32Msg wmsg;
3131 wmsg.dwModifiers = w32_get_key_modifiers (wParam, lParam);
3132 signal_user_input ();
3133 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
3134 }
3135 break;
3136
3137 case WM_IME_CHAR:
3138 /* If we can't get the IME result as unicode, use default processing,
3139 which will at least allow characters decodable in the system locale
3140 get through. */
3141 if (!get_composition_string_fn)
3142 goto dflt;
3143
3144 else if (!ignore_ime_char)
3145 {
3146 wchar_t * buffer;
3147 int size, i;
3148 W32Msg wmsg;
3149 HIMC context = get_ime_context_fn (hwnd);
3150 wmsg.dwModifiers = w32_get_key_modifiers (wParam, lParam);
3151 /* Get buffer size. */
3152 size = get_composition_string_fn (context, GCS_RESULTSTR, buffer, 0);
3153 buffer = alloca(size);
3154 size = get_composition_string_fn (context, GCS_RESULTSTR,
3155 buffer, size);
3156 signal_user_input ();
3157 for (i = 0; i < size / sizeof (wchar_t); i++)
3158 {
3159 my_post_msg (&wmsg, hwnd, WM_UNICHAR, (WPARAM) buffer[i],
3160 lParam);
3161 }
2c93b248
JR
3162 /* Ignore the messages for the rest of the
3163 characters in the string that was output above. */
3164 ignore_ime_char = (size / sizeof (wchar_t)) - 1;
820eff5a 3165 }
2c93b248
JR
3166 else
3167 ignore_ime_char--;
3168
820eff5a
JR
3169 break;
3170
3171 case WM_IME_ENDCOMPOSITION:
3172 ignore_ime_char = 0;
3173 goto dflt;
3174
5ac45f98
GV
3175 /* Simulate middle mouse button events when left and right buttons
3176 are used together, but only if user has two button mouse. */
ee78dc32 3177 case WM_LBUTTONDOWN:
5ac45f98 3178 case WM_RBUTTONDOWN:
2ba49441 3179 if (w32_num_mouse_buttons > 2)
5ac45f98
GV
3180 goto handle_plain_button;
3181
3182 {
3183 int this = (msg == WM_LBUTTONDOWN) ? LMOUSE : RMOUSE;
3184 int other = (msg == WM_LBUTTONDOWN) ? RMOUSE : LMOUSE;
3185
3cb20f4a
RS
3186 if (button_state & this)
3187 return 0;
5ac45f98
GV
3188
3189 if (button_state == 0)
3190 SetCapture (hwnd);
3191
3192 button_state |= this;
3193
3194 if (button_state & other)
3195 {
84fb1139 3196 if (mouse_button_timer)
5ac45f98 3197 {
84fb1139
KH
3198 KillTimer (hwnd, mouse_button_timer);
3199 mouse_button_timer = 0;
5ac45f98
GV
3200
3201 /* Generate middle mouse event instead. */
3202 msg = WM_MBUTTONDOWN;
3203 button_state |= MMOUSE;
3204 }
3205 else if (button_state & MMOUSE)
3206 {
3207 /* Ignore button event if we've already generated a
3208 middle mouse down event. This happens if the
3209 user releases and press one of the two buttons
3210 after we've faked a middle mouse event. */
3211 return 0;
3212 }
3213 else
3214 {
3215 /* Flush out saved message. */
84fb1139 3216 post_msg (&saved_mouse_button_msg);
5ac45f98 3217 }
fbd6baed 3218 wmsg.dwModifiers = w32_get_modifiers ();
5ac45f98 3219 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
f5f69b6b 3220 signal_user_input ();
5ac45f98
GV
3221
3222 /* Clear message buffer. */
84fb1139 3223 saved_mouse_button_msg.msg.hwnd = 0;
5ac45f98
GV
3224 }
3225 else
3226 {
3227 /* Hold onto message for now. */
84fb1139 3228 mouse_button_timer =
adcc3809 3229 SetTimer (hwnd, MOUSE_BUTTON_ID,
2ba49441 3230 w32_mouse_button_tolerance, NULL);
84fb1139
KH
3231 saved_mouse_button_msg.msg.hwnd = hwnd;
3232 saved_mouse_button_msg.msg.message = msg;
3233 saved_mouse_button_msg.msg.wParam = wParam;
3234 saved_mouse_button_msg.msg.lParam = lParam;
3235 saved_mouse_button_msg.msg.time = GetMessageTime ();
fbd6baed 3236 saved_mouse_button_msg.dwModifiers = w32_get_modifiers ();
5ac45f98
GV
3237 }
3238 }
3239 return 0;
3240
ee78dc32 3241 case WM_LBUTTONUP:
5ac45f98 3242 case WM_RBUTTONUP:
2ba49441 3243 if (w32_num_mouse_buttons > 2)
5ac45f98
GV
3244 goto handle_plain_button;
3245
3246 {
3247 int this = (msg == WM_LBUTTONUP) ? LMOUSE : RMOUSE;
3248 int other = (msg == WM_LBUTTONUP) ? RMOUSE : LMOUSE;
3249
3cb20f4a
RS
3250 if ((button_state & this) == 0)
3251 return 0;
5ac45f98
GV
3252
3253 button_state &= ~this;
3254
3255 if (button_state & MMOUSE)
3256 {
3257 /* Only generate event when second button is released. */
3258 if ((button_state & other) == 0)
3259 {
3260 msg = WM_MBUTTONUP;
3261 button_state &= ~MMOUSE;
3262
3263 if (button_state) abort ();
3264 }
3265 else
3266 return 0;
3267 }
3268 else
3269 {
3270 /* Flush out saved message if necessary. */
84fb1139 3271 if (saved_mouse_button_msg.msg.hwnd)
5ac45f98 3272 {
84fb1139 3273 post_msg (&saved_mouse_button_msg);
5ac45f98
GV
3274 }
3275 }
fbd6baed 3276 wmsg.dwModifiers = w32_get_modifiers ();
5ac45f98 3277 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
f5f69b6b 3278 signal_user_input ();
5ac45f98
GV
3279
3280 /* Always clear message buffer and cancel timer. */
84fb1139
KH
3281 saved_mouse_button_msg.msg.hwnd = 0;
3282 KillTimer (hwnd, mouse_button_timer);
3283 mouse_button_timer = 0;
5ac45f98
GV
3284
3285 if (button_state == 0)
3286 ReleaseCapture ();
3287 }
3288 return 0;
3289
74214547
JR
3290 case WM_XBUTTONDOWN:
3291 case WM_XBUTTONUP:
3292 if (w32_pass_extra_mouse_buttons_to_system)
3293 goto dflt;
3294 /* else fall through and process them. */
ee78dc32
GV
3295 case WM_MBUTTONDOWN:
3296 case WM_MBUTTONUP:
5ac45f98 3297 handle_plain_button:
ee78dc32
GV
3298 {
3299 BOOL up;
1edf84e7 3300 int button;
ee78dc32 3301
b48f9276
EZ
3302 /* Ignore middle and extra buttons as long as the menu is active. */
3303 f = x_window_to_frame (dpyinfo, hwnd);
3304 if (f && f->output_data.w32->menubar_active)
3305 return 0;
3306
74214547 3307 if (parse_button (msg, HIWORD (wParam), &button, &up))
ee78dc32
GV
3308 {
3309 if (up) ReleaseCapture ();
3310 else SetCapture (hwnd);
7d0393cf 3311 button = (button == 0) ? LMOUSE :
1edf84e7
GV
3312 ((button == 1) ? MMOUSE : RMOUSE);
3313 if (up)
3314 button_state &= ~button;
3315 else
3316 button_state |= button;
ee78dc32
GV
3317 }
3318 }
7d0393cf 3319
fbd6baed 3320 wmsg.dwModifiers = w32_get_modifiers ();
ee78dc32 3321 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
f0c947b5 3322 signal_user_input ();
74214547
JR
3323
3324 /* Need to return true for XBUTTON messages, false for others,
3325 to indicate that we processed the message. */
3326 return (msg == WM_XBUTTONDOWN || msg == WM_XBUTTONUP);
5ac45f98 3327
5ac45f98 3328 case WM_MOUSEMOVE:
f93bd8e4
EZ
3329 /* Ignore mouse movements as long as the menu is active. These
3330 movements are processed by the window manager anyway, and
3331 it's wrong to handle them as if they happened on the
3332 underlying frame. */
3333 f = x_window_to_frame (dpyinfo, hwnd);
3334 if (f && f->output_data.w32->menubar_active)
3335 return 0;
3336
9eb16b62
JR
3337 /* If the mouse has just moved into the frame, start tracking
3338 it, so we will be notified when it leaves the frame. Mouse
3339 tracking only works under W98 and NT4 and later. On earlier
3340 versions, there is no way of telling when the mouse leaves the
3341 frame, so we just have to put up with help-echo and mouse
3342 highlighting remaining while the frame is not active. */
3343 if (track_mouse_event_fn && !track_mouse_window)
3344 {
3345 TRACKMOUSEEVENT tme;
3346 tme.cbSize = sizeof (tme);
3347 tme.dwFlags = TME_LEAVE;
3348 tme.hwndTrack = hwnd;
3349
3350 track_mouse_event_fn (&tme);
3351 track_mouse_window = hwnd;
3352 }
3353 case WM_VSCROLL:
2ba49441 3354 if (w32_mouse_move_interval <= 0
84fb1139
KH
3355 || (msg == WM_MOUSEMOVE && button_state == 0))
3356 {
fbd6baed 3357 wmsg.dwModifiers = w32_get_modifiers ();
84fb1139
KH
3358 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
3359 return 0;
3360 }
7d0393cf 3361
84fb1139
KH
3362 /* Hang onto mouse move and scroll messages for a bit, to avoid
3363 sending such events to Emacs faster than it can process them.
3364 If we get more events before the timer from the first message
3365 expires, we just replace the first message. */
3366
3367 if (saved_mouse_move_msg.msg.hwnd == 0)
3368 mouse_move_timer =
adcc3809 3369 SetTimer (hwnd, MOUSE_MOVE_ID,
2ba49441 3370 w32_mouse_move_interval, NULL);
84fb1139
KH
3371
3372 /* Hold onto message for now. */
3373 saved_mouse_move_msg.msg.hwnd = hwnd;
3374 saved_mouse_move_msg.msg.message = msg;
3375 saved_mouse_move_msg.msg.wParam = wParam;
3376 saved_mouse_move_msg.msg.lParam = lParam;
3377 saved_mouse_move_msg.msg.time = GetMessageTime ();
fbd6baed 3378 saved_mouse_move_msg.dwModifiers = w32_get_modifiers ();
7d0393cf 3379
84fb1139
KH
3380 return 0;
3381
1edf84e7 3382 case WM_MOUSEWHEEL:
fd142562 3383 case WM_DROPFILES:
1edf84e7
GV
3384 wmsg.dwModifiers = w32_get_modifiers ();
3385 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
f0c947b5 3386 signal_user_input ();
1edf84e7
GV
3387 return 0;
3388
0b151762
JR
3389 case WM_APPCOMMAND:
3390 if (w32_pass_multimedia_buttons_to_system)
3391 goto dflt;
3392 /* Otherwise, pass to lisp, the same way we do with mousehwheel. */
fd142562 3393 case WM_MOUSEHWHEEL:
cb9e33d4
RS
3394 wmsg.dwModifiers = w32_get_modifiers ();
3395 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
f0c947b5 3396 signal_user_input ();
fd142562
JR
3397 /* Non-zero must be returned when WM_MOUSEHWHEEL messages are
3398 handled, to prevent the system trying to handle it by faking
3399 scroll bar events. */
3400 return 1;
cb9e33d4 3401
84fb1139
KH
3402 case WM_TIMER:
3403 /* Flush out saved messages if necessary. */
3404 if (wParam == mouse_button_timer)
5ac45f98 3405 {
84fb1139
KH
3406 if (saved_mouse_button_msg.msg.hwnd)
3407 {
3408 post_msg (&saved_mouse_button_msg);
f0c947b5 3409 signal_user_input ();
84fb1139
KH
3410 saved_mouse_button_msg.msg.hwnd = 0;
3411 }
3412 KillTimer (hwnd, mouse_button_timer);
3413 mouse_button_timer = 0;
3414 }
3415 else if (wParam == mouse_move_timer)
3416 {
3417 if (saved_mouse_move_msg.msg.hwnd)
3418 {
3419 post_msg (&saved_mouse_move_msg);
3420 saved_mouse_move_msg.msg.hwnd = 0;
3421 }
3422 KillTimer (hwnd, mouse_move_timer);
3423 mouse_move_timer = 0;
5ac45f98 3424 }
48094ace
JR
3425 else if (wParam == menu_free_timer)
3426 {
3427 KillTimer (hwnd, menu_free_timer);
3428 menu_free_timer = 0;
27605fa7 3429 f = x_window_to_frame (dpyinfo, hwnd);
5d22ded9 3430 /* If a popup menu is active, don't wipe its strings. */
58e55497 3431 if (menubar_in_use
5d22ded9 3432 && current_popup_menu == NULL)
48094ace
JR
3433 {
3434 /* Free memory used by owner-drawn and help-echo strings. */
3435 w32_free_menu_strings (hwnd);
3436 f->output_data.w32->menubar_active = 0;
58e55497 3437 menubar_in_use = 0;
48094ace
JR
3438 }
3439 }
d148e14d
JR
3440 else if (wParam == hourglass_timer)
3441 {
3442 KillTimer (hwnd, hourglass_timer);
3443 hourglass_timer = 0;
1391cd54 3444 w32_show_hourglass (x_window_to_frame (dpyinfo, hwnd));
d148e14d 3445 }
5ac45f98 3446 return 0;
7d0393cf 3447
84fb1139
KH
3448 case WM_NCACTIVATE:
3449 /* Windows doesn't send us focus messages when putting up and
e9e23e23 3450 taking down a system popup dialog as for Ctrl-Alt-Del on Windows 95.
84fb1139
KH
3451 The only indication we get that something happened is receiving
3452 this message afterwards. So this is a good time to reset our
3453 keyboard modifiers' state. */
3454 reset_modifiers ();
3455 goto dflt;
da36a4d6 3456
1edf84e7 3457 case WM_INITMENU:
487163ac
AI
3458 button_state = 0;
3459 ReleaseCapture ();
1edf84e7
GV
3460 /* We must ensure menu bar is fully constructed and up to date
3461 before allowing user interaction with it. To achieve this
3462 we send this message to the lisp thread and wait for a
3463 reply (whose value is not actually needed) to indicate that
3464 the menu bar is now ready for use, so we can now return.
3465
3466 To remain responsive in the meantime, we enter a nested message
3467 loop that can process all other messages.
3468
3469 However, we skip all this if the message results from calling
3470 TrackPopupMenu - in fact, we must NOT attempt to send the lisp
3471 thread a message because it is blocked on us at this point. We
3472 set menubar_active before calling TrackPopupMenu to indicate
3473 this (there is no possibility of confusion with real menubar
3474 being active). */
3475
3476 f = x_window_to_frame (dpyinfo, hwnd);
3477 if (f
3478 && (f->output_data.w32->menubar_active
3479 /* We can receive this message even in the absence of a
3480 menubar (ie. when the system menu is activated) - in this
3481 case we do NOT want to forward the message, otherwise it
3482 will cause the menubar to suddenly appear when the user
3483 had requested it to be turned off! */
3484 || f->output_data.w32->menubar_widget == NULL))
3485 return 0;
3486
3487 {
3488 deferred_msg msg_buf;
3489
3490 /* Detect if message has already been deferred; in this case
3491 we cannot return any sensible value to ignore this. */
3492 if (find_deferred_msg (hwnd, msg) != NULL)
3493 abort ();
3494
58e55497 3495 menubar_in_use = 1;
90816b86 3496
1edf84e7
GV
3497 return send_deferred_msg (&msg_buf, hwnd, msg, wParam, lParam);
3498 }
3499
3500 case WM_EXITMENULOOP:
3501 f = x_window_to_frame (dpyinfo, hwnd);
3502
5d22ded9
JR
3503 /* If a menu is still active, check again after a short delay,
3504 since Windows often (always?) sends the WM_EXITMENULOOP
3505 before the corresponding WM_COMMAND message.
3506 Don't do this if a popup menu is active, since it is only
3507 menubar menus that require cleaning up in this way.
3508 */
58e55497 3509 if (f && menubar_in_use && current_popup_menu == NULL)
48094ace 3510 menu_free_timer = SetTimer (hwnd, MENU_FREE_ID, MENU_FREE_DELAY, NULL);
d148e14d
JR
3511
3512 /* If hourglass cursor should be displayed, display it now. */
3513 if (f && f->output_data.w32->hourglass_p)
3514 SetCursor (f->output_data.w32->hourglass_cursor);
3515
1edf84e7
GV
3516 goto dflt;
3517
126f2e35 3518 case WM_MENUSELECT:
4e3a1c61
JR
3519 /* Direct handling of help_echo in menus. Should be safe now
3520 that we generate the help_echo by placing a help event in the
3521 keyboard buffer. */
ca56d953 3522 {
ca56d953
JR
3523 HMENU menu = (HMENU) lParam;
3524 UINT menu_item = (UINT) LOWORD (wParam);
3525 UINT flags = (UINT) HIWORD (wParam);
3526
4e3a1c61 3527 w32_menu_display_help (hwnd, menu, menu_item, flags);
ca56d953 3528 }
126f2e35
JR
3529 return 0;
3530
87996783
GV
3531 case WM_MEASUREITEM:
3532 f = x_window_to_frame (dpyinfo, hwnd);
3533 if (f)
3534 {
3535 MEASUREITEMSTRUCT * pMis = (MEASUREITEMSTRUCT *) lParam;
3536
3537 if (pMis->CtlType == ODT_MENU)
3538 {
3539 /* Work out dimensions for popup menu titles. */
3540 char * title = (char *) pMis->itemData;
3541 HDC hdc = GetDC (hwnd);
3542 HFONT menu_font = GetCurrentObject (hdc, OBJ_FONT);
3543 LOGFONT menu_logfont;
3544 HFONT old_font;
3545 SIZE size;
3546
3547 GetObject (menu_font, sizeof (menu_logfont), &menu_logfont);
3548 menu_logfont.lfWeight = FW_BOLD;
3549 menu_font = CreateFontIndirect (&menu_logfont);
3550 old_font = SelectObject (hdc, menu_font);
3551
dfff8a69
JR
3552 pMis->itemHeight = GetSystemMetrics (SM_CYMENUSIZE);
3553 if (title)
3554 {
b4005349
JR
3555 if (unicode_append_menu)
3556 GetTextExtentPoint32W (hdc, (WCHAR *) title,
3557 wcslen ((WCHAR *) title),
3558 &size);
3559 else
3560 GetTextExtentPoint32 (hdc, title, strlen (title), &size);
3561
dfff8a69
JR
3562 pMis->itemWidth = size.cx;
3563 if (pMis->itemHeight < size.cy)
3564 pMis->itemHeight = size.cy;
3565 }
3566 else
3567 pMis->itemWidth = 0;
87996783
GV
3568
3569 SelectObject (hdc, old_font);
3570 DeleteObject (menu_font);
3571 ReleaseDC (hwnd, hdc);
3572 return TRUE;
3573 }
3574 }
3575 return 0;
3576
3577 case WM_DRAWITEM:
3578 f = x_window_to_frame (dpyinfo, hwnd);
3579 if (f)
3580 {
3581 DRAWITEMSTRUCT * pDis = (DRAWITEMSTRUCT *) lParam;
3582
3583 if (pDis->CtlType == ODT_MENU)
3584 {
3585 /* Draw popup menu title. */
3586 char * title = (char *) pDis->itemData;
212da13b
JR
3587 if (title)
3588 {
3589 HDC hdc = pDis->hDC;
3590 HFONT menu_font = GetCurrentObject (hdc, OBJ_FONT);
3591 LOGFONT menu_logfont;
3592 HFONT old_font;
3593
3594 GetObject (menu_font, sizeof (menu_logfont), &menu_logfont);
3595 menu_logfont.lfWeight = FW_BOLD;
3596 menu_font = CreateFontIndirect (&menu_logfont);
3597 old_font = SelectObject (hdc, menu_font);
3598
b4005349
JR
3599 /* Always draw title as if not selected. */
3600 if (unicode_append_menu)
3601 ExtTextOutW (hdc,
3602 pDis->rcItem.left
3603 + GetSystemMetrics (SM_CXMENUCHECK),
3604 pDis->rcItem.top,
3605 ETO_OPAQUE, &pDis->rcItem,
3606 (WCHAR *) title,
3607 wcslen ((WCHAR *) title), NULL);
3608 else
3609 ExtTextOut (hdc,
3610 pDis->rcItem.left
3611 + GetSystemMetrics (SM_CXMENUCHECK),
3612 pDis->rcItem.top,
3613 ETO_OPAQUE, &pDis->rcItem,
3614 title, strlen (title), NULL);
212da13b
JR
3615
3616 SelectObject (hdc, old_font);
3617 DeleteObject (menu_font);
3618 }
87996783
GV
3619 return TRUE;
3620 }
3621 }
3622 return 0;
3623
1edf84e7
GV
3624#if 0
3625 /* Still not right - can't distinguish between clicks in the
3626 client area of the frame from clicks forwarded from the scroll
3627 bars - may have to hook WM_NCHITTEST to remember the mouse
3628 position and then check if it is in the client area ourselves. */
3629 case WM_MOUSEACTIVATE:
3630 /* Discard the mouse click that activates a frame, allowing the
3631 user to click anywhere without changing point (or worse!).
3632 Don't eat mouse clicks on scrollbars though!! */
3633 if (LOWORD (lParam) == HTCLIENT )
3634 return MA_ACTIVATEANDEAT;
3635 goto dflt;
3636#endif
3637
9eb16b62
JR
3638 case WM_MOUSELEAVE:
3639 /* No longer tracking mouse. */
3640 track_mouse_window = NULL;
3641
1edf84e7 3642 case WM_ACTIVATEAPP:
ccc2d29c 3643 case WM_ACTIVATE:
1edf84e7
GV
3644 case WM_WINDOWPOSCHANGED:
3645 case WM_SHOWWINDOW:
3646 /* Inform lisp thread that a frame might have just been obscured
3647 or exposed, so should recheck visibility of all frames. */
3648 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
3649 goto dflt;
3650
da36a4d6 3651 case WM_SETFOCUS:
adcc3809
GV
3652 dpyinfo->faked_key = 0;
3653 reset_modifiers ();
ccc2d29c
GV
3654 register_hot_keys (hwnd);
3655 goto command;
8681157a 3656 case WM_KILLFOCUS:
ccc2d29c 3657 unregister_hot_keys (hwnd);
487163ac
AI
3658 button_state = 0;
3659 ReleaseCapture ();
65906840
JR
3660 /* Relinquish the system caret. */
3661 if (w32_system_caret_hwnd)
3662 {
93f2ca61 3663 w32_visible_system_caret_hwnd = NULL;
d285988b
JR
3664 w32_system_caret_hwnd = NULL;
3665 DestroyCaret ();
65906840 3666 }
48094ace
JR
3667 goto command;
3668 case WM_COMMAND:
58e55497 3669 menubar_in_use = 0;
48094ace
JR
3670 f = x_window_to_frame (dpyinfo, hwnd);
3671 if (f && HIWORD (wParam) == 0)
3672 {
48094ace
JR
3673 if (menu_free_timer)
3674 {
3675 KillTimer (hwnd, menu_free_timer);
7d0393cf 3676 menu_free_timer = 0;
48094ace
JR
3677 }
3678 }
ee78dc32
GV
3679 case WM_MOVE:
3680 case WM_SIZE:
ccc2d29c 3681 command:
fbd6baed 3682 wmsg.dwModifiers = w32_get_modifiers ();
ee78dc32
GV
3683 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
3684 goto dflt;
8847d890 3685
d5781bb6
JR
3686 case WM_DESTROY:
3687 CoUninitialize ();
3688 return 0;
3689
8847d890 3690 case WM_CLOSE:
fbd6baed 3691 wmsg.dwModifiers = w32_get_modifiers ();
8847d890
RS
3692 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
3693 return 0;
3694
ee78dc32 3695 case WM_WINDOWPOSCHANGING:
bfd6edcc
JR
3696 /* Don't restrict the sizing of tip frames. */
3697 if (hwnd == tip_window)
3698 return 0;
ee78dc32
GV
3699 {
3700 WINDOWPLACEMENT wp;
3701 LPWINDOWPOS lppos = (WINDOWPOS *) lParam;
1edf84e7
GV
3702
3703 wp.length = sizeof (WINDOWPLACEMENT);
ee78dc32 3704 GetWindowPlacement (hwnd, &wp);
7d0393cf 3705
1edf84e7 3706 if (wp.showCmd != SW_SHOWMINIMIZED && (lppos->flags & SWP_NOSIZE) == 0)
ee78dc32
GV
3707 {
3708 RECT rect;
3709 int wdiff;
3710 int hdiff;
1edf84e7
GV
3711 DWORD font_width;
3712 DWORD line_height;
3713 DWORD internal_border;
3714 DWORD scrollbar_extra;
ee78dc32 3715 RECT wr;
7d0393cf 3716
74084731 3717 wp.length = sizeof (wp);
ee78dc32 3718 GetWindowRect (hwnd, &wr);
7d0393cf 3719
3c190163 3720 enter_crit ();
7d0393cf 3721
1edf84e7
GV
3722 font_width = GetWindowLong (hwnd, WND_FONTWIDTH_INDEX);
3723 line_height = GetWindowLong (hwnd, WND_LINEHEIGHT_INDEX);
3724 internal_border = GetWindowLong (hwnd, WND_BORDER_INDEX);
3725 scrollbar_extra = GetWindowLong (hwnd, WND_SCROLLBAR_INDEX);
7d0393cf 3726
3c190163 3727 leave_crit ();
7d0393cf 3728
ee78dc32 3729 memset (&rect, 0, sizeof (rect));
7d0393cf 3730 AdjustWindowRect (&rect, GetWindowLong (hwnd, GWL_STYLE),
ee78dc32
GV
3731 GetMenu (hwnd) != NULL);
3732
1edf84e7
GV
3733 /* Force width and height of client area to be exact
3734 multiples of the character cell dimensions. */
3735 wdiff = (lppos->cx - (rect.right - rect.left)
3736 - 2 * internal_border - scrollbar_extra)
3737 % font_width;
3738 hdiff = (lppos->cy - (rect.bottom - rect.top)
3739 - 2 * internal_border)
3740 % line_height;
7d0393cf 3741
ee78dc32
GV
3742 if (wdiff || hdiff)
3743 {
7d0393cf
JB
3744 /* For right/bottom sizing we can just fix the sizes.
3745 However for top/left sizing we will need to fix the X
ee78dc32 3746 and Y positions as well. */
7d0393cf 3747
8a4c4c7f
JB
3748 int cx_mintrack = GetSystemMetrics (SM_CXMINTRACK);
3749 int cy_mintrack = GetSystemMetrics (SM_CYMINTRACK);
3750
3751 lppos->cx = max (lppos->cx - wdiff, cx_mintrack);
3752 lppos->cy = max (lppos->cy - hdiff, cy_mintrack);
7d0393cf
JB
3753
3754 if (wp.showCmd != SW_SHOWMAXIMIZED
1edf84e7 3755 && (lppos->flags & SWP_NOMOVE) == 0)
ee78dc32
GV
3756 {
3757 if (lppos->x != wr.left || lppos->y != wr.top)
3758 {
3759 lppos->x += wdiff;
3760 lppos->y += hdiff;
3761 }
3762 else
3763 {
3764 lppos->flags |= SWP_NOMOVE;
3765 }
3766 }
7d0393cf 3767
1edf84e7 3768 return 0;
ee78dc32
GV
3769 }
3770 }
3771 }
7d0393cf 3772
ee78dc32 3773 goto dflt;
1edf84e7 3774
b1f918f8 3775 case WM_GETMINMAXINFO:
bf853fee
AI
3776 /* Hack to allow resizing the Emacs frame above the screen size.
3777 Note that Windows 9x limits coordinates to 16-bits. */
3778 ((LPMINMAXINFO) lParam)->ptMaxTrackSize.x = 32767;
3779 ((LPMINMAXINFO) lParam)->ptMaxTrackSize.y = 32767;
b1f918f8
GV
3780 return 0;
3781
c9b2104d
JR
3782 case WM_SETCURSOR:
3783 if (LOWORD (lParam) == HTCLIENT)
d148e14d
JR
3784 {
3785 f = x_window_to_frame (dpyinfo, hwnd);
3786 if (f->output_data.w32->hourglass_p && !menubar_in_use
3787 && !current_popup_menu)
3788 SetCursor (f->output_data.w32->hourglass_cursor);
3789 else
3790 SetCursor (f->output_data.w32->current_cursor);
3791 return 0;
3792 }
c9b2104d 3793 goto dflt;
c922a224 3794
c9b2104d
JR
3795 case WM_EMACS_SETCURSOR:
3796 {
3797 Cursor cursor = (Cursor) wParam;
d148e14d
JR
3798 f = x_window_to_frame (dpyinfo, hwnd);
3799 if (f && cursor)
3800 {
3801 f->output_data.w32->current_cursor = cursor;
3802 if (!f->output_data.w32->hourglass_p)
3803 SetCursor (cursor);
3804 }
c9b2104d
JR
3805 return 0;
3806 }
c922a224 3807
1edf84e7
GV
3808 case WM_EMACS_CREATESCROLLBAR:
3809 return (LRESULT) w32_createscrollbar ((struct frame *) wParam,
3810 (struct scroll_bar *) lParam);
3811
5ac45f98 3812 case WM_EMACS_SHOWWINDOW:
1edf84e7
GV
3813 return ShowWindow ((HWND) wParam, (WPARAM) lParam);
3814
dfdb4047 3815 case WM_EMACS_SETFOREGROUND:
ce6059da
AI
3816 {
3817 HWND foreground_window;
3818 DWORD foreground_thread, retval;
3819
3820 /* On NT 5.0, and apparently Windows 98, it is necessary to
3821 attach to the thread that currently has focus in order to
3822 pull the focus away from it. */
3823 foreground_window = GetForegroundWindow ();
3824 foreground_thread = GetWindowThreadProcessId (foreground_window, NULL);
3825 if (!foreground_window
3826 || foreground_thread == GetCurrentThreadId ()
3827 || !AttachThreadInput (GetCurrentThreadId (),
3828 foreground_thread, TRUE))
3829 foreground_thread = 0;
3830
3831 retval = SetForegroundWindow ((HWND) wParam);
3832
3833 /* Detach from the previous foreground thread. */
3834 if (foreground_thread)
3835 AttachThreadInput (GetCurrentThreadId (),
3836 foreground_thread, FALSE);
3837
3838 return retval;
3839 }
dfdb4047 3840
5ac45f98
GV
3841 case WM_EMACS_SETWINDOWPOS:
3842 {
1edf84e7
GV
3843 WINDOWPOS * pos = (WINDOWPOS *) wParam;
3844 return SetWindowPos (hwnd, pos->hwndInsertAfter,
5ac45f98
GV
3845 pos->x, pos->y, pos->cx, pos->cy, pos->flags);
3846 }
1edf84e7 3847
ee78dc32 3848 case WM_EMACS_DESTROYWINDOW:
cb9e33d4 3849 DragAcceptFiles ((HWND) wParam, FALSE);
1edf84e7
GV
3850 return DestroyWindow ((HWND) wParam);
3851
93f2ca61
JR
3852 case WM_EMACS_HIDE_CARET:
3853 return HideCaret (hwnd);
3854
3855 case WM_EMACS_SHOW_CARET:
3856 return ShowCaret (hwnd);
3857
65906840
JR
3858 case WM_EMACS_DESTROY_CARET:
3859 w32_system_caret_hwnd = NULL;
93f2ca61 3860 w32_visible_system_caret_hwnd = NULL;
65906840
JR
3861 return DestroyCaret ();
3862
3863 case WM_EMACS_TRACK_CARET:
3864 /* If there is currently no system caret, create one. */
3865 if (w32_system_caret_hwnd == NULL)
3866 {
93f2ca61
JR
3867 /* Use the default caret width, and avoid changing it
3868 unneccesarily, as it confuses screen reader software. */
65906840 3869 w32_system_caret_hwnd = hwnd;
93f2ca61 3870 CreateCaret (hwnd, NULL, 0,
65906840
JR
3871 w32_system_caret_height);
3872 }
7d0393cf 3873
93f2ca61
JR
3874 if (!SetCaretPos (w32_system_caret_x, w32_system_caret_y))
3875 return 0;
3876 /* Ensure visible caret gets turned on when requested. */
3877 else if (w32_use_visible_system_caret
3878 && w32_visible_system_caret_hwnd != hwnd)
3879 {
3880 w32_visible_system_caret_hwnd = hwnd;
3881 return ShowCaret (hwnd);
3882 }
3883 /* Ensure visible caret gets turned off when requested. */
3884 else if (!w32_use_visible_system_caret
3885 && w32_visible_system_caret_hwnd)
3886 {
3887 w32_visible_system_caret_hwnd = NULL;
3888 return HideCaret (hwnd);
3889 }
3890 else
3891 return 1;
65906840 3892
1edf84e7
GV
3893 case WM_EMACS_TRACKPOPUPMENU:
3894 {
3895 UINT flags;
3896 POINT *pos;
3897 int retval;
3898 pos = (POINT *)lParam;
3899 flags = TPM_CENTERALIGN;
3900 if (button_state & LMOUSE)
3901 flags |= TPM_LEFTBUTTON;
3902 else if (button_state & RMOUSE)
3903 flags |= TPM_RIGHTBUTTON;
7d0393cf 3904
87996783
GV
3905 /* Remember we did a SetCapture on the initial mouse down event,
3906 so for safety, we make sure the capture is cancelled now. */
3907 ReleaseCapture ();
490822ff 3908 button_state = 0;
87996783 3909
1edf84e7
GV
3910 /* Use menubar_active to indicate that WM_INITMENU is from
3911 TrackPopupMenu below, and should be ignored. */
3912 f = x_window_to_frame (dpyinfo, hwnd);
3913 if (f)
3914 f->output_data.w32->menubar_active = 1;
7d0393cf
JB
3915
3916 if (TrackPopupMenu ((HMENU)wParam, flags, pos->x, pos->y,
1edf84e7
GV
3917 0, hwnd, NULL))
3918 {
3919 MSG amsg;
3920 /* Eat any mouse messages during popupmenu */
3921 while (PeekMessage (&amsg, hwnd, WM_MOUSEFIRST, WM_MOUSELAST,
3922 PM_REMOVE));
3923 /* Get the menu selection, if any */
3924 if (PeekMessage (&amsg, hwnd, WM_COMMAND, WM_COMMAND, PM_REMOVE))
3925 {
3926 retval = LOWORD (amsg.wParam);
3927 }
3928 else
3929 {
3930 retval = 0;
3931 }
1edf84e7
GV
3932 }
3933 else
3934 {
3935 retval = -1;
3936 }
3937
3938 return retval;
3939 }
3940
ee78dc32 3941 default:
93fbe8b7
GV
3942 /* Check for messages registered at runtime. */
3943 if (msg == msh_mousewheel)
3944 {
3945 wmsg.dwModifiers = w32_get_modifiers ();
3946 my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
f0c947b5 3947 signal_user_input ();
93fbe8b7
GV
3948 return 0;
3949 }
7d0393cf 3950
ee78dc32
GV
3951 dflt:
3952 return DefWindowProc (hwnd, msg, wParam, lParam);
3953 }
7d0393cf 3954
1edf84e7
GV
3955
3956 /* The most common default return code for handled messages is 0. */
3957 return 0;
ee78dc32
GV
3958}
3959
0962822d 3960static void
ee78dc32
GV
3961my_create_window (f)
3962 struct frame * f;
3963{
3964 MSG msg;
3965
1edf84e7
GV
3966 if (!PostThreadMessage (dwWindowsThreadId, WM_EMACS_CREATEWINDOW, (WPARAM)f, 0))
3967 abort ();
ee78dc32
GV
3968 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
3969}
3970
ca56d953
JR
3971
3972/* Create a tooltip window. Unlike my_create_window, we do not do this
3973 indirectly via the Window thread, as we do not need to process Window
3974 messages for the tooltip. Creating tooltips indirectly also creates
3975 deadlocks when tooltips are created for menu items. */
0962822d 3976static void
ca56d953
JR
3977my_create_tip_window (f)
3978 struct frame *f;
3979{
bfd6edcc 3980 RECT rect;
ca56d953 3981
bfd6edcc 3982 rect.left = rect.top = 0;
be786000
KS
3983 rect.right = FRAME_PIXEL_WIDTH (f);
3984 rect.bottom = FRAME_PIXEL_HEIGHT (f);
bfd6edcc
JR
3985
3986 AdjustWindowRect (&rect, f->output_data.w32->dwStyle,
3987 FRAME_EXTERNAL_MENU_BAR (f));
3988
3989 tip_window = FRAME_W32_WINDOW (f)
ca56d953
JR
3990 = CreateWindow (EMACS_CLASS,
3991 f->namebuf,
3992 f->output_data.w32->dwStyle,
be786000
KS
3993 f->left_pos,
3994 f->top_pos,
bfd6edcc
JR
3995 rect.right - rect.left,
3996 rect.bottom - rect.top,
ca56d953
JR
3997 FRAME_W32_WINDOW (SELECTED_FRAME ()), /* owner */
3998 NULL,
3999 hinst,
4000 NULL);
4001
bfd6edcc 4002 if (tip_window)
ca56d953 4003 {
be786000
KS
4004 SetWindowLong (tip_window, WND_FONTWIDTH_INDEX, FRAME_COLUMN_WIDTH (f));
4005 SetWindowLong (tip_window, WND_LINEHEIGHT_INDEX, FRAME_LINE_HEIGHT (f));
4006 SetWindowLong (tip_window, WND_BORDER_INDEX, FRAME_INTERNAL_BORDER_WIDTH (f));
bfd6edcc
JR
4007 SetWindowLong (tip_window, WND_BACKGROUND_INDEX, FRAME_BACKGROUND_PIXEL (f));
4008
4009 /* Tip frames have no scrollbars. */
4010 SetWindowLong (tip_window, WND_SCROLLBAR_INDEX, 0);
ca56d953
JR
4011
4012 /* Do this to discard the default setting specified by our parent. */
bfd6edcc 4013 ShowWindow (tip_window, SW_HIDE);
ca56d953
JR
4014 }
4015}
4016
4017
fbd6baed 4018/* Create and set up the w32 window for frame F. */
ee78dc32
GV
4019
4020static void
fbd6baed 4021w32_window (f, window_prompting, minibuffer_only)
ee78dc32
GV
4022 struct frame *f;
4023 long window_prompting;
4024 int minibuffer_only;
4025{
4026 BLOCK_INPUT;
4027
4028 /* Use the resource name as the top-level window name
4029 for looking up resources. Make a non-Lisp copy
4030 for the window manager, so GC relocation won't bother it.
4031
4032 Elsewhere we specify the window name for the window manager. */
7d0393cf 4033
ee78dc32 4034 {
d5db4077 4035 char *str = (char *) SDATA (Vx_resource_name);
ee78dc32
GV
4036 f->namebuf = (char *) xmalloc (strlen (str) + 1);
4037 strcpy (f->namebuf, str);
4038 }
4039
4040 my_create_window (f);
4041
4042 validate_x_resource_name ();
4043
4044 /* x_set_name normally ignores requests to set the name if the
4045 requested name is the same as the current name. This is the one
4046 place where that assumption isn't correct; f->name is set, but
4047 the server hasn't been told. */
4048 {
4049 Lisp_Object name;
4050 int explicit = f->explicit_name;
4051
4052 f->explicit_name = 0;
4053 name = f->name;
4054 f->name = Qnil;
4055 x_set_name (f, name, explicit);
4056 }
4057
4058 UNBLOCK_INPUT;
4059
4060 if (!minibuffer_only && FRAME_EXTERNAL_MENU_BAR (f))
4061 initialize_frame_menubar (f);
4062
fbd6baed 4063 if (FRAME_W32_WINDOW (f) == 0)
ee78dc32
GV
4064 error ("Unable to create window");
4065}
4066
4067/* Handle the icon stuff for this window. Perhaps later we might
4068 want an x_set_icon_position which can be called interactively as
4069 well. */
4070
4071static void
4072x_icon (f, parms)
4073 struct frame *f;
4074 Lisp_Object parms;
4075{
4076 Lisp_Object icon_x, icon_y;
3faa984f 4077 struct w32_display_info *dpyinfo = &one_w32_display_info;
ee78dc32 4078
e9e23e23 4079 /* Set the position of the icon. Note that Windows 95 groups all
ee78dc32 4080 icons in the tray. */
3faa984f
JR
4081 icon_x = x_get_arg (dpyinfo, parms, Qicon_left, 0, 0, RES_TYPE_NUMBER);
4082 icon_y = x_get_arg (dpyinfo, parms, Qicon_top, 0, 0, RES_TYPE_NUMBER);
ee78dc32
GV
4083 if (!EQ (icon_x, Qunbound) && !EQ (icon_y, Qunbound))
4084 {
b7826503
PJ
4085 CHECK_NUMBER (icon_x);
4086 CHECK_NUMBER (icon_y);
ee78dc32
GV
4087 }
4088 else if (!EQ (icon_x, Qunbound) || !EQ (icon_y, Qunbound))
4089 error ("Both left and top icon corners of icon must be specified");
4090
4091 BLOCK_INPUT;
4092
4093 if (! EQ (icon_x, Qunbound))
4094 x_wm_set_icon_position (f, XINT (icon_x), XINT (icon_y));
4095
1edf84e7
GV
4096#if 0 /* TODO */
4097 /* Start up iconic or window? */
4098 x_wm_set_window_state
3faa984f 4099 (f, (EQ (x_get_arg (dpyinfo, parms, Qvisibility, 0, 0, RES_TYPE_SYMBOL), Qicon)
1edf84e7
GV
4100 ? IconicState
4101 : NormalState));
4102
d5db4077 4103 x_text_icon (f, (char *) SDATA ((!NILP (f->icon_name)
1edf84e7 4104 ? f->icon_name
d5db4077 4105 : f->name)));
1edf84e7
GV
4106#endif
4107
ee78dc32
GV
4108 UNBLOCK_INPUT;
4109}
4110
6fc2811b
JR
4111
4112static void
4113x_make_gc (f)
4114 struct frame *f;
4115{
4116 XGCValues gc_values;
4117
4118 BLOCK_INPUT;
4119
4120 /* Create the GC's of this frame.
4121 Note that many default values are used. */
4122
4123 /* Normal video */
be786000 4124 gc_values.font = FRAME_FONT (f);
6fc2811b
JR
4125
4126 /* Cursor has cursor-color background, background-color foreground. */
4127 gc_values.foreground = FRAME_BACKGROUND_PIXEL (f);
4128 gc_values.background = f->output_data.w32->cursor_pixel;
4129 f->output_data.w32->cursor_gc
4130 = XCreateGC (NULL, FRAME_W32_WINDOW (f),
4131 (GCFont | GCForeground | GCBackground),
4132 &gc_values);
4133
4134 /* Reliefs. */
4135 f->output_data.w32->white_relief.gc = 0;
4136 f->output_data.w32->black_relief.gc = 0;
4137
4138 UNBLOCK_INPUT;
4139}
4140
4141
937e601e
AI
4142/* Handler for signals raised during x_create_frame and
4143 x_create_top_frame. FRAME is the frame which is partially
4144 constructed. */
4145
4146static Lisp_Object
4147unwind_create_frame (frame)
4148 Lisp_Object frame;
4149{
4150 struct frame *f = XFRAME (frame);
4151
4152 /* If frame is ``official'', nothing to do. */
4153 if (!CONSP (Vframe_list) || !EQ (XCAR (Vframe_list), frame))
4154 {
4155#ifdef GLYPH_DEBUG
4156 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
4157#endif
7d0393cf 4158
937e601e
AI
4159 x_free_frame_resources (f);
4160
a9b555d3 4161#if GLYPH_DEBUG
937e601e
AI
4162 /* Check that reference counts are indeed correct. */
4163 xassert (dpyinfo->reference_count == dpyinfo_refcount);
4164 xassert (dpyinfo->image_cache->refcount == image_cache_refcount);
a9b555d3 4165#endif
c844a81a 4166 return Qt;
937e601e 4167 }
7d0393cf 4168
937e601e
AI
4169 return Qnil;
4170}
4171
a1fe5c00
JR
4172static void
4173x_default_font_parameter (f, parms)
4174 struct frame *f;
4175 Lisp_Object parms;
4176{
4177 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
770e2e6e
SM
4178 Lisp_Object font_param = x_get_arg (dpyinfo, parms, Qfont, NULL, NULL,
4179 RES_TYPE_STRING);
4180 Lisp_Object font;
4181 if (EQ (font_param, Qunbound))
4182 font_param = Qnil;
4183 font = !NILP (font_param) ? font_param
4184 : x_get_arg (dpyinfo, parms, Qfont, "font", "Font", RES_TYPE_STRING);
a1fe5c00
JR
4185
4186 if (!STRINGP (font))
4187 {
4188 int i;
4189 static char *names[]
82523155 4190 = { "Courier New-10",
a1fe5c00
JR
4191 "-*-Courier-normal-r-*-*-13-*-*-*-c-*-iso8859-1",
4192 "-*-Fixedsys-normal-r-*-*-12-*-*-*-c-*-iso8859-1",
4193 "Fixedsys",
4194 NULL };
4195
4196 for (i = 0; names[i]; i++)
4197 {
4198 font = font_open_by_name (f, names[i]);
4199 if (! NILP (font))
4200 break;
4201 }
4202 if (NILP (font))
4203 error ("No suitable font was found");
4204 }
770e2e6e 4205 else if (!NILP (font_param))
27129af9
SM
4206 {
4207 /* Remember the explicit font parameter, so we can re-apply it after
4208 we've applied the `default' face settings. */
770e2e6e
SM
4209 x_set_frame_parameters (f, Fcons (Fcons (Qfont_param, font_param), Qnil));
4210 }
a1fe5c00
JR
4211 x_default_parameter (f, parms, Qfont, font, "font", "Font", RES_TYPE_STRING);
4212}
937e601e 4213
ee78dc32
GV
4214DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
4215 1, 1, 0,
74e1aeec 4216 doc: /* Make a new window, which is called a \"frame\" in Emacs terms.
36458ebd 4217Return an Emacs frame object.
52deb19f 4218PARAMETERS is an alist of frame parameters.
74e1aeec
JR
4219If the parameters specify that the frame should not have a minibuffer,
4220and do not specify a specific minibuffer window to use,
4221then `default-minibuffer-frame' must be a frame whose minibuffer can
4222be shared by the new frame.
4223
4224This function is an internal primitive--use `make-frame' instead. */)
52deb19f
JB
4225 (parameters)
4226 Lisp_Object parameters;
ee78dc32
GV
4227{
4228 struct frame *f;
4229 Lisp_Object frame, tem;
4230 Lisp_Object name;
4231 int minibuffer_only = 0;
4232 long window_prompting = 0;
4233 int width, height;
331379bf 4234 int count = SPECPDL_INDEX ();
1edf84e7 4235 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
ee78dc32 4236 Lisp_Object display;
6fc2811b 4237 struct w32_display_info *dpyinfo = NULL;
ee78dc32
GV
4238 Lisp_Object parent;
4239 struct kboard *kb;
4240
1da8a031
MR
4241 /* Make copy of frame parameters because the original is in pure
4242 storage now. */
4243 parameters = Fcopy_alist (parameters);
4244
ee78dc32
GV
4245 /* Use this general default value to start with
4246 until we know if this frame has a specified name. */
4247 Vx_resource_name = Vinvocation_name;
4248
3faa984f
JR
4249 display = x_get_arg (dpyinfo, parameters, Qterminal, 0, 0, RES_TYPE_NUMBER);
4250 if (EQ (display, Qunbound))
4251 display = x_get_arg (dpyinfo, parameters, Qdisplay, 0, 0, RES_TYPE_STRING);
ee78dc32
GV
4252 if (EQ (display, Qunbound))
4253 display = Qnil;
4254 dpyinfo = check_x_display_info (display);
80ca7302 4255 kb = dpyinfo->terminal->kboard;
ee78dc32 4256
3faa984f
JR
4257 if (!dpyinfo->terminal->name)
4258 error ("Terminal is not live, can't create new frames on it");
4259
4260 name = x_get_arg (dpyinfo, parameters, Qname, "name", "Name", RES_TYPE_STRING);
ee78dc32
GV
4261 if (!STRINGP (name)
4262 && ! EQ (name, Qunbound)
4263 && ! NILP (name))
4264 error ("Invalid frame name--not a string or nil");
4265
4266 if (STRINGP (name))
4267 Vx_resource_name = name;
4268
4269 /* See if parent window is specified. */
3faa984f 4270 parent = x_get_arg (dpyinfo, parameters, Qparent_id, NULL, NULL, RES_TYPE_NUMBER);
ee78dc32
GV
4271 if (EQ (parent, Qunbound))
4272 parent = Qnil;
4273 if (! NILP (parent))
b7826503 4274 CHECK_NUMBER (parent);
ee78dc32 4275
1edf84e7
GV
4276 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
4277 /* No need to protect DISPLAY because that's not used after passing
4278 it to make_frame_without_minibuffer. */
4279 frame = Qnil;
52deb19f 4280 GCPRO4 (parameters, parent, name, frame);
3faa984f 4281 tem = x_get_arg (dpyinfo, parameters, Qminibuffer, "minibuffer", "Minibuffer",
1660f34a 4282 RES_TYPE_SYMBOL);
ee78dc32
GV
4283 if (EQ (tem, Qnone) || NILP (tem))
4284 f = make_frame_without_minibuffer (Qnil, kb, display);
4285 else if (EQ (tem, Qonly))
4286 {
4287 f = make_minibuffer_frame ();
4288 minibuffer_only = 1;
4289 }
4290 else if (WINDOWP (tem))
4291 f = make_frame_without_minibuffer (tem, kb, display);
4292 else
4293 f = make_frame (1);
4294
1edf84e7
GV
4295 XSETFRAME (frame, f);
4296
ee78dc32
GV
4297 /* Note that Windows does support scroll bars. */
4298 FRAME_CAN_HAVE_SCROLL_BARS (f) = 1;
6d906347 4299
5ac45f98 4300 /* By default, make scrollbars the system standard width. */
be786000 4301 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) = GetSystemMetrics (SM_CXVSCROLL);
ee78dc32 4302
2dc8b986
JR
4303 f->terminal = dpyinfo->terminal;
4304 f->terminal->reference_count++;
4305
fbd6baed 4306 f->output_method = output_w32;
6fc2811b
JR
4307 f->output_data.w32 =
4308 (struct w32_output *) xmalloc (sizeof (struct w32_output));
fbd6baed 4309 bzero (f->output_data.w32, sizeof (struct w32_output));
4587b026
GV
4310 FRAME_FONTSET (f) = -1;
4311
1edf84e7 4312 f->icon_name
3faa984f
JR
4313 = x_get_arg (dpyinfo, parameters, Qicon_name, "iconName", "Title",
4314 RES_TYPE_STRING);
1edf84e7
GV
4315 if (! STRINGP (f->icon_name))
4316 f->icon_name = Qnil;
4317
fbd6baed 4318/* FRAME_W32_DISPLAY_INFO (f) = dpyinfo; */
3faa984f
JR
4319
4320 /* With FRAME_X_DISPLAY_INFO set up, this unwind-protect is safe. */
4321 record_unwind_protect (unwind_create_frame, frame);
4322#if GLYPH_DEBUG
4323 image_cache_refcount = FRAME_IMAGE_CACHE (f)->refcount;
4324 dpyinfo_refcount = dpyinfo->reference_count;
4325#endif /* GLYPH_DEBUG */
ee78dc32
GV
4326
4327 /* Specify the parent under which to make this window. */
4328
4329 if (!NILP (parent))
4330 {
1660f34a 4331 f->output_data.w32->parent_desc = (Window) XFASTINT (parent);
fbd6baed 4332 f->output_data.w32->explicit_parent = 1;
ee78dc32
GV
4333 }
4334 else
4335 {
fbd6baed
GV
4336 f->output_data.w32->parent_desc = FRAME_W32_DISPLAY_INFO (f)->root_window;
4337 f->output_data.w32->explicit_parent = 0;
ee78dc32
GV
4338 }
4339
ee78dc32
GV
4340 /* Set the name; the functions to which we pass f expect the name to
4341 be set. */
4342 if (EQ (name, Qunbound) || NILP (name))
4343 {
fbd6baed 4344 f->name = build_string (dpyinfo->w32_id_name);
ee78dc32
GV
4345 f->explicit_name = 0;
4346 }
4347 else
4348 {
4349 f->name = name;
4350 f->explicit_name = 1;
4351 /* use the frame's title when getting resources for this frame. */
4352 specbind (Qx_resource_name, name);
4353 }
4354
82523155
JR
4355 f->resx = dpyinfo->resx;
4356 f->resy = dpyinfo->resy;
4357
1cc06b86
KH
4358 if (uniscribe_available)
4359 register_font_driver (&uniscribe_font_driver, f);
4360 register_font_driver (&w32font_driver, f);
a1fe5c00 4361
1cc06b86
KH
4362 x_default_parameter (f, parameters, Qfont_backend, Qnil,
4363 "fontBackend", "FontBackend", RES_TYPE_STRING);
ee78dc32
GV
4364 /* Extract the window parameters from the supplied values
4365 that are needed to determine window geometry. */
1cc06b86 4366 x_default_font_parameter (f, parameters);
52deb19f 4367 x_default_parameter (f, parameters, Qborder_width, make_number (2),
1660f34a 4368 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
3faa984f 4369
601a9cf1 4370 /* We recognize either internalBorderWidth or internalBorder
3faa984f 4371 (which is what xterm calls it). */
52deb19f 4372 if (NILP (Fassq (Qinternal_border_width, parameters)))
ee78dc32
GV
4373 {
4374 Lisp_Object value;
4375
3faa984f 4376 value = x_get_arg (dpyinfo, parameters, Qinternal_border_width,
52deb19f 4377 "internalBorder", "InternalBorder", RES_TYPE_NUMBER);
ee78dc32 4378 if (! EQ (value, Qunbound))
52deb19f
JB
4379 parameters = Fcons (Fcons (Qinternal_border_width, value),
4380 parameters);
ee78dc32 4381 }
1edf84e7 4382 /* Default internalBorderWidth to 0 on Windows to match other programs. */
52deb19f 4383 x_default_parameter (f, parameters, Qinternal_border_width, make_number (0),
1660f34a 4384 "internalBorderWidth", "InternalBorder", RES_TYPE_NUMBER);
52deb19f 4385 x_default_parameter (f, parameters, Qvertical_scroll_bars, Qright,
1660f34a 4386 "verticalScrollBars", "ScrollBars", RES_TYPE_SYMBOL);
ee78dc32
GV
4387
4388 /* Also do the stuff which must be set before the window exists. */
52deb19f 4389 x_default_parameter (f, parameters, Qforeground_color, build_string ("black"),
6fc2811b 4390 "foreground", "Foreground", RES_TYPE_STRING);
52deb19f 4391 x_default_parameter (f, parameters, Qbackground_color, build_string ("white"),
6fc2811b 4392 "background", "Background", RES_TYPE_STRING);
52deb19f 4393 x_default_parameter (f, parameters, Qmouse_color, build_string ("black"),
6fc2811b 4394 "pointerColor", "Foreground", RES_TYPE_STRING);
52deb19f 4395 x_default_parameter (f, parameters, Qcursor_color, build_string ("black"),
6fc2811b 4396 "cursorColor", "Foreground", RES_TYPE_STRING);
52deb19f 4397 x_default_parameter (f, parameters, Qborder_color, build_string ("black"),
6fc2811b 4398 "borderColor", "BorderColor", RES_TYPE_STRING);
52deb19f 4399 x_default_parameter (f, parameters, Qscreen_gamma, Qnil,
6fc2811b 4400 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT);
52deb19f 4401 x_default_parameter (f, parameters, Qline_spacing, Qnil,
dfff8a69 4402 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER);
52deb19f 4403 x_default_parameter (f, parameters, Qleft_fringe, Qnil,
41c1bdd9 4404 "leftFringe", "LeftFringe", RES_TYPE_NUMBER);
52deb19f 4405 x_default_parameter (f, parameters, Qright_fringe, Qnil,
41c1bdd9 4406 "rightFringe", "RightFringe", RES_TYPE_NUMBER);
6fc2811b 4407
ee78dc32 4408
6fc2811b
JR
4409 /* Init faces before x_default_parameter is called for scroll-bar
4410 parameters because that function calls x_set_scroll_bar_width,
4411 which calls change_frame_size, which calls Fset_window_buffer,
4412 which runs hooks, which call Fvertical_motion. At the end, we
4413 end up in init_iterator with a null face cache, which should not
4414 happen. */
4415 init_frame_faces (f);
7d0393cf 4416
52deb19f 4417 x_default_parameter (f, parameters, Qmenu_bar_lines, make_number (1),
6fc2811b 4418 "menuBar", "MenuBar", RES_TYPE_NUMBER);
52deb19f 4419 x_default_parameter (f, parameters, Qtool_bar_lines, make_number (1),
6fc2811b 4420 "toolBar", "ToolBar", RES_TYPE_NUMBER);
919f1e88 4421
52deb19f 4422 x_default_parameter (f, parameters, Qbuffer_predicate, Qnil,
6fc2811b 4423 "bufferPredicate", "BufferPredicate", RES_TYPE_SYMBOL);
52deb19f 4424 x_default_parameter (f, parameters, Qtitle, Qnil,
6fc2811b 4425 "title", "Title", RES_TYPE_STRING);
52deb19f 4426 x_default_parameter (f, parameters, Qfullscreen, Qnil,
f7b9d4d1 4427 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL);
ee78dc32 4428
fbd6baed
GV
4429 f->output_data.w32->dwStyle = WS_OVERLAPPEDWINDOW;
4430 f->output_data.w32->parent_desc = FRAME_W32_DISPLAY_INFO (f)->root_window;
3cf3436e 4431
c9b2104d
JR
4432 f->output_data.w32->text_cursor = w32_load_cursor (IDC_IBEAM);
4433 f->output_data.w32->nontext_cursor = w32_load_cursor (IDC_ARROW);
4434 f->output_data.w32->modeline_cursor = w32_load_cursor (IDC_ARROW);
7d63e5e3 4435 f->output_data.w32->hand_cursor = w32_load_cursor (IDC_HAND);
c9b2104d
JR
4436 f->output_data.w32->hourglass_cursor = w32_load_cursor (IDC_WAIT);
4437 f->output_data.w32->horizontal_drag_cursor = w32_load_cursor (IDC_SIZEWE);
c9b2104d 4438
d148e14d
JR
4439 f->output_data.w32->current_cursor = f->output_data.w32->nontext_cursor;
4440
52deb19f 4441 window_prompting = x_figure_window_size (f, parameters, 1);
ee78dc32 4442
3faa984f 4443 tem = x_get_arg (dpyinfo, parameters, Qunsplittable, 0, 0, RES_TYPE_BOOLEAN);
6fc2811b
JR
4444 f->no_split = minibuffer_only || EQ (tem, Qt);
4445
fbd6baed 4446 w32_window (f, window_prompting, minibuffer_only);
52deb19f 4447 x_icon (f, parameters);
6fc2811b
JR
4448
4449 x_make_gc (f);
4450
4451 /* Now consider the frame official. */
4452 FRAME_W32_DISPLAY_INFO (f)->reference_count++;
4453 Vframe_list = Fcons (frame, Vframe_list);
ee78dc32
GV
4454
4455 /* We need to do this after creating the window, so that the
4456 icon-creation functions can say whose icon they're describing. */
52deb19f 4457 x_default_parameter (f, parameters, Qicon_type, Qnil,
6fc2811b 4458 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL);
ee78dc32 4459
52deb19f 4460 x_default_parameter (f, parameters, Qauto_raise, Qnil,
6fc2811b 4461 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
52deb19f 4462 x_default_parameter (f, parameters, Qauto_lower, Qnil,
6fc2811b 4463 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
52deb19f 4464 x_default_parameter (f, parameters, Qcursor_type, Qbox,
6fc2811b 4465 "cursorType", "CursorType", RES_TYPE_SYMBOL);
52deb19f 4466 x_default_parameter (f, parameters, Qscroll_bar_width, Qnil,
6fc2811b 4467 "scrollBarWidth", "ScrollBarWidth", RES_TYPE_NUMBER);
8b61a891
JR
4468 x_default_parameter (f, parameters, Qalpha, Qnil,
4469 "alpha", "Alpha", RES_TYPE_NUMBER);
ee78dc32 4470
be786000 4471 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
ee78dc32 4472 Change will not be effected unless different from the current
be786000
KS
4473 FRAME_LINES (f). */
4474 width = FRAME_COLS (f);
4475 height = FRAME_LINES (f);
dc220243 4476
be786000
KS
4477 FRAME_LINES (f) = 0;
4478 SET_FRAME_COLS (f, 0);
6fc2811b
JR
4479 change_frame_size (f, height, width, 1, 0, 0);
4480
6fc2811b
JR
4481 /* Tell the server what size and position, etc, we want, and how
4482 badly we want them. This should be done after we have the menu
4483 bar so that its size can be taken into account. */
ee78dc32
GV
4484 BLOCK_INPUT;
4485 x_wm_set_size_hint (f, window_prompting, 0);
4486 UNBLOCK_INPUT;
4487
6fc2811b
JR
4488 /* Make the window appear on the frame and enable display, unless
4489 the caller says not to. However, with explicit parent, Emacs
4490 cannot control visibility, so don't try. */
fbd6baed 4491 if (! f->output_data.w32->explicit_parent)
ee78dc32
GV
4492 {
4493 Lisp_Object visibility;
4494
3faa984f 4495 visibility = x_get_arg (dpyinfo, parameters, Qvisibility, 0, 0, RES_TYPE_SYMBOL);
ee78dc32
GV
4496 if (EQ (visibility, Qunbound))
4497 visibility = Qt;
4498
4499 if (EQ (visibility, Qicon))
4500 x_iconify_frame (f);
4501 else if (! NILP (visibility))
4502 x_make_frame_visible (f);
4503 else
4504 /* Must have been Qnil. */
4505 ;
4506 }
55d5acfa
DN
4507
4508 /* Initialize `default-minibuffer-frame' in case this is the first
4509 frame on this terminal. */
4510 if (FRAME_HAS_MINIBUF_P (f)
4511 && (!FRAMEP (kb->Vdefault_minibuffer_frame)
4512 || !FRAME_LIVE_P (XFRAME (kb->Vdefault_minibuffer_frame))))
4513 kb->Vdefault_minibuffer_frame = frame;
4514
4515 /* All remaining specified parameters, which have not been "used"
4516 by x_get_arg and friends, now go in the misc. alist of the frame. */
99784d63 4517 for (tem = parameters; CONSP (tem); tem = XCDR (tem))
55d5acfa
DN
4518 if (CONSP (XCAR (tem)) && !NILP (XCAR (XCAR (tem))))
4519 f->param_alist = Fcons (XCAR (tem), f->param_alist);
4520
6fc2811b 4521 UNGCPRO;
7d0393cf 4522
9e57df62
GM
4523 /* Make sure windows on this frame appear in calls to next-window
4524 and similar functions. */
4525 Vwindow_list = Qnil;
7d0393cf 4526
ee78dc32
GV
4527 return unbind_to (count, frame);
4528}
4529
4530/* FRAME is used only to get a handle on the X display. We don't pass the
4531 display info directly because we're called from frame.c, which doesn't
4532 know about that structure. */
4533Lisp_Object
4534x_get_focus_frame (frame)
4535 struct frame *frame;
4536{
fbd6baed 4537 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (frame);
ee78dc32 4538 Lisp_Object xfocus;
fbd6baed 4539 if (! dpyinfo->w32_focus_frame)
ee78dc32
GV
4540 return Qnil;
4541
fbd6baed 4542 XSETFRAME (xfocus, dpyinfo->w32_focus_frame);
ee78dc32
GV
4543 return xfocus;
4544}
1edf84e7 4545
334a1195 4546DEFUN ("x-focus-frame", Fx_focus_frame, Sx_focus_frame, 1, 1, 0,
74e1aeec 4547 doc: /* Give FRAME input focus, raising to foreground if necessary. */)
1edf84e7
GV
4548 (frame)
4549 Lisp_Object frame;
4550{
4551 x_focus_on_frame (check_x_frame (frame));
4552 return Qnil;
4553}
4554
ee78dc32 4555\f
6fc2811b 4556DEFUN ("xw-color-defined-p", Fxw_color_defined_p, Sxw_color_defined_p, 1, 2, 0,
74e1aeec 4557 doc: /* Internal function called by `color-defined-p', which see. */)
6fc2811b
JR
4558 (color, frame)
4559 Lisp_Object color, frame;
4560{
4561 XColor foo;
4562 FRAME_PTR f = check_x_frame (frame);
ee78dc32 4563
b7826503 4564 CHECK_STRING (color);
ee78dc32 4565
d5db4077 4566 if (w32_defined_color (f, SDATA (color), &foo, 0))
6fc2811b
JR
4567 return Qt;
4568 else
4569 return Qnil;
4570}
ee78dc32 4571
2d764c78 4572DEFUN ("xw-color-values", Fxw_color_values, Sxw_color_values, 1, 2, 0,
74e1aeec 4573 doc: /* Internal function called by `color-values', which see. */)
ee78dc32
GV
4574 (color, frame)
4575 Lisp_Object color, frame;
4576{
6fc2811b 4577 XColor foo;
ee78dc32
GV
4578 FRAME_PTR f = check_x_frame (frame);
4579
b7826503 4580 CHECK_STRING (color);
ee78dc32 4581
d5db4077 4582 if (w32_defined_color (f, SDATA (color), &foo, 0))
a508663b
KS
4583 return list3 (make_number ((GetRValue (foo.pixel) << 8)
4584 | GetRValue (foo.pixel)),
4585 make_number ((GetGValue (foo.pixel) << 8)
4586 | GetGValue (foo.pixel)),
4587 make_number ((GetBValue (foo.pixel) << 8)
4588 | GetBValue (foo.pixel)));
ee78dc32
GV
4589 else
4590 return Qnil;
4591}
4592
2d764c78 4593DEFUN ("xw-display-color-p", Fxw_display_color_p, Sxw_display_color_p, 0, 1, 0,
74e1aeec 4594 doc: /* Internal function called by `display-color-p', which see. */)
ee78dc32
GV
4595 (display)
4596 Lisp_Object display;
4597{
fbd6baed 4598 struct w32_display_info *dpyinfo = check_x_display_info (display);
ee78dc32
GV
4599
4600 if ((dpyinfo->n_planes * dpyinfo->n_cbits) <= 2)
4601 return Qnil;
4602
4603 return Qt;
4604}
4605
74e1aeec
JR
4606DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p,
4607 Sx_display_grayscale_p, 0, 1, 0,
52deb19f 4608 doc: /* Return t if DISPLAY supports shades of gray.
74e1aeec
JR
4609Note that color displays do support shades of gray.
4610The optional argument DISPLAY specifies which display to ask about.
4611DISPLAY should be either a frame or a display name (a string).
4612If omitted or nil, that stands for the selected frame's display. */)
ee78dc32
GV
4613 (display)
4614 Lisp_Object display;
4615{
fbd6baed 4616 struct w32_display_info *dpyinfo = check_x_display_info (display);
ee78dc32
GV
4617
4618 if ((dpyinfo->n_planes * dpyinfo->n_cbits) <= 1)
4619 return Qnil;
4620
4621 return Qt;
4622}
4623
74e1aeec
JR
4624DEFUN ("x-display-pixel-width", Fx_display_pixel_width,
4625 Sx_display_pixel_width, 0, 1, 0,
36458ebd 4626 doc: /* Return the width in pixels of DISPLAY.
74e1aeec
JR
4627The optional argument DISPLAY specifies which display to ask about.
4628DISPLAY should be either a frame or a display name (a string).
4629If omitted or nil, that stands for the selected frame's display. */)
ee78dc32
GV
4630 (display)
4631 Lisp_Object display;
4632{
fbd6baed 4633 struct w32_display_info *dpyinfo = check_x_display_info (display);
ee78dc32 4634
05eb7cdc 4635 return make_number (x_display_pixel_width (dpyinfo));
ee78dc32
GV
4636}
4637
4638DEFUN ("x-display-pixel-height", Fx_display_pixel_height,
74e1aeec 4639 Sx_display_pixel_height, 0, 1, 0,
36458ebd 4640 doc: /* Return the height in pixels of DISPLAY.
74e1aeec
JR
4641The optional argument DISPLAY specifies which display to ask about.
4642DISPLAY should be either a frame or a display name (a string).
4643If omitted or nil, that stands for the selected frame's display. */)
ee78dc32
GV
4644 (display)
4645 Lisp_Object display;
4646{
fbd6baed 4647 struct w32_display_info *dpyinfo = check_x_display_info (display);
ee78dc32 4648
05eb7cdc 4649 return make_number (x_display_pixel_height (dpyinfo));
ee78dc32
GV
4650}
4651
4652DEFUN ("x-display-planes", Fx_display_planes, Sx_display_planes,
74e1aeec 4653 0, 1, 0,
36458ebd 4654 doc: /* Return the number of bitplanes of DISPLAY.
74e1aeec
JR
4655The optional argument DISPLAY specifies which display to ask about.
4656DISPLAY should be either a frame or a display name (a string).
4657If omitted or nil, that stands for the selected frame's display. */)
ee78dc32
GV
4658 (display)
4659 Lisp_Object display;
4660{
fbd6baed 4661 struct w32_display_info *dpyinfo = check_x_display_info (display);
ee78dc32
GV
4662
4663 return make_number (dpyinfo->n_planes * dpyinfo->n_cbits);
4664}
4665
4666DEFUN ("x-display-color-cells", Fx_display_color_cells, Sx_display_color_cells,
74e1aeec 4667 0, 1, 0,
36458ebd 4668 doc: /* Return the number of color cells of DISPLAY.
74e1aeec
JR
4669The optional argument DISPLAY specifies which display to ask about.
4670DISPLAY should be either a frame or a display name (a string).
4671If omitted or nil, that stands for the selected frame's display. */)
ee78dc32
GV
4672 (display)
4673 Lisp_Object display;
4674{
fbd6baed 4675 struct w32_display_info *dpyinfo = check_x_display_info (display);
ee78dc32
GV
4676 HDC hdc;
4677 int cap;
4678
5ac45f98
GV
4679 hdc = GetDC (dpyinfo->root_window);
4680 if (dpyinfo->has_palette)
52deb19f 4681 cap = GetDeviceCaps (hdc, SIZEPALETTE);
5ac45f98 4682 else
52deb19f 4683 cap = GetDeviceCaps (hdc, NUMCOLORS);
abf8c61b 4684
007776bc
JB
4685 /* We force 24+ bit depths to 24-bit, both to prevent an overflow
4686 and because probably is more meaningful on Windows anyway */
abf8c61b 4687 if (cap < 0)
74084731 4688 cap = 1 << min (dpyinfo->n_planes * dpyinfo->n_cbits, 24);
7d0393cf 4689
ee78dc32 4690 ReleaseDC (dpyinfo->root_window, hdc);
7d0393cf 4691
ee78dc32
GV
4692 return make_number (cap);
4693}
4694
4695DEFUN ("x-server-max-request-size", Fx_server_max_request_size,
4696 Sx_server_max_request_size,
74e1aeec 4697 0, 1, 0,
36458ebd 4698 doc: /* Return the maximum request size of the server of DISPLAY.
74e1aeec
JR
4699The optional argument DISPLAY specifies which display to ask about.
4700DISPLAY should be either a frame or a display name (a string).
4701If omitted or nil, that stands for the selected frame's display. */)
ee78dc32
GV
4702 (display)
4703 Lisp_Object display;
4704{
fbd6baed 4705 struct w32_display_info *dpyinfo = check_x_display_info (display);
ee78dc32
GV
4706
4707 return make_number (1);
4708}
4709
4710DEFUN ("x-server-vendor", Fx_server_vendor, Sx_server_vendor, 0, 1, 0,
36458ebd 4711 doc: /* Return the "vendor ID" string of the W32 system (Microsoft).
74e1aeec
JR
4712The optional argument DISPLAY specifies which display to ask about.
4713DISPLAY should be either a frame or a display name (a string).
4714If omitted or nil, that stands for the selected frame's display. */)
ee78dc32
GV
4715 (display)
4716 Lisp_Object display;
4717{
dfff8a69 4718 return build_string ("Microsoft Corp.");
ee78dc32
GV
4719}
4720
4721DEFUN ("x-server-version", Fx_server_version, Sx_server_version, 0, 1, 0,
36458ebd 4722 doc: /* Return the version numbers of the server of DISPLAY.
74e1aeec 4723The value is a list of three integers: the major and minor
02b39a28
JB
4724version numbers of the X Protocol in use, and the distributor-specific
4725release number. See also the function `x-server-vendor'.
74e1aeec
JR
4726
4727The optional argument DISPLAY specifies which display to ask about.
4728DISPLAY should be either a frame or a display name (a string).
4729If omitted or nil, that stands for the selected frame's display. */)
ee78dc32
GV
4730 (display)
4731 Lisp_Object display;
4732{
fbd6baed 4733 return Fcons (make_number (w32_major_version),
58e0f0e4
AI
4734 Fcons (make_number (w32_minor_version),
4735 Fcons (make_number (w32_build_number), Qnil)));
ee78dc32
GV
4736}
4737
4738DEFUN ("x-display-screens", Fx_display_screens, Sx_display_screens, 0, 1, 0,
36458ebd 4739 doc: /* Return the number of screens on the server of DISPLAY.
74e1aeec
JR
4740The optional argument DISPLAY specifies which display to ask about.
4741DISPLAY should be either a frame or a display name (a string).
4742If omitted or nil, that stands for the selected frame's display. */)
ee78dc32
GV
4743 (display)
4744 Lisp_Object display;
4745{
ee78dc32
GV
4746 return make_number (1);
4747}
4748
74e1aeec
JR
4749DEFUN ("x-display-mm-height", Fx_display_mm_height,
4750 Sx_display_mm_height, 0, 1, 0,
36458ebd 4751 doc: /* Return the height in millimeters of DISPLAY.
74e1aeec
JR
4752The optional argument DISPLAY specifies which display to ask about.
4753DISPLAY should be either a frame or a display name (a string).
4754If omitted or nil, that stands for the selected frame's display. */)
ee78dc32
GV
4755 (display)
4756 Lisp_Object display;
4757{
fbd6baed 4758 struct w32_display_info *dpyinfo = check_x_display_info (display);
ee78dc32
GV
4759 HDC hdc;
4760 int cap;
4761
5ac45f98 4762 hdc = GetDC (dpyinfo->root_window);
7d0393cf 4763
ee78dc32 4764 cap = GetDeviceCaps (hdc, VERTSIZE);
7d0393cf 4765
ee78dc32 4766 ReleaseDC (dpyinfo->root_window, hdc);
7d0393cf 4767
ee78dc32
GV
4768 return make_number (cap);
4769}
4770
4771DEFUN ("x-display-mm-width", Fx_display_mm_width, Sx_display_mm_width, 0, 1, 0,
36458ebd 4772 doc: /* Return the width in millimeters of DISPLAY.
74e1aeec
JR
4773The optional argument DISPLAY specifies which display to ask about.
4774DISPLAY should be either a frame or a display name (a string).
4775If omitted or nil, that stands for the selected frame's display. */)
ee78dc32
GV
4776 (display)
4777 Lisp_Object display;
4778{
fbd6baed 4779 struct w32_display_info *dpyinfo = check_x_display_info (display);
ee78dc32
GV
4780
4781 HDC hdc;
4782 int cap;
4783
5ac45f98 4784 hdc = GetDC (dpyinfo->root_window);
7d0393cf 4785
ee78dc32 4786 cap = GetDeviceCaps (hdc, HORZSIZE);
7d0393cf 4787
ee78dc32 4788 ReleaseDC (dpyinfo->root_window, hdc);
7d0393cf 4789
ee78dc32
GV
4790 return make_number (cap);
4791}
4792
4793DEFUN ("x-display-backing-store", Fx_display_backing_store,
74e1aeec 4794 Sx_display_backing_store, 0, 1, 0,
36458ebd 4795 doc: /* Return an indication of whether DISPLAY does backing store.
74e1aeec
JR
4796The value may be `always', `when-mapped', or `not-useful'.
4797The optional argument DISPLAY specifies which display to ask about.
4798DISPLAY should be either a frame or a display name (a string).
4799If omitted or nil, that stands for the selected frame's display. */)
ee78dc32
GV
4800 (display)
4801 Lisp_Object display;
4802{
4803 return intern ("not-useful");
4804}
4805
4806DEFUN ("x-display-visual-class", Fx_display_visual_class,
74e1aeec 4807 Sx_display_visual_class, 0, 1, 0,
36458ebd 4808 doc: /* Return the visual class of DISPLAY.
74e1aeec
JR
4809The value is one of the symbols `static-gray', `gray-scale',
4810`static-color', `pseudo-color', `true-color', or `direct-color'.
4811
4812The optional argument DISPLAY specifies which display to ask about.
4813DISPLAY should be either a frame or a display name (a string).
4814If omitted or nil, that stands for the selected frame's display. */)
ee78dc32
GV
4815 (display)
4816 Lisp_Object display;
4817{
fbd6baed 4818 struct w32_display_info *dpyinfo = check_x_display_info (display);
abf8c61b 4819 Lisp_Object result = Qnil;
ee78dc32 4820
abf8c61b
AI
4821 if (dpyinfo->has_palette)
4822 result = intern ("pseudo-color");
4823 else if (dpyinfo->n_planes * dpyinfo->n_cbits == 1)
4824 result = intern ("static-grey");
4825 else if (dpyinfo->n_planes * dpyinfo->n_cbits == 4)
4826 result = intern ("static-color");
4827 else if (dpyinfo->n_planes * dpyinfo->n_cbits > 8)
4828 result = intern ("true-color");
ee78dc32 4829
abf8c61b 4830 return result;
ee78dc32
GV
4831}
4832
4833DEFUN ("x-display-save-under", Fx_display_save_under,
74e1aeec 4834 Sx_display_save_under, 0, 1, 0,
02b39a28 4835 doc: /* Return t if DISPLAY supports the save-under feature.
74e1aeec
JR
4836The optional argument DISPLAY specifies which display to ask about.
4837DISPLAY should be either a frame or a display name (a string).
4838If omitted or nil, that stands for the selected frame's display. */)
ee78dc32
GV
4839 (display)
4840 Lisp_Object display;
4841{
6fc2811b
JR
4842 return Qnil;
4843}
4844\f
4845int
4846x_pixel_width (f)
4847 register struct frame *f;
4848{
be786000 4849 return FRAME_PIXEL_WIDTH (f);
6fc2811b
JR
4850}
4851
4852int
4853x_pixel_height (f)
4854 register struct frame *f;
4855{
be786000 4856 return FRAME_PIXEL_HEIGHT (f);
6fc2811b
JR
4857}
4858
4859int
4860x_char_width (f)
4861 register struct frame *f;
4862{
be786000 4863 return FRAME_COLUMN_WIDTH (f);
6fc2811b
JR
4864}
4865
4866int
4867x_char_height (f)
4868 register struct frame *f;
4869{
be786000 4870 return FRAME_LINE_HEIGHT (f);
6fc2811b
JR
4871}
4872
4873int
4874x_screen_planes (f)
4875 register struct frame *f;
4876{
4877 return FRAME_W32_DISPLAY_INFO (f)->n_planes;
4878}
4879\f
4880/* Return the display structure for the display named NAME.
4881 Open a new connection if necessary. */
4882
4883struct w32_display_info *
4884x_display_info_for_name (name)
4885 Lisp_Object name;
4886{
4887 Lisp_Object names;
4888 struct w32_display_info *dpyinfo;
4889
b7826503 4890 CHECK_STRING (name);
6fc2811b
JR
4891
4892 for (dpyinfo = &one_w32_display_info, names = w32_display_name_list;
4893 dpyinfo;
4894 dpyinfo = dpyinfo->next, names = XCDR (names))
4895 {
4896 Lisp_Object tem;
4897 tem = Fstring_equal (XCAR (XCAR (names)), name);
4898 if (!NILP (tem))
4899 return dpyinfo;
4900 }
4901
4902 /* Use this general default value to start with. */
4903 Vx_resource_name = Vinvocation_name;
4904
4905 validate_x_resource_name ();
4906
4907 dpyinfo = w32_term_init (name, (unsigned char *)0,
d5db4077 4908 (char *) SDATA (Vx_resource_name));
6fc2811b
JR
4909
4910 if (dpyinfo == 0)
d5db4077 4911 error ("Cannot connect to server %s", SDATA (name));
6fc2811b
JR
4912
4913 w32_in_use = 1;
d5272e33 4914 XSETFASTINT (Vwindow_system_version, w32_major_version);
6fc2811b
JR
4915
4916 return dpyinfo;
4917}
4918
4919DEFUN ("x-open-connection", Fx_open_connection, Sx_open_connection,
74e1aeec
JR
4920 1, 3, 0, doc: /* Open a connection to a server.
4921DISPLAY is the name of the display to connect to.
4922Optional second arg XRM-STRING is a string of resources in xrdb format.
4923If the optional third arg MUST-SUCCEED is non-nil,
4924terminate Emacs if we can't open the connection. */)
6fc2811b
JR
4925 (display, xrm_string, must_succeed)
4926 Lisp_Object display, xrm_string, must_succeed;
4927{
4928 unsigned char *xrm_option;
4929 struct w32_display_info *dpyinfo;
4930
74e1aeec
JR
4931 /* If initialization has already been done, return now to avoid
4932 overwriting critical parts of one_w32_display_info. */
4933 if (w32_in_use)
4934 return Qnil;
4935
b7826503 4936 CHECK_STRING (display);
6fc2811b 4937 if (! NILP (xrm_string))
b7826503 4938 CHECK_STRING (xrm_string);
6fc2811b 4939
2dc8b986 4940#if 0
6fc2811b
JR
4941 if (! EQ (Vwindow_system, intern ("w32")))
4942 error ("Not using Microsoft Windows");
2dc8b986 4943#endif
6fc2811b
JR
4944
4945 /* Allow color mapping to be defined externally; first look in user's
4946 HOME directory, then in Emacs etc dir for a file called rgb.txt. */
4947 {
4948 Lisp_Object color_file;
4949 struct gcpro gcpro1;
4950
74084731 4951 color_file = build_string ("~/rgb.txt");
6fc2811b
JR
4952
4953 GCPRO1 (color_file);
4954
4955 if (NILP (Ffile_readable_p (color_file)))
4956 color_file =
4957 Fexpand_file_name (build_string ("rgb.txt"),
4958 Fsymbol_value (intern ("data-directory")));
4959
7ded3383 4960 Vw32_color_map = Fx_load_color_file (color_file);
6fc2811b
JR
4961
4962 UNGCPRO;
4963 }
4964 if (NILP (Vw32_color_map))
4965 Vw32_color_map = Fw32_default_color_map ();
4966
5a8a15ec
JR
4967 /* Merge in system logical colors. */
4968 add_system_logical_colors_to_map (&Vw32_color_map);
4969
6fc2811b 4970 if (! NILP (xrm_string))
d5db4077 4971 xrm_option = (unsigned char *) SDATA (xrm_string);
6fc2811b
JR
4972 else
4973 xrm_option = (unsigned char *) 0;
4974
4975 /* Use this general default value to start with. */
4976 /* First remove .exe suffix from invocation-name - it looks ugly. */
4977 {
4978 char basename[ MAX_PATH ], *str;
4979
d5db4077 4980 strcpy (basename, SDATA (Vinvocation_name));
6fc2811b
JR
4981 str = strrchr (basename, '.');
4982 if (str) *str = 0;
4983 Vinvocation_name = build_string (basename);
4984 }
4985 Vx_resource_name = Vinvocation_name;
4986
4987 validate_x_resource_name ();
4988
4989 /* This is what opens the connection and sets x_current_display.
4990 This also initializes many symbols, such as those used for input. */
4991 dpyinfo = w32_term_init (display, xrm_option,
d5db4077 4992 (char *) SDATA (Vx_resource_name));
6fc2811b
JR
4993
4994 if (dpyinfo == 0)
4995 {
4996 if (!NILP (must_succeed))
4997 fatal ("Cannot connect to server %s.\n",
d5db4077 4998 SDATA (display));
6fc2811b 4999 else
d5db4077 5000 error ("Cannot connect to server %s", SDATA (display));
6fc2811b
JR
5001 }
5002
5003 w32_in_use = 1;
5004
d5272e33 5005 XSETFASTINT (Vwindow_system_version, w32_major_version);
6fc2811b
JR
5006 return Qnil;
5007}
5008
5009DEFUN ("x-close-connection", Fx_close_connection,
5010 Sx_close_connection, 1, 1, 0,
74e1aeec
JR
5011 doc: /* Close the connection to DISPLAY's server.
5012For DISPLAY, specify either a frame or a display name (a string).
5013If DISPLAY is nil, that stands for the selected frame's display. */)
6fc2811b
JR
5014 (display)
5015 Lisp_Object display;
5016{
5017 struct w32_display_info *dpyinfo = check_x_display_info (display);
5018 int i;
5019
5020 if (dpyinfo->reference_count > 0)
5021 error ("Display still has frames on it");
5022
5023 BLOCK_INPUT;
6fc2811b
JR
5024 x_destroy_all_bitmaps (dpyinfo);
5025
5026 x_delete_display (dpyinfo);
5027 UNBLOCK_INPUT;
5028
5029 return Qnil;
5030}
5031
5032DEFUN ("x-display-list", Fx_display_list, Sx_display_list, 0, 0, 0,
74e1aeec 5033 doc: /* Return the list of display names that Emacs has connections to. */)
6fc2811b
JR
5034 ()
5035{
5036 Lisp_Object tail, result;
5037
5038 result = Qnil;
99784d63 5039 for (tail = w32_display_name_list; CONSP (tail); tail = XCDR (tail))
6fc2811b
JR
5040 result = Fcons (XCAR (XCAR (tail)), result);
5041
5042 return result;
5043}
5044
5045DEFUN ("x-synchronize", Fx_synchronize, Sx_synchronize, 1, 2, 0,
0a332240
PJ
5046 doc: /* This is a noop on W32 systems. */)
5047 (on, display)
5048 Lisp_Object display, on;
6fc2811b 5049{
6fc2811b
JR
5050 return Qnil;
5051}
5052
6b61353c 5053
6fc2811b 5054\f
6fc2811b 5055/***********************************************************************
6b61353c 5056 Window properties
6fc2811b
JR
5057 ***********************************************************************/
5058
6b61353c
KH
5059DEFUN ("x-change-window-property", Fx_change_window_property,
5060 Sx_change_window_property, 2, 6, 0,
5061 doc: /* Change window property PROP to VALUE on the X window of FRAME.
5062VALUE may be a string or a list of conses, numbers and/or strings.
5063If an element in the list is a string, it is converted to
5064an Atom and the value of the Atom is used. If an element is a cons,
5065it is converted to a 32 bit number where the car is the 16 top bits and the
5066cdr is the lower 16 bits.
5067FRAME nil or omitted means use the selected frame.
5068If TYPE is given and non-nil, it is the name of the type of VALUE.
5069If TYPE is not given or nil, the type is STRING.
5070FORMAT gives the size in bits of each element if VALUE is a list.
5071It must be one of 8, 16 or 32.
5072If VALUE is a string or FORMAT is nil or not given, FORMAT defaults to 8.
5073If OUTER_P is non-nil, the property is changed for the outer X window of
5074FRAME. Default is to change on the edit X window.
5075
5076Value is VALUE. */)
5077 (prop, value, frame, type, format, outer_p)
5078 Lisp_Object prop, value, frame, type, format, outer_p;
5079{
5080#if 0 /* TODO : port window properties to W32 */
5081 struct frame *f = check_x_frame (frame);
5082 Atom prop_atom;
6fc2811b 5083
6b61353c
KH
5084 CHECK_STRING (prop);
5085 CHECK_STRING (value);
6fc2811b 5086
6b61353c
KH
5087 BLOCK_INPUT;
5088 prop_atom = XInternAtom (FRAME_W32_DISPLAY (f), SDATA (prop), False);
5089 XChangeProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
5090 prop_atom, XA_STRING, 8, PropModeReplace,
5091 SDATA (value), SCHARS (value));
6fc2811b 5092
6b61353c
KH
5093 /* Make sure the property is set when we return. */
5094 XFlush (FRAME_W32_DISPLAY (f));
5095 UNBLOCK_INPUT;
6fc2811b 5096
6b61353c 5097#endif /* TODO */
6fc2811b 5098
6b61353c
KH
5099 return value;
5100}
dfff8a69 5101
6fc2811b 5102
6b61353c
KH
5103DEFUN ("x-delete-window-property", Fx_delete_window_property,
5104 Sx_delete_window_property, 1, 2, 0,
5105 doc: /* Remove window property PROP from X window of FRAME.
5106FRAME nil or omitted means use the selected frame. Value is PROP. */)
5107 (prop, frame)
5108 Lisp_Object prop, frame;
6fc2811b 5109{
6b61353c 5110#if 0 /* TODO : port window properties to W32 */
6fc2811b 5111
6b61353c
KH
5112 struct frame *f = check_x_frame (frame);
5113 Atom prop_atom;
6fc2811b 5114
6b61353c
KH
5115 CHECK_STRING (prop);
5116 BLOCK_INPUT;
5117 prop_atom = XInternAtom (FRAME_W32_DISPLAY (f), SDATA (prop), False);
5118 XDeleteProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f), prop_atom);
6fc2811b 5119
6b61353c
KH
5120 /* Make sure the property is removed when we return. */
5121 XFlush (FRAME_W32_DISPLAY (f));
5122 UNBLOCK_INPUT;
5123#endif /* TODO */
6fc2811b 5124
6b61353c 5125 return prop;
6fc2811b
JR
5126}
5127
5128
6b61353c
KH
5129DEFUN ("x-window-property", Fx_window_property, Sx_window_property,
5130 1, 2, 0,
5131 doc: /* Value is the value of window property PROP on FRAME.
5132If FRAME is nil or omitted, use the selected frame. Value is nil
5133if FRAME hasn't a property with name PROP or if PROP has no string
5134value. */)
5135 (prop, frame)
5136 Lisp_Object prop, frame;
6fc2811b 5137{
6b61353c
KH
5138#if 0 /* TODO : port window properties to W32 */
5139
5140 struct frame *f = check_x_frame (frame);
5141 Atom prop_atom;
5142 int rc;
5143 Lisp_Object prop_value = Qnil;
5144 char *tmp_data = NULL;
5145 Atom actual_type;
5146 int actual_format;
5147 unsigned long actual_size, bytes_remaining;
7d0393cf 5148
6b61353c
KH
5149 CHECK_STRING (prop);
5150 BLOCK_INPUT;
5151 prop_atom = XInternAtom (FRAME_W32_DISPLAY (f), SDATA (prop), False);
5152 rc = XGetWindowProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
5153 prop_atom, 0, 0, False, XA_STRING,
5154 &actual_type, &actual_format, &actual_size,
5155 &bytes_remaining, (unsigned char **) &tmp_data);
5156 if (rc == Success)
6fc2811b 5157 {
6b61353c 5158 int size = bytes_remaining;
3cf3436e 5159
6b61353c
KH
5160 XFree (tmp_data);
5161 tmp_data = NULL;
3cf3436e 5162
6b61353c
KH
5163 rc = XGetWindowProperty (FRAME_W32_DISPLAY (f), FRAME_W32_WINDOW (f),
5164 prop_atom, 0, bytes_remaining,
5165 False, XA_STRING,
5166 &actual_type, &actual_format,
5167 &actual_size, &bytes_remaining,
5168 (unsigned char **) &tmp_data);
5169 if (rc == Success)
5170 prop_value = make_string (tmp_data, size);
6fc2811b 5171
6b61353c
KH
5172 XFree (tmp_data);
5173 }
6fc2811b 5174
6b61353c 5175 UNBLOCK_INPUT;
6fc2811b 5176
6b61353c 5177 return prop_value;
6fc2811b 5178
6b61353c
KH
5179#endif /* TODO */
5180 return Qnil;
6fc2811b
JR
5181}
5182
5183
5184\f
5185/***********************************************************************
6b61353c 5186 Busy cursor
6fc2811b
JR
5187 ***********************************************************************/
5188
1391cd54
JR
5189/* Default number of seconds to wait before displaying an hourglass
5190 cursor. Duplicated from xdisp.c, but cannot use the version there
5191 due to lack of atimers on w32. */
5192#define DEFAULT_HOURGLASS_DELAY 1
5193extern Lisp_Object Vhourglass_delay;
5194
d148e14d 5195/* Return non-zero if houglass timer has been started or hourglass is shown. */
1885ab29
AR
5196/* PENDING: if W32 can use atimers (atimer.[hc]) then the common impl in
5197 xdisp.c could be used. */
6fc2811b 5198
d148e14d
JR
5199int
5200hourglass_started ()
5201{
5202 return hourglass_shown_p || hourglass_timer;
5203}
6fc2811b 5204
6b61353c 5205/* Cancel a currently active hourglass timer, and start a new one. */
6fc2811b 5206
6b61353c
KH
5207void
5208start_hourglass ()
6fc2811b 5209{
d148e14d
JR
5210 DWORD delay;
5211 int secs, msecs = 0;
5212 struct frame * f = SELECTED_FRAME ();
6fc2811b 5213
30076589
JR
5214 /* No cursors on non GUI frames. */
5215 if (!FRAME_W32_P (f))
5216 return;
5217
6b61353c 5218 cancel_hourglass ();
6fc2811b 5219
6b61353c
KH
5220 if (INTEGERP (Vhourglass_delay)
5221 && XINT (Vhourglass_delay) > 0)
5222 secs = XFASTINT (Vhourglass_delay);
5223 else if (FLOATP (Vhourglass_delay)
5224 && XFLOAT_DATA (Vhourglass_delay) > 0)
6fc2811b 5225 {
6b61353c
KH
5226 Lisp_Object tem;
5227 tem = Ftruncate (Vhourglass_delay, Qnil);
5228 secs = XFASTINT (tem);
d148e14d 5229 msecs = (XFLOAT_DATA (Vhourglass_delay) - secs) * 1000;
6b61353c
KH
5230 }
5231 else
5232 secs = DEFAULT_HOURGLASS_DELAY;
7d0393cf 5233
d148e14d
JR
5234 delay = secs * 1000 + msecs;
5235 hourglass_hwnd = FRAME_W32_WINDOW (f);
5236 hourglass_timer = SetTimer (hourglass_hwnd, HOURGLASS_ID, delay, NULL);
f79e6790
JR
5237}
5238
5239
0af913d7
GM
5240/* Cancel the hourglass cursor timer if active, hide an hourglass
5241 cursor if shown. */
f79e6790
JR
5242
5243void
0af913d7 5244cancel_hourglass ()
f79e6790 5245{
d148e14d 5246 if (hourglass_timer)
dfff8a69 5247 {
d148e14d
JR
5248 KillTimer (hourglass_hwnd, hourglass_timer);
5249 hourglass_timer = 0;
dfff8a69 5250 }
7d0393cf 5251
0af913d7 5252 if (hourglass_shown_p)
1391cd54 5253 w32_hide_hourglass ();
f79e6790
JR
5254}
5255
5256
d148e14d 5257/* Timer function of hourglass_timer.
f79e6790 5258
d148e14d
JR
5259 Display an hourglass cursor. Set the hourglass_p flag in display info
5260 to indicate that an hourglass cursor is shown. */
f79e6790
JR
5261
5262static void
1391cd54 5263w32_show_hourglass (f)
d148e14d 5264 struct frame *f;
6fc2811b 5265{
0af913d7 5266 if (!hourglass_shown_p)
6fc2811b 5267 {
d148e14d
JR
5268 f->output_data.w32->hourglass_p = 1;
5269 if (!menubar_in_use && !current_popup_menu)
5270 SetCursor (f->output_data.w32->hourglass_cursor);
0af913d7 5271 hourglass_shown_p = 1;
f79e6790 5272 }
6fc2811b
JR
5273}
5274
5275
0af913d7 5276/* Hide the hourglass cursor on all frames, if it is currently shown. */
6fc2811b 5277
f79e6790 5278static void
1391cd54 5279w32_hide_hourglass ()
f79e6790 5280{
0af913d7 5281 if (hourglass_shown_p)
6fc2811b 5282 {
d148e14d
JR
5283 struct frame *f = x_window_to_frame (&one_w32_display_info,
5284 hourglass_hwnd);
89e09428
JR
5285 if (f)
5286 f->output_data.w32->hourglass_p = 0;
5287 else
5288 /* If frame was deleted, restore to selected frame's cursor. */
5289 f = SELECTED_FRAME ();
5290
5291 if (FRAME_W32_P (f))
5292 SetCursor (f->output_data.w32->current_cursor);
5293 else
5294 /* No cursors on non GUI frames - restore to stock arrow cursor. */
5295 SetCursor (w32_load_cursor (IDC_ARROW));
6fc2811b 5296
0af913d7 5297 hourglass_shown_p = 0;
f79e6790 5298 }
6fc2811b
JR
5299}
5300
5301
5302\f
5303/***********************************************************************
5304 Tool tips
5305 ***********************************************************************/
5306
5307static Lisp_Object x_create_tip_frame P_ ((struct w32_display_info *,
3cf3436e
JR
5308 Lisp_Object, Lisp_Object));
5309static void compute_tip_xy P_ ((struct frame *, Lisp_Object, Lisp_Object,
5310 Lisp_Object, int, int, int *, int *));
7d0393cf 5311
3cf3436e 5312/* The frame of a currently visible tooltip. */
6fc2811b 5313
937e601e 5314Lisp_Object tip_frame;
6fc2811b
JR
5315
5316/* If non-nil, a timer started that hides the last tooltip when it
5317 fires. */
5318
5319Lisp_Object tip_timer;
5320Window tip_window;
5321
3cf3436e
JR
5322/* If non-nil, a vector of 3 elements containing the last args
5323 with which x-show-tip was called. See there. */
5324
5325Lisp_Object last_show_tip_args;
5326
5327/* Maximum size for tooltips; a cons (COLUMNS . ROWS). */
5328
5329Lisp_Object Vx_max_tooltip_size;
5330
5331
937e601e
AI
5332static Lisp_Object
5333unwind_create_tip_frame (frame)
5334 Lisp_Object frame;
5335{
c844a81a
GM
5336 Lisp_Object deleted;
5337
5338 deleted = unwind_create_frame (frame);
5339 if (EQ (deleted, Qt))
5340 {
5341 tip_window = NULL;
5342 tip_frame = Qnil;
5343 }
7d0393cf 5344
c844a81a 5345 return deleted;
937e601e
AI
5346}
5347
5348
6fc2811b 5349/* Create a frame for a tooltip on the display described by DPYINFO.
3cf3436e
JR
5350 PARMS is a list of frame parameters. TEXT is the string to
5351 display in the tip frame. Value is the frame.
937e601e
AI
5352
5353 Note that functions called here, esp. x_default_parameter can
5354 signal errors, for instance when a specified color name is
5355 undefined. We have to make sure that we're in a consistent state
5356 when this happens. */
6fc2811b
JR
5357
5358static Lisp_Object
3cf3436e 5359x_create_tip_frame (dpyinfo, parms, text)
6fc2811b 5360 struct w32_display_info *dpyinfo;
3cf3436e 5361 Lisp_Object parms, text;
6fc2811b 5362{
6fc2811b
JR
5363 struct frame *f;
5364 Lisp_Object frame, tem;
5365 Lisp_Object name;
5366 long window_prompting = 0;
5367 int width, height;
331379bf 5368 int count = SPECPDL_INDEX ();
6fc2811b
JR
5369 struct gcpro gcpro1, gcpro2, gcpro3;
5370 struct kboard *kb;
3cf3436e
JR
5371 int face_change_count_before = face_change_count;
5372 Lisp_Object buffer;
5373 struct buffer *old_buffer;
6fc2811b 5374
ca56d953 5375 check_w32 ();
6fc2811b
JR
5376
5377 /* Use this general default value to start with until we know if
5378 this frame has a specified name. */
5379 Vx_resource_name = Vinvocation_name;
5380
fd142562 5381 kb = dpyinfo->terminal->kboard;
6fc2811b
JR
5382
5383 /* Get the name of the frame to use for resource lookup. */
3faa984f 5384 name = x_get_arg (dpyinfo, parms, Qname, "name", "Name", RES_TYPE_STRING);
6fc2811b
JR
5385 if (!STRINGP (name)
5386 && !EQ (name, Qunbound)
5387 && !NILP (name))
5388 error ("Invalid frame name--not a string or nil");
5389 Vx_resource_name = name;
5390
5391 frame = Qnil;
5392 GCPRO3 (parms, name, frame);
9eb16b62
JR
5393 /* Make a frame without minibuffer nor mode-line. */
5394 f = make_frame (0);
5395 f->wants_modeline = 0;
6fc2811b 5396 XSETFRAME (frame, f);
3cf3436e
JR
5397
5398 buffer = Fget_buffer_create (build_string (" *tip*"));
be786000 5399 Fset_window_buffer (FRAME_ROOT_WINDOW (f), buffer, Qnil);
3cf3436e
JR
5400 old_buffer = current_buffer;
5401 set_buffer_internal_1 (XBUFFER (buffer));
5402 current_buffer->truncate_lines = Qnil;
5c2a995d
KH
5403 specbind (Qinhibit_read_only, Qt);
5404 specbind (Qinhibit_modification_hooks, Qt);
3cf3436e
JR
5405 Ferase_buffer ();
5406 Finsert (1, &text);
5407 set_buffer_internal_1 (old_buffer);
7d0393cf 5408
6fc2811b 5409 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
937e601e 5410 record_unwind_protect (unwind_create_tip_frame, frame);
6fc2811b 5411
3cf3436e
JR
5412 /* By setting the output method, we're essentially saying that
5413 the frame is live, as per FRAME_LIVE_P. If we get a signal
5414 from this point on, x_destroy_window might screw up reference
5415 counts etc. */
ebbb61be
JR
5416 f->terminal = dpyinfo->terminal;
5417 f->terminal->reference_count++;
d88c567c 5418 f->output_method = output_w32;
6fc2811b
JR
5419 f->output_data.w32 =
5420 (struct w32_output *) xmalloc (sizeof (struct w32_output));
5421 bzero (f->output_data.w32, sizeof (struct w32_output));
ca56d953
JR
5422
5423 FRAME_FONTSET (f) = -1;
6fc2811b
JR
5424 f->icon_name = Qnil;
5425
5f004711 5426#if GLYPH_DEBUG
354884c4 5427 image_cache_refcount = FRAME_IMAGE_CACHE (f)->refcount;
937e601e
AI
5428 dpyinfo_refcount = dpyinfo->reference_count;
5429#endif /* GLYPH_DEBUG */
6fc2811b 5430 FRAME_KBOARD (f) = kb;
6fc2811b
JR
5431 f->output_data.w32->parent_desc = FRAME_W32_DISPLAY_INFO (f)->root_window;
5432 f->output_data.w32->explicit_parent = 0;
5433
5434 /* Set the name; the functions to which we pass f expect the name to
5435 be set. */
5436 if (EQ (name, Qunbound) || NILP (name))
5437 {
ca56d953 5438 f->name = build_string (dpyinfo->w32_id_name);
6fc2811b
JR
5439 f->explicit_name = 0;
5440 }
5441 else
5442 {
5443 f->name = name;
5444 f->explicit_name = 1;
5445 /* use the frame's title when getting resources for this frame. */
5446 specbind (Qx_resource_name, name);
5447 }
5448
82523155
JR
5449 f->resx = dpyinfo->resx;
5450 f->resy = dpyinfo->resy;
5451
1cc06b86
KH
5452 /* Perhaps, we must allow frame parameter, say `font-backend',
5453 to specify which font backends to use. */
5454 register_font_driver (&w32font_driver, f);
a1fe5c00 5455
1cc06b86
KH
5456 x_default_parameter (f, parms, Qfont_backend, Qnil,
5457 "fontBackend", "FontBackend", RES_TYPE_STRING);
a1fe5c00 5458
6fc2811b
JR
5459 /* Extract the window parameters from the supplied values
5460 that are needed to determine window geometry. */
1cc06b86 5461 x_default_font_parameter (f, parms);
6fc2811b
JR
5462
5463 x_default_parameter (f, parms, Qborder_width, make_number (2),
5464 "borderWidth", "BorderWidth", RES_TYPE_NUMBER);
6fc2811b
JR
5465 /* This defaults to 2 in order to match xterm. We recognize either
5466 internalBorderWidth or internalBorder (which is what xterm calls
5467 it). */
5468 if (NILP (Fassq (Qinternal_border_width, parms)))
5469 {
5470 Lisp_Object value;
5471
3faa984f 5472 value = x_get_arg (dpyinfo, parms, Qinternal_border_width,
6fc2811b
JR
5473 "internalBorder", "internalBorder", RES_TYPE_NUMBER);
5474 if (! EQ (value, Qunbound))
5475 parms = Fcons (Fcons (Qinternal_border_width, value),
5476 parms);
5477 }
bfd6edcc 5478 x_default_parameter (f, parms, Qinternal_border_width, make_number (1),
6fc2811b
JR
5479 "internalBorderWidth", "internalBorderWidth",
5480 RES_TYPE_NUMBER);
5481
5482 /* Also do the stuff which must be set before the window exists. */
5483 x_default_parameter (f, parms, Qforeground_color, build_string ("black"),
5484 "foreground", "Foreground", RES_TYPE_STRING);
5485 x_default_parameter (f, parms, Qbackground_color, build_string ("white"),
5486 "background", "Background", RES_TYPE_STRING);
5487 x_default_parameter (f, parms, Qmouse_color, build_string ("black"),
5488 "pointerColor", "Foreground", RES_TYPE_STRING);
5489 x_default_parameter (f, parms, Qcursor_color, build_string ("black"),
5490 "cursorColor", "Foreground", RES_TYPE_STRING);
5491 x_default_parameter (f, parms, Qborder_color, build_string ("black"),
5492 "borderColor", "BorderColor", RES_TYPE_STRING);
5493
5494 /* Init faces before x_default_parameter is called for scroll-bar
5495 parameters because that function calls x_set_scroll_bar_width,
5496 which calls change_frame_size, which calls Fset_window_buffer,
5497 which runs hooks, which call Fvertical_motion. At the end, we
5498 end up in init_iterator with a null face cache, which should not
5499 happen. */
5500 init_frame_faces (f);
ca56d953
JR
5501
5502 f->output_data.w32->dwStyle = WS_BORDER | WS_POPUP | WS_DISABLED;
6fc2811b 5503 f->output_data.w32->parent_desc = FRAME_W32_DISPLAY_INFO (f)->root_window;
9eb16b62 5504
6d906347 5505 window_prompting = x_figure_window_size (f, parms, 0);
6fc2811b 5506
9eb16b62 5507 /* No fringes on tip frame. */
be786000
KS
5508 f->fringe_cols = 0;
5509 f->left_fringe_width = 0;
5510 f->right_fringe_width = 0;
9eb16b62 5511
ca56d953
JR
5512 BLOCK_INPUT;
5513 my_create_tip_window (f);
5514 UNBLOCK_INPUT;
6fc2811b
JR
5515
5516 x_make_gc (f);
5517
5518 x_default_parameter (f, parms, Qauto_raise, Qnil,
5519 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN);
5520 x_default_parameter (f, parms, Qauto_lower, Qnil,
5521 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN);
5522 x_default_parameter (f, parms, Qcursor_type, Qbox,
5523 "cursorType", "CursorType", RES_TYPE_SYMBOL);
5524
be786000 5525 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
6fc2811b 5526 Change will not be effected unless different from the current
be786000
KS
5527 FRAME_LINES (f). */
5528 width = FRAME_COLS (f);
5529 height = FRAME_LINES (f);
5530 FRAME_LINES (f) = 0;
5531 SET_FRAME_COLS (f, 0);
6fc2811b
JR
5532 change_frame_size (f, height, width, 1, 0, 0);
5533
cd1d850f
JPW
5534 /* Add `tooltip' frame parameter's default value. */
5535 if (NILP (Fframe_parameter (frame, intern ("tooltip"))))
5536 Fmodify_frame_parameters (frame, Fcons (Fcons (intern ("tooltip"), Qt),
5537 Qnil));
7d0393cf 5538
3cf3436e
JR
5539 /* Set up faces after all frame parameters are known. This call
5540 also merges in face attributes specified for new frames.
5541
5542 Frame parameters may be changed if .Xdefaults contains
5543 specifications for the default font. For example, if there is an
5544 `Emacs.default.attributeBackground: pink', the `background-color'
5545 attribute of the frame get's set, which let's the internal border
5546 of the tooltip frame appear in pink. Prevent this. */
5547 {
5548 Lisp_Object bg = Fframe_parameter (frame, Qbackground_color);
601a9cf1
JB
5549 Lisp_Object fg = Fframe_parameter (frame, Qforeground_color);
5550 Lisp_Object colors = Qnil;
3cf3436e
JR
5551
5552 /* Set tip_frame here, so that */
5553 tip_frame = frame;
45cebfd9 5554 call2 (Qface_set_after_frame_default, frame, Qnil);
7d0393cf 5555
3cf3436e 5556 if (!EQ (bg, Fframe_parameter (frame, Qbackground_color)))
601a9cf1
JB
5557 colors = Fcons (Fcons (Qbackground_color, bg), colors);
5558 if (!EQ (fg, Fframe_parameter (frame, Qforeground_color)))
5559 colors = Fcons (Fcons (Qforeground_color, fg), colors);
5560
5561 if (!NILP (colors))
5562 Fmodify_frame_parameters (frame, colors);
3cf3436e 5563 }
7d0393cf 5564
6fc2811b
JR
5565 f->no_split = 1;
5566
5567 UNGCPRO;
5568
5569 /* It is now ok to make the frame official even if we get an error
5570 below. And the frame needs to be on Vframe_list or making it
5571 visible won't work. */
5572 Vframe_list = Fcons (frame, Vframe_list);
5573
5574 /* Now that the frame is official, it counts as a reference to
5575 its display. */
5576 FRAME_W32_DISPLAY_INFO (f)->reference_count++;
ee78dc32 5577
3cf3436e
JR
5578 /* Setting attributes of faces of the tooltip frame from resources
5579 and similar will increment face_change_count, which leads to the
5580 clearing of all current matrices. Since this isn't necessary
5581 here, avoid it by resetting face_change_count to the value it
5582 had before we created the tip frame. */
5583 face_change_count = face_change_count_before;
5584
5585 /* Discard the unwind_protect. */
6fc2811b 5586 return unbind_to (count, frame);
ee78dc32
GV
5587}
5588
3cf3436e
JR
5589
5590/* Compute where to display tip frame F. PARMS is the list of frame
5591 parameters for F. DX and DY are specified offsets from the current
5592 location of the mouse. WIDTH and HEIGHT are the width and height
5593 of the tooltip. Return coordinates relative to the root window of
5594 the display in *ROOT_X, and *ROOT_Y. */
5595
5596static void
5597compute_tip_xy (f, parms, dx, dy, width, height, root_x, root_y)
5598 struct frame *f;
5599 Lisp_Object parms, dx, dy;
5600 int width, height;
5601 int *root_x, *root_y;
5602{
3cf3436e 5603 Lisp_Object left, top;
64f0809d 5604 int min_x, min_y, max_x, max_y;
7d0393cf 5605
3cf3436e
JR
5606 /* User-specified position? */
5607 left = Fcdr (Fassq (Qleft, parms));
5608 top = Fcdr (Fassq (Qtop, parms));
7d0393cf 5609
3cf3436e
JR
5610 /* Move the tooltip window where the mouse pointer is. Resize and
5611 show it. */
ca56d953 5612 if (!INTEGERP (left) || !INTEGERP (top))
3cf3436e 5613 {
ca56d953
JR
5614 POINT pt;
5615
64f0809d
JR
5616 /* Default min and max values. */
5617 min_x = 0;
5618 min_y = 0;
05eb7cdc
JB
5619 max_x = x_display_pixel_width (FRAME_W32_DISPLAY_INFO (f));
5620 max_y = x_display_pixel_height (FRAME_W32_DISPLAY_INFO (f));
64f0809d 5621
3cf3436e 5622 BLOCK_INPUT;
ca56d953
JR
5623 GetCursorPos (&pt);
5624 *root_x = pt.x;
5625 *root_y = pt.y;
3cf3436e 5626 UNBLOCK_INPUT;
64f0809d
JR
5627
5628 /* If multiple monitor support is available, constrain the tip onto
5629 the current monitor. This improves the above by allowing negative
5630 co-ordinates if monitor positions are such that they are valid, and
5631 snaps a tooltip onto a single monitor if we are close to the edge
5632 where it would otherwise flow onto the other monitor (or into
5633 nothingness if there is a gap in the overlap). */
5634 if (monitor_from_point_fn && get_monitor_info_fn)
5635 {
5636 struct MONITOR_INFO info;
5637 HMONITOR monitor
5638 = monitor_from_point_fn (pt, MONITOR_DEFAULT_TO_NEAREST);
5639 info.cbSize = sizeof (info);
5640
5641 if (get_monitor_info_fn (monitor, &info))
5642 {
5643 min_x = info.rcWork.left;
5644 min_y = info.rcWork.top;
5645 max_x = info.rcWork.right;
5646 max_y = info.rcWork.bottom;
5647 }
5648 }
3cf3436e
JR
5649 }
5650
5651 if (INTEGERP (top))
5652 *root_y = XINT (top);
64f0809d
JR
5653 else if (*root_y + XINT (dy) <= min_y)
5654 *root_y = min_y; /* Can happen for negative dy */
5655 else if (*root_y + XINT (dy) + height <= max_y)
7e8410d1 5656 /* It fits below the pointer */
3cf3436e 5657 *root_y += XINT (dy);
64f0809d 5658 else if (height + XINT (dy) + min_y <= *root_y)
7e8410d1
JD
5659 /* It fits above the pointer. */
5660 *root_y -= height + XINT (dy);
5661 else
5662 /* Put it on the top. */
64f0809d 5663 *root_y = min_y;
3cf3436e
JR
5664
5665 if (INTEGERP (left))
5666 *root_x = XINT (left);
64f0809d 5667 else if (*root_x + XINT (dx) <= min_x)
bf63eb69 5668 *root_x = 0; /* Can happen for negative dx */
64f0809d 5669 else if (*root_x + XINT (dx) + width <= max_x)
72e4adef
JR
5670 /* It fits to the right of the pointer. */
5671 *root_x += XINT (dx);
64f0809d 5672 else if (width + XINT (dx) + min_x <= *root_x)
72e4adef 5673 /* It fits to the left of the pointer. */
3cf3436e
JR
5674 *root_x -= width + XINT (dx);
5675 else
72e4adef 5676 /* Put it left justified on the screen -- it ought to fit that way. */
64f0809d 5677 *root_x = min_x;
3cf3436e
JR
5678}
5679
5680
71eab8d1 5681DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
74e1aeec
JR
5682 doc: /* Show STRING in a \"tooltip\" window on frame FRAME.
5683A tooltip window is a small window displaying a string.
5684
87c891c7
EZ
5685This is an internal function; Lisp code should call `tooltip-show'.
5686
74e1aeec
JR
5687FRAME nil or omitted means use the selected frame.
5688
5689PARMS is an optional list of frame parameters which can be
5690used to change the tooltip's appearance.
5691
ca56d953
JR
5692Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
5693means use the default timeout of 5 seconds.
74e1aeec 5694
52deb19f 5695If the list of frame parameters PARMS contains a `left' parameter,
74e1aeec
JR
5696the tooltip is displayed at that x-position. Otherwise it is
5697displayed at the mouse position, with offset DX added (default is 5 if
5698DX isn't specified). Likewise for the y-position; if a `top' frame
5699parameter is specified, it determines the y-position of the tooltip
5700window, otherwise it is displayed at the mouse position, with offset
5701DY added (default is -10).
5702
5703A tooltip's maximum size is specified by `x-max-tooltip-size'.
5704Text larger than the specified size is clipped. */)
71eab8d1
AI
5705 (string, frame, parms, timeout, dx, dy)
5706 Lisp_Object string, frame, parms, timeout, dx, dy;
ee78dc32 5707{
6fc2811b
JR
5708 struct frame *f;
5709 struct window *w;
3cf3436e 5710 int root_x, root_y;
6fc2811b
JR
5711 struct buffer *old_buffer;
5712 struct text_pos pos;
5713 int i, width, height;
6fc2811b
JR
5714 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
5715 int old_windows_or_buffers_changed = windows_or_buffers_changed;
331379bf 5716 int count = SPECPDL_INDEX ();
7d0393cf 5717
6fc2811b 5718 specbind (Qinhibit_redisplay, Qt);
ee78dc32 5719
dfff8a69 5720 GCPRO4 (string, parms, frame, timeout);
ee78dc32 5721
b7826503 5722 CHECK_STRING (string);
6fc2811b
JR
5723 f = check_x_frame (frame);
5724 if (NILP (timeout))
5725 timeout = make_number (5);
5726 else
b7826503 5727 CHECK_NATNUM (timeout);
ee78dc32 5728
71eab8d1
AI
5729 if (NILP (dx))
5730 dx = make_number (5);
5731 else
b7826503 5732 CHECK_NUMBER (dx);
7d0393cf 5733
71eab8d1 5734 if (NILP (dy))
dc220243 5735 dy = make_number (-10);
71eab8d1 5736 else
b7826503 5737 CHECK_NUMBER (dy);
71eab8d1 5738
dc220243
JR
5739 if (NILP (last_show_tip_args))
5740 last_show_tip_args = Fmake_vector (make_number (3), Qnil);
5741
5742 if (!NILP (tip_frame))
5743 {
5744 Lisp_Object last_string = AREF (last_show_tip_args, 0);
5745 Lisp_Object last_frame = AREF (last_show_tip_args, 1);
5746 Lisp_Object last_parms = AREF (last_show_tip_args, 2);
5747
5748 if (EQ (frame, last_frame)
5749 && !NILP (Fequal (last_string, string))
5750 && !NILP (Fequal (last_parms, parms)))
5751 {
5752 struct frame *f = XFRAME (tip_frame);
7d0393cf 5753
dc220243
JR
5754 /* Only DX and DY have changed. */
5755 if (!NILP (tip_timer))
5756 {
5757 Lisp_Object timer = tip_timer;
5758 tip_timer = Qnil;
5759 call1 (Qcancel_timer, timer);
5760 }
5761
5762 BLOCK_INPUT;
be786000
KS
5763 compute_tip_xy (f, parms, dx, dy, FRAME_PIXEL_WIDTH (f),
5764 FRAME_PIXEL_HEIGHT (f), &root_x, &root_y);
d65a9cdc
JR
5765
5766 /* Put tooltip in topmost group and in position. */
ca56d953
JR
5767 SetWindowPos (FRAME_W32_WINDOW (f), HWND_TOPMOST,
5768 root_x, root_y, 0, 0,
5769 SWP_NOSIZE | SWP_NOACTIVATE);
d65a9cdc
JR
5770
5771 /* Ensure tooltip is on top of other topmost windows (eg menus). */
5772 SetWindowPos (FRAME_W32_WINDOW (f), HWND_TOP,
5773 0, 0, 0, 0,
5774 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
5775
dc220243
JR
5776 UNBLOCK_INPUT;
5777 goto start_timer;
5778 }
5779 }
5780
6fc2811b
JR
5781 /* Hide a previous tip, if any. */
5782 Fx_hide_tip ();
ee78dc32 5783
dc220243
JR
5784 ASET (last_show_tip_args, 0, string);
5785 ASET (last_show_tip_args, 1, frame);
5786 ASET (last_show_tip_args, 2, parms);
5787
6fc2811b
JR
5788 /* Add default values to frame parameters. */
5789 if (NILP (Fassq (Qname, parms)))
5790 parms = Fcons (Fcons (Qname, build_string ("tooltip")), parms);
5791 if (NILP (Fassq (Qinternal_border_width, parms)))
5792 parms = Fcons (Fcons (Qinternal_border_width, make_number (3)), parms);
5793 if (NILP (Fassq (Qborder_width, parms)))
5794 parms = Fcons (Fcons (Qborder_width, make_number (1)), parms);
5795 if (NILP (Fassq (Qborder_color, parms)))
5796 parms = Fcons (Fcons (Qborder_color, build_string ("lightyellow")), parms);
5797 if (NILP (Fassq (Qbackground_color, parms)))
5798 parms = Fcons (Fcons (Qbackground_color, build_string ("lightyellow")),
5799 parms);
5800
0e3fcdef
JR
5801 /* Block input until the tip has been fully drawn, to avoid crashes
5802 when drawing tips in menus. */
5803 BLOCK_INPUT;
5804
6fc2811b
JR
5805 /* Create a frame for the tooltip, and record it in the global
5806 variable tip_frame. */
ca56d953 5807 frame = x_create_tip_frame (FRAME_W32_DISPLAY_INFO (f), parms, string);
937e601e 5808 f = XFRAME (frame);
6fc2811b 5809
3cf3436e 5810 /* Set up the frame's root window. */
6fc2811b 5811 w = XWINDOW (FRAME_ROOT_WINDOW (f));
be786000 5812 w->left_col = w->top_line = make_number (0);
3cf3436e
JR
5813
5814 if (CONSP (Vx_max_tooltip_size)
5815 && INTEGERP (XCAR (Vx_max_tooltip_size))
5816 && XINT (XCAR (Vx_max_tooltip_size)) > 0
5817 && INTEGERP (XCDR (Vx_max_tooltip_size))
5818 && XINT (XCDR (Vx_max_tooltip_size)) > 0)
5819 {
be786000
KS
5820 w->total_cols = XCAR (Vx_max_tooltip_size);
5821 w->total_lines = XCDR (Vx_max_tooltip_size);
3cf3436e
JR
5822 }
5823 else
5824 {
be786000
KS
5825 w->total_cols = make_number (80);
5826 w->total_lines = make_number (40);
3cf3436e 5827 }
7d0393cf 5828
be786000 5829 FRAME_TOTAL_COLS (f) = XINT (w->total_cols);
6fc2811b
JR
5830 adjust_glyphs (f);
5831 w->pseudo_window_p = 1;
5832
5833 /* Display the tooltip text in a temporary buffer. */
6fc2811b 5834 old_buffer = current_buffer;
3cf3436e
JR
5835 set_buffer_internal_1 (XBUFFER (XWINDOW (FRAME_ROOT_WINDOW (f))->buffer));
5836 current_buffer->truncate_lines = Qnil;
6fc2811b
JR
5837 clear_glyph_matrix (w->desired_matrix);
5838 clear_glyph_matrix (w->current_matrix);
5839 SET_TEXT_POS (pos, BEGV, BEGV_BYTE);
29e95254 5840 try_window (FRAME_ROOT_WINDOW (f), pos, 0);
6fc2811b
JR
5841
5842 /* Compute width and height of the tooltip. */
5843 width = height = 0;
5844 for (i = 0; i < w->desired_matrix->nrows; ++i)
ee78dc32 5845 {
6fc2811b
JR
5846 struct glyph_row *row = &w->desired_matrix->rows[i];
5847 struct glyph *last;
5848 int row_width;
5849
5850 /* Stop at the first empty row at the end. */
5851 if (!row->enabled_p || !row->displays_text_p)
5852 break;
5853
5854 /* Let the row go over the full width of the frame. */
5855 row->full_width_p = 1;
5856
4e3a1c61
JR
5857#ifdef TODO /* Investigate why some fonts need more width than is
5858 calculated for some tooltips. */
6fc2811b
JR
5859 /* There's a glyph at the end of rows that is use to place
5860 the cursor there. Don't include the width of this glyph. */
5861 if (row->used[TEXT_AREA])
5862 {
5863 last = &row->glyphs[TEXT_AREA][row->used[TEXT_AREA] - 1];
5864 row_width = row->pixel_width - last->pixel_width;
5865 }
5866 else
4e3a1c61 5867#endif
6fc2811b 5868 row_width = row->pixel_width;
7d0393cf 5869
ca56d953 5870 /* TODO: find why tips do not draw along baseline as instructed. */
bfd6edcc 5871 height += row->height;
6fc2811b 5872 width = max (width, row_width);
ee78dc32
GV
5873 }
5874
6fc2811b
JR
5875 /* Add the frame's internal border to the width and height the X
5876 window should have. */
5877 height += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
5878 width += 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
ee78dc32 5879
6fc2811b
JR
5880 /* Move the tooltip window where the mouse pointer is. Resize and
5881 show it. */
3cf3436e 5882 compute_tip_xy (f, parms, dx, dy, width, height, &root_x, &root_y);
71eab8d1 5883
bfd6edcc
JR
5884 {
5885 /* Adjust Window size to take border into account. */
5886 RECT rect;
5887 rect.left = rect.top = 0;
5888 rect.right = width;
5889 rect.bottom = height;
5890 AdjustWindowRect (&rect, f->output_data.w32->dwStyle,
5891 FRAME_EXTERNAL_MENU_BAR (f));
5892
1d79e521
EZ
5893 /* Position and size tooltip, and put it in the topmost group.
5894 The add-on of 3 to the 5th argument is a kludge: without it,
5895 some fonts cause the last character of the tip to be truncated,
5896 for some obscure reason. */
bfd6edcc 5897 SetWindowPos (FRAME_W32_WINDOW (f), HWND_TOPMOST,
1d79e521 5898 root_x, root_y, rect.right - rect.left + 3,
bfd6edcc
JR
5899 rect.bottom - rect.top, SWP_NOACTIVATE);
5900
d65a9cdc
JR
5901 /* Ensure tooltip is on top of other topmost windows (eg menus). */
5902 SetWindowPos (FRAME_W32_WINDOW (f), HWND_TOP,
5903 0, 0, 0, 0,
5904 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
5905
bfd6edcc
JR
5906 /* Let redisplay know that we have made the frame visible already. */
5907 f->async_visible = 1;
5908
5909 ShowWindow (FRAME_W32_WINDOW (f), SW_SHOWNOACTIVATE);
5910 }
ee78dc32 5911
6fc2811b
JR
5912 /* Draw into the window. */
5913 w->must_be_updated_p = 1;
5914 update_single_window (w, 1);
ee78dc32 5915
0e3fcdef
JR
5916 UNBLOCK_INPUT;
5917
6fc2811b
JR
5918 /* Restore original current buffer. */
5919 set_buffer_internal_1 (old_buffer);
5920 windows_or_buffers_changed = old_windows_or_buffers_changed;
ee78dc32 5921
dc220243 5922 start_timer:
6fc2811b
JR
5923 /* Let the tip disappear after timeout seconds. */
5924 tip_timer = call3 (intern ("run-at-time"), timeout, Qnil,
5925 intern ("x-hide-tip"));
ee78dc32 5926
dfff8a69 5927 UNGCPRO;
6fc2811b 5928 return unbind_to (count, Qnil);
ee78dc32
GV
5929}
5930
ee78dc32 5931
6fc2811b 5932DEFUN ("x-hide-tip", Fx_hide_tip, Sx_hide_tip, 0, 0, 0,
74e1aeec
JR
5933 doc: /* Hide the current tooltip window, if there is any.
5934Value is t if tooltip was open, nil otherwise. */)
6fc2811b
JR
5935 ()
5936{
937e601e
AI
5937 int count;
5938 Lisp_Object deleted, frame, timer;
5939 struct gcpro gcpro1, gcpro2;
5940
5941 /* Return quickly if nothing to do. */
5942 if (NILP (tip_timer) && NILP (tip_frame))
5943 return Qnil;
7d0393cf 5944
937e601e
AI
5945 frame = tip_frame;
5946 timer = tip_timer;
5947 GCPRO2 (frame, timer);
5948 tip_frame = tip_timer = deleted = Qnil;
7d0393cf 5949
331379bf 5950 count = SPECPDL_INDEX ();
6fc2811b 5951 specbind (Qinhibit_redisplay, Qt);
937e601e 5952 specbind (Qinhibit_quit, Qt);
7d0393cf 5953
937e601e 5954 if (!NILP (timer))
dc220243 5955 call1 (Qcancel_timer, timer);
ee78dc32 5956
937e601e 5957 if (FRAMEP (frame))
6fc2811b 5958 {
56f2de10 5959 delete_frame (frame, Qnil);
937e601e 5960 deleted = Qt;
6fc2811b 5961 }
1edf84e7 5962
937e601e
AI
5963 UNGCPRO;
5964 return unbind_to (count, deleted);
6fc2811b 5965}
5ac45f98 5966
5ac45f98 5967
6fc2811b
JR
5968\f
5969/***********************************************************************
5970 File selection dialog
5971 ***********************************************************************/
6fc2811b
JR
5972extern Lisp_Object Qfile_name_history;
5973
fffa137c 5974/* Callback for altering the behavior of the Open File dialog.
1030b26b
JR
5975 Makes the Filename text field contain "Current Directory" and be
5976 read-only when "Directories" is selected in the filter. This
5977 allows us to work around the fact that the standard Open File
5978 dialog does not support directories. */
5979UINT CALLBACK
5980file_dialog_callback (hwnd, msg, wParam, lParam)
5981 HWND hwnd;
5982 UINT msg;
5983 WPARAM wParam;
5984 LPARAM lParam;
5985{
5986 if (msg == WM_NOTIFY)
5987 {
5988 OFNOTIFY * notify = (OFNOTIFY *)lParam;
5989 /* Detect when the Filter dropdown is changed. */
ef544dc8
JR
5990 if (notify->hdr.code == CDN_TYPECHANGE
5991 || notify->hdr.code == CDN_INITDONE)
1030b26b
JR
5992 {
5993 HWND dialog = GetParent (hwnd);
5994 HWND edit_control = GetDlgItem (dialog, FILE_NAME_TEXT_FIELD);
5995
5996 /* Directories is in index 2. */
5997 if (notify->lpOFN->nFilterIndex == 2)
5998 {
5999 CommDlg_OpenSave_SetControlText (dialog, FILE_NAME_TEXT_FIELD,
6000 "Current Directory");
6001 EnableWindow (edit_control, FALSE);
6002 }
6003 else
6004 {
ef544dc8
JR
6005 /* Don't override default filename on init done. */
6006 if (notify->hdr.code == CDN_TYPECHANGE)
6007 CommDlg_OpenSave_SetControlText (dialog,
6008 FILE_NAME_TEXT_FIELD, "");
1030b26b
JR
6009 EnableWindow (edit_control, TRUE);
6010 }
6011 }
6012 }
6013 return 0;
6014}
6015
7f2b4738
JR
6016/* Since we compile with _WIN32_WINNT set to 0x0400 (for NT4 compatibility)
6017 we end up with the old file dialogs. Define a big enough struct for the
6018 new dialog to trick GetOpenFileName into giving us the new dialogs on
6019 Windows 2000 and XP. */
6020typedef struct
6021{
6022 OPENFILENAME real_details;
6023 void * pReserved;
6024 DWORD dwReserved;
6025 DWORD FlagsEx;
6026} NEWOPENFILENAME;
6027
21517c3d 6028
f9d64bb3 6029DEFUN ("x-file-dialog", Fx_file_dialog, Sx_file_dialog, 2, 5, 0,
74e1aeec
JR
6030 doc: /* Read file name, prompting with PROMPT in directory DIR.
6031Use a file selection dialog.
6032Select DEFAULT-FILENAME in the dialog's file selection box, if
f9d64bb3
JD
6033specified. Ensure that file exists if MUSTMATCH is non-nil.
6034If ONLY-DIR-P is non-nil, the user can only select directories. */)
6035 (prompt, dir, default_filename, mustmatch, only_dir_p)
6036 Lisp_Object prompt, dir, default_filename, mustmatch, only_dir_p;
6fc2811b
JR
6037{
6038 struct frame *f = SELECTED_FRAME ();
6039 Lisp_Object file = Qnil;
aed13378 6040 int count = SPECPDL_INDEX ();
f9d64bb3 6041 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5, gcpro6;
6fc2811b
JR
6042 char filename[MAX_PATH + 1];
6043 char init_dir[MAX_PATH + 1];
ef544dc8 6044 int default_filter_index = 1; /* 1: All Files, 2: Directories only */
6fc2811b 6045
f9d64bb3 6046 GCPRO6 (prompt, dir, default_filename, mustmatch, only_dir_p, file);
b7826503
PJ
6047 CHECK_STRING (prompt);
6048 CHECK_STRING (dir);
6fc2811b
JR
6049
6050 /* Create the dialog with PROMPT as title, using DIR as initial
6051 directory and using "*" as pattern. */
6052 dir = Fexpand_file_name (dir, Qnil);
dda741ec 6053 strncpy (init_dir, SDATA (ENCODE_FILE (dir)), MAX_PATH);
6fc2811b
JR
6054 init_dir[MAX_PATH] = '\0';
6055 unixtodos_filename (init_dir);
6056
6057 if (STRINGP (default_filename))
6058 {
6059 char *file_name_only;
dda741ec 6060 char *full_path_name = SDATA (ENCODE_FILE (default_filename));
5ac45f98 6061
6fc2811b 6062 unixtodos_filename (full_path_name);
5ac45f98 6063
6fc2811b
JR
6064 file_name_only = strrchr (full_path_name, '\\');
6065 if (!file_name_only)
6066 file_name_only = full_path_name;
6067 else
ef544dc8 6068 file_name_only++;
ee78dc32 6069
6fc2811b
JR
6070 strncpy (filename, file_name_only, MAX_PATH);
6071 filename[MAX_PATH] = '\0';
6072 }
ee78dc32 6073 else
6fc2811b 6074 filename[0] = '\0';
ee78dc32 6075
1030b26b 6076 {
7f2b4738 6077 NEWOPENFILENAME new_file_details;
ba6f3859 6078 BOOL file_opened = FALSE;
7f2b4738 6079 OPENFILENAME * file_details = &new_file_details.real_details;
21517c3d 6080
1030b26b
JR
6081 /* Prevent redisplay. */
6082 specbind (Qinhibit_redisplay, Qt);
6083 BLOCK_INPUT;
ee78dc32 6084
7f2b4738
JR
6085 bzero (&new_file_details, sizeof (new_file_details));
6086 /* Apparently NT4 crashes if you give it an unexpected size.
6087 I'm not sure about Windows 9x, so play it safe. */
6088 if (w32_major_version > 4 && w32_major_version < 95)
843d2458 6089 file_details->lStructSize = sizeof (NEWOPENFILENAME);
7f2b4738 6090 else
843d2458 6091 file_details->lStructSize = sizeof (OPENFILENAME);
7f2b4738
JR
6092
6093 file_details->hwndOwner = FRAME_W32_WINDOW (f);
1030b26b
JR
6094 /* Undocumented Bug in Common File Dialog:
6095 If a filter is not specified, shell links are not resolved. */
7f2b4738
JR
6096 file_details->lpstrFilter = "All Files (*.*)\0*.*\0Directories\0*|*\0\0";
6097 file_details->lpstrFile = filename;
6098 file_details->nMaxFile = sizeof (filename);
6099 file_details->lpstrInitialDir = init_dir;
6100 file_details->lpstrTitle = SDATA (prompt);
ef544dc8 6101
f9d64bb3 6102 if (! NILP (only_dir_p))
ef544dc8
JR
6103 default_filter_index = 2;
6104
7f2b4738 6105 file_details->nFilterIndex = default_filter_index;
ef544dc8 6106
7f2b4738 6107 file_details->Flags = (OFN_HIDEREADONLY | OFN_NOCHANGEDIR
1030b26b
JR
6108 | OFN_EXPLORER | OFN_ENABLEHOOK);
6109 if (!NILP (mustmatch))
7f2b4738
JR
6110 {
6111 /* Require that the path to the parent directory exists. */
6112 file_details->Flags |= OFN_PATHMUSTEXIST;
6113 /* If we are looking for a file, require that it exists. */
6114 if (NILP (only_dir_p))
6115 file_details->Flags |= OFN_FILEMUSTEXIST;
6116 }
1030b26b 6117
7f2b4738 6118 file_details->lpfnHook = (LPOFNHOOKPROC) file_dialog_callback;
1030b26b 6119
7f2b4738 6120 file_opened = GetOpenFileName (file_details);
1030b26b 6121
ba6f3859
JR
6122 UNBLOCK_INPUT;
6123
6124 if (file_opened)
1030b26b
JR
6125 {
6126 dostounix_filename (filename);
7f2b4738
JR
6127
6128 if (file_details->nFilterIndex == 2)
1030b26b 6129 {
ef544dc8 6130 /* "Directories" selected - strip dummy file name. */
1030b26b
JR
6131 char * last = strrchr (filename, '/');
6132 *last = '\0';
6133 }
6fc2811b 6134
74084731 6135 file = DECODE_FILE (build_string (filename));
1030b26b
JR
6136 }
6137 /* User cancelled the dialog without making a selection. */
6138 else if (!CommDlgExtendedError ())
6139 file = Qnil;
6140 /* An error occurred, fallback on reading from the mini-buffer. */
6141 else
6142 file = Fcompleting_read (prompt, intern ("read-file-name-internal"),
6143 dir, mustmatch, dir, Qfile_name_history,
6144 default_filename, Qnil);
6145
1030b26b
JR
6146 file = unbind_to (count, file);
6147 }
ee78dc32 6148
6fc2811b 6149 UNGCPRO;
1edf84e7 6150
6fc2811b
JR
6151 /* Make "Cancel" equivalent to C-g. */
6152 if (NILP (file))
6153 Fsignal (Qquit, Qnil);
ee78dc32 6154
dfff8a69 6155 return unbind_to (count, file);
6fc2811b 6156}
ee78dc32 6157
ee78dc32 6158
6cf29fe8
JR
6159/* Moving files to the system recycle bin.
6160 Used by `move-file-to-trash' instead of the default moving to ~/.Trash */
6161DEFUN ("system-move-file-to-trash", Fsystem_move_file_to_trash,
6162 Ssystem_move_file_to_trash, 1, 1, 0,
6163 doc: /* Move file or directory named FILENAME to the recycle bin. */)
6164 (filename)
6165 Lisp_Object filename;
6166{
6167 Lisp_Object handler;
6168 Lisp_Object encoded_file;
6169 Lisp_Object operation;
6170
6171 operation = Qdelete_file;
6172 if (!NILP (Ffile_directory_p (filename))
6173 && NILP (Ffile_symlink_p (filename)))
6174 {
6175 operation = Qdelete_directory;
6176 filename = Fdirectory_file_name (filename);
6177 }
6178 filename = Fexpand_file_name (filename, Qnil);
6179
6180 handler = Ffind_file_name_handler (filename, operation);
6181 if (!NILP (handler))
6182 return call2 (handler, operation, filename);
6183
6184 encoded_file = ENCODE_FILE (filename);
6185
6186 {
6187 const char * path;
6188 SHFILEOPSTRUCT file_op;
6189 char tmp_path[MAX_PATH + 1];
6190
6191 path = map_w32_filename (SDATA (encoded_file), NULL);
6192
6193 /* On Windows, write permission is required to delete/move files. */
6194 _chmod (path, 0666);
6195
6196 bzero (tmp_path, sizeof (tmp_path));
6197 strcpy (tmp_path, path);
6198
6199 bzero (&file_op, sizeof (file_op));
6200 file_op.hwnd = HWND_DESKTOP;
6201 file_op.wFunc = FO_DELETE;
6202 file_op.pFrom = tmp_path;
6203 file_op.fFlags = FOF_SILENT | FOF_NOCONFIRMATION | FOF_ALLOWUNDO
6204 | FOF_NOERRORUI | FOF_NO_CONNECTED_ELEMENTS;
6205 file_op.fAnyOperationsAborted = FALSE;
6206
6207 if (SHFileOperation (&file_op) != 0)
6208 report_file_error ("Removing old name", list1 (filename));
6209 }
6210 return Qnil;
6211}
6212
6fc2811b 6213\f
6fc2811b
JR
6214/***********************************************************************
6215 w32 specialized functions
6216 ***********************************************************************/
ee78dc32 6217
74e1aeec
JR
6218DEFUN ("w32-send-sys-command", Fw32_send_sys_command,
6219 Sw32_send_sys_command, 1, 2, 0,
6220 doc: /* Send frame a Windows WM_SYSCOMMAND message of type COMMAND.
52deb19f 6221Some useful values for COMMAND are #xf030 to maximize frame (#xf020
d84b082d
JR
6222to minimize), #xf120 to restore frame to original size, and #xf100
6223to activate the menubar for keyboard access. #xf140 activates the
74e1aeec
JR
6224screen saver if defined.
6225
6226If optional parameter FRAME is not specified, use selected frame. */)
1edf84e7
GV
6227 (command, frame)
6228 Lisp_Object command, frame;
6229{
1edf84e7
GV
6230 FRAME_PTR f = check_x_frame (frame);
6231
b7826503 6232 CHECK_NUMBER (command);
1edf84e7 6233
ce6059da 6234 PostMessage (FRAME_W32_WINDOW (f), WM_SYSCOMMAND, XINT (command), 0);
1edf84e7
GV
6235
6236 return Qnil;
6237}
6238
55dcfc15 6239DEFUN ("w32-shell-execute", Fw32_shell_execute, Sw32_shell_execute, 2, 4, 0,
74e1aeec
JR
6240 doc: /* Get Windows to perform OPERATION on DOCUMENT.
6241This is a wrapper around the ShellExecute system function, which
6242invokes the application registered to handle OPERATION for DOCUMENT.
74e1aeec 6243
1dccd454
EZ
6244OPERATION is either nil or a string that names a supported operation.
6245What operations can be used depends on the particular DOCUMENT and its
6246handler application, but typically it is one of the following common
6247operations:
6248
6249 \"open\" - open DOCUMENT, which could be a file, a directory, or an
6250 executable program. If it is an application, that
6251 application is launched in the current buffer's default
6252 directory. Otherwise, the application associated with
6253 DOCUMENT is launched in the buffer's default directory.
6254 \"print\" - print DOCUMENT, which must be a file
6255 \"explore\" - start the Windows Explorer on DOCUMENT
6256 \"edit\" - launch an editor and open DOCUMENT for editing; which
6257 editor is launched depends on the association for the
6258 specified DOCUMENT
6259 \"find\" - initiate search starting from DOCUMENT which must specify
6260 a directory
6261 nil - invoke the default OPERATION, or \"open\" if default is
6262 not defined or unavailable
6263
6264DOCUMENT is typically the name of a document file or a URL, but can
6265also be a program executable to run, or a directory to open in the
6266Windows Explorer.
6267
02b39a28
JB
6268If DOCUMENT is a program executable, the optional third arg PARAMETERS
6269can be a string containing command line parameters that will be passed
6270to the program; otherwise, PARAMETERS should be nil or unspecified.
1dccd454 6271
02b39a28 6272Optional fourth argument SHOW-FLAG can be used to control how the
1dccd454 6273application will be displayed when it is invoked. If SHOW-FLAG is nil
02b39a28 6274or unspecified, the application is displayed normally, otherwise it is
1dccd454 6275an integer representing a ShowWindow flag:
74e1aeec
JR
6276
6277 0 - start hidden
6278 1 - start normally
6279 3 - start maximized
6280 6 - start minimized */)
55dcfc15
AI
6281 (operation, document, parameters, show_flag)
6282 Lisp_Object operation, document, parameters, show_flag;
6283{
6284 Lisp_Object current_dir;
6285
b7826503 6286 CHECK_STRING (document);
55dcfc15 6287
3bc143eb 6288 /* Encode filename, current directory and parameters. */
55dcfc15
AI
6289 current_dir = ENCODE_FILE (current_buffer->directory);
6290 document = ENCODE_FILE (document);
3bc143eb
JR
6291 if (STRINGP (parameters))
6292 parameters = ENCODE_SYSTEM (parameters);
6293
55dcfc15 6294 if ((int) ShellExecute (NULL,
6fc2811b 6295 (STRINGP (operation) ?
d5db4077
KR
6296 SDATA (operation) : NULL),
6297 SDATA (document),
55dcfc15 6298 (STRINGP (parameters) ?
d5db4077
KR
6299 SDATA (parameters) : NULL),
6300 SDATA (current_dir),
55dcfc15
AI
6301 (INTEGERP (show_flag) ?
6302 XINT (show_flag) : SW_SHOWDEFAULT))
6303 > 32)
6304 return Qt;
90d97e64 6305 error ("ShellExecute failed: %s", w32_strerror (0));
55dcfc15
AI
6306}
6307
ccc2d29c
GV
6308/* Lookup virtual keycode from string representing the name of a
6309 non-ascii keystroke into the corresponding virtual key, using
6310 lispy_function_keys. */
6311static int
6312lookup_vk_code (char *key)
6313{
6314 int i;
6315
6316 for (i = 0; i < 256; i++)
bf254037 6317 if (lispy_function_keys[i]
ccc2d29c
GV
6318 && strcmp (lispy_function_keys[i], key) == 0)
6319 return i;
6320
6321 return -1;
6322}
6323
6324/* Convert a one-element vector style key sequence to a hot key
6325 definition. */
2ba49441 6326static Lisp_Object
ccc2d29c
GV
6327w32_parse_hot_key (key)
6328 Lisp_Object key;
6329{
6330 /* Copied from Fdefine_key and store_in_keymap. */
6331 register Lisp_Object c;
6332 int vk_code;
6333 int lisp_modifiers;
6334 int w32_modifiers;
6335 struct gcpro gcpro1;
6336
b7826503 6337 CHECK_VECTOR (key);
ccc2d29c
GV
6338
6339 if (XFASTINT (Flength (key)) != 1)
6340 return Qnil;
6341
6342 GCPRO1 (key);
6343
6344 c = Faref (key, make_number (0));
6345
6346 if (CONSP (c) && lucid_event_type_list_p (c))
6347 c = Fevent_convert_list (c);
6348
6349 UNGCPRO;
6350
6351 if (! INTEGERP (c) && ! SYMBOLP (c))
6352 error ("Key definition is invalid");
6353
6354 /* Work out the base key and the modifiers. */
6355 if (SYMBOLP (c))
6356 {
6357 c = parse_modifiers (c);
2ba49441 6358 lisp_modifiers = XINT (Fcar (Fcdr (c)));
ccc2d29c
GV
6359 c = Fcar (c);
6360 if (!SYMBOLP (c))
6361 abort ();
d5db4077 6362 vk_code = lookup_vk_code (SDATA (SYMBOL_NAME (c)));
ccc2d29c
GV
6363 }
6364 else if (INTEGERP (c))
6365 {
6366 lisp_modifiers = XINT (c) & ~CHARACTERBITS;
6367 /* Many ascii characters are their own virtual key code. */
6368 vk_code = XINT (c) & CHARACTERBITS;
6369 }
6370
6371 if (vk_code < 0 || vk_code > 255)
6372 return Qnil;
6373
6374 if ((lisp_modifiers & meta_modifier) != 0
6375 && !NILP (Vw32_alt_is_meta))
6376 lisp_modifiers |= alt_modifier;
6377
71eab8d1
AI
6378 /* Supply defs missing from mingw32. */
6379#ifndef MOD_ALT
6380#define MOD_ALT 0x0001
6381#define MOD_CONTROL 0x0002
6382#define MOD_SHIFT 0x0004
6383#define MOD_WIN 0x0008
6384#endif
6385
ccc2d29c
GV
6386 /* Convert lisp modifiers to Windows hot-key form. */
6387 w32_modifiers = (lisp_modifiers & hyper_modifier) ? MOD_WIN : 0;
6388 w32_modifiers |= (lisp_modifiers & alt_modifier) ? MOD_ALT : 0;
6389 w32_modifiers |= (lisp_modifiers & ctrl_modifier) ? MOD_CONTROL : 0;
6390 w32_modifiers |= (lisp_modifiers & shift_modifier) ? MOD_SHIFT : 0;
6391
6392 return HOTKEY (vk_code, w32_modifiers);
6393}
6394
74e1aeec
JR
6395DEFUN ("w32-register-hot-key", Fw32_register_hot_key,
6396 Sw32_register_hot_key, 1, 1, 0,
6397 doc: /* Register KEY as a hot-key combination.
6398Certain key combinations like Alt-Tab are reserved for system use on
6399Windows, and therefore are normally intercepted by the system. However,
6400most of these key combinations can be received by registering them as
6401hot-keys, overriding their special meaning.
6402
6403KEY must be a one element key definition in vector form that would be
6404acceptable to `define-key' (e.g. [A-tab] for Alt-Tab). The meta
6405modifier is interpreted as Alt if `w32-alt-is-meta' is t, and hyper
6406is always interpreted as the Windows modifier keys.
6407
6408The return value is the hotkey-id if registered, otherwise nil. */)
ccc2d29c
GV
6409 (key)
6410 Lisp_Object key;
6411{
6412 key = w32_parse_hot_key (key);
6413
fb053a1f 6414 if (!NILP (key) && NILP (Fmemq (key, w32_grabbed_keys)))
ccc2d29c
GV
6415 {
6416 /* Reuse an empty slot if possible. */
6417 Lisp_Object item = Fmemq (Qnil, w32_grabbed_keys);
6418
6419 /* Safe to add new key to list, even if we have focus. */
6420 if (NILP (item))
6421 w32_grabbed_keys = Fcons (key, w32_grabbed_keys);
6422 else
f3fbd155 6423 XSETCAR (item, key);
ccc2d29c
GV
6424
6425 /* Notify input thread about new hot-key definition, so that it
6426 takes effect without needing to switch focus. */
2ba49441
JR
6427#ifdef USE_LISP_UNION_TYPE
6428 PostThreadMessage (dwWindowsThreadId, WM_EMACS_REGISTER_HOT_KEY,
6429 (WPARAM) key.i, 0);
6430#else
ccc2d29c
GV
6431 PostThreadMessage (dwWindowsThreadId, WM_EMACS_REGISTER_HOT_KEY,
6432 (WPARAM) key, 0);
2ba49441 6433#endif
ccc2d29c
GV
6434 }
6435
6436 return key;
6437}
6438
74e1aeec
JR
6439DEFUN ("w32-unregister-hot-key", Fw32_unregister_hot_key,
6440 Sw32_unregister_hot_key, 1, 1, 0,
52deb19f 6441 doc: /* Unregister KEY as a hot-key combination. */)
ccc2d29c
GV
6442 (key)
6443 Lisp_Object key;
6444{
6445 Lisp_Object item;
6446
6447 if (!INTEGERP (key))
6448 key = w32_parse_hot_key (key);
6449
6450 item = Fmemq (key, w32_grabbed_keys);
6451
6452 if (!NILP (item))
6453 {
6454 /* Notify input thread about hot-key definition being removed, so
6455 that it takes effect without needing focus switch. */
2ba49441
JR
6456#ifdef USE_LISP_UNION_TYPE
6457 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_UNREGISTER_HOT_KEY,
6458 (WPARAM) XINT (XCAR (item)), (LPARAM) item.i))
6459#else
ccc2d29c
GV
6460 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_UNREGISTER_HOT_KEY,
6461 (WPARAM) XINT (XCAR (item)), (LPARAM) item))
2ba49441 6462#endif
ccc2d29c
GV
6463 {
6464 MSG msg;
6465 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
6466 }
6467 return Qt;
6468 }
6469 return Qnil;
6470}
6471
74e1aeec
JR
6472DEFUN ("w32-registered-hot-keys", Fw32_registered_hot_keys,
6473 Sw32_registered_hot_keys, 0, 0, 0,
6474 doc: /* Return list of registered hot-key IDs. */)
ccc2d29c
GV
6475 ()
6476{
74084731 6477 return Fdelq (Qnil, Fcopy_sequence (w32_grabbed_keys));
ccc2d29c
GV
6478}
6479
74e1aeec
JR
6480DEFUN ("w32-reconstruct-hot-key", Fw32_reconstruct_hot_key,
6481 Sw32_reconstruct_hot_key, 1, 1, 0,
52deb19f
JB
6482 doc: /* Convert hot-key ID to a lisp key combination.
6483usage: (w32-reconstruct-hot-key ID) */)
ccc2d29c
GV
6484 (hotkeyid)
6485 Lisp_Object hotkeyid;
6486{
6487 int vk_code, w32_modifiers;
6488 Lisp_Object key;
6489
b7826503 6490 CHECK_NUMBER (hotkeyid);
ccc2d29c
GV
6491
6492 vk_code = HOTKEY_VK_CODE (hotkeyid);
6493 w32_modifiers = HOTKEY_MODIFIERS (hotkeyid);
6494
bf254037 6495 if (vk_code < 256 && lispy_function_keys[vk_code])
ccc2d29c
GV
6496 key = intern (lispy_function_keys[vk_code]);
6497 else
6498 key = make_number (vk_code);
6499
6500 key = Fcons (key, Qnil);
6501 if (w32_modifiers & MOD_SHIFT)
3ef68e6b 6502 key = Fcons (Qshift, key);
ccc2d29c 6503 if (w32_modifiers & MOD_CONTROL)
3ef68e6b 6504 key = Fcons (Qctrl, key);
ccc2d29c 6505 if (w32_modifiers & MOD_ALT)
3ef68e6b 6506 key = Fcons (NILP (Vw32_alt_is_meta) ? Qalt : Qmeta, key);
ccc2d29c 6507 if (w32_modifiers & MOD_WIN)
3ef68e6b 6508 key = Fcons (Qhyper, key);
ccc2d29c
GV
6509
6510 return key;
6511}
adcc3809 6512
74e1aeec
JR
6513DEFUN ("w32-toggle-lock-key", Fw32_toggle_lock_key,
6514 Sw32_toggle_lock_key, 1, 2, 0,
6515 doc: /* Toggle the state of the lock key KEY.
6516KEY can be `capslock', `kp-numlock', or `scroll'.
6517If the optional parameter NEW-STATE is a number, then the state of KEY
6518is set to off if the low bit of NEW-STATE is zero, otherwise on. */)
adcc3809
GV
6519 (key, new_state)
6520 Lisp_Object key, new_state;
6521{
6522 int vk_code;
adcc3809
GV
6523
6524 if (EQ (key, intern ("capslock")))
6525 vk_code = VK_CAPITAL;
6526 else if (EQ (key, intern ("kp-numlock")))
6527 vk_code = VK_NUMLOCK;
6528 else if (EQ (key, intern ("scroll")))
6529 vk_code = VK_SCROLL;
6530 else
6531 return Qnil;
6532
6533 if (!dwWindowsThreadId)
6534 return make_number (w32_console_toggle_lock_key (vk_code, new_state));
6535
2ba49441
JR
6536#ifdef USE_LISP_UNION_TYPE
6537 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_TOGGLE_LOCK_KEY,
6538 (WPARAM) vk_code, (LPARAM) new_state.i))
6539#else
adcc3809
GV
6540 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_TOGGLE_LOCK_KEY,
6541 (WPARAM) vk_code, (LPARAM) new_state))
2ba49441 6542#endif
adcc3809
GV
6543 {
6544 MSG msg;
6545 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
6546 return make_number (msg.wParam);
6547 }
6548 return Qnil;
6549}
a01763cb
EZ
6550
6551DEFUN ("w32-window-exists-p", Fw32_window_exists_p, Sw32_window_exists_p,
6552 2, 2, 0,
6553 doc: /* Return non-nil if a window exists with the specified CLASS and NAME.
6554
6555This is a direct interface to the Windows API FindWindow function. */)
6556 (class, name)
6557Lisp_Object class, name;
6558{
6559 HWND hnd;
6560
6561 if (!NILP (class))
6562 CHECK_STRING (class);
6563 if (!NILP (name))
6564 CHECK_STRING (name);
6565
6566 hnd = FindWindow (STRINGP (class) ? ((LPCTSTR) SDATA (class)) : NULL,
6567 STRINGP (name) ? ((LPCTSTR) SDATA (name)) : NULL);
6568 if (!hnd)
6569 return Qnil;
6570 return Qt;
6571}
6572
2c2279c6
JR
6573DEFUN ("w32-battery-status", Fw32_battery_status, Sw32_battery_status, 0, 0, 0,
6574 doc: /* Get power status information from Windows system.
6575
6576The following %-sequences are provided:
6577%L AC line status (verbose)
6578%B Battery status (verbose)
6579%b Battery status, empty means high, `-' means low,
6580 `!' means critical, and `+' means charging
6581%p Battery load percentage
6582%s Remaining time (to charge or discharge) in seconds
6583%m Remaining time (to charge or discharge) in minutes
6584%h Remaining time (to charge or discharge) in hours
6585%t Remaining time (to charge or discharge) in the form `h:min' */)
6586 ()
6587{
6588 Lisp_Object status = Qnil;
6589
6590 SYSTEM_POWER_STATUS system_status;
6591 if (GetSystemPowerStatus (&system_status))
6592 {
6593 Lisp_Object line_status, battery_status, battery_status_symbol;
6594 Lisp_Object load_percentage, seconds, minutes, hours, remain;
6595 Lisp_Object sequences[8];
6596
6597 long seconds_left = (long) system_status.BatteryLifeTime;
6598
6599 if (system_status.ACLineStatus == 0)
6600 line_status = build_string ("off-line");
6601 else if (system_status.ACLineStatus == 1)
6602 line_status = build_string ("on-line");
6603 else
6604 line_status = build_string ("N/A");
6605
6606 if (system_status.BatteryFlag & 128)
6607 {
6608 battery_status = build_string ("N/A");
fff4e459 6609 battery_status_symbol = empty_unibyte_string;
2c2279c6
JR
6610 }
6611 else if (system_status.BatteryFlag & 8)
6612 {
6613 battery_status = build_string ("charging");
6614 battery_status_symbol = build_string ("+");
6615 if (system_status.BatteryFullLifeTime != -1L)
6616 seconds_left = system_status.BatteryFullLifeTime - seconds_left;
6617 }
6618 else if (system_status.BatteryFlag & 4)
6619 {
6620 battery_status = build_string ("critical");
6621 battery_status_symbol = build_string ("!");
6622 }
6623 else if (system_status.BatteryFlag & 2)
6624 {
6625 battery_status = build_string ("low");
6626 battery_status_symbol = build_string ("-");
6627 }
6628 else if (system_status.BatteryFlag & 1)
6629 {
6630 battery_status = build_string ("high");
fff4e459 6631 battery_status_symbol = empty_unibyte_string;
2c2279c6
JR
6632 }
6633 else
6634 {
6635 battery_status = build_string ("medium");
fff4e459 6636 battery_status_symbol = empty_unibyte_string;
2c2279c6
JR
6637 }
6638
6639 if (system_status.BatteryLifePercent > 100)
6640 load_percentage = build_string ("N/A");
6641 else
6642 {
6643 char buffer[16];
6644 _snprintf (buffer, 16, "%d", system_status.BatteryLifePercent);
6645 load_percentage = build_string (buffer);
6646 }
6647
6648 if (seconds_left < 0)
6649 seconds = minutes = hours = remain = build_string ("N/A");
6650 else
6651 {
6652 long m;
6653 float h;
6654 char buffer[16];
6655 _snprintf (buffer, 16, "%ld", seconds_left);
6656 seconds = build_string (buffer);
6657
6658 m = seconds_left / 60;
e9184ccb 6659 _snprintf (buffer, 16, "%ld", m);
2c2279c6
JR
6660 minutes = build_string (buffer);
6661
6662 h = seconds_left / 3600.0;
6663 _snprintf (buffer, 16, "%3.1f", h);
6664 hours = build_string (buffer);
6665
e9184ccb 6666 _snprintf (buffer, 16, "%ld:%02ld", m / 60, m % 60);
2c2279c6
JR
6667 remain = build_string (buffer);
6668 }
6669 sequences[0] = Fcons (make_number ('L'), line_status);
6670 sequences[1] = Fcons (make_number ('B'), battery_status);
6671 sequences[2] = Fcons (make_number ('b'), battery_status_symbol);
6672 sequences[3] = Fcons (make_number ('p'), load_percentage);
6673 sequences[4] = Fcons (make_number ('s'), seconds);
6674 sequences[5] = Fcons (make_number ('m'), minutes);
6675 sequences[6] = Fcons (make_number ('h'), hours);
6676 sequences[7] = Fcons (make_number ('t'), remain);
6677
6678 status = Flist (8, sequences);
6679 }
6680 return status;
6681}
a01763cb 6682
ee78dc32 6683\f
2254bcde 6684DEFUN ("file-system-info", Ffile_system_info, Sfile_system_info, 1, 1, 0,
74e1aeec
JR
6685 doc: /* Return storage information about the file system FILENAME is on.
6686Value is a list of floats (TOTAL FREE AVAIL), where TOTAL is the total
6687storage of the file system, FREE is the free storage, and AVAIL is the
6688storage available to a non-superuser. All 3 numbers are in bytes.
6689If the underlying system call fails, value is nil. */)
2254bcde
AI
6690 (filename)
6691 Lisp_Object filename;
6692{
6693 Lisp_Object encoded, value;
6694
b7826503 6695 CHECK_STRING (filename);
2254bcde
AI
6696 filename = Fexpand_file_name (filename, Qnil);
6697 encoded = ENCODE_FILE (filename);
6698
6699 value = Qnil;
6700
6701 /* Determining the required information on Windows turns out, sadly,
6702 to be more involved than one would hope. The original Win32 api
6703 call for this will return bogus information on some systems, but we
6704 must dynamically probe for the replacement api, since that was
6705 added rather late on. */
6706 {
6707 HMODULE hKernel = GetModuleHandle ("kernel32");
6708 BOOL (*pfn_GetDiskFreeSpaceEx)
6709 (char *, PULARGE_INTEGER, PULARGE_INTEGER, PULARGE_INTEGER)
6710 = (void *) GetProcAddress (hKernel, "GetDiskFreeSpaceEx");
6711
6712 /* On Windows, we may need to specify the root directory of the
6713 volume holding FILENAME. */
6714 char rootname[MAX_PATH];
d5db4077 6715 char *name = SDATA (encoded);
2254bcde
AI
6716
6717 /* find the root name of the volume if given */
6718 if (isalpha (name[0]) && name[1] == ':')
6719 {
6720 rootname[0] = name[0];
6721 rootname[1] = name[1];
6722 rootname[2] = '\\';
6723 rootname[3] = 0;
6724 }
6725 else if (IS_DIRECTORY_SEP (name[0]) && IS_DIRECTORY_SEP (name[1]))
6726 {
6727 char *str = rootname;
6728 int slashes = 4;
6729 do
6730 {
6731 if (IS_DIRECTORY_SEP (*name) && --slashes == 0)
6732 break;
6733 *str++ = *name++;
6734 }
6735 while ( *name );
6736
6737 *str++ = '\\';
6738 *str = 0;
6739 }
6740
6741 if (pfn_GetDiskFreeSpaceEx)
6742 {
ac849ba4
JR
6743 /* Unsigned large integers cannot be cast to double, so
6744 use signed ones instead. */
2254bcde
AI
6745 LARGE_INTEGER availbytes;
6746 LARGE_INTEGER freebytes;
6747 LARGE_INTEGER totalbytes;
6748
74084731
JB
6749 if (pfn_GetDiskFreeSpaceEx (rootname,
6750 (ULARGE_INTEGER *)&availbytes,
6751 (ULARGE_INTEGER *)&totalbytes,
6752 (ULARGE_INTEGER *)&freebytes))
2254bcde
AI
6753 value = list3 (make_float ((double) totalbytes.QuadPart),
6754 make_float ((double) freebytes.QuadPart),
6755 make_float ((double) availbytes.QuadPart));
6756 }
6757 else
6758 {
6759 DWORD sectors_per_cluster;
6760 DWORD bytes_per_sector;
6761 DWORD free_clusters;
6762 DWORD total_clusters;
6763
74084731
JB
6764 if (GetDiskFreeSpace (rootname,
6765 &sectors_per_cluster,
6766 &bytes_per_sector,
6767 &free_clusters,
6768 &total_clusters))
2254bcde
AI
6769 value = list3 (make_float ((double) total_clusters
6770 * sectors_per_cluster * bytes_per_sector),
6771 make_float ((double) free_clusters
6772 * sectors_per_cluster * bytes_per_sector),
6773 make_float ((double) free_clusters
6774 * sectors_per_cluster * bytes_per_sector));
6775 }
6776 }
6777
6778 return value;
6779}
6780\f
6b61353c
KH
6781DEFUN ("default-printer-name", Fdefault_printer_name, Sdefault_printer_name,
6782 0, 0, 0, doc: /* Return the name of Windows default printer device. */)
6783 ()
6784{
6785 static char pname_buf[256];
6786 int err;
6787 HANDLE hPrn;
6788 PRINTER_INFO_2 *ppi2 = NULL;
6789 DWORD dwNeeded = 0, dwReturned = 0;
6790
6791 /* Retrieve the default string from Win.ini (the registry).
6792 * String will be in form "printername,drivername,portname".
6793 * This is the most portable way to get the default printer. */
6794 if (GetProfileString ("windows", "device", ",,", pname_buf, sizeof (pname_buf)) <= 0)
6795 return Qnil;
6796 /* printername precedes first "," character */
6797 strtok (pname_buf, ",");
6798 /* We want to know more than the printer name */
6799 if (!OpenPrinter (pname_buf, &hPrn, NULL))
6800 return Qnil;
6801 GetPrinter (hPrn, 2, NULL, 0, &dwNeeded);
6802 if (dwNeeded == 0)
6803 {
6804 ClosePrinter (hPrn);
6805 return Qnil;
6806 }
6807 /* Allocate memory for the PRINTER_INFO_2 struct */
6808 ppi2 = (PRINTER_INFO_2 *) xmalloc (dwNeeded);
6809 if (!ppi2)
6810 {
6811 ClosePrinter (hPrn);
6812 return Qnil;
6813 }
74084731 6814 /* Call GetPrinter again with big enouth memory block */
6b61353c
KH
6815 err = GetPrinter (hPrn, 2, (LPBYTE)ppi2, dwNeeded, &dwReturned);
6816 ClosePrinter (hPrn);
6817 if (!err)
6818 {
74084731 6819 xfree (ppi2);
6b61353c
KH
6820 return Qnil;
6821 }
6822
6823 if (ppi2)
6824 {
6825 if (ppi2->Attributes & PRINTER_ATTRIBUTE_SHARED && ppi2->pServerName)
6826 {
6827 /* a remote printer */
6828 if (*ppi2->pServerName == '\\')
74084731 6829 _snprintf (pname_buf, sizeof (pname_buf), "%s\\%s", ppi2->pServerName,
02b39a28 6830 ppi2->pShareName);
6b61353c 6831 else
74084731 6832 _snprintf (pname_buf, sizeof (pname_buf), "\\\\%s\\%s", ppi2->pServerName,
02b39a28 6833 ppi2->pShareName);
6b61353c
KH
6834 pname_buf[sizeof (pname_buf) - 1] = '\0';
6835 }
6836 else
6837 {
6838 /* a local printer */
74084731 6839 strncpy (pname_buf, ppi2->pPortName, sizeof (pname_buf));
6b61353c
KH
6840 pname_buf[sizeof (pname_buf) - 1] = '\0';
6841 /* `pPortName' can include several ports, delimited by ','.
6842 * we only use the first one. */
74084731 6843 strtok (pname_buf, ",");
6b61353c 6844 }
74084731 6845 xfree (ppi2);
6b61353c
KH
6846 }
6847
6848 return build_string (pname_buf);
6849}
6850\f
0e3fcdef
JR
6851/***********************************************************************
6852 Initialization
6853 ***********************************************************************/
6854
52deb19f 6855/* Keep this list in the same order as frame_parms in frame.c.
6d906347
KS
6856 Use 0 for unsupported frame parameters. */
6857
6858frame_parm_handler w32_frame_parm_handlers[] =
6859{
6860 x_set_autoraise,
6861 x_set_autolower,
6862 x_set_background_color,
6863 x_set_border_color,
6864 x_set_border_width,
6865 x_set_cursor_color,
6866 x_set_cursor_type,
6867 x_set_font,
6868 x_set_foreground_color,
6869 x_set_icon_name,
6870 x_set_icon_type,
6871 x_set_internal_border_width,
6872 x_set_menu_bar_lines,
6873 x_set_mouse_color,
6874 x_explicitly_set_name,
6875 x_set_scroll_bar_width,
6876 x_set_title,
6877 x_set_unsplittable,
6878 x_set_vertical_scroll_bars,
6879 x_set_visibility,
6880 x_set_tool_bar_lines,
6881 0, /* x_set_scroll_bar_foreground, */
6882 0, /* x_set_scroll_bar_background, */
6883 x_set_screen_gamma,
6884 x_set_line_spacing,
6885 x_set_fringe_width,
6886 x_set_fringe_width,
6887 0, /* x_set_wait_for_wm, */
6888 x_set_fullscreen,
a2979e8e 6889 x_set_font_backend,
8b61a891 6890 x_set_alpha
6d906347
KS
6891};
6892
0e3fcdef 6893void
fbd6baed 6894syms_of_w32fns ()
ee78dc32 6895{
afc390dc
JR
6896 globals_of_w32fns ();
6897 /* This is zero if not using MS-Windows. */
1edf84e7 6898 w32_in_use = 0;
9eb16b62
JR
6899 track_mouse_window = NULL;
6900
d285988b
JR
6901 w32_visible_system_caret_hwnd = NULL;
6902
4f5b288c
JR
6903 DEFSYM (Qnone, "none");
6904 DEFSYM (Qsuppress_icon, "suppress-icon");
6905 DEFSYM (Qundefined_color, "undefined-color");
6906 DEFSYM (Qcancel_timer, "cancel-timer");
6907 DEFSYM (Qhyper, "hyper");
6908 DEFSYM (Qsuper, "super");
6909 DEFSYM (Qmeta, "meta");
6910 DEFSYM (Qalt, "alt");
6911 DEFSYM (Qctrl, "ctrl");
6912 DEFSYM (Qcontrol, "control");
6913 DEFSYM (Qshift, "shift");
27129af9 6914 DEFSYM (Qfont_param, "font-parameter");
f7b9d4d1 6915 /* This is the end of symbol initialization. */
adcc3809 6916
6fc2811b
JR
6917 /* Text property `display' should be nonsticky by default. */
6918 Vtext_property_default_nonsticky
6919 = Fcons (Fcons (Qdisplay, Qt), Vtext_property_default_nonsticky);
6920
6921
ee78dc32
GV
6922 Fput (Qundefined_color, Qerror_conditions,
6923 Fcons (Qundefined_color, Fcons (Qerror, Qnil)));
6924 Fput (Qundefined_color, Qerror_message,
6925 build_string ("Undefined color"));
6926
ccc2d29c
GV
6927 staticpro (&w32_grabbed_keys);
6928 w32_grabbed_keys = Qnil;
6929
fbd6baed 6930 DEFVAR_LISP ("w32-color-map", &Vw32_color_map,
52deb19f 6931 doc: /* An array of color name mappings for Windows. */);
fbd6baed 6932 Vw32_color_map = Qnil;
ee78dc32 6933
fbd6baed 6934 DEFVAR_LISP ("w32-pass-alt-to-system", &Vw32_pass_alt_to_system,
1133f8e7
EZ
6935 doc: /* Non-nil if Alt key presses are passed on to Windows.
6936When non-nil, for example, Alt pressed and released and then space will
6937open the System menu. When nil, Emacs processes the Alt key events, and
6938then silently swallows them. */);
fbd6baed 6939 Vw32_pass_alt_to_system = Qnil;
da36a4d6 6940
fbd6baed 6941 DEFVAR_LISP ("w32-alt-is-meta", &Vw32_alt_is_meta,
1133f8e7
EZ
6942 doc: /* Non-nil if the Alt key is to be considered the same as the META key.
6943When nil, Emacs will translate the Alt key to the ALT modifier, not to META. */);
fbd6baed 6944 Vw32_alt_is_meta = Qt;
8c205c63 6945
2ba49441
JR
6946 DEFVAR_INT ("w32-quit-key", &w32_quit_key,
6947 doc: /* If non-zero, the virtual key code for an alternative quit key. */);
6948 w32_quit_key = 0;
7d081355 6949
7d0393cf 6950 DEFVAR_LISP ("w32-pass-lwindow-to-system",
ccc2d29c 6951 &Vw32_pass_lwindow_to_system,
1133f8e7
EZ
6952 doc: /* If non-nil, the left \"Windows\" key is passed on to Windows.
6953
6954When non-nil, the Start menu is opened by tapping the key.
6955If you set this to nil, the left \"Windows\" key is processed by Emacs
6956according to the value of `w32-lwindow-modifier', which see.
6957
6958Note that some combinations of the left \"Windows\" key with other keys are
6959caught by Windows at low level, and so binding them in Emacs will have no
6960effect. For example, <lwindow>-r always pops up the Windows Run dialog,
6961<lwindow>-<Pause> pops up the "System Properties" dialog, etc. However, see
6962the doc string of `w32-phantom-key-code'. */);
ccc2d29c
GV
6963 Vw32_pass_lwindow_to_system = Qt;
6964
7d0393cf 6965 DEFVAR_LISP ("w32-pass-rwindow-to-system",
ccc2d29c 6966 &Vw32_pass_rwindow_to_system,
1133f8e7
EZ
6967 doc: /* If non-nil, the right \"Windows\" key is passed on to Windows.
6968
6969When non-nil, the Start menu is opened by tapping the key.
6970If you set this to nil, the right \"Windows\" key is processed by Emacs
6971according to the value of `w32-rwindow-modifier', which see.
6972
6973Note that some combinations of the right \"Windows\" key with other keys are
6974caught by Windows at low level, and so binding them in Emacs will have no
6975effect. For example, <rwindow>-r always pops up the Windows Run dialog,
6976<rwindow>-<Pause> pops up the "System Properties" dialog, etc. However, see
6977the doc string of `w32-phantom-key-code'. */);
ccc2d29c
GV
6978 Vw32_pass_rwindow_to_system = Qt;
6979
2ba49441 6980 DEFVAR_LISP ("w32-phantom-key-code",
adcc3809 6981 &Vw32_phantom_key_code,
2ba49441 6982 doc: /* Virtual key code used to generate \"phantom\" key presses.
74e1aeec
JR
6983Value is a number between 0 and 255.
6984
6985Phantom key presses are generated in order to stop the system from
6986acting on \"Windows\" key events when `w32-pass-lwindow-to-system' or
6987`w32-pass-rwindow-to-system' is nil. */);
ce6059da
AI
6988 /* Although 255 is technically not a valid key code, it works and
6989 means that this hack won't interfere with any real key code. */
2ba49441 6990 XSETINT (Vw32_phantom_key_code, 255);
adcc3809 6991
7d0393cf 6992 DEFVAR_LISP ("w32-enable-num-lock",
ccc2d29c 6993 &Vw32_enable_num_lock,
1133f8e7
EZ
6994 doc: /* If non-nil, the Num Lock key acts normally.
6995Set to nil to handle Num Lock as the `kp-numlock' key. */);
ccc2d29c
GV
6996 Vw32_enable_num_lock = Qt;
6997
7d0393cf 6998 DEFVAR_LISP ("w32-enable-caps-lock",
ccc2d29c 6999 &Vw32_enable_caps_lock,
1133f8e7
EZ
7000 doc: /* If non-nil, the Caps Lock key acts normally.
7001Set to nil to handle Caps Lock as the `capslock' key. */);
ccc2d29c
GV
7002 Vw32_enable_caps_lock = Qt;
7003
7004 DEFVAR_LISP ("w32-scroll-lock-modifier",
7005 &Vw32_scroll_lock_modifier,
1133f8e7 7006 doc: /* Modifier to use for the Scroll Lock ON state.
74e1aeec 7007The value can be hyper, super, meta, alt, control or shift for the
1133f8e7
EZ
7008respective modifier, or nil to handle Scroll Lock as the `scroll' key.
7009Any other value will cause the Scroll Lock key to be ignored. */);
ccc2d29c
GV
7010 Vw32_scroll_lock_modifier = Qt;
7011
7012 DEFVAR_LISP ("w32-lwindow-modifier",
7013 &Vw32_lwindow_modifier,
74e1aeec
JR
7014 doc: /* Modifier to use for the left \"Windows\" key.
7015The value can be hyper, super, meta, alt, control or shift for the
1133f8e7 7016respective modifier, or nil to appear as the `lwindow' key.
74e1aeec 7017Any other value will cause the key to be ignored. */);
ccc2d29c
GV
7018 Vw32_lwindow_modifier = Qnil;
7019
7020 DEFVAR_LISP ("w32-rwindow-modifier",
7021 &Vw32_rwindow_modifier,
74e1aeec
JR
7022 doc: /* Modifier to use for the right \"Windows\" key.
7023The value can be hyper, super, meta, alt, control or shift for the
1133f8e7 7024respective modifier, or nil to appear as the `rwindow' key.
74e1aeec 7025Any other value will cause the key to be ignored. */);
ccc2d29c
GV
7026 Vw32_rwindow_modifier = Qnil;
7027
7028 DEFVAR_LISP ("w32-apps-modifier",
7029 &Vw32_apps_modifier,
74e1aeec
JR
7030 doc: /* Modifier to use for the \"Apps\" key.
7031The value can be hyper, super, meta, alt, control or shift for the
1133f8e7 7032respective modifier, or nil to appear as the `apps' key.
74e1aeec 7033Any other value will cause the key to be ignored. */);
ccc2d29c 7034 Vw32_apps_modifier = Qnil;
da36a4d6 7035
d84b082d 7036 DEFVAR_BOOL ("w32-enable-synthesized-fonts", &w32_enable_synthesized_fonts,
74e1aeec 7037 doc: /* Non-nil enables selection of artificially italicized and bold fonts. */);
d84b082d 7038 w32_enable_synthesized_fonts = 0;
5ac45f98 7039
fbd6baed 7040 DEFVAR_LISP ("w32-enable-palette", &Vw32_enable_palette,
74e1aeec 7041 doc: /* Non-nil enables Windows palette management to map colors exactly. */);
fbd6baed 7042 Vw32_enable_palette = Qt;
5ac45f98 7043
fbd6baed 7044 DEFVAR_INT ("w32-mouse-button-tolerance",
2ba49441 7045 &w32_mouse_button_tolerance,
74e1aeec
JR
7046 doc: /* Analogue of double click interval for faking middle mouse events.
7047The value is the minimum time in milliseconds that must elapse between
1133f8e7 7048left and right button down events before they are considered distinct events.
74e1aeec
JR
7049If both mouse buttons are depressed within this interval, a middle mouse
7050button down event is generated instead. */);
2ba49441 7051 w32_mouse_button_tolerance = GetDoubleClickTime () / 2;
5ac45f98 7052
fbd6baed 7053 DEFVAR_INT ("w32-mouse-move-interval",
2ba49441 7054 &w32_mouse_move_interval,
74e1aeec
JR
7055 doc: /* Minimum interval between mouse move events.
7056The value is the minimum time in milliseconds that must elapse between
7057successive mouse move (or scroll bar drag) events before they are
7058reported as lisp events. */);
2ba49441 7059 w32_mouse_move_interval = 0;
84fb1139 7060
74214547
JR
7061 DEFVAR_BOOL ("w32-pass-extra-mouse-buttons-to-system",
7062 &w32_pass_extra_mouse_buttons_to_system,
1133f8e7 7063 doc: /* If non-nil, the fourth and fifth mouse buttons are passed to Windows.
74214547
JR
7064Recent versions of Windows support mice with up to five buttons.
7065Since most applications don't support these extra buttons, most mouse
7066drivers will allow you to map them to functions at the system level.
7067If this variable is non-nil, Emacs will pass them on, allowing the
7068system to handle them. */);
7069 w32_pass_extra_mouse_buttons_to_system = 0;
7070
0b151762
JR
7071 DEFVAR_BOOL ("w32-pass-multimedia-buttons-to-system",
7072 &w32_pass_multimedia_buttons_to_system,
7073 doc: /* If non-nil, media buttons are passed to Windows.
7074Some modern keyboards contain buttons for controlling media players, web
74084731 7075browsers and other applications. Generally these buttons are handled on a
0b151762
JR
7076system wide basis, but by setting this to nil they are made available
7077to Emacs for binding. Depending on your keyboard, additional keys that
7078may be available are:
7079
7080browser-back, browser-forward, browser-refresh, browser-stop,
7081browser-search, browser-favorites, browser-home,
7082mail, mail-reply, mail-forward, mail-send,
7083app-1, app-2,
7084help, find, new, open, close, save, print, undo, redo, copy, cut, paste,
7085spell-check, correction-list, toggle-dictate-command,
7086media-next, media-previous, media-stop, media-play-pause, media-select,
7087media-play, media-pause, media-record, media-fast-forward, media-rewind,
7088media-channel-up, media-channel-down,
7089volume-mute, volume-up, volume-down,
7090mic-volume-mute, mic-volume-down, mic-volume-up, mic-toggle,
74084731 7091bass-down, bass-boost, bass-up, treble-down, treble-up */);
0b151762
JR
7092 w32_pass_multimedia_buttons_to_system = 1;
7093
5f004711 7094#if 0 /* TODO: Mouse cursor customization. */
ee78dc32 7095 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape,
74e1aeec
JR
7096 doc: /* The shape of the pointer when over text.
7097Changing the value does not affect existing frames
7098unless you set the mouse color. */);
ee78dc32
GV
7099 Vx_pointer_shape = Qnil;
7100
ee78dc32
GV
7101 Vx_nontext_pointer_shape = Qnil;
7102
7103 Vx_mode_pointer_shape = Qnil;
7104
0af913d7 7105 DEFVAR_LISP ("x-hourglass-pointer-shape", &Vx_hourglass_pointer_shape,
74e1aeec
JR
7106 doc: /* The shape of the pointer when Emacs is busy.
7107This variable takes effect when you create a new frame
7108or when you set the mouse color. */);
0af913d7 7109 Vx_hourglass_pointer_shape = Qnil;
6fc2811b 7110
6fc2811b 7111 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
74084731 7112 &Vx_sensitive_text_pointer_shape,
74e1aeec
JR
7113 doc: /* The shape of the pointer when over mouse-sensitive text.
7114This variable takes effect when you create a new frame
7115or when you set the mouse color. */);
ee78dc32
GV
7116 Vx_sensitive_text_pointer_shape = Qnil;
7117
4694d762 7118 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
74084731 7119 &Vx_window_horizontal_drag_shape,
74e1aeec
JR
7120 doc: /* Pointer shape to use for indicating a window can be dragged horizontally.
7121This variable takes effect when you create a new frame
7122or when you set the mouse color. */);
4694d762 7123 Vx_window_horizontal_drag_shape = Qnil;
5f004711 7124#endif
4694d762 7125
ee78dc32 7126 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel,
74e1aeec 7127 doc: /* A string indicating the foreground color of the cursor box. */);
ee78dc32
GV
7128 Vx_cursor_fore_pixel = Qnil;
7129
3cf3436e 7130 DEFVAR_LISP ("x-max-tooltip-size", &Vx_max_tooltip_size,
b3700ae7
JR
7131 doc: /* Maximum size for tooltips.
7132Value is a pair (COLUMNS . ROWS). Text larger than this is clipped. */);
3cf3436e 7133 Vx_max_tooltip_size = Fcons (make_number (80), make_number (40));
7d0393cf 7134
ee78dc32 7135 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager,
74e1aeec
JR
7136 doc: /* Non-nil if no window manager is in use.
7137Emacs doesn't try to figure this out; this is always nil
7138unless you set it to something else. */);
ee78dc32
GV
7139 /* We don't have any way to find this out, so set it to nil
7140 and maybe the user would like to set it to t. */
7141 Vx_no_window_manager = Qnil;
7142
4587b026
GV
7143 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
7144 &Vx_pixel_size_width_font_regexp,
74e1aeec
JR
7145 doc: /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'.
7146
7147Since Emacs gets width of a font matching with this regexp from
7148PIXEL_SIZE field of the name, font finding mechanism gets faster for
7149such a font. This is especially effective for such large fonts as
7150Chinese, Japanese, and Korean. */);
4587b026
GV
7151 Vx_pixel_size_width_font_regexp = Qnil;
7152
33d52f9c
GV
7153 DEFVAR_LISP ("w32-bdf-filename-alist",
7154 &Vw32_bdf_filename_alist,
74e1aeec 7155 doc: /* List of bdf fonts and their corresponding filenames. */);
33d52f9c
GV
7156 Vw32_bdf_filename_alist = Qnil;
7157
1075afa9
GV
7158 DEFVAR_BOOL ("w32-strict-fontnames",
7159 &w32_strict_fontnames,
74e1aeec
JR
7160 doc: /* Non-nil means only use fonts that are exact matches for those requested.
7161Default is nil, which allows old fontnames that are not XLFD compliant,
7162and allows third-party CJK display to work by specifying false charset
7163fields to trick Emacs into translating to Big5, SJIS etc.
7164Setting this to t will prevent wrong fonts being selected when
7165fontsets are automatically created. */);
1075afa9
GV
7166 w32_strict_fontnames = 0;
7167
c0611964
AI
7168 DEFVAR_BOOL ("w32-strict-painting",
7169 &w32_strict_painting,
74e1aeec 7170 doc: /* Non-nil means use strict rules for repainting frames.
a8ab3e96 7171Set this to nil to get the old behavior for repainting; this should
74e1aeec 7172only be necessary if the default setting causes problems. */);
c0611964
AI
7173 w32_strict_painting = 1;
7174
767b1ff0 7175#if 0 /* TODO: Port to W32 */
6fc2811b
JR
7176 defsubr (&Sx_change_window_property);
7177 defsubr (&Sx_delete_window_property);
7178 defsubr (&Sx_window_property);
7179#endif
2d764c78 7180 defsubr (&Sxw_display_color_p);
ee78dc32 7181 defsubr (&Sx_display_grayscale_p);
2d764c78
EZ
7182 defsubr (&Sxw_color_defined_p);
7183 defsubr (&Sxw_color_values);
ee78dc32
GV
7184 defsubr (&Sx_server_max_request_size);
7185 defsubr (&Sx_server_vendor);
7186 defsubr (&Sx_server_version);
7187 defsubr (&Sx_display_pixel_width);
7188 defsubr (&Sx_display_pixel_height);
7189 defsubr (&Sx_display_mm_width);
7190 defsubr (&Sx_display_mm_height);
7191 defsubr (&Sx_display_screens);
7192 defsubr (&Sx_display_planes);
7193 defsubr (&Sx_display_color_cells);
7194 defsubr (&Sx_display_visual_class);
7195 defsubr (&Sx_display_backing_store);
7196 defsubr (&Sx_display_save_under);
ee78dc32 7197 defsubr (&Sx_create_frame);
ee78dc32
GV
7198 defsubr (&Sx_open_connection);
7199 defsubr (&Sx_close_connection);
7200 defsubr (&Sx_display_list);
7201 defsubr (&Sx_synchronize);
334a1195 7202 defsubr (&Sx_focus_frame);
ee78dc32 7203
fbd6baed 7204 /* W32 specific functions */
ee78dc32 7205
fbd6baed
GV
7206 defsubr (&Sw32_define_rgb_color);
7207 defsubr (&Sw32_default_color_map);
1edf84e7 7208 defsubr (&Sw32_send_sys_command);
55dcfc15 7209 defsubr (&Sw32_shell_execute);
ccc2d29c
GV
7210 defsubr (&Sw32_register_hot_key);
7211 defsubr (&Sw32_unregister_hot_key);
7212 defsubr (&Sw32_registered_hot_keys);
7213 defsubr (&Sw32_reconstruct_hot_key);
adcc3809 7214 defsubr (&Sw32_toggle_lock_key);
a01763cb 7215 defsubr (&Sw32_window_exists_p);
2c2279c6 7216 defsubr (&Sw32_battery_status);
4587b026 7217
2254bcde 7218 defsubr (&Sfile_system_info);
6b61353c 7219 defsubr (&Sdefault_printer_name);
2254bcde 7220
4587b026 7221 check_window_system_func = check_w32;
6fc2811b 7222
463f5630 7223
d148e14d
JR
7224 hourglass_timer = 0;
7225 hourglass_hwnd = NULL;
1885ab29 7226
6fc2811b
JR
7227 defsubr (&Sx_show_tip);
7228 defsubr (&Sx_hide_tip);
6fc2811b 7229 tip_timer = Qnil;
57fa2774
JR
7230 staticpro (&tip_timer);
7231 tip_frame = Qnil;
7232 staticpro (&tip_frame);
6fc2811b 7233
ca56d953
JR
7234 last_show_tip_args = Qnil;
7235 staticpro (&last_show_tip_args);
7236
6fc2811b 7237 defsubr (&Sx_file_dialog);
6cf29fe8 7238 defsubr (&Ssystem_move_file_to_trash);
6fc2811b
JR
7239}
7240
c922a224 7241
9785d95b
BK
7242/*
7243 globals_of_w32fns is used to initialize those global variables that
7244 must always be initialized on startup even when the global variable
7245 initialized is non zero (see the function main in emacs.c).
7246 globals_of_w32fns is called from syms_of_w32fns when the global
7247 variable initialized is 0 and directly from main when initialized
7248 is non zero.
7249 */
02b39a28
JB
7250void
7251globals_of_w32fns ()
9785d95b
BK
7252{
7253 HMODULE user32_lib = GetModuleHandle ("user32.dll");
ccc0fdaa
JR
7254 /*
7255 TrackMouseEvent not available in all versions of Windows, so must load
7256 it dynamically. Do it once, here, instead of every time it is used.
9785d95b 7257 */
ccc0fdaa
JR
7258 track_mouse_event_fn = (TrackMouseEvent_Proc)
7259 GetProcAddress (user32_lib, "TrackMouseEvent");
7260 /* ditto for GetClipboardSequenceNumber. */
7261 clipboard_sequence_fn = (ClipboardSequence_Proc)
7262 GetProcAddress (user32_lib, "GetClipboardSequenceNumber");
64f0809d
JR
7263
7264 monitor_from_point_fn = (MonitorFromPoint_Proc)
7265 GetProcAddress (user32_lib, "MonitorFromPoint");
7266 get_monitor_info_fn = (GetMonitorInfo_Proc)
7267 GetProcAddress (user32_lib, "GetMonitorInfoA");
7268
820eff5a
JR
7269 {
7270 HMODULE imm32_lib = GetModuleHandle ("imm32.dll");
7271 get_composition_string_fn = (ImmGetCompositionString_Proc)
7272 GetProcAddress (imm32_lib, "ImmGetCompositionStringW");
7273 get_ime_context_fn = (ImmGetContext_Proc)
7274 GetProcAddress (imm32_lib, "ImmGetContext");
7275 }
4bf91535 7276 DEFVAR_INT ("w32-ansi-code-page",
2ba49441 7277 &w32_ansi_code_page,
4bf91535 7278 doc: /* The ANSI code page used by the system. */);
2ba49441 7279 w32_ansi_code_page = GetACP ();
60860eb3
JR
7280
7281 /* MessageBox does not work without this when linked to comctl32.dll 6.0. */
7282 InitCommonControls ();
cbfedb1c 7283
cbfedb1c 7284 syms_of_w32uniscribe ();
9785d95b 7285}
6fc2811b 7286
ee78dc32
GV
7287#undef abort
7288
7d0393cf 7289void
74084731 7290w32_abort ()
ee78dc32 7291{
5ac45f98
GV
7292 int button;
7293 button = MessageBox (NULL,
7294 "A fatal error has occurred!\n\n"
c52e1638 7295 "Would you like to attach a debugger?\n\n"
cb91d111
EZ
7296 "Select YES to debug, NO to abort Emacs"
7297#if __GNUC__
7298 "\n\n(type \"gdb -p <emacs-PID>\" and\n"
7299 "\"continue\" inside GDB before clicking YES.)"
7300#endif
7301 , "Emacs Abort Dialog",
5ac45f98 7302 MB_ICONEXCLAMATION | MB_TASKMODAL
c52e1638 7303 | MB_SETFOREGROUND | MB_YESNO);
5ac45f98
GV
7304 switch (button)
7305 {
c52e1638 7306 case IDYES:
5ac45f98 7307 DebugBreak ();
c52e1638
EZ
7308 exit (2); /* tell the compiler we will never return */
7309 case IDNO:
5ac45f98
GV
7310 default:
7311 abort ();
7312 break;
7313 }
ee78dc32 7314}
d573caac 7315
83c75055
GV
7316/* For convenience when debugging. */
7317int
74084731 7318w32_last_error ()
83c75055
GV
7319{
7320 return GetLastError ();
7321}
6b61353c
KH
7322
7323/* arch-tag: 707589ab-b9be-4638-8cdd-74629cc9b446
7324 (do not change this comment) */