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