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