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