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