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.
5 This file is part of GNU Emacs.
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)
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.
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. */
22 /* Added by Kevin Gallo */
33 #include "dispextern.h"
40 #include "intervals.h"
41 #include "blockinput.h"
44 #include "termhooks.h"
49 #include "bitmaps/gray.xbm"
57 #define FILE_NAME_TEXT_FIELD edt1
59 void syms_of_w32fns ();
60 void globals_of_w32fns ();
62 extern void free_frame_menubar ();
63 extern double atof ();
64 extern int w32_console_toggle_lock_key
P_ ((int, Lisp_Object
));
65 extern void w32_menu_display_help
P_ ((HWND
, HMENU
, UINT
, UINT
));
66 extern void w32_free_menu_strings
P_ ((HWND
));
67 extern XCharStruct
*w32_per_char_metric
P_ ((XFontStruct
*, wchar_t *, int));
71 extern char *lispy_function_keys
[];
73 /* The gray bitmap `bitmaps/gray'. This is done because w32term.c uses
74 it, and including `bitmaps/gray' more than once is a problem when
75 config.h defines `static' as an empty replacement string. */
77 int gray_bitmap_width
= gray_width
;
78 int gray_bitmap_height
= gray_height
;
79 unsigned char *gray_bitmap_bits
= gray_bits
;
81 /* The colormap for converting color names to RGB values */
82 Lisp_Object Vw32_color_map
;
84 /* Non nil if alt key presses are passed on to Windows. */
85 Lisp_Object Vw32_pass_alt_to_system
;
87 /* Non nil if alt key is translated to meta_modifier, nil if it is translated
89 Lisp_Object Vw32_alt_is_meta
;
91 /* If non-zero, the windows virtual key code for an alternative quit key. */
94 /* Non nil if left window key events are passed on to Windows (this only
95 affects whether "tapping" the key opens the Start menu). */
96 Lisp_Object Vw32_pass_lwindow_to_system
;
98 /* Non nil if right window key events are passed on to Windows (this
99 only affects whether "tapping" the key opens the Start menu). */
100 Lisp_Object Vw32_pass_rwindow_to_system
;
102 /* Virtual key code used to generate "phantom" key presses in order
103 to stop system from acting on Windows key events. */
104 Lisp_Object Vw32_phantom_key_code
;
106 /* Modifier associated with the left "Windows" key, or nil to act as a
108 Lisp_Object Vw32_lwindow_modifier
;
110 /* Modifier associated with the right "Windows" key, or nil to act as a
112 Lisp_Object Vw32_rwindow_modifier
;
114 /* Modifier associated with the "Apps" key, or nil to act as a normal
116 Lisp_Object Vw32_apps_modifier
;
118 /* Value is nil if Num Lock acts as a function key. */
119 Lisp_Object Vw32_enable_num_lock
;
121 /* Value is nil if Caps Lock acts as a function key. */
122 Lisp_Object Vw32_enable_caps_lock
;
124 /* Modifier associated with Scroll Lock, or nil to act as a normal key. */
125 Lisp_Object Vw32_scroll_lock_modifier
;
127 /* Switch to control whether we inhibit requests for synthesized bold
128 and italic versions of fonts. */
129 int w32_enable_synthesized_fonts
;
131 /* Enable palette management. */
132 Lisp_Object Vw32_enable_palette
;
134 /* Control how close left/right button down events must be to
135 be converted to a middle button down event. */
136 int w32_mouse_button_tolerance
;
138 /* Minimum interval between mouse movement (and scroll bar drag)
139 events that are passed on to the event loop. */
140 int w32_mouse_move_interval
;
142 /* Flag to indicate if XBUTTON events should be passed on to Windows. */
143 int w32_pass_extra_mouse_buttons_to_system
;
145 /* Non nil if no window manager is in use. */
146 Lisp_Object Vx_no_window_manager
;
148 /* Non-zero means we're allowed to display a hourglass pointer. */
150 int display_hourglass_p
;
152 /* The background and shape of the mouse pointer, and shape when not
153 over text or in the modeline. */
155 Lisp_Object Vx_pointer_shape
, Vx_nontext_pointer_shape
, Vx_mode_pointer_shape
;
156 Lisp_Object Vx_hourglass_pointer_shape
, Vx_window_horizontal_drag_shape
;
158 /* The shape when over mouse-sensitive text. */
160 Lisp_Object Vx_sensitive_text_pointer_shape
;
163 #define IDC_HAND MAKEINTRESOURCE(32649)
166 /* Color of chars displayed in cursor box. */
168 Lisp_Object Vx_cursor_fore_pixel
;
170 /* Nonzero if using Windows. */
172 static int w32_in_use
;
174 /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'. */
176 Lisp_Object Vx_pixel_size_width_font_regexp
;
178 /* Alist of bdf fonts and the files that define them. */
179 Lisp_Object Vw32_bdf_filename_alist
;
181 /* A flag to control whether fonts are matched strictly or not. */
182 int w32_strict_fontnames
;
184 /* A flag to control whether we should only repaint if GetUpdateRect
185 indicates there is an update region. */
186 int w32_strict_painting
;
188 /* Associative list linking character set strings to Windows codepages. */
189 Lisp_Object Vw32_charset_info_alist
;
191 /* VIETNAMESE_CHARSET is not defined in some versions of MSVC. */
192 #ifndef VIETNAMESE_CHARSET
193 #define VIETNAMESE_CHARSET 163
197 Lisp_Object Qsuppress_icon
;
198 Lisp_Object Qundefined_color
;
199 Lisp_Object Qcancel_timer
;
205 Lisp_Object Qcontrol
;
208 Lisp_Object Qw32_charset_ansi
;
209 Lisp_Object Qw32_charset_default
;
210 Lisp_Object Qw32_charset_symbol
;
211 Lisp_Object Qw32_charset_shiftjis
;
212 Lisp_Object Qw32_charset_hangeul
;
213 Lisp_Object Qw32_charset_gb2312
;
214 Lisp_Object Qw32_charset_chinesebig5
;
215 Lisp_Object Qw32_charset_oem
;
217 #ifndef JOHAB_CHARSET
218 #define JOHAB_CHARSET 130
221 Lisp_Object Qw32_charset_easteurope
;
222 Lisp_Object Qw32_charset_turkish
;
223 Lisp_Object Qw32_charset_baltic
;
224 Lisp_Object Qw32_charset_russian
;
225 Lisp_Object Qw32_charset_arabic
;
226 Lisp_Object Qw32_charset_greek
;
227 Lisp_Object Qw32_charset_hebrew
;
228 Lisp_Object Qw32_charset_vietnamese
;
229 Lisp_Object Qw32_charset_thai
;
230 Lisp_Object Qw32_charset_johab
;
231 Lisp_Object Qw32_charset_mac
;
234 #ifdef UNICODE_CHARSET
235 Lisp_Object Qw32_charset_unicode
;
238 /* The ANSI codepage. */
239 int w32_ansi_code_page
;
241 /* Prefix for system colors. */
242 #define SYSTEM_COLOR_PREFIX "System"
243 #define SYSTEM_COLOR_PREFIX_LEN (sizeof (SYSTEM_COLOR_PREFIX) - 1)
245 /* State variables for emulating a three button mouse. */
250 static int button_state
= 0;
251 static W32Msg saved_mouse_button_msg
;
252 static unsigned mouse_button_timer
= 0; /* non-zero when timer is active */
253 static W32Msg saved_mouse_move_msg
;
254 static unsigned mouse_move_timer
= 0;
256 /* Window that is tracking the mouse. */
257 static HWND track_mouse_window
;
259 typedef BOOL (WINAPI
* TrackMouseEvent_Proc
)
260 (IN OUT LPTRACKMOUSEEVENT lpEventTrack
);
262 TrackMouseEvent_Proc track_mouse_event_fn
= NULL
;
263 ClipboardSequence_Proc clipboard_sequence_fn
= NULL
;
264 extern AppendMenuW_Proc unicode_append_menu
;
266 /* W95 mousewheel handler */
267 unsigned int msh_mousewheel
= 0;
270 #define MOUSE_BUTTON_ID 1
271 #define MOUSE_MOVE_ID 2
272 #define MENU_FREE_ID 3
273 /* The delay (milliseconds) before a menu is freed after WM_EXITMENULOOP
275 #define MENU_FREE_DELAY 1000
276 static unsigned menu_free_timer
= 0;
278 /* The below are defined in frame.c. */
280 extern Lisp_Object Vwindow_system_version
;
283 int image_cache_refcount
, dpyinfo_refcount
;
287 /* From w32term.c. */
288 extern int w32_num_mouse_buttons
;
289 extern Lisp_Object Vw32_recognize_altgr
;
291 extern HWND w32_system_caret_hwnd
;
293 extern int w32_system_caret_height
;
294 extern int w32_system_caret_x
;
295 extern int w32_system_caret_y
;
296 extern int w32_use_visible_system_caret
;
298 static HWND w32_visible_system_caret_hwnd
;
301 extern HMENU current_popup_menu
;
302 static int menubar_in_use
= 0;
305 /* Error if we are not connected to MS-Windows. */
310 error ("MS-Windows not in use or not initialized");
313 /* Nonzero if we can use mouse menus.
314 You should not call this unless HAVE_MENUS is defined. */
322 /* Extract a frame as a FRAME_PTR, defaulting to the selected frame
323 and checking validity for W32. */
326 check_x_frame (frame
)
332 frame
= selected_frame
;
333 CHECK_LIVE_FRAME (frame
);
335 if (! FRAME_W32_P (f
))
336 error ("Non-W32 frame used");
340 /* Let the user specify a display with a frame.
341 nil stands for the selected frame--or, if that is not a w32 frame,
342 the first display on the list. */
344 struct w32_display_info
*
345 check_x_display_info (frame
)
350 struct frame
*sf
= XFRAME (selected_frame
);
352 if (FRAME_W32_P (sf
) && FRAME_LIVE_P (sf
))
353 return FRAME_W32_DISPLAY_INFO (sf
);
355 return &one_w32_display_info
;
357 else if (STRINGP (frame
))
358 return x_display_info_for_name (frame
);
363 CHECK_LIVE_FRAME (frame
);
365 if (! FRAME_W32_P (f
))
366 error ("Non-W32 frame used");
367 return FRAME_W32_DISPLAY_INFO (f
);
371 /* Return the Emacs frame-object corresponding to an w32 window.
372 It could be the frame's main window or an icon window. */
374 /* This function can be called during GC, so use GC_xxx type test macros. */
377 x_window_to_frame (dpyinfo
, wdesc
)
378 struct w32_display_info
*dpyinfo
;
381 Lisp_Object tail
, frame
;
384 for (tail
= Vframe_list
; GC_CONSP (tail
); tail
= XCDR (tail
))
387 if (!GC_FRAMEP (frame
))
390 if (!FRAME_W32_P (f
) || FRAME_W32_DISPLAY_INFO (f
) != dpyinfo
)
392 if (f
->output_data
.w32
->hourglass_window
== wdesc
)
395 if (FRAME_W32_WINDOW (f
) == wdesc
)
402 static Lisp_Object unwind_create_frame
P_ ((Lisp_Object
));
403 static Lisp_Object unwind_create_tip_frame
P_ ((Lisp_Object
));
404 static void my_create_window
P_ ((struct frame
*));
405 static void my_create_tip_window
P_ ((struct frame
*));
407 /* TODO: Native Input Method support; see x_create_im. */
408 void x_set_foreground_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
409 void x_set_background_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
410 void x_set_mouse_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
411 void x_set_cursor_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
412 void x_set_border_color
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
413 void x_set_cursor_type
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
414 void x_set_icon_type
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
415 void x_set_icon_name
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
416 void x_explicitly_set_name
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
417 void x_set_menu_bar_lines
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
418 void x_set_title
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
419 void x_set_tool_bar_lines
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
));
420 static void x_edge_detection
P_ ((struct frame
*, struct image
*, Lisp_Object
,
426 /* Store the screen positions of frame F into XPTR and YPTR.
427 These are the positions of the containing window manager window,
428 not Emacs's own window. */
431 x_real_positions (f
, xptr
, yptr
)
438 GetClientRect(FRAME_W32_WINDOW(f
), &rect
);
439 AdjustWindowRect(&rect
, f
->output_data
.w32
->dwStyle
, FRAME_EXTERNAL_MENU_BAR(f
));
444 ClientToScreen (FRAME_W32_WINDOW(f
), &pt
);
446 /* Remember x_pixels_diff and y_pixels_diff. */
447 f
->x_pixels_diff
= pt
.x
- rect
.left
;
448 f
->y_pixels_diff
= pt
.y
- rect
.top
;
456 DEFUN ("w32-define-rgb-color", Fw32_define_rgb_color
,
457 Sw32_define_rgb_color
, 4, 4, 0,
458 doc
: /* Convert RGB numbers to a windows color reference and associate with NAME.
459 This adds or updates a named color to w32-color-map, making it
460 available for use. The original entry's RGB ref is returned, or nil
461 if the entry is new. */)
462 (red
, green
, blue
, name
)
463 Lisp_Object red
, green
, blue
, name
;
466 Lisp_Object oldrgb
= Qnil
;
470 CHECK_NUMBER (green
);
474 XSETINT (rgb
, RGB(XUINT (red
), XUINT (green
), XUINT (blue
)));
478 /* replace existing entry in w32-color-map or add new entry. */
479 entry
= Fassoc (name
, Vw32_color_map
);
482 entry
= Fcons (name
, rgb
);
483 Vw32_color_map
= Fcons (entry
, Vw32_color_map
);
487 oldrgb
= Fcdr (entry
);
488 Fsetcdr (entry
, rgb
);
496 DEFUN ("w32-load-color-file", Fw32_load_color_file
,
497 Sw32_load_color_file
, 1, 1, 0,
498 doc
: /* Create an alist of color entries from an external file.
499 Assign this value to w32-color-map to replace the existing color map.
501 The file should define one named RGB color per line like so:
503 where R,G,B are numbers between 0 and 255 and name is an arbitrary string. */)
505 Lisp_Object filename
;
508 Lisp_Object cmap
= Qnil
;
511 CHECK_STRING (filename
);
512 abspath
= Fexpand_file_name (filename
, Qnil
);
514 fp
= fopen (SDATA (filename
), "rt");
518 int red
, green
, blue
;
523 while (fgets (buf
, sizeof (buf
), fp
) != NULL
) {
524 if (sscanf (buf
, "%u %u %u %n", &red
, &green
, &blue
, &num
) == 3)
526 char *name
= buf
+ num
;
527 num
= strlen (name
) - 1;
528 if (name
[num
] == '\n')
530 cmap
= Fcons (Fcons (build_string (name
),
531 make_number (RGB (red
, green
, blue
))),
543 /* The default colors for the w32 color map */
544 typedef struct colormap_t
550 colormap_t w32_color_map
[] =
552 {"snow" , PALETTERGB (255,250,250)},
553 {"ghost white" , PALETTERGB (248,248,255)},
554 {"GhostWhite" , PALETTERGB (248,248,255)},
555 {"white smoke" , PALETTERGB (245,245,245)},
556 {"WhiteSmoke" , PALETTERGB (245,245,245)},
557 {"gainsboro" , PALETTERGB (220,220,220)},
558 {"floral white" , PALETTERGB (255,250,240)},
559 {"FloralWhite" , PALETTERGB (255,250,240)},
560 {"old lace" , PALETTERGB (253,245,230)},
561 {"OldLace" , PALETTERGB (253,245,230)},
562 {"linen" , PALETTERGB (250,240,230)},
563 {"antique white" , PALETTERGB (250,235,215)},
564 {"AntiqueWhite" , PALETTERGB (250,235,215)},
565 {"papaya whip" , PALETTERGB (255,239,213)},
566 {"PapayaWhip" , PALETTERGB (255,239,213)},
567 {"blanched almond" , PALETTERGB (255,235,205)},
568 {"BlanchedAlmond" , PALETTERGB (255,235,205)},
569 {"bisque" , PALETTERGB (255,228,196)},
570 {"peach puff" , PALETTERGB (255,218,185)},
571 {"PeachPuff" , PALETTERGB (255,218,185)},
572 {"navajo white" , PALETTERGB (255,222,173)},
573 {"NavajoWhite" , PALETTERGB (255,222,173)},
574 {"moccasin" , PALETTERGB (255,228,181)},
575 {"cornsilk" , PALETTERGB (255,248,220)},
576 {"ivory" , PALETTERGB (255,255,240)},
577 {"lemon chiffon" , PALETTERGB (255,250,205)},
578 {"LemonChiffon" , PALETTERGB (255,250,205)},
579 {"seashell" , PALETTERGB (255,245,238)},
580 {"honeydew" , PALETTERGB (240,255,240)},
581 {"mint cream" , PALETTERGB (245,255,250)},
582 {"MintCream" , PALETTERGB (245,255,250)},
583 {"azure" , PALETTERGB (240,255,255)},
584 {"alice blue" , PALETTERGB (240,248,255)},
585 {"AliceBlue" , PALETTERGB (240,248,255)},
586 {"lavender" , PALETTERGB (230,230,250)},
587 {"lavender blush" , PALETTERGB (255,240,245)},
588 {"LavenderBlush" , PALETTERGB (255,240,245)},
589 {"misty rose" , PALETTERGB (255,228,225)},
590 {"MistyRose" , PALETTERGB (255,228,225)},
591 {"white" , PALETTERGB (255,255,255)},
592 {"black" , PALETTERGB ( 0, 0, 0)},
593 {"dark slate gray" , PALETTERGB ( 47, 79, 79)},
594 {"DarkSlateGray" , PALETTERGB ( 47, 79, 79)},
595 {"dark slate grey" , PALETTERGB ( 47, 79, 79)},
596 {"DarkSlateGrey" , PALETTERGB ( 47, 79, 79)},
597 {"dim gray" , PALETTERGB (105,105,105)},
598 {"DimGray" , PALETTERGB (105,105,105)},
599 {"dim grey" , PALETTERGB (105,105,105)},
600 {"DimGrey" , PALETTERGB (105,105,105)},
601 {"slate gray" , PALETTERGB (112,128,144)},
602 {"SlateGray" , PALETTERGB (112,128,144)},
603 {"slate grey" , PALETTERGB (112,128,144)},
604 {"SlateGrey" , PALETTERGB (112,128,144)},
605 {"light slate gray" , PALETTERGB (119,136,153)},
606 {"LightSlateGray" , PALETTERGB (119,136,153)},
607 {"light slate grey" , PALETTERGB (119,136,153)},
608 {"LightSlateGrey" , PALETTERGB (119,136,153)},
609 {"gray" , PALETTERGB (190,190,190)},
610 {"grey" , PALETTERGB (190,190,190)},
611 {"light grey" , PALETTERGB (211,211,211)},
612 {"LightGrey" , PALETTERGB (211,211,211)},
613 {"light gray" , PALETTERGB (211,211,211)},
614 {"LightGray" , PALETTERGB (211,211,211)},
615 {"midnight blue" , PALETTERGB ( 25, 25,112)},
616 {"MidnightBlue" , PALETTERGB ( 25, 25,112)},
617 {"navy" , PALETTERGB ( 0, 0,128)},
618 {"navy blue" , PALETTERGB ( 0, 0,128)},
619 {"NavyBlue" , PALETTERGB ( 0, 0,128)},
620 {"cornflower blue" , PALETTERGB (100,149,237)},
621 {"CornflowerBlue" , PALETTERGB (100,149,237)},
622 {"dark slate blue" , PALETTERGB ( 72, 61,139)},
623 {"DarkSlateBlue" , PALETTERGB ( 72, 61,139)},
624 {"slate blue" , PALETTERGB (106, 90,205)},
625 {"SlateBlue" , PALETTERGB (106, 90,205)},
626 {"medium slate blue" , PALETTERGB (123,104,238)},
627 {"MediumSlateBlue" , PALETTERGB (123,104,238)},
628 {"light slate blue" , PALETTERGB (132,112,255)},
629 {"LightSlateBlue" , PALETTERGB (132,112,255)},
630 {"medium blue" , PALETTERGB ( 0, 0,205)},
631 {"MediumBlue" , PALETTERGB ( 0, 0,205)},
632 {"royal blue" , PALETTERGB ( 65,105,225)},
633 {"RoyalBlue" , PALETTERGB ( 65,105,225)},
634 {"blue" , PALETTERGB ( 0, 0,255)},
635 {"dodger blue" , PALETTERGB ( 30,144,255)},
636 {"DodgerBlue" , PALETTERGB ( 30,144,255)},
637 {"deep sky blue" , PALETTERGB ( 0,191,255)},
638 {"DeepSkyBlue" , PALETTERGB ( 0,191,255)},
639 {"sky blue" , PALETTERGB (135,206,235)},
640 {"SkyBlue" , PALETTERGB (135,206,235)},
641 {"light sky blue" , PALETTERGB (135,206,250)},
642 {"LightSkyBlue" , PALETTERGB (135,206,250)},
643 {"steel blue" , PALETTERGB ( 70,130,180)},
644 {"SteelBlue" , PALETTERGB ( 70,130,180)},
645 {"light steel blue" , PALETTERGB (176,196,222)},
646 {"LightSteelBlue" , PALETTERGB (176,196,222)},
647 {"light blue" , PALETTERGB (173,216,230)},
648 {"LightBlue" , PALETTERGB (173,216,230)},
649 {"powder blue" , PALETTERGB (176,224,230)},
650 {"PowderBlue" , PALETTERGB (176,224,230)},
651 {"pale turquoise" , PALETTERGB (175,238,238)},
652 {"PaleTurquoise" , PALETTERGB (175,238,238)},
653 {"dark turquoise" , PALETTERGB ( 0,206,209)},
654 {"DarkTurquoise" , PALETTERGB ( 0,206,209)},
655 {"medium turquoise" , PALETTERGB ( 72,209,204)},
656 {"MediumTurquoise" , PALETTERGB ( 72,209,204)},
657 {"turquoise" , PALETTERGB ( 64,224,208)},
658 {"cyan" , PALETTERGB ( 0,255,255)},
659 {"light cyan" , PALETTERGB (224,255,255)},
660 {"LightCyan" , PALETTERGB (224,255,255)},
661 {"cadet blue" , PALETTERGB ( 95,158,160)},
662 {"CadetBlue" , PALETTERGB ( 95,158,160)},
663 {"medium aquamarine" , PALETTERGB (102,205,170)},
664 {"MediumAquamarine" , PALETTERGB (102,205,170)},
665 {"aquamarine" , PALETTERGB (127,255,212)},
666 {"dark green" , PALETTERGB ( 0,100, 0)},
667 {"DarkGreen" , PALETTERGB ( 0,100, 0)},
668 {"dark olive green" , PALETTERGB ( 85,107, 47)},
669 {"DarkOliveGreen" , PALETTERGB ( 85,107, 47)},
670 {"dark sea green" , PALETTERGB (143,188,143)},
671 {"DarkSeaGreen" , PALETTERGB (143,188,143)},
672 {"sea green" , PALETTERGB ( 46,139, 87)},
673 {"SeaGreen" , PALETTERGB ( 46,139, 87)},
674 {"medium sea green" , PALETTERGB ( 60,179,113)},
675 {"MediumSeaGreen" , PALETTERGB ( 60,179,113)},
676 {"light sea green" , PALETTERGB ( 32,178,170)},
677 {"LightSeaGreen" , PALETTERGB ( 32,178,170)},
678 {"pale green" , PALETTERGB (152,251,152)},
679 {"PaleGreen" , PALETTERGB (152,251,152)},
680 {"spring green" , PALETTERGB ( 0,255,127)},
681 {"SpringGreen" , PALETTERGB ( 0,255,127)},
682 {"lawn green" , PALETTERGB (124,252, 0)},
683 {"LawnGreen" , PALETTERGB (124,252, 0)},
684 {"green" , PALETTERGB ( 0,255, 0)},
685 {"chartreuse" , PALETTERGB (127,255, 0)},
686 {"medium spring green" , PALETTERGB ( 0,250,154)},
687 {"MediumSpringGreen" , PALETTERGB ( 0,250,154)},
688 {"green yellow" , PALETTERGB (173,255, 47)},
689 {"GreenYellow" , PALETTERGB (173,255, 47)},
690 {"lime green" , PALETTERGB ( 50,205, 50)},
691 {"LimeGreen" , PALETTERGB ( 50,205, 50)},
692 {"yellow green" , PALETTERGB (154,205, 50)},
693 {"YellowGreen" , PALETTERGB (154,205, 50)},
694 {"forest green" , PALETTERGB ( 34,139, 34)},
695 {"ForestGreen" , PALETTERGB ( 34,139, 34)},
696 {"olive drab" , PALETTERGB (107,142, 35)},
697 {"OliveDrab" , PALETTERGB (107,142, 35)},
698 {"dark khaki" , PALETTERGB (189,183,107)},
699 {"DarkKhaki" , PALETTERGB (189,183,107)},
700 {"khaki" , PALETTERGB (240,230,140)},
701 {"pale goldenrod" , PALETTERGB (238,232,170)},
702 {"PaleGoldenrod" , PALETTERGB (238,232,170)},
703 {"light goldenrod yellow" , PALETTERGB (250,250,210)},
704 {"LightGoldenrodYellow" , PALETTERGB (250,250,210)},
705 {"light yellow" , PALETTERGB (255,255,224)},
706 {"LightYellow" , PALETTERGB (255,255,224)},
707 {"yellow" , PALETTERGB (255,255, 0)},
708 {"gold" , PALETTERGB (255,215, 0)},
709 {"light goldenrod" , PALETTERGB (238,221,130)},
710 {"LightGoldenrod" , PALETTERGB (238,221,130)},
711 {"goldenrod" , PALETTERGB (218,165, 32)},
712 {"dark goldenrod" , PALETTERGB (184,134, 11)},
713 {"DarkGoldenrod" , PALETTERGB (184,134, 11)},
714 {"rosy brown" , PALETTERGB (188,143,143)},
715 {"RosyBrown" , PALETTERGB (188,143,143)},
716 {"indian red" , PALETTERGB (205, 92, 92)},
717 {"IndianRed" , PALETTERGB (205, 92, 92)},
718 {"saddle brown" , PALETTERGB (139, 69, 19)},
719 {"SaddleBrown" , PALETTERGB (139, 69, 19)},
720 {"sienna" , PALETTERGB (160, 82, 45)},
721 {"peru" , PALETTERGB (205,133, 63)},
722 {"burlywood" , PALETTERGB (222,184,135)},
723 {"beige" , PALETTERGB (245,245,220)},
724 {"wheat" , PALETTERGB (245,222,179)},
725 {"sandy brown" , PALETTERGB (244,164, 96)},
726 {"SandyBrown" , PALETTERGB (244,164, 96)},
727 {"tan" , PALETTERGB (210,180,140)},
728 {"chocolate" , PALETTERGB (210,105, 30)},
729 {"firebrick" , PALETTERGB (178,34, 34)},
730 {"brown" , PALETTERGB (165,42, 42)},
731 {"dark salmon" , PALETTERGB (233,150,122)},
732 {"DarkSalmon" , PALETTERGB (233,150,122)},
733 {"salmon" , PALETTERGB (250,128,114)},
734 {"light salmon" , PALETTERGB (255,160,122)},
735 {"LightSalmon" , PALETTERGB (255,160,122)},
736 {"orange" , PALETTERGB (255,165, 0)},
737 {"dark orange" , PALETTERGB (255,140, 0)},
738 {"DarkOrange" , PALETTERGB (255,140, 0)},
739 {"coral" , PALETTERGB (255,127, 80)},
740 {"light coral" , PALETTERGB (240,128,128)},
741 {"LightCoral" , PALETTERGB (240,128,128)},
742 {"tomato" , PALETTERGB (255, 99, 71)},
743 {"orange red" , PALETTERGB (255, 69, 0)},
744 {"OrangeRed" , PALETTERGB (255, 69, 0)},
745 {"red" , PALETTERGB (255, 0, 0)},
746 {"hot pink" , PALETTERGB (255,105,180)},
747 {"HotPink" , PALETTERGB (255,105,180)},
748 {"deep pink" , PALETTERGB (255, 20,147)},
749 {"DeepPink" , PALETTERGB (255, 20,147)},
750 {"pink" , PALETTERGB (255,192,203)},
751 {"light pink" , PALETTERGB (255,182,193)},
752 {"LightPink" , PALETTERGB (255,182,193)},
753 {"pale violet red" , PALETTERGB (219,112,147)},
754 {"PaleVioletRed" , PALETTERGB (219,112,147)},
755 {"maroon" , PALETTERGB (176, 48, 96)},
756 {"medium violet red" , PALETTERGB (199, 21,133)},
757 {"MediumVioletRed" , PALETTERGB (199, 21,133)},
758 {"violet red" , PALETTERGB (208, 32,144)},
759 {"VioletRed" , PALETTERGB (208, 32,144)},
760 {"magenta" , PALETTERGB (255, 0,255)},
761 {"violet" , PALETTERGB (238,130,238)},
762 {"plum" , PALETTERGB (221,160,221)},
763 {"orchid" , PALETTERGB (218,112,214)},
764 {"medium orchid" , PALETTERGB (186, 85,211)},
765 {"MediumOrchid" , PALETTERGB (186, 85,211)},
766 {"dark orchid" , PALETTERGB (153, 50,204)},
767 {"DarkOrchid" , PALETTERGB (153, 50,204)},
768 {"dark violet" , PALETTERGB (148, 0,211)},
769 {"DarkViolet" , PALETTERGB (148, 0,211)},
770 {"blue violet" , PALETTERGB (138, 43,226)},
771 {"BlueViolet" , PALETTERGB (138, 43,226)},
772 {"purple" , PALETTERGB (160, 32,240)},
773 {"medium purple" , PALETTERGB (147,112,219)},
774 {"MediumPurple" , PALETTERGB (147,112,219)},
775 {"thistle" , PALETTERGB (216,191,216)},
776 {"gray0" , PALETTERGB ( 0, 0, 0)},
777 {"grey0" , PALETTERGB ( 0, 0, 0)},
778 {"dark grey" , PALETTERGB (169,169,169)},
779 {"DarkGrey" , PALETTERGB (169,169,169)},
780 {"dark gray" , PALETTERGB (169,169,169)},
781 {"DarkGray" , PALETTERGB (169,169,169)},
782 {"dark blue" , PALETTERGB ( 0, 0,139)},
783 {"DarkBlue" , PALETTERGB ( 0, 0,139)},
784 {"dark cyan" , PALETTERGB ( 0,139,139)},
785 {"DarkCyan" , PALETTERGB ( 0,139,139)},
786 {"dark magenta" , PALETTERGB (139, 0,139)},
787 {"DarkMagenta" , PALETTERGB (139, 0,139)},
788 {"dark red" , PALETTERGB (139, 0, 0)},
789 {"DarkRed" , PALETTERGB (139, 0, 0)},
790 {"light green" , PALETTERGB (144,238,144)},
791 {"LightGreen" , PALETTERGB (144,238,144)},
794 DEFUN ("w32-default-color-map", Fw32_default_color_map
, Sw32_default_color_map
,
795 0, 0, 0, doc
: /* Return the default color map. */)
799 colormap_t
*pc
= w32_color_map
;
806 for (i
= 0; i
< sizeof (w32_color_map
) / sizeof (w32_color_map
[0]);
808 cmap
= Fcons (Fcons (build_string (pc
->name
),
809 make_number (pc
->colorref
)),
827 color
= Frassq (rgb
, Vw32_color_map
);
832 return (Fcar (color
));
838 w32_color_map_lookup (colorname
)
841 Lisp_Object tail
, ret
= Qnil
;
845 for (tail
= Vw32_color_map
; !NILP (tail
); tail
= Fcdr (tail
))
847 register Lisp_Object elt
, tem
;
850 if (!CONSP (elt
)) continue;
854 if (lstrcmpi (SDATA (tem
), colorname
) == 0)
871 add_system_logical_colors_to_map (system_colors
)
872 Lisp_Object
*system_colors
;
876 /* Other registry operations are done with input blocked. */
879 /* Look for "Control Panel/Colors" under User and Machine registry
881 if (RegOpenKeyEx (HKEY_CURRENT_USER
, "Control Panel\\Colors", 0,
882 KEY_READ
, &colors_key
) == ERROR_SUCCESS
883 || RegOpenKeyEx (HKEY_LOCAL_MACHINE
, "Control Panel\\Colors", 0,
884 KEY_READ
, &colors_key
) == ERROR_SUCCESS
)
887 char color_buffer
[64];
888 char full_name_buffer
[MAX_PATH
+ SYSTEM_COLOR_PREFIX_LEN
];
890 DWORD name_size
, color_size
;
891 char *name_buffer
= full_name_buffer
+ SYSTEM_COLOR_PREFIX_LEN
;
893 name_size
= sizeof (full_name_buffer
) - SYSTEM_COLOR_PREFIX_LEN
;
894 color_size
= sizeof (color_buffer
);
896 strcpy (full_name_buffer
, SYSTEM_COLOR_PREFIX
);
898 while (RegEnumValueA (colors_key
, index
, name_buffer
, &name_size
,
899 NULL
, NULL
, color_buffer
, &color_size
)
903 if (sscanf (color_buffer
, " %u %u %u", &r
, &g
, &b
) == 3)
904 *system_colors
= Fcons (Fcons (build_string (full_name_buffer
),
905 make_number (RGB (r
, g
, b
))),
908 name_size
= sizeof (full_name_buffer
) - SYSTEM_COLOR_PREFIX_LEN
;
909 color_size
= sizeof (color_buffer
);
912 RegCloseKey (colors_key
);
920 x_to_w32_color (colorname
)
923 register Lisp_Object ret
= Qnil
;
927 if (colorname
[0] == '#')
929 /* Could be an old-style RGB Device specification. */
932 color
= colorname
+ 1;
934 size
= strlen(color
);
935 if (size
== 3 || size
== 6 || size
== 9 || size
== 12)
943 for (i
= 0; i
< 3; i
++)
949 /* The check for 'x' in the following conditional takes into
950 account the fact that strtol allows a "0x" in front of
951 our numbers, and we don't. */
952 if (!isxdigit(color
[0]) || color
[1] == 'x')
956 value
= strtoul(color
, &end
, 16);
958 if (errno
== ERANGE
|| end
- color
!= size
)
963 value
= value
* 0x10;
974 colorval
|= (value
<< pos
);
979 XSETINT (ret
, colorval
);
986 else if (strnicmp(colorname
, "rgb:", 4) == 0)
994 color
= colorname
+ 4;
995 for (i
= 0; i
< 3; i
++)
1000 /* The check for 'x' in the following conditional takes into
1001 account the fact that strtol allows a "0x" in front of
1002 our numbers, and we don't. */
1003 if (!isxdigit(color
[0]) || color
[1] == 'x')
1005 value
= strtoul(color
, &end
, 16);
1006 if (errno
== ERANGE
)
1008 switch (end
- color
)
1011 value
= value
* 0x10 + value
;
1024 if (value
== ULONG_MAX
)
1026 colorval
|= (value
<< pos
);
1033 XSETINT (ret
, colorval
);
1041 else if (strnicmp(colorname
, "rgbi:", 5) == 0)
1043 /* This is an RGB Intensity specification. */
1050 color
= colorname
+ 5;
1051 for (i
= 0; i
< 3; i
++)
1057 value
= strtod(color
, &end
);
1058 if (errno
== ERANGE
)
1060 if (value
< 0.0 || value
> 1.0)
1062 val
= (UINT
)(0x100 * value
);
1063 /* We used 0x100 instead of 0xFF to give a continuous
1064 range between 0.0 and 1.0 inclusive. The next statement
1065 fixes the 1.0 case. */
1068 colorval
|= (val
<< pos
);
1075 XSETINT (ret
, colorval
);
1083 /* I am not going to attempt to handle any of the CIE color schemes
1084 or TekHVC, since I don't know the algorithms for conversion to
1087 /* If we fail to lookup the color name in w32_color_map, then check the
1088 colorname to see if it can be crudely approximated: If the X color
1089 ends in a number (e.g., "darkseagreen2"), strip the number and
1090 return the result of looking up the base color name. */
1091 ret
= w32_color_map_lookup (colorname
);
1094 int len
= strlen (colorname
);
1096 if (isdigit (colorname
[len
- 1]))
1098 char *ptr
, *approx
= alloca (len
+ 1);
1100 strcpy (approx
, colorname
);
1101 ptr
= &approx
[len
- 1];
1102 while (ptr
> approx
&& isdigit (*ptr
))
1105 ret
= w32_color_map_lookup (approx
);
1114 w32_regenerate_palette (FRAME_PTR f
)
1116 struct w32_palette_entry
* list
;
1117 LOGPALETTE
* log_palette
;
1118 HPALETTE new_palette
;
1121 /* don't bother trying to create palette if not supported */
1122 if (! FRAME_W32_DISPLAY_INFO (f
)->has_palette
)
1125 log_palette
= (LOGPALETTE
*)
1126 alloca (sizeof (LOGPALETTE
) +
1127 FRAME_W32_DISPLAY_INFO (f
)->num_colors
* sizeof (PALETTEENTRY
));
1128 log_palette
->palVersion
= 0x300;
1129 log_palette
->palNumEntries
= FRAME_W32_DISPLAY_INFO (f
)->num_colors
;
1131 list
= FRAME_W32_DISPLAY_INFO (f
)->color_list
;
1133 i
< FRAME_W32_DISPLAY_INFO (f
)->num_colors
;
1134 i
++, list
= list
->next
)
1135 log_palette
->palPalEntry
[i
] = list
->entry
;
1137 new_palette
= CreatePalette (log_palette
);
1141 if (FRAME_W32_DISPLAY_INFO (f
)->palette
)
1142 DeleteObject (FRAME_W32_DISPLAY_INFO (f
)->palette
);
1143 FRAME_W32_DISPLAY_INFO (f
)->palette
= new_palette
;
1145 /* Realize display palette and garbage all frames. */
1146 release_frame_dc (f
, get_frame_dc (f
));
1151 #define W32_COLOR(pe) RGB (pe.peRed, pe.peGreen, pe.peBlue)
1152 #define SET_W32_COLOR(pe, color) \
1155 pe.peRed = GetRValue (color); \
1156 pe.peGreen = GetGValue (color); \
1157 pe.peBlue = GetBValue (color); \
1162 /* Keep these around in case we ever want to track color usage. */
1164 w32_map_color (FRAME_PTR f
, COLORREF color
)
1166 struct w32_palette_entry
* list
= FRAME_W32_DISPLAY_INFO (f
)->color_list
;
1168 if (NILP (Vw32_enable_palette
))
1171 /* check if color is already mapped */
1174 if (W32_COLOR (list
->entry
) == color
)
1182 /* not already mapped, so add to list and recreate Windows palette */
1183 list
= (struct w32_palette_entry
*)
1184 xmalloc (sizeof (struct w32_palette_entry
));
1185 SET_W32_COLOR (list
->entry
, color
);
1187 list
->next
= FRAME_W32_DISPLAY_INFO (f
)->color_list
;
1188 FRAME_W32_DISPLAY_INFO (f
)->color_list
= list
;
1189 FRAME_W32_DISPLAY_INFO (f
)->num_colors
++;
1191 /* set flag that palette must be regenerated */
1192 FRAME_W32_DISPLAY_INFO (f
)->regen_palette
= TRUE
;
1196 w32_unmap_color (FRAME_PTR f
, COLORREF color
)
1198 struct w32_palette_entry
* list
= FRAME_W32_DISPLAY_INFO (f
)->color_list
;
1199 struct w32_palette_entry
**prev
= &FRAME_W32_DISPLAY_INFO (f
)->color_list
;
1201 if (NILP (Vw32_enable_palette
))
1204 /* check if color is already mapped */
1207 if (W32_COLOR (list
->entry
) == color
)
1209 if (--list
->refcount
== 0)
1213 FRAME_W32_DISPLAY_INFO (f
)->num_colors
--;
1223 /* set flag that palette must be regenerated */
1224 FRAME_W32_DISPLAY_INFO (f
)->regen_palette
= TRUE
;
1229 /* Gamma-correct COLOR on frame F. */
1232 gamma_correct (f
, color
)
1238 *color
= PALETTERGB (
1239 pow (GetRValue (*color
) / 255.0, f
->gamma
) * 255.0 + 0.5,
1240 pow (GetGValue (*color
) / 255.0, f
->gamma
) * 255.0 + 0.5,
1241 pow (GetBValue (*color
) / 255.0, f
->gamma
) * 255.0 + 0.5);
1246 /* Decide if color named COLOR is valid for the display associated with
1247 the selected frame; if so, return the rgb values in COLOR_DEF.
1248 If ALLOC is nonzero, allocate a new colormap cell. */
1251 w32_defined_color (f
, color
, color_def
, alloc
)
1257 register Lisp_Object tem
;
1258 COLORREF w32_color_ref
;
1260 tem
= x_to_w32_color (color
);
1266 /* Apply gamma correction. */
1267 w32_color_ref
= XUINT (tem
);
1268 gamma_correct (f
, &w32_color_ref
);
1269 XSETINT (tem
, w32_color_ref
);
1272 /* Map this color to the palette if it is enabled. */
1273 if (!NILP (Vw32_enable_palette
))
1275 struct w32_palette_entry
* entry
=
1276 one_w32_display_info
.color_list
;
1277 struct w32_palette_entry
** prev
=
1278 &one_w32_display_info
.color_list
;
1280 /* check if color is already mapped */
1283 if (W32_COLOR (entry
->entry
) == XUINT (tem
))
1285 prev
= &entry
->next
;
1286 entry
= entry
->next
;
1289 if (entry
== NULL
&& alloc
)
1291 /* not already mapped, so add to list */
1292 entry
= (struct w32_palette_entry
*)
1293 xmalloc (sizeof (struct w32_palette_entry
));
1294 SET_W32_COLOR (entry
->entry
, XUINT (tem
));
1297 one_w32_display_info
.num_colors
++;
1299 /* set flag that palette must be regenerated */
1300 one_w32_display_info
.regen_palette
= TRUE
;
1303 /* Ensure COLORREF value is snapped to nearest color in (default)
1304 palette by simulating the PALETTERGB macro. This works whether
1305 or not the display device has a palette. */
1306 w32_color_ref
= XUINT (tem
) | 0x2000000;
1308 color_def
->pixel
= w32_color_ref
;
1309 color_def
->red
= GetRValue (w32_color_ref
) * 256;
1310 color_def
->green
= GetGValue (w32_color_ref
) * 256;
1311 color_def
->blue
= GetBValue (w32_color_ref
) * 256;
1321 /* Given a string ARG naming a color, compute a pixel value from it
1322 suitable for screen F.
1323 If F is not a color screen, return DEF (default) regardless of what
1327 x_decode_color (f
, arg
, def
)
1336 if (strcmp (SDATA (arg
), "black") == 0)
1337 return BLACK_PIX_DEFAULT (f
);
1338 else if (strcmp (SDATA (arg
), "white") == 0)
1339 return WHITE_PIX_DEFAULT (f
);
1341 if ((FRAME_W32_DISPLAY_INFO (f
)->n_planes
* FRAME_W32_DISPLAY_INFO (f
)->n_cbits
) == 1)
1344 /* w32_defined_color is responsible for coping with failures
1345 by looking for a near-miss. */
1346 if (w32_defined_color (f
, SDATA (arg
), &cdef
, 1))
1349 /* defined_color failed; return an ultimate default. */
1355 /* Functions called only from `x_set_frame_param'
1356 to set individual parameters.
1358 If FRAME_W32_WINDOW (f) is 0,
1359 the frame is being created and its window does not exist yet.
1360 In that case, just record the parameter's new value
1361 in the standard place; do not attempt to change the window. */
1364 x_set_foreground_color (f
, arg
, oldval
)
1366 Lisp_Object arg
, oldval
;
1368 struct w32_output
*x
= f
->output_data
.w32
;
1369 PIX_TYPE fg
, old_fg
;
1371 fg
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1372 old_fg
= FRAME_FOREGROUND_PIXEL (f
);
1373 FRAME_FOREGROUND_PIXEL (f
) = fg
;
1375 if (FRAME_W32_WINDOW (f
) != 0)
1377 if (x
->cursor_pixel
== old_fg
)
1378 x
->cursor_pixel
= fg
;
1380 update_face_from_frame_parameter (f
, Qforeground_color
, arg
);
1381 if (FRAME_VISIBLE_P (f
))
1387 x_set_background_color (f
, arg
, oldval
)
1389 Lisp_Object arg
, oldval
;
1391 FRAME_BACKGROUND_PIXEL (f
)
1392 = x_decode_color (f
, arg
, WHITE_PIX_DEFAULT (f
));
1394 if (FRAME_W32_WINDOW (f
) != 0)
1396 SetWindowLong (FRAME_W32_WINDOW (f
), WND_BACKGROUND_INDEX
,
1397 FRAME_BACKGROUND_PIXEL (f
));
1399 update_face_from_frame_parameter (f
, Qbackground_color
, arg
);
1401 if (FRAME_VISIBLE_P (f
))
1407 x_set_mouse_color (f
, arg
, oldval
)
1409 Lisp_Object arg
, oldval
;
1411 Cursor cursor
, nontext_cursor
, mode_cursor
, hand_cursor
;
1415 if (!EQ (Qnil
, arg
))
1416 f
->output_data
.w32
->mouse_pixel
1417 = x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1418 mask_color
= FRAME_BACKGROUND_PIXEL (f
);
1420 /* Don't let pointers be invisible. */
1421 if (mask_color
== f
->output_data
.w32
->mouse_pixel
1422 && mask_color
== FRAME_BACKGROUND_PIXEL (f
))
1423 f
->output_data
.w32
->mouse_pixel
= FRAME_FOREGROUND_PIXEL (f
);
1425 #if 0 /* TODO : cursor changes */
1428 /* It's not okay to crash if the user selects a screwy cursor. */
1429 count
= x_catch_errors (FRAME_W32_DISPLAY (f
));
1431 if (!EQ (Qnil
, Vx_pointer_shape
))
1433 CHECK_NUMBER (Vx_pointer_shape
);
1434 cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
), XINT (Vx_pointer_shape
));
1437 cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
), XC_xterm
);
1438 x_check_errors (FRAME_W32_DISPLAY (f
), "bad text pointer cursor: %s");
1440 if (!EQ (Qnil
, Vx_nontext_pointer_shape
))
1442 CHECK_NUMBER (Vx_nontext_pointer_shape
);
1443 nontext_cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
),
1444 XINT (Vx_nontext_pointer_shape
));
1447 nontext_cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
), XC_left_ptr
);
1448 x_check_errors (FRAME_W32_DISPLAY (f
), "bad nontext pointer cursor: %s");
1450 if (!EQ (Qnil
, Vx_hourglass_pointer_shape
))
1452 CHECK_NUMBER (Vx_hourglass_pointer_shape
);
1453 hourglass_cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
),
1454 XINT (Vx_hourglass_pointer_shape
));
1457 hourglass_cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
), XC_watch
);
1458 x_check_errors (FRAME_W32_DISPLAY (f
), "bad busy pointer cursor: %s");
1460 x_check_errors (FRAME_W32_DISPLAY (f
), "bad nontext pointer cursor: %s");
1461 if (!EQ (Qnil
, Vx_mode_pointer_shape
))
1463 CHECK_NUMBER (Vx_mode_pointer_shape
);
1464 mode_cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
),
1465 XINT (Vx_mode_pointer_shape
));
1468 mode_cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
), XC_xterm
);
1469 x_check_errors (FRAME_W32_DISPLAY (f
), "bad modeline pointer cursor: %s");
1471 if (!EQ (Qnil
, Vx_sensitive_text_pointer_shape
))
1473 CHECK_NUMBER (Vx_sensitive_text_pointer_shape
);
1475 = XCreateFontCursor (FRAME_W32_DISPLAY (f
),
1476 XINT (Vx_sensitive_text_pointer_shape
));
1479 hand_cursor
= XCreateFontCursor (FRAME_W32_DISPLAY (f
), XC_crosshair
);
1481 if (!NILP (Vx_window_horizontal_drag_shape
))
1483 CHECK_NUMBER (Vx_window_horizontal_drag_shape
);
1484 horizontal_drag_cursor
1485 = XCreateFontCursor (FRAME_X_DISPLAY (f
),
1486 XINT (Vx_window_horizontal_drag_shape
));
1489 horizontal_drag_cursor
1490 = XCreateFontCursor (FRAME_X_DISPLAY (f
), XC_sb_h_double_arrow
);
1492 /* Check and report errors with the above calls. */
1493 x_check_errors (FRAME_W32_DISPLAY (f
), "can't set cursor shape: %s");
1494 x_uncatch_errors (FRAME_W32_DISPLAY (f
), count
);
1497 XColor fore_color
, back_color
;
1499 fore_color
.pixel
= f
->output_data
.w32
->mouse_pixel
;
1500 back_color
.pixel
= mask_color
;
1501 XQueryColor (FRAME_W32_DISPLAY (f
),
1502 DefaultColormap (FRAME_W32_DISPLAY (f
),
1503 DefaultScreen (FRAME_W32_DISPLAY (f
))),
1505 XQueryColor (FRAME_W32_DISPLAY (f
),
1506 DefaultColormap (FRAME_W32_DISPLAY (f
),
1507 DefaultScreen (FRAME_W32_DISPLAY (f
))),
1509 XRecolorCursor (FRAME_W32_DISPLAY (f
), cursor
,
1510 &fore_color
, &back_color
);
1511 XRecolorCursor (FRAME_W32_DISPLAY (f
), nontext_cursor
,
1512 &fore_color
, &back_color
);
1513 XRecolorCursor (FRAME_W32_DISPLAY (f
), mode_cursor
,
1514 &fore_color
, &back_color
);
1515 XRecolorCursor (FRAME_W32_DISPLAY (f
), hand_cursor
,
1516 &fore_color
, &back_color
);
1517 XRecolorCursor (FRAME_W32_DISPLAY (f
), hourglass_cursor
,
1518 &fore_color
, &back_color
);
1521 if (FRAME_W32_WINDOW (f
) != 0)
1522 XDefineCursor (FRAME_W32_DISPLAY (f
), FRAME_W32_WINDOW (f
), cursor
);
1524 if (cursor
!= f
->output_data
.w32
->text_cursor
&& f
->output_data
.w32
->text_cursor
!= 0)
1525 XFreeCursor (FRAME_W32_DISPLAY (f
), f
->output_data
.w32
->text_cursor
);
1526 f
->output_data
.w32
->text_cursor
= cursor
;
1528 if (nontext_cursor
!= f
->output_data
.w32
->nontext_cursor
1529 && f
->output_data
.w32
->nontext_cursor
!= 0)
1530 XFreeCursor (FRAME_W32_DISPLAY (f
), f
->output_data
.w32
->nontext_cursor
);
1531 f
->output_data
.w32
->nontext_cursor
= nontext_cursor
;
1533 if (hourglass_cursor
!= f
->output_data
.w32
->hourglass_cursor
1534 && f
->output_data
.w32
->hourglass_cursor
!= 0)
1535 XFreeCursor (FRAME_W32_DISPLAY (f
), f
->output_data
.w32
->hourglass_cursor
);
1536 f
->output_data
.w32
->hourglass_cursor
= hourglass_cursor
;
1538 if (mode_cursor
!= f
->output_data
.w32
->modeline_cursor
1539 && f
->output_data
.w32
->modeline_cursor
!= 0)
1540 XFreeCursor (FRAME_W32_DISPLAY (f
), f
->output_data
.w32
->modeline_cursor
);
1541 f
->output_data
.w32
->modeline_cursor
= mode_cursor
;
1543 if (hand_cursor
!= f
->output_data
.w32
->hand_cursor
1544 && f
->output_data
.w32
->hand_cursor
!= 0)
1545 XFreeCursor (FRAME_W32_DISPLAY (f
), f
->output_data
.w32
->hand_cursor
);
1546 f
->output_data
.w32
->hand_cursor
= hand_cursor
;
1548 XFlush (FRAME_W32_DISPLAY (f
));
1551 update_face_from_frame_parameter (f
, Qmouse_color
, arg
);
1555 /* Defined in w32term.c. */
1557 x_set_cursor_color (f
, arg
, oldval
)
1559 Lisp_Object arg
, oldval
;
1561 unsigned long fore_pixel
, pixel
;
1563 if (!NILP (Vx_cursor_fore_pixel
))
1564 fore_pixel
= x_decode_color (f
, Vx_cursor_fore_pixel
,
1565 WHITE_PIX_DEFAULT (f
));
1567 fore_pixel
= FRAME_BACKGROUND_PIXEL (f
);
1569 pixel
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1571 /* Make sure that the cursor color differs from the background color. */
1572 if (pixel
== FRAME_BACKGROUND_PIXEL (f
))
1574 pixel
= f
->output_data
.w32
->mouse_pixel
;
1575 if (pixel
== fore_pixel
)
1576 fore_pixel
= FRAME_BACKGROUND_PIXEL (f
);
1579 f
->output_data
.w32
->cursor_foreground_pixel
= fore_pixel
;
1580 f
->output_data
.w32
->cursor_pixel
= pixel
;
1582 if (FRAME_W32_WINDOW (f
) != 0)
1585 /* Update frame's cursor_gc. */
1586 f
->output_data
.w32
->cursor_gc
->foreground
= fore_pixel
;
1587 f
->output_data
.w32
->cursor_gc
->background
= pixel
;
1591 if (FRAME_VISIBLE_P (f
))
1593 x_update_cursor (f
, 0);
1594 x_update_cursor (f
, 1);
1598 update_face_from_frame_parameter (f
, Qcursor_color
, arg
);
1601 /* Set the border-color of frame F to pixel value PIX.
1602 Note that this does not fully take effect if done before
1606 x_set_border_pixel (f
, pix
)
1611 f
->output_data
.w32
->border_pixel
= pix
;
1613 if (FRAME_W32_WINDOW (f
) != 0 && f
->border_width
> 0)
1615 if (FRAME_VISIBLE_P (f
))
1620 /* Set the border-color of frame F to value described by ARG.
1621 ARG can be a string naming a color.
1622 The border-color is used for the border that is drawn by the server.
1623 Note that this does not fully take effect if done before
1624 F has a window; it must be redone when the window is created. */
1627 x_set_border_color (f
, arg
, oldval
)
1629 Lisp_Object arg
, oldval
;
1634 pix
= x_decode_color (f
, arg
, BLACK_PIX_DEFAULT (f
));
1635 x_set_border_pixel (f
, pix
);
1636 update_face_from_frame_parameter (f
, Qborder_color
, arg
);
1641 x_set_cursor_type (f
, arg
, oldval
)
1643 Lisp_Object arg
, oldval
;
1645 set_frame_cursor_types (f
, arg
);
1647 /* Make sure the cursor gets redrawn. */
1648 cursor_type_changed
= 1;
1652 x_set_icon_type (f
, arg
, oldval
)
1654 Lisp_Object arg
, oldval
;
1658 if (NILP (arg
) && NILP (oldval
))
1661 if (STRINGP (arg
) && STRINGP (oldval
)
1662 && EQ (Fstring_equal (oldval
, arg
), Qt
))
1665 if (SYMBOLP (arg
) && SYMBOLP (oldval
) && EQ (arg
, oldval
))
1670 result
= x_bitmap_icon (f
, arg
);
1674 error ("No icon window available");
1681 x_set_icon_name (f
, arg
, oldval
)
1683 Lisp_Object arg
, oldval
;
1687 if (STRINGP (oldval
) && EQ (Fstring_equal (oldval
, arg
), Qt
))
1690 else if (!NILP (arg
) || NILP (oldval
))
1696 if (f
->output_data
.w32
->icon_bitmap
!= 0)
1701 result
= x_text_icon (f
,
1702 (char *) SDATA ((!NILP (f
->icon_name
)
1711 error ("No icon window available");
1714 /* If the window was unmapped (and its icon was mapped),
1715 the new icon is not mapped, so map the window in its stead. */
1716 if (FRAME_VISIBLE_P (f
))
1718 #ifdef USE_X_TOOLKIT
1719 XtPopup (f
->output_data
.w32
->widget
, XtGrabNone
);
1721 XMapWindow (FRAME_W32_DISPLAY (f
), FRAME_W32_WINDOW (f
));
1724 XFlush (FRAME_W32_DISPLAY (f
));
1731 x_set_menu_bar_lines (f
, value
, oldval
)
1733 Lisp_Object value
, oldval
;
1736 int olines
= FRAME_MENU_BAR_LINES (f
);
1738 /* Right now, menu bars don't work properly in minibuf-only frames;
1739 most of the commands try to apply themselves to the minibuffer
1740 frame itself, and get an error because you can't switch buffers
1741 in or split the minibuffer window. */
1742 if (FRAME_MINIBUF_ONLY_P (f
))
1745 if (INTEGERP (value
))
1746 nlines
= XINT (value
);
1750 FRAME_MENU_BAR_LINES (f
) = 0;
1752 FRAME_EXTERNAL_MENU_BAR (f
) = 1;
1755 if (FRAME_EXTERNAL_MENU_BAR (f
) == 1)
1756 free_frame_menubar (f
);
1757 FRAME_EXTERNAL_MENU_BAR (f
) = 0;
1759 /* Adjust the frame size so that the client (text) dimensions
1760 remain the same. This depends on FRAME_EXTERNAL_MENU_BAR being
1762 x_set_window_size (f
, 0, FRAME_COLS (f
), FRAME_LINES (f
));
1763 do_pending_window_change (0);
1769 /* Set the number of lines used for the tool bar of frame F to VALUE.
1770 VALUE not an integer, or < 0 means set the lines to zero. OLDVAL
1771 is the old number of tool bar lines. This function changes the
1772 height of all windows on frame F to match the new tool bar height.
1773 The frame's height doesn't change. */
1776 x_set_tool_bar_lines (f
, value
, oldval
)
1778 Lisp_Object value
, oldval
;
1780 int delta
, nlines
, root_height
;
1781 Lisp_Object root_window
;
1783 /* Treat tool bars like menu bars. */
1784 if (FRAME_MINIBUF_ONLY_P (f
))
1787 /* Use VALUE only if an integer >= 0. */
1788 if (INTEGERP (value
) && XINT (value
) >= 0)
1789 nlines
= XFASTINT (value
);
1793 /* Make sure we redisplay all windows in this frame. */
1794 ++windows_or_buffers_changed
;
1796 delta
= nlines
- FRAME_TOOL_BAR_LINES (f
);
1798 /* Don't resize the tool-bar to more than we have room for. */
1799 root_window
= FRAME_ROOT_WINDOW (f
);
1800 root_height
= WINDOW_TOTAL_LINES (XWINDOW (root_window
));
1801 if (root_height
- delta
< 1)
1803 delta
= root_height
- 1;
1804 nlines
= FRAME_TOOL_BAR_LINES (f
) + delta
;
1807 FRAME_TOOL_BAR_LINES (f
) = nlines
;
1808 change_window_heights (root_window
, delta
);
1811 /* We also have to make sure that the internal border at the top of
1812 the frame, below the menu bar or tool bar, is redrawn when the
1813 tool bar disappears. This is so because the internal border is
1814 below the tool bar if one is displayed, but is below the menu bar
1815 if there isn't a tool bar. The tool bar draws into the area
1816 below the menu bar. */
1817 if (FRAME_W32_WINDOW (f
) && FRAME_TOOL_BAR_LINES (f
) == 0)
1821 clear_current_matrices (f
);
1822 updating_frame
= NULL
;
1825 /* If the tool bar gets smaller, the internal border below it
1826 has to be cleared. It was formerly part of the display
1827 of the larger tool bar, and updating windows won't clear it. */
1830 int height
= FRAME_INTERNAL_BORDER_WIDTH (f
);
1831 int width
= FRAME_PIXEL_WIDTH (f
);
1832 int y
= nlines
* FRAME_LINE_HEIGHT (f
);
1836 HDC hdc
= get_frame_dc (f
);
1837 w32_clear_area (f
, hdc
, 0, y
, width
, height
);
1838 release_frame_dc (f
, hdc
);
1842 if (WINDOWP (f
->tool_bar_window
))
1843 clear_glyph_matrix (XWINDOW (f
->tool_bar_window
)->current_matrix
);
1848 /* Change the name of frame F to NAME. If NAME is nil, set F's name to
1851 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1852 name; if NAME is a string, set F's name to NAME and set
1853 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1855 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1856 suggesting a new name, which lisp code should override; if
1857 F->explicit_name is set, ignore the new name; otherwise, set it. */
1860 x_set_name (f
, name
, explicit)
1865 /* Make sure that requests from lisp code override requests from
1866 Emacs redisplay code. */
1869 /* If we're switching from explicit to implicit, we had better
1870 update the mode lines and thereby update the title. */
1871 if (f
->explicit_name
&& NILP (name
))
1872 update_mode_lines
= 1;
1874 f
->explicit_name
= ! NILP (name
);
1876 else if (f
->explicit_name
)
1879 /* If NAME is nil, set the name to the w32_id_name. */
1882 /* Check for no change needed in this very common case
1883 before we do any consing. */
1884 if (!strcmp (FRAME_W32_DISPLAY_INFO (f
)->w32_id_name
,
1887 name
= build_string (FRAME_W32_DISPLAY_INFO (f
)->w32_id_name
);
1890 CHECK_STRING (name
);
1892 /* Don't change the name if it's already NAME. */
1893 if (! NILP (Fstring_equal (name
, f
->name
)))
1898 /* For setting the frame title, the title parameter should override
1899 the name parameter. */
1900 if (! NILP (f
->title
))
1903 if (FRAME_W32_WINDOW (f
))
1905 if (STRING_MULTIBYTE (name
))
1906 name
= ENCODE_SYSTEM (name
);
1909 SetWindowText(FRAME_W32_WINDOW (f
), SDATA (name
));
1914 /* This function should be called when the user's lisp code has
1915 specified a name for the frame; the name will override any set by the
1918 x_explicitly_set_name (f
, arg
, oldval
)
1920 Lisp_Object arg
, oldval
;
1922 x_set_name (f
, arg
, 1);
1925 /* This function should be called by Emacs redisplay code to set the
1926 name; names set this way will never override names set by the user's
1929 x_implicitly_set_name (f
, arg
, oldval
)
1931 Lisp_Object arg
, oldval
;
1933 x_set_name (f
, arg
, 0);
1936 /* Change the title of frame F to NAME.
1937 If NAME is nil, use the frame name as the title.
1939 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1940 name; if NAME is a string, set F's name to NAME and set
1941 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1943 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1944 suggesting a new name, which lisp code should override; if
1945 F->explicit_name is set, ignore the new name; otherwise, set it. */
1948 x_set_title (f
, name
, old_name
)
1950 Lisp_Object name
, old_name
;
1952 /* Don't change the title if it's already NAME. */
1953 if (EQ (name
, f
->title
))
1956 update_mode_lines
= 1;
1963 if (FRAME_W32_WINDOW (f
))
1965 if (STRING_MULTIBYTE (name
))
1966 name
= ENCODE_SYSTEM (name
);
1969 SetWindowText(FRAME_W32_WINDOW (f
), SDATA (name
));
1975 void x_set_scroll_bar_default_width (f
)
1978 int wid
= FRAME_COLUMN_WIDTH (f
);
1980 FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) = GetSystemMetrics (SM_CXVSCROLL
);
1981 FRAME_CONFIG_SCROLL_BAR_COLS (f
) = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) +
1986 /* Subroutines of creating a frame. */
1989 /* Return the value of parameter PARAM.
1991 First search ALIST, then Vdefault_frame_alist, then the X defaults
1992 database, using ATTRIBUTE as the attribute name and CLASS as its class.
1994 Convert the resource to the type specified by desired_type.
1996 If no default is specified, return Qunbound. If you call
1997 w32_get_arg, make sure you deal with Qunbound in a reasonable way,
1998 and don't let it get stored in any Lisp-visible variables! */
2001 w32_get_arg (alist
, param
, attribute
, class, type
)
2002 Lisp_Object alist
, param
;
2005 enum resource_types type
;
2007 return x_get_arg (check_x_display_info (Qnil
),
2008 alist
, param
, attribute
, class, type
);
2013 w32_load_cursor (LPCTSTR name
)
2015 /* Try first to load cursor from application resource. */
2016 Cursor cursor
= LoadImage ((HINSTANCE
) GetModuleHandle(NULL
),
2017 name
, IMAGE_CURSOR
, 0, 0,
2018 LR_DEFAULTCOLOR
| LR_DEFAULTSIZE
| LR_SHARED
);
2021 /* Then try to load a shared predefined cursor. */
2022 cursor
= LoadImage (NULL
, name
, IMAGE_CURSOR
, 0, 0,
2023 LR_DEFAULTCOLOR
| LR_DEFAULTSIZE
| LR_SHARED
);
2028 extern LRESULT CALLBACK
w32_wnd_proc ();
2031 w32_init_class (hinst
)
2036 wc
.style
= CS_HREDRAW
| CS_VREDRAW
;
2037 wc
.lpfnWndProc
= (WNDPROC
) w32_wnd_proc
;
2039 wc
.cbWndExtra
= WND_EXTRA_BYTES
;
2040 wc
.hInstance
= hinst
;
2041 wc
.hIcon
= LoadIcon (hinst
, EMACS_CLASS
);
2042 wc
.hCursor
= w32_load_cursor (IDC_ARROW
);
2043 wc
.hbrBackground
= NULL
; /* GetStockObject (WHITE_BRUSH); */
2044 wc
.lpszMenuName
= NULL
;
2045 wc
.lpszClassName
= EMACS_CLASS
;
2047 return (RegisterClass (&wc
));
2051 w32_createscrollbar (f
, bar
)
2053 struct scroll_bar
* bar
;
2055 return (CreateWindow ("SCROLLBAR", "", SBS_VERT
| WS_CHILD
| WS_VISIBLE
,
2056 /* Position and size of scroll bar. */
2057 XINT(bar
->left
) + VERTICAL_SCROLL_BAR_WIDTH_TRIM
,
2059 XINT(bar
->width
) - VERTICAL_SCROLL_BAR_WIDTH_TRIM
* 2,
2061 FRAME_W32_WINDOW (f
),
2068 w32_createwindow (f
)
2073 Lisp_Object top
= Qunbound
;
2074 Lisp_Object left
= Qunbound
;
2076 rect
.left
= rect
.top
= 0;
2077 rect
.right
= FRAME_PIXEL_WIDTH (f
);
2078 rect
.bottom
= FRAME_PIXEL_HEIGHT (f
);
2080 AdjustWindowRect (&rect
, f
->output_data
.w32
->dwStyle
,
2081 FRAME_EXTERNAL_MENU_BAR (f
));
2083 /* Do first time app init */
2087 w32_init_class (hinst
);
2090 if (f
->size_hint_flags
& USPosition
|| f
->size_hint_flags
& PPosition
)
2092 XSETINT (left
, f
->left_pos
);
2093 XSETINT (top
, f
->top_pos
);
2095 else if (EQ (left
, Qunbound
) && EQ (top
, Qunbound
))
2097 /* When called with RES_TYPE_NUMBER, w32_get_arg will return zero
2098 for anything that is not a number and is not Qunbound. */
2099 left
= w32_get_arg (Qnil
, Qleft
, "left", "Left", RES_TYPE_NUMBER
);
2100 top
= w32_get_arg (Qnil
, Qtop
, "top", "Top", RES_TYPE_NUMBER
);
2103 FRAME_W32_WINDOW (f
) = hwnd
2104 = CreateWindow (EMACS_CLASS
,
2106 f
->output_data
.w32
->dwStyle
| WS_CLIPCHILDREN
,
2107 EQ (left
, Qunbound
) ? CW_USEDEFAULT
: XINT (left
),
2108 EQ (top
, Qunbound
) ? CW_USEDEFAULT
: XINT (top
),
2109 rect
.right
- rect
.left
,
2110 rect
.bottom
- rect
.top
,
2118 SetWindowLong (hwnd
, WND_FONTWIDTH_INDEX
, FRAME_COLUMN_WIDTH (f
));
2119 SetWindowLong (hwnd
, WND_LINEHEIGHT_INDEX
, FRAME_LINE_HEIGHT (f
));
2120 SetWindowLong (hwnd
, WND_BORDER_INDEX
, FRAME_INTERNAL_BORDER_WIDTH (f
));
2121 SetWindowLong (hwnd
, WND_SCROLLBAR_INDEX
, f
->scroll_bar_actual_width
);
2122 SetWindowLong (hwnd
, WND_BACKGROUND_INDEX
, FRAME_BACKGROUND_PIXEL (f
));
2124 /* Enable drag-n-drop. */
2125 DragAcceptFiles (hwnd
, TRUE
);
2127 /* Do this to discard the default setting specified by our parent. */
2128 ShowWindow (hwnd
, SW_HIDE
);
2130 /* Update frame positions. */
2131 GetWindowRect (hwnd
, &rect
);
2132 f
->left_pos
= rect
.left
;
2133 f
->top_pos
= rect
.top
;
2138 my_post_msg (wmsg
, hwnd
, msg
, wParam
, lParam
)
2145 wmsg
->msg
.hwnd
= hwnd
;
2146 wmsg
->msg
.message
= msg
;
2147 wmsg
->msg
.wParam
= wParam
;
2148 wmsg
->msg
.lParam
= lParam
;
2149 wmsg
->msg
.time
= GetMessageTime ();
2154 /* GetKeyState and MapVirtualKey on Windows 95 do not actually distinguish
2155 between left and right keys as advertised. We test for this
2156 support dynamically, and set a flag when the support is absent. If
2157 absent, we keep track of the left and right control and alt keys
2158 ourselves. This is particularly necessary on keyboards that rely
2159 upon the AltGr key, which is represented as having the left control
2160 and right alt keys pressed. For these keyboards, we need to know
2161 when the left alt key has been pressed in addition to the AltGr key
2162 so that we can properly support M-AltGr-key sequences (such as M-@
2163 on Swedish keyboards). */
2165 #define EMACS_LCONTROL 0
2166 #define EMACS_RCONTROL 1
2167 #define EMACS_LMENU 2
2168 #define EMACS_RMENU 3
2170 static int modifiers
[4];
2171 static int modifiers_recorded
;
2172 static int modifier_key_support_tested
;
2175 test_modifier_support (unsigned int wparam
)
2179 if (wparam
!= VK_CONTROL
&& wparam
!= VK_MENU
)
2181 if (wparam
== VK_CONTROL
)
2191 if (!(GetKeyState (l
) & 0x8000) && !(GetKeyState (r
) & 0x8000))
2192 modifiers_recorded
= 1;
2194 modifiers_recorded
= 0;
2195 modifier_key_support_tested
= 1;
2199 record_keydown (unsigned int wparam
, unsigned int lparam
)
2203 if (!modifier_key_support_tested
)
2204 test_modifier_support (wparam
);
2206 if ((wparam
!= VK_CONTROL
&& wparam
!= VK_MENU
) || !modifiers_recorded
)
2209 if (wparam
== VK_CONTROL
)
2210 i
= (lparam
& 0x1000000) ? EMACS_RCONTROL
: EMACS_LCONTROL
;
2212 i
= (lparam
& 0x1000000) ? EMACS_RMENU
: EMACS_LMENU
;
2218 record_keyup (unsigned int wparam
, unsigned int lparam
)
2222 if ((wparam
!= VK_CONTROL
&& wparam
!= VK_MENU
) || !modifiers_recorded
)
2225 if (wparam
== VK_CONTROL
)
2226 i
= (lparam
& 0x1000000) ? EMACS_RCONTROL
: EMACS_LCONTROL
;
2228 i
= (lparam
& 0x1000000) ? EMACS_RMENU
: EMACS_LMENU
;
2233 /* Emacs can lose focus while a modifier key has been pressed. When
2234 it regains focus, be conservative and clear all modifiers since
2235 we cannot reconstruct the left and right modifier state. */
2241 if (GetFocus () == NULL
)
2242 /* Emacs doesn't have keyboard focus. Do nothing. */
2245 ctrl
= GetAsyncKeyState (VK_CONTROL
);
2246 alt
= GetAsyncKeyState (VK_MENU
);
2248 if (!(ctrl
& 0x08000))
2249 /* Clear any recorded control modifier state. */
2250 modifiers
[EMACS_RCONTROL
] = modifiers
[EMACS_LCONTROL
] = 0;
2252 if (!(alt
& 0x08000))
2253 /* Clear any recorded alt modifier state. */
2254 modifiers
[EMACS_RMENU
] = modifiers
[EMACS_LMENU
] = 0;
2256 /* Update the state of all modifier keys, because modifiers used in
2257 hot-key combinations can get stuck on if Emacs loses focus as a
2258 result of a hot-key being pressed. */
2262 #define CURRENT_STATE(key) ((GetAsyncKeyState (key) & 0x8000) >> 8)
2264 GetKeyboardState (keystate
);
2265 keystate
[VK_SHIFT
] = CURRENT_STATE (VK_SHIFT
);
2266 keystate
[VK_CONTROL
] = CURRENT_STATE (VK_CONTROL
);
2267 keystate
[VK_LCONTROL
] = CURRENT_STATE (VK_LCONTROL
);
2268 keystate
[VK_RCONTROL
] = CURRENT_STATE (VK_RCONTROL
);
2269 keystate
[VK_MENU
] = CURRENT_STATE (VK_MENU
);
2270 keystate
[VK_LMENU
] = CURRENT_STATE (VK_LMENU
);
2271 keystate
[VK_RMENU
] = CURRENT_STATE (VK_RMENU
);
2272 keystate
[VK_LWIN
] = CURRENT_STATE (VK_LWIN
);
2273 keystate
[VK_RWIN
] = CURRENT_STATE (VK_RWIN
);
2274 keystate
[VK_APPS
] = CURRENT_STATE (VK_APPS
);
2275 SetKeyboardState (keystate
);
2279 /* Synchronize modifier state with what is reported with the current
2280 keystroke. Even if we cannot distinguish between left and right
2281 modifier keys, we know that, if no modifiers are set, then neither
2282 the left or right modifier should be set. */
2286 if (!modifiers_recorded
)
2289 if (!(GetKeyState (VK_CONTROL
) & 0x8000))
2290 modifiers
[EMACS_RCONTROL
] = modifiers
[EMACS_LCONTROL
] = 0;
2292 if (!(GetKeyState (VK_MENU
) & 0x8000))
2293 modifiers
[EMACS_RMENU
] = modifiers
[EMACS_LMENU
] = 0;
2297 modifier_set (int vkey
)
2299 if (vkey
== VK_CAPITAL
|| vkey
== VK_SCROLL
)
2300 return (GetKeyState (vkey
) & 0x1);
2301 if (!modifiers_recorded
)
2302 return (GetKeyState (vkey
) & 0x8000);
2307 return modifiers
[EMACS_LCONTROL
];
2309 return modifiers
[EMACS_RCONTROL
];
2311 return modifiers
[EMACS_LMENU
];
2313 return modifiers
[EMACS_RMENU
];
2315 return (GetKeyState (vkey
) & 0x8000);
2318 /* Convert between the modifier bits W32 uses and the modifier bits
2322 w32_key_to_modifier (int key
)
2324 Lisp_Object key_mapping
;
2329 key_mapping
= Vw32_lwindow_modifier
;
2332 key_mapping
= Vw32_rwindow_modifier
;
2335 key_mapping
= Vw32_apps_modifier
;
2338 key_mapping
= Vw32_scroll_lock_modifier
;
2344 /* NB. This code runs in the input thread, asychronously to the lisp
2345 thread, so we must be careful to ensure access to lisp data is
2346 thread-safe. The following code is safe because the modifier
2347 variable values are updated atomically from lisp and symbols are
2348 not relocated by GC. Also, we don't have to worry about seeing GC
2350 if (EQ (key_mapping
, Qhyper
))
2351 return hyper_modifier
;
2352 if (EQ (key_mapping
, Qsuper
))
2353 return super_modifier
;
2354 if (EQ (key_mapping
, Qmeta
))
2355 return meta_modifier
;
2356 if (EQ (key_mapping
, Qalt
))
2357 return alt_modifier
;
2358 if (EQ (key_mapping
, Qctrl
))
2359 return ctrl_modifier
;
2360 if (EQ (key_mapping
, Qcontrol
)) /* synonym for ctrl */
2361 return ctrl_modifier
;
2362 if (EQ (key_mapping
, Qshift
))
2363 return shift_modifier
;
2365 /* Don't generate any modifier if not explicitly requested. */
2370 w32_get_modifiers ()
2372 return ((modifier_set (VK_SHIFT
) ? shift_modifier
: 0) |
2373 (modifier_set (VK_CONTROL
) ? ctrl_modifier
: 0) |
2374 (modifier_set (VK_LWIN
) ? w32_key_to_modifier (VK_LWIN
) : 0) |
2375 (modifier_set (VK_RWIN
) ? w32_key_to_modifier (VK_RWIN
) : 0) |
2376 (modifier_set (VK_APPS
) ? w32_key_to_modifier (VK_APPS
) : 0) |
2377 (modifier_set (VK_SCROLL
) ? w32_key_to_modifier (VK_SCROLL
) : 0) |
2378 (modifier_set (VK_MENU
) ?
2379 ((NILP (Vw32_alt_is_meta
)) ? alt_modifier
: meta_modifier
) : 0));
2382 /* We map the VK_* modifiers into console modifier constants
2383 so that we can use the same routines to handle both console
2384 and window input. */
2387 construct_console_modifiers ()
2392 mods
|= (modifier_set (VK_SHIFT
)) ? SHIFT_PRESSED
: 0;
2393 mods
|= (modifier_set (VK_CAPITAL
)) ? CAPSLOCK_ON
: 0;
2394 mods
|= (modifier_set (VK_SCROLL
)) ? SCROLLLOCK_ON
: 0;
2395 mods
|= (modifier_set (VK_NUMLOCK
)) ? NUMLOCK_ON
: 0;
2396 mods
|= (modifier_set (VK_LCONTROL
)) ? LEFT_CTRL_PRESSED
: 0;
2397 mods
|= (modifier_set (VK_RCONTROL
)) ? RIGHT_CTRL_PRESSED
: 0;
2398 mods
|= (modifier_set (VK_LMENU
)) ? LEFT_ALT_PRESSED
: 0;
2399 mods
|= (modifier_set (VK_RMENU
)) ? RIGHT_ALT_PRESSED
: 0;
2400 mods
|= (modifier_set (VK_LWIN
)) ? LEFT_WIN_PRESSED
: 0;
2401 mods
|= (modifier_set (VK_RWIN
)) ? RIGHT_WIN_PRESSED
: 0;
2402 mods
|= (modifier_set (VK_APPS
)) ? APPS_PRESSED
: 0;
2408 w32_get_key_modifiers (unsigned int wparam
, unsigned int lparam
)
2412 /* Convert to emacs modifiers. */
2413 mods
= w32_kbd_mods_to_emacs (construct_console_modifiers (), wparam
);
2419 map_keypad_keys (unsigned int virt_key
, unsigned int extended
)
2421 if (virt_key
< VK_CLEAR
|| virt_key
> VK_DELETE
)
2424 if (virt_key
== VK_RETURN
)
2425 return (extended
? VK_NUMPAD_ENTER
: VK_RETURN
);
2427 if (virt_key
>= VK_PRIOR
&& virt_key
<= VK_DOWN
)
2428 return (!extended
? (VK_NUMPAD_PRIOR
+ (virt_key
- VK_PRIOR
)) : virt_key
);
2430 if (virt_key
== VK_INSERT
|| virt_key
== VK_DELETE
)
2431 return (!extended
? (VK_NUMPAD_INSERT
+ (virt_key
- VK_INSERT
)) : virt_key
);
2433 if (virt_key
== VK_CLEAR
)
2434 return (!extended
? VK_NUMPAD_CLEAR
: virt_key
);
2439 /* List of special key combinations which w32 would normally capture,
2440 but emacs should grab instead. Not directly visible to lisp, to
2441 simplify synchronization. Each item is an integer encoding a virtual
2442 key code and modifier combination to capture. */
2443 Lisp_Object w32_grabbed_keys
;
2445 #define HOTKEY(vk,mods) make_number (((vk) & 255) | ((mods) << 8))
2446 #define HOTKEY_ID(k) (XFASTINT (k) & 0xbfff)
2447 #define HOTKEY_VK_CODE(k) (XFASTINT (k) & 255)
2448 #define HOTKEY_MODIFIERS(k) (XFASTINT (k) >> 8)
2450 #define RAW_HOTKEY_ID(k) ((k) & 0xbfff)
2451 #define RAW_HOTKEY_VK_CODE(k) ((k) & 255)
2452 #define RAW_HOTKEY_MODIFIERS(k) ((k) >> 8)
2454 /* Register hot-keys for reserved key combinations when Emacs has
2455 keyboard focus, since this is the only way Emacs can receive key
2456 combinations like Alt-Tab which are used by the system. */
2459 register_hot_keys (hwnd
)
2462 Lisp_Object keylist
;
2464 /* Use GC_CONSP, since we are called asynchronously. */
2465 for (keylist
= w32_grabbed_keys
; GC_CONSP (keylist
); keylist
= XCDR (keylist
))
2467 Lisp_Object key
= XCAR (keylist
);
2469 /* Deleted entries get set to nil. */
2470 if (!INTEGERP (key
))
2473 RegisterHotKey (hwnd
, HOTKEY_ID (key
),
2474 HOTKEY_MODIFIERS (key
), HOTKEY_VK_CODE (key
));
2479 unregister_hot_keys (hwnd
)
2482 Lisp_Object keylist
;
2484 /* Use GC_CONSP, since we are called asynchronously. */
2485 for (keylist
= w32_grabbed_keys
; GC_CONSP (keylist
); keylist
= XCDR (keylist
))
2487 Lisp_Object key
= XCAR (keylist
);
2489 if (!INTEGERP (key
))
2492 UnregisterHotKey (hwnd
, HOTKEY_ID (key
));
2496 /* Main message dispatch loop. */
2499 w32_msg_pump (deferred_msg
* msg_buf
)
2505 msh_mousewheel
= RegisterWindowMessage (MSH_MOUSEWHEEL
);
2507 while (GetMessage (&msg
, NULL
, 0, 0))
2509 if (msg
.hwnd
== NULL
)
2511 switch (msg
.message
)
2514 /* Produced by complete_deferred_msg; just ignore. */
2516 case WM_EMACS_CREATEWINDOW
:
2517 w32_createwindow ((struct frame
*) msg
.wParam
);
2518 if (!PostThreadMessage (dwMainThreadId
, WM_EMACS_DONE
, 0, 0))
2521 case WM_EMACS_SETLOCALE
:
2522 SetThreadLocale (msg
.wParam
);
2523 /* Reply is not expected. */
2525 case WM_EMACS_SETKEYBOARDLAYOUT
:
2526 result
= (int) ActivateKeyboardLayout ((HKL
) msg
.wParam
, 0);
2527 if (!PostThreadMessage (dwMainThreadId
, WM_EMACS_DONE
,
2531 case WM_EMACS_REGISTER_HOT_KEY
:
2532 focus_window
= GetFocus ();
2533 if (focus_window
!= NULL
)
2534 RegisterHotKey (focus_window
,
2535 RAW_HOTKEY_ID (msg
.wParam
),
2536 RAW_HOTKEY_MODIFIERS (msg
.wParam
),
2537 RAW_HOTKEY_VK_CODE (msg
.wParam
));
2538 /* Reply is not expected. */
2540 case WM_EMACS_UNREGISTER_HOT_KEY
:
2541 focus_window
= GetFocus ();
2542 if (focus_window
!= NULL
)
2543 UnregisterHotKey (focus_window
, RAW_HOTKEY_ID (msg
.wParam
));
2544 /* Mark item as erased. NB: this code must be
2545 thread-safe. The next line is okay because the cons
2546 cell is never made into garbage and is not relocated by
2548 XSETCAR ((Lisp_Object
) ((EMACS_INT
) msg
.lParam
), Qnil
);
2549 if (!PostThreadMessage (dwMainThreadId
, WM_EMACS_DONE
, 0, 0))
2552 case WM_EMACS_TOGGLE_LOCK_KEY
:
2554 int vk_code
= (int) msg
.wParam
;
2555 int cur_state
= (GetKeyState (vk_code
) & 1);
2556 Lisp_Object new_state
= (Lisp_Object
) ((EMACS_INT
) msg
.lParam
);
2558 /* NB: This code must be thread-safe. It is safe to
2559 call NILP because symbols are not relocated by GC,
2560 and pointer here is not touched by GC (so the markbit
2561 can't be set). Numbers are safe because they are
2562 immediate values. */
2563 if (NILP (new_state
)
2564 || (NUMBERP (new_state
)
2565 && ((XUINT (new_state
)) & 1) != cur_state
))
2567 one_w32_display_info
.faked_key
= vk_code
;
2569 keybd_event ((BYTE
) vk_code
,
2570 (BYTE
) MapVirtualKey (vk_code
, 0),
2571 KEYEVENTF_EXTENDEDKEY
| KEYEVENTF_KEYUP
, 0);
2572 keybd_event ((BYTE
) vk_code
,
2573 (BYTE
) MapVirtualKey (vk_code
, 0),
2574 KEYEVENTF_EXTENDEDKEY
| 0, 0);
2575 keybd_event ((BYTE
) vk_code
,
2576 (BYTE
) MapVirtualKey (vk_code
, 0),
2577 KEYEVENTF_EXTENDEDKEY
| KEYEVENTF_KEYUP
, 0);
2578 cur_state
= !cur_state
;
2580 if (!PostThreadMessage (dwMainThreadId
, WM_EMACS_DONE
,
2586 DebPrint (("msg %x not expected by w32_msg_pump\n", msg
.message
));
2591 DispatchMessage (&msg
);
2594 /* Exit nested loop when our deferred message has completed. */
2595 if (msg_buf
->completed
)
2600 deferred_msg
* deferred_msg_head
;
2602 static deferred_msg
*
2603 find_deferred_msg (HWND hwnd
, UINT msg
)
2605 deferred_msg
* item
;
2607 /* Don't actually need synchronization for read access, since
2608 modification of single pointer is always atomic. */
2609 /* enter_crit (); */
2611 for (item
= deferred_msg_head
; item
!= NULL
; item
= item
->next
)
2612 if (item
->w32msg
.msg
.hwnd
== hwnd
2613 && item
->w32msg
.msg
.message
== msg
)
2616 /* leave_crit (); */
2622 send_deferred_msg (deferred_msg
* msg_buf
,
2628 /* Only input thread can send deferred messages. */
2629 if (GetCurrentThreadId () != dwWindowsThreadId
)
2632 /* It is an error to send a message that is already deferred. */
2633 if (find_deferred_msg (hwnd
, msg
) != NULL
)
2636 /* Enforced synchronization is not needed because this is the only
2637 function that alters deferred_msg_head, and the following critical
2638 section is guaranteed to only be serially reentered (since only the
2639 input thread can call us). */
2641 /* enter_crit (); */
2643 msg_buf
->completed
= 0;
2644 msg_buf
->next
= deferred_msg_head
;
2645 deferred_msg_head
= msg_buf
;
2646 my_post_msg (&msg_buf
->w32msg
, hwnd
, msg
, wParam
, lParam
);
2648 /* leave_crit (); */
2650 /* Start a new nested message loop to process other messages until
2651 this one is completed. */
2652 w32_msg_pump (msg_buf
);
2654 deferred_msg_head
= msg_buf
->next
;
2656 return msg_buf
->result
;
2660 complete_deferred_msg (HWND hwnd
, UINT msg
, LRESULT result
)
2662 deferred_msg
* msg_buf
= find_deferred_msg (hwnd
, msg
);
2664 if (msg_buf
== NULL
)
2665 /* Message may have been cancelled, so don't abort(). */
2668 msg_buf
->result
= result
;
2669 msg_buf
->completed
= 1;
2671 /* Ensure input thread is woken so it notices the completion. */
2672 PostThreadMessage (dwWindowsThreadId
, WM_NULL
, 0, 0);
2676 cancel_all_deferred_msgs ()
2678 deferred_msg
* item
;
2680 /* Don't actually need synchronization for read access, since
2681 modification of single pointer is always atomic. */
2682 /* enter_crit (); */
2684 for (item
= deferred_msg_head
; item
!= NULL
; item
= item
->next
)
2687 item
->completed
= 1;
2690 /* leave_crit (); */
2692 /* Ensure input thread is woken so it notices the completion. */
2693 PostThreadMessage (dwWindowsThreadId
, WM_NULL
, 0, 0);
2697 w32_msg_worker (void *arg
)
2700 deferred_msg dummy_buf
;
2702 /* Ensure our message queue is created */
2704 PeekMessage (&msg
, NULL
, 0, 0, PM_NOREMOVE
);
2706 if (!PostThreadMessage (dwMainThreadId
, WM_EMACS_DONE
, 0, 0))
2709 memset (&dummy_buf
, 0, sizeof (dummy_buf
));
2710 dummy_buf
.w32msg
.msg
.hwnd
= NULL
;
2711 dummy_buf
.w32msg
.msg
.message
= WM_NULL
;
2713 /* This is the inital message loop which should only exit when the
2714 application quits. */
2715 w32_msg_pump (&dummy_buf
);
2721 signal_user_input ()
2723 /* Interrupt any lisp that wants to be interrupted by input. */
2724 if (!NILP (Vthrow_on_input
))
2726 Vquit_flag
= Vthrow_on_input
;
2727 /* If we're inside a function that wants immediate quits,
2729 if (immediate_quit
&& NILP (Vinhibit_quit
))
2739 post_character_message (hwnd
, msg
, wParam
, lParam
, modifiers
)
2749 wmsg
.dwModifiers
= modifiers
;
2751 /* Detect quit_char and set quit-flag directly. Note that we
2752 still need to post a message to ensure the main thread will be
2753 woken up if blocked in sys_select(), but we do NOT want to post
2754 the quit_char message itself (because it will usually be as if
2755 the user had typed quit_char twice). Instead, we post a dummy
2756 message that has no particular effect. */
2759 if (isalpha (c
) && wmsg
.dwModifiers
== ctrl_modifier
)
2760 c
= make_ctrl_char (c
) & 0377;
2762 || (wmsg
.dwModifiers
== 0 &&
2763 w32_quit_key
&& wParam
== w32_quit_key
))
2767 /* The choice of message is somewhat arbitrary, as long as
2768 the main thread handler just ignores it. */
2771 /* Interrupt any blocking system calls. */
2774 /* As a safety precaution, forcibly complete any deferred
2775 messages. This is a kludge, but I don't see any particularly
2776 clean way to handle the situation where a deferred message is
2777 "dropped" in the lisp thread, and will thus never be
2778 completed, eg. by the user trying to activate the menubar
2779 when the lisp thread is busy, and then typing C-g when the
2780 menubar doesn't open promptly (with the result that the
2781 menubar never responds at all because the deferred
2782 WM_INITMENU message is never completed). Another problem
2783 situation is when the lisp thread calls SendMessage (to send
2784 a window manager command) when a message has been deferred;
2785 the lisp thread gets blocked indefinitely waiting for the
2786 deferred message to be completed, which itself is waiting for
2787 the lisp thread to respond.
2789 Note that we don't want to block the input thread waiting for
2790 a reponse from the lisp thread (although that would at least
2791 solve the deadlock problem above), because we want to be able
2792 to receive C-g to interrupt the lisp thread. */
2793 cancel_all_deferred_msgs ();
2796 signal_user_input ();
2799 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
2802 /* Main window procedure */
2805 w32_wnd_proc (hwnd
, msg
, wParam
, lParam
)
2812 struct w32_display_info
*dpyinfo
= &one_w32_display_info
;
2814 int windows_translate
;
2817 /* Note that it is okay to call x_window_to_frame, even though we are
2818 not running in the main lisp thread, because frame deletion
2819 requires the lisp thread to synchronize with this thread. Thus, if
2820 a frame struct is returned, it can be used without concern that the
2821 lisp thread might make it disappear while we are using it.
2823 NB. Walking the frame list in this thread is safe (as long as
2824 writes of Lisp_Object slots are atomic, which they are on Windows).
2825 Although delete-frame can destructively modify the frame list while
2826 we are walking it, a garbage collection cannot occur until after
2827 delete-frame has synchronized with this thread.
2829 It is also safe to use functions that make GDI calls, such as
2830 w32_clear_rect, because these functions must obtain a DC handle
2831 from the frame struct using get_frame_dc which is thread-aware. */
2836 f
= x_window_to_frame (dpyinfo
, hwnd
);
2839 HDC hdc
= get_frame_dc (f
);
2840 GetUpdateRect (hwnd
, &wmsg
.rect
, FALSE
);
2841 w32_clear_rect (f
, hdc
, &wmsg
.rect
);
2842 release_frame_dc (f
, hdc
);
2844 #if defined (W32_DEBUG_DISPLAY)
2845 DebPrint (("WM_ERASEBKGND (frame %p): erasing %d,%d-%d,%d\n",
2847 wmsg
.rect
.left
, wmsg
.rect
.top
,
2848 wmsg
.rect
.right
, wmsg
.rect
.bottom
));
2849 #endif /* W32_DEBUG_DISPLAY */
2852 case WM_PALETTECHANGED
:
2853 /* ignore our own changes */
2854 if ((HWND
)wParam
!= hwnd
)
2856 f
= x_window_to_frame (dpyinfo
, hwnd
);
2858 /* get_frame_dc will realize our palette and force all
2859 frames to be redrawn if needed. */
2860 release_frame_dc (f
, get_frame_dc (f
));
2865 PAINTSTRUCT paintStruct
;
2867 bzero (&update_rect
, sizeof (update_rect
));
2869 f
= x_window_to_frame (dpyinfo
, hwnd
);
2872 DebPrint (("WM_PAINT received for unknown window %p\n", hwnd
));
2876 /* MSDN Docs say not to call BeginPaint if GetUpdateRect
2877 fails. Apparently this can happen under some
2879 if (GetUpdateRect (hwnd
, &update_rect
, FALSE
) || !w32_strict_painting
)
2882 BeginPaint (hwnd
, &paintStruct
);
2884 /* The rectangles returned by GetUpdateRect and BeginPaint
2885 do not always match. Play it safe by assuming both areas
2887 UnionRect (&(wmsg
.rect
), &update_rect
, &(paintStruct
.rcPaint
));
2889 #if defined (W32_DEBUG_DISPLAY)
2890 DebPrint (("WM_PAINT (frame %p): painting %d,%d-%d,%d\n",
2892 wmsg
.rect
.left
, wmsg
.rect
.top
,
2893 wmsg
.rect
.right
, wmsg
.rect
.bottom
));
2894 DebPrint ((" [update region is %d,%d-%d,%d]\n",
2895 update_rect
.left
, update_rect
.top
,
2896 update_rect
.right
, update_rect
.bottom
));
2898 EndPaint (hwnd
, &paintStruct
);
2901 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
2906 /* If GetUpdateRect returns 0 (meaning there is no update
2907 region), assume the whole window needs to be repainted. */
2908 GetClientRect(hwnd
, &wmsg
.rect
);
2909 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
2913 case WM_INPUTLANGCHANGE
:
2914 /* Inform lisp thread of keyboard layout changes. */
2915 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
2917 /* Clear dead keys in the keyboard state; for simplicity only
2918 preserve modifier key states. */
2923 GetKeyboardState (keystate
);
2924 for (i
= 0; i
< 256; i
++)
2941 SetKeyboardState (keystate
);
2946 /* Synchronize hot keys with normal input. */
2947 PostMessage (hwnd
, WM_KEYDOWN
, HIWORD (lParam
), 0);
2952 record_keyup (wParam
, lParam
);
2957 /* Ignore keystrokes we fake ourself; see below. */
2958 if (dpyinfo
->faked_key
== wParam
)
2960 dpyinfo
->faked_key
= 0;
2961 /* Make sure TranslateMessage sees them though (as long as
2962 they don't produce WM_CHAR messages). This ensures that
2963 indicator lights are toggled promptly on Windows 9x, for
2965 if (lispy_function_keys
[wParam
] != 0)
2967 windows_translate
= 1;
2973 /* Synchronize modifiers with current keystroke. */
2975 record_keydown (wParam
, lParam
);
2976 wParam
= map_keypad_keys (wParam
, (lParam
& 0x1000000L
) != 0);
2978 windows_translate
= 0;
2983 if (NILP (Vw32_pass_lwindow_to_system
))
2985 /* Prevent system from acting on keyup (which opens the
2986 Start menu if no other key was pressed) by simulating a
2987 press of Space which we will ignore. */
2988 if (GetAsyncKeyState (wParam
) & 1)
2990 if (NUMBERP (Vw32_phantom_key_code
))
2991 key
= XUINT (Vw32_phantom_key_code
) & 255;
2994 dpyinfo
->faked_key
= key
;
2995 keybd_event (key
, (BYTE
) MapVirtualKey (key
, 0), 0, 0);
2998 if (!NILP (Vw32_lwindow_modifier
))
3002 if (NILP (Vw32_pass_rwindow_to_system
))
3004 if (GetAsyncKeyState (wParam
) & 1)
3006 if (NUMBERP (Vw32_phantom_key_code
))
3007 key
= XUINT (Vw32_phantom_key_code
) & 255;
3010 dpyinfo
->faked_key
= key
;
3011 keybd_event (key
, (BYTE
) MapVirtualKey (key
, 0), 0, 0);
3014 if (!NILP (Vw32_rwindow_modifier
))
3018 if (!NILP (Vw32_apps_modifier
))
3022 if (NILP (Vw32_pass_alt_to_system
))
3023 /* Prevent DefWindowProc from activating the menu bar if an
3024 Alt key is pressed and released by itself. */
3026 windows_translate
= 1;
3029 /* Decide whether to treat as modifier or function key. */
3030 if (NILP (Vw32_enable_caps_lock
))
3031 goto disable_lock_key
;
3032 windows_translate
= 1;
3035 /* Decide whether to treat as modifier or function key. */
3036 if (NILP (Vw32_enable_num_lock
))
3037 goto disable_lock_key
;
3038 windows_translate
= 1;
3041 /* Decide whether to treat as modifier or function key. */
3042 if (NILP (Vw32_scroll_lock_modifier
))
3043 goto disable_lock_key
;
3044 windows_translate
= 1;
3047 /* Ensure the appropriate lock key state (and indicator light)
3048 remains in the same state. We do this by faking another
3049 press of the relevant key. Apparently, this really is the
3050 only way to toggle the state of the indicator lights. */
3051 dpyinfo
->faked_key
= wParam
;
3052 keybd_event ((BYTE
) wParam
, (BYTE
) MapVirtualKey (wParam
, 0),
3053 KEYEVENTF_EXTENDEDKEY
| KEYEVENTF_KEYUP
, 0);
3054 keybd_event ((BYTE
) wParam
, (BYTE
) MapVirtualKey (wParam
, 0),
3055 KEYEVENTF_EXTENDEDKEY
| 0, 0);
3056 keybd_event ((BYTE
) wParam
, (BYTE
) MapVirtualKey (wParam
, 0),
3057 KEYEVENTF_EXTENDEDKEY
| KEYEVENTF_KEYUP
, 0);
3058 /* Ensure indicator lights are updated promptly on Windows 9x
3059 (TranslateMessage apparently does this), after forwarding
3061 post_character_message (hwnd
, msg
, wParam
, lParam
,
3062 w32_get_key_modifiers (wParam
, lParam
));
3063 windows_translate
= 1;
3067 case VK_PROCESSKEY
: /* Generated by IME. */
3068 windows_translate
= 1;
3071 /* Windows maps Ctrl-Pause (aka Ctrl-Break) into VK_CANCEL,
3072 which is confusing for purposes of key binding; convert
3073 VK_CANCEL events into VK_PAUSE events. */
3077 /* Windows maps Ctrl-NumLock into VK_PAUSE, which is confusing
3078 for purposes of key binding; convert these back into
3079 VK_NUMLOCK events, at least when we want to see NumLock key
3080 presses. (Note that there is never any possibility that
3081 VK_PAUSE with Ctrl really is C-Pause as per above.) */
3082 if (NILP (Vw32_enable_num_lock
) && modifier_set (VK_CONTROL
))
3083 wParam
= VK_NUMLOCK
;
3086 /* If not defined as a function key, change it to a WM_CHAR message. */
3087 if (lispy_function_keys
[wParam
] == 0)
3089 DWORD modifiers
= construct_console_modifiers ();
3091 if (!NILP (Vw32_recognize_altgr
)
3092 && modifier_set (VK_LCONTROL
) && modifier_set (VK_RMENU
))
3094 /* Always let TranslateMessage handle AltGr key chords;
3095 for some reason, ToAscii doesn't always process AltGr
3096 chords correctly. */
3097 windows_translate
= 1;
3099 else if ((modifiers
& (~SHIFT_PRESSED
& ~CAPSLOCK_ON
)) != 0)
3101 /* Handle key chords including any modifiers other
3102 than shift directly, in order to preserve as much
3103 modifier information as possible. */
3104 if ('A' <= wParam
&& wParam
<= 'Z')
3106 /* Don't translate modified alphabetic keystrokes,
3107 so the user doesn't need to constantly switch
3108 layout to type control or meta keystrokes when
3109 the normal layout translates alphabetic
3110 characters to non-ascii characters. */
3111 if (!modifier_set (VK_SHIFT
))
3112 wParam
+= ('a' - 'A');
3117 /* Try to handle other keystrokes by determining the
3118 base character (ie. translating the base key plus
3122 KEY_EVENT_RECORD key
;
3124 key
.bKeyDown
= TRUE
;
3125 key
.wRepeatCount
= 1;
3126 key
.wVirtualKeyCode
= wParam
;
3127 key
.wVirtualScanCode
= (lParam
& 0xFF0000) >> 16;
3128 key
.uChar
.AsciiChar
= 0;
3129 key
.dwControlKeyState
= modifiers
;
3131 add
= w32_kbd_patch_key (&key
);
3132 /* 0 means an unrecognised keycode, negative means
3133 dead key. Ignore both. */
3136 /* Forward asciified character sequence. */
3137 post_character_message
3138 (hwnd
, WM_CHAR
, key
.uChar
.AsciiChar
, lParam
,
3139 w32_get_key_modifiers (wParam
, lParam
));
3140 w32_kbd_patch_key (&key
);
3147 /* Let TranslateMessage handle everything else. */
3148 windows_translate
= 1;
3154 if (windows_translate
)
3156 MSG windows_msg
= { hwnd
, msg
, wParam
, lParam
, 0, {0,0} };
3158 windows_msg
.time
= GetMessageTime ();
3159 TranslateMessage (&windows_msg
);
3167 post_character_message (hwnd
, msg
, wParam
, lParam
,
3168 w32_get_key_modifiers (wParam
, lParam
));
3171 /* Simulate middle mouse button events when left and right buttons
3172 are used together, but only if user has two button mouse. */
3173 case WM_LBUTTONDOWN
:
3174 case WM_RBUTTONDOWN
:
3175 if (w32_num_mouse_buttons
> 2)
3176 goto handle_plain_button
;
3179 int this = (msg
== WM_LBUTTONDOWN
) ? LMOUSE
: RMOUSE
;
3180 int other
= (msg
== WM_LBUTTONDOWN
) ? RMOUSE
: LMOUSE
;
3182 if (button_state
& this)
3185 if (button_state
== 0)
3188 button_state
|= this;
3190 if (button_state
& other
)
3192 if (mouse_button_timer
)
3194 KillTimer (hwnd
, mouse_button_timer
);
3195 mouse_button_timer
= 0;
3197 /* Generate middle mouse event instead. */
3198 msg
= WM_MBUTTONDOWN
;
3199 button_state
|= MMOUSE
;
3201 else if (button_state
& MMOUSE
)
3203 /* Ignore button event if we've already generated a
3204 middle mouse down event. This happens if the
3205 user releases and press one of the two buttons
3206 after we've faked a middle mouse event. */
3211 /* Flush out saved message. */
3212 post_msg (&saved_mouse_button_msg
);
3214 wmsg
.dwModifiers
= w32_get_modifiers ();
3215 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
3216 signal_user_input ();
3218 /* Clear message buffer. */
3219 saved_mouse_button_msg
.msg
.hwnd
= 0;
3223 /* Hold onto message for now. */
3224 mouse_button_timer
=
3225 SetTimer (hwnd
, MOUSE_BUTTON_ID
,
3226 w32_mouse_button_tolerance
, NULL
);
3227 saved_mouse_button_msg
.msg
.hwnd
= hwnd
;
3228 saved_mouse_button_msg
.msg
.message
= msg
;
3229 saved_mouse_button_msg
.msg
.wParam
= wParam
;
3230 saved_mouse_button_msg
.msg
.lParam
= lParam
;
3231 saved_mouse_button_msg
.msg
.time
= GetMessageTime ();
3232 saved_mouse_button_msg
.dwModifiers
= w32_get_modifiers ();
3239 if (w32_num_mouse_buttons
> 2)
3240 goto handle_plain_button
;
3243 int this = (msg
== WM_LBUTTONUP
) ? LMOUSE
: RMOUSE
;
3244 int other
= (msg
== WM_LBUTTONUP
) ? RMOUSE
: LMOUSE
;
3246 if ((button_state
& this) == 0)
3249 button_state
&= ~this;
3251 if (button_state
& MMOUSE
)
3253 /* Only generate event when second button is released. */
3254 if ((button_state
& other
) == 0)
3257 button_state
&= ~MMOUSE
;
3259 if (button_state
) abort ();
3266 /* Flush out saved message if necessary. */
3267 if (saved_mouse_button_msg
.msg
.hwnd
)
3269 post_msg (&saved_mouse_button_msg
);
3272 wmsg
.dwModifiers
= w32_get_modifiers ();
3273 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
3274 signal_user_input ();
3276 /* Always clear message buffer and cancel timer. */
3277 saved_mouse_button_msg
.msg
.hwnd
= 0;
3278 KillTimer (hwnd
, mouse_button_timer
);
3279 mouse_button_timer
= 0;
3281 if (button_state
== 0)
3286 case WM_XBUTTONDOWN
:
3288 if (w32_pass_extra_mouse_buttons_to_system
)
3290 /* else fall through and process them. */
3291 case WM_MBUTTONDOWN
:
3293 handle_plain_button
:
3298 /* Ignore middle and extra buttons as long as the menu is active. */
3299 f
= x_window_to_frame (dpyinfo
, hwnd
);
3300 if (f
&& f
->output_data
.w32
->menubar_active
)
3303 if (parse_button (msg
, HIWORD (wParam
), &button
, &up
))
3305 if (up
) ReleaseCapture ();
3306 else SetCapture (hwnd
);
3307 button
= (button
== 0) ? LMOUSE
:
3308 ((button
== 1) ? MMOUSE
: RMOUSE
);
3310 button_state
&= ~button
;
3312 button_state
|= button
;
3316 wmsg
.dwModifiers
= w32_get_modifiers ();
3317 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
3318 signal_user_input ();
3320 /* Need to return true for XBUTTON messages, false for others,
3321 to indicate that we processed the message. */
3322 return (msg
== WM_XBUTTONDOWN
|| msg
== WM_XBUTTONUP
);
3325 /* Ignore mouse movements as long as the menu is active. These
3326 movements are processed by the window manager anyway, and
3327 it's wrong to handle them as if they happened on the
3328 underlying frame. */
3329 f
= x_window_to_frame (dpyinfo
, hwnd
);
3330 if (f
&& f
->output_data
.w32
->menubar_active
)
3333 /* If the mouse has just moved into the frame, start tracking
3334 it, so we will be notified when it leaves the frame. Mouse
3335 tracking only works under W98 and NT4 and later. On earlier
3336 versions, there is no way of telling when the mouse leaves the
3337 frame, so we just have to put up with help-echo and mouse
3338 highlighting remaining while the frame is not active. */
3339 if (track_mouse_event_fn
&& !track_mouse_window
)
3341 TRACKMOUSEEVENT tme
;
3342 tme
.cbSize
= sizeof (tme
);
3343 tme
.dwFlags
= TME_LEAVE
;
3344 tme
.hwndTrack
= hwnd
;
3346 track_mouse_event_fn (&tme
);
3347 track_mouse_window
= hwnd
;
3350 if (w32_mouse_move_interval
<= 0
3351 || (msg
== WM_MOUSEMOVE
&& button_state
== 0))
3353 wmsg
.dwModifiers
= w32_get_modifiers ();
3354 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
3358 /* Hang onto mouse move and scroll messages for a bit, to avoid
3359 sending such events to Emacs faster than it can process them.
3360 If we get more events before the timer from the first message
3361 expires, we just replace the first message. */
3363 if (saved_mouse_move_msg
.msg
.hwnd
== 0)
3365 SetTimer (hwnd
, MOUSE_MOVE_ID
,
3366 w32_mouse_move_interval
, NULL
);
3368 /* Hold onto message for now. */
3369 saved_mouse_move_msg
.msg
.hwnd
= hwnd
;
3370 saved_mouse_move_msg
.msg
.message
= msg
;
3371 saved_mouse_move_msg
.msg
.wParam
= wParam
;
3372 saved_mouse_move_msg
.msg
.lParam
= lParam
;
3373 saved_mouse_move_msg
.msg
.time
= GetMessageTime ();
3374 saved_mouse_move_msg
.dwModifiers
= w32_get_modifiers ();
3379 wmsg
.dwModifiers
= w32_get_modifiers ();
3380 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
3381 signal_user_input ();
3385 wmsg
.dwModifiers
= w32_get_modifiers ();
3386 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
3387 signal_user_input ();
3391 /* Flush out saved messages if necessary. */
3392 if (wParam
== mouse_button_timer
)
3394 if (saved_mouse_button_msg
.msg
.hwnd
)
3396 post_msg (&saved_mouse_button_msg
);
3397 signal_user_input ();
3398 saved_mouse_button_msg
.msg
.hwnd
= 0;
3400 KillTimer (hwnd
, mouse_button_timer
);
3401 mouse_button_timer
= 0;
3403 else if (wParam
== mouse_move_timer
)
3405 if (saved_mouse_move_msg
.msg
.hwnd
)
3407 post_msg (&saved_mouse_move_msg
);
3408 saved_mouse_move_msg
.msg
.hwnd
= 0;
3410 KillTimer (hwnd
, mouse_move_timer
);
3411 mouse_move_timer
= 0;
3413 else if (wParam
== menu_free_timer
)
3415 KillTimer (hwnd
, menu_free_timer
);
3416 menu_free_timer
= 0;
3417 f
= x_window_to_frame (dpyinfo
, hwnd
);
3418 /* If a popup menu is active, don't wipe its strings. */
3420 && current_popup_menu
== NULL
)
3422 /* Free memory used by owner-drawn and help-echo strings. */
3423 w32_free_menu_strings (hwnd
);
3424 f
->output_data
.w32
->menubar_active
= 0;
3431 /* Windows doesn't send us focus messages when putting up and
3432 taking down a system popup dialog as for Ctrl-Alt-Del on Windows 95.
3433 The only indication we get that something happened is receiving
3434 this message afterwards. So this is a good time to reset our
3435 keyboard modifiers' state. */
3442 /* We must ensure menu bar is fully constructed and up to date
3443 before allowing user interaction with it. To achieve this
3444 we send this message to the lisp thread and wait for a
3445 reply (whose value is not actually needed) to indicate that
3446 the menu bar is now ready for use, so we can now return.
3448 To remain responsive in the meantime, we enter a nested message
3449 loop that can process all other messages.
3451 However, we skip all this if the message results from calling
3452 TrackPopupMenu - in fact, we must NOT attempt to send the lisp
3453 thread a message because it is blocked on us at this point. We
3454 set menubar_active before calling TrackPopupMenu to indicate
3455 this (there is no possibility of confusion with real menubar
3458 f
= x_window_to_frame (dpyinfo
, hwnd
);
3460 && (f
->output_data
.w32
->menubar_active
3461 /* We can receive this message even in the absence of a
3462 menubar (ie. when the system menu is activated) - in this
3463 case we do NOT want to forward the message, otherwise it
3464 will cause the menubar to suddenly appear when the user
3465 had requested it to be turned off! */
3466 || f
->output_data
.w32
->menubar_widget
== NULL
))
3470 deferred_msg msg_buf
;
3472 /* Detect if message has already been deferred; in this case
3473 we cannot return any sensible value to ignore this. */
3474 if (find_deferred_msg (hwnd
, msg
) != NULL
)
3479 return send_deferred_msg (&msg_buf
, hwnd
, msg
, wParam
, lParam
);
3482 case WM_EXITMENULOOP
:
3483 f
= x_window_to_frame (dpyinfo
, hwnd
);
3485 /* If a menu is still active, check again after a short delay,
3486 since Windows often (always?) sends the WM_EXITMENULOOP
3487 before the corresponding WM_COMMAND message.
3488 Don't do this if a popup menu is active, since it is only
3489 menubar menus that require cleaning up in this way.
3491 if (f
&& menubar_in_use
&& current_popup_menu
== NULL
)
3492 menu_free_timer
= SetTimer (hwnd
, MENU_FREE_ID
, MENU_FREE_DELAY
, NULL
);
3496 /* Direct handling of help_echo in menus. Should be safe now
3497 that we generate the help_echo by placing a help event in the
3500 HMENU menu
= (HMENU
) lParam
;
3501 UINT menu_item
= (UINT
) LOWORD (wParam
);
3502 UINT flags
= (UINT
) HIWORD (wParam
);
3504 w32_menu_display_help (hwnd
, menu
, menu_item
, flags
);
3508 case WM_MEASUREITEM
:
3509 f
= x_window_to_frame (dpyinfo
, hwnd
);
3512 MEASUREITEMSTRUCT
* pMis
= (MEASUREITEMSTRUCT
*) lParam
;
3514 if (pMis
->CtlType
== ODT_MENU
)
3516 /* Work out dimensions for popup menu titles. */
3517 char * title
= (char *) pMis
->itemData
;
3518 HDC hdc
= GetDC (hwnd
);
3519 HFONT menu_font
= GetCurrentObject (hdc
, OBJ_FONT
);
3520 LOGFONT menu_logfont
;
3524 GetObject (menu_font
, sizeof (menu_logfont
), &menu_logfont
);
3525 menu_logfont
.lfWeight
= FW_BOLD
;
3526 menu_font
= CreateFontIndirect (&menu_logfont
);
3527 old_font
= SelectObject (hdc
, menu_font
);
3529 pMis
->itemHeight
= GetSystemMetrics (SM_CYMENUSIZE
);
3532 if (unicode_append_menu
)
3533 GetTextExtentPoint32W (hdc
, (WCHAR
*) title
,
3534 wcslen ((WCHAR
*) title
),
3537 GetTextExtentPoint32 (hdc
, title
, strlen (title
), &size
);
3539 pMis
->itemWidth
= size
.cx
;
3540 if (pMis
->itemHeight
< size
.cy
)
3541 pMis
->itemHeight
= size
.cy
;
3544 pMis
->itemWidth
= 0;
3546 SelectObject (hdc
, old_font
);
3547 DeleteObject (menu_font
);
3548 ReleaseDC (hwnd
, hdc
);
3555 f
= x_window_to_frame (dpyinfo
, hwnd
);
3558 DRAWITEMSTRUCT
* pDis
= (DRAWITEMSTRUCT
*) lParam
;
3560 if (pDis
->CtlType
== ODT_MENU
)
3562 /* Draw popup menu title. */
3563 char * title
= (char *) pDis
->itemData
;
3566 HDC hdc
= pDis
->hDC
;
3567 HFONT menu_font
= GetCurrentObject (hdc
, OBJ_FONT
);
3568 LOGFONT menu_logfont
;
3571 GetObject (menu_font
, sizeof (menu_logfont
), &menu_logfont
);
3572 menu_logfont
.lfWeight
= FW_BOLD
;
3573 menu_font
= CreateFontIndirect (&menu_logfont
);
3574 old_font
= SelectObject (hdc
, menu_font
);
3576 /* Always draw title as if not selected. */
3577 if (unicode_append_menu
)
3580 + GetSystemMetrics (SM_CXMENUCHECK
),
3582 ETO_OPAQUE
, &pDis
->rcItem
,
3584 wcslen ((WCHAR
*) title
), NULL
);
3588 + GetSystemMetrics (SM_CXMENUCHECK
),
3590 ETO_OPAQUE
, &pDis
->rcItem
,
3591 title
, strlen (title
), NULL
);
3593 SelectObject (hdc
, old_font
);
3594 DeleteObject (menu_font
);
3602 /* Still not right - can't distinguish between clicks in the
3603 client area of the frame from clicks forwarded from the scroll
3604 bars - may have to hook WM_NCHITTEST to remember the mouse
3605 position and then check if it is in the client area ourselves. */
3606 case WM_MOUSEACTIVATE
:
3607 /* Discard the mouse click that activates a frame, allowing the
3608 user to click anywhere without changing point (or worse!).
3609 Don't eat mouse clicks on scrollbars though!! */
3610 if (LOWORD (lParam
) == HTCLIENT
)
3611 return MA_ACTIVATEANDEAT
;
3616 /* No longer tracking mouse. */
3617 track_mouse_window
= NULL
;
3619 case WM_ACTIVATEAPP
:
3621 case WM_WINDOWPOSCHANGED
:
3623 /* Inform lisp thread that a frame might have just been obscured
3624 or exposed, so should recheck visibility of all frames. */
3625 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
3629 dpyinfo
->faked_key
= 0;
3631 register_hot_keys (hwnd
);
3634 unregister_hot_keys (hwnd
);
3637 /* Relinquish the system caret. */
3638 if (w32_system_caret_hwnd
)
3640 w32_visible_system_caret_hwnd
= NULL
;
3641 w32_system_caret_hwnd
= NULL
;
3647 f
= x_window_to_frame (dpyinfo
, hwnd
);
3648 if (f
&& HIWORD (wParam
) == 0)
3650 if (menu_free_timer
)
3652 KillTimer (hwnd
, menu_free_timer
);
3653 menu_free_timer
= 0;
3659 wmsg
.dwModifiers
= w32_get_modifiers ();
3660 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
3664 wmsg
.dwModifiers
= w32_get_modifiers ();
3665 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
3668 case WM_WINDOWPOSCHANGING
:
3669 /* Don't restrict the sizing of tip frames. */
3670 if (hwnd
== tip_window
)
3674 LPWINDOWPOS lppos
= (WINDOWPOS
*) lParam
;
3676 wp
.length
= sizeof (WINDOWPLACEMENT
);
3677 GetWindowPlacement (hwnd
, &wp
);
3679 if (wp
.showCmd
!= SW_SHOWMINIMIZED
&& (lppos
->flags
& SWP_NOSIZE
) == 0)
3686 DWORD internal_border
;
3687 DWORD scrollbar_extra
;
3690 wp
.length
= sizeof(wp
);
3691 GetWindowRect (hwnd
, &wr
);
3695 font_width
= GetWindowLong (hwnd
, WND_FONTWIDTH_INDEX
);
3696 line_height
= GetWindowLong (hwnd
, WND_LINEHEIGHT_INDEX
);
3697 internal_border
= GetWindowLong (hwnd
, WND_BORDER_INDEX
);
3698 scrollbar_extra
= GetWindowLong (hwnd
, WND_SCROLLBAR_INDEX
);
3702 memset (&rect
, 0, sizeof (rect
));
3703 AdjustWindowRect (&rect
, GetWindowLong (hwnd
, GWL_STYLE
),
3704 GetMenu (hwnd
) != NULL
);
3706 /* Force width and height of client area to be exact
3707 multiples of the character cell dimensions. */
3708 wdiff
= (lppos
->cx
- (rect
.right
- rect
.left
)
3709 - 2 * internal_border
- scrollbar_extra
)
3711 hdiff
= (lppos
->cy
- (rect
.bottom
- rect
.top
)
3712 - 2 * internal_border
)
3717 /* For right/bottom sizing we can just fix the sizes.
3718 However for top/left sizing we will need to fix the X
3719 and Y positions as well. */
3721 int cx_mintrack
= GetSystemMetrics (SM_CXMINTRACK
);
3722 int cy_mintrack
= GetSystemMetrics (SM_CYMINTRACK
);
3724 lppos
->cx
= max (lppos
->cx
- wdiff
, cx_mintrack
);
3725 lppos
->cy
= max (lppos
->cy
- hdiff
, cy_mintrack
);
3727 if (wp
.showCmd
!= SW_SHOWMAXIMIZED
3728 && (lppos
->flags
& SWP_NOMOVE
) == 0)
3730 if (lppos
->x
!= wr
.left
|| lppos
->y
!= wr
.top
)
3737 lppos
->flags
|= SWP_NOMOVE
;
3748 case WM_GETMINMAXINFO
:
3749 /* Hack to allow resizing the Emacs frame above the screen size.
3750 Note that Windows 9x limits coordinates to 16-bits. */
3751 ((LPMINMAXINFO
) lParam
)->ptMaxTrackSize
.x
= 32767;
3752 ((LPMINMAXINFO
) lParam
)->ptMaxTrackSize
.y
= 32767;
3756 if (LOWORD (lParam
) == HTCLIENT
)
3761 case WM_EMACS_SETCURSOR
:
3763 Cursor cursor
= (Cursor
) wParam
;
3769 case WM_EMACS_CREATESCROLLBAR
:
3770 return (LRESULT
) w32_createscrollbar ((struct frame
*) wParam
,
3771 (struct scroll_bar
*) lParam
);
3773 case WM_EMACS_SHOWWINDOW
:
3774 return ShowWindow ((HWND
) wParam
, (WPARAM
) lParam
);
3776 case WM_EMACS_SETFOREGROUND
:
3778 HWND foreground_window
;
3779 DWORD foreground_thread
, retval
;
3781 /* On NT 5.0, and apparently Windows 98, it is necessary to
3782 attach to the thread that currently has focus in order to
3783 pull the focus away from it. */
3784 foreground_window
= GetForegroundWindow ();
3785 foreground_thread
= GetWindowThreadProcessId (foreground_window
, NULL
);
3786 if (!foreground_window
3787 || foreground_thread
== GetCurrentThreadId ()
3788 || !AttachThreadInput (GetCurrentThreadId (),
3789 foreground_thread
, TRUE
))
3790 foreground_thread
= 0;
3792 retval
= SetForegroundWindow ((HWND
) wParam
);
3794 /* Detach from the previous foreground thread. */
3795 if (foreground_thread
)
3796 AttachThreadInput (GetCurrentThreadId (),
3797 foreground_thread
, FALSE
);
3802 case WM_EMACS_SETWINDOWPOS
:
3804 WINDOWPOS
* pos
= (WINDOWPOS
*) wParam
;
3805 return SetWindowPos (hwnd
, pos
->hwndInsertAfter
,
3806 pos
->x
, pos
->y
, pos
->cx
, pos
->cy
, pos
->flags
);
3809 case WM_EMACS_DESTROYWINDOW
:
3810 DragAcceptFiles ((HWND
) wParam
, FALSE
);
3811 return DestroyWindow ((HWND
) wParam
);
3813 case WM_EMACS_HIDE_CARET
:
3814 return HideCaret (hwnd
);
3816 case WM_EMACS_SHOW_CARET
:
3817 return ShowCaret (hwnd
);
3819 case WM_EMACS_DESTROY_CARET
:
3820 w32_system_caret_hwnd
= NULL
;
3821 w32_visible_system_caret_hwnd
= NULL
;
3822 return DestroyCaret ();
3824 case WM_EMACS_TRACK_CARET
:
3825 /* If there is currently no system caret, create one. */
3826 if (w32_system_caret_hwnd
== NULL
)
3828 /* Use the default caret width, and avoid changing it
3829 unneccesarily, as it confuses screen reader software. */
3830 w32_system_caret_hwnd
= hwnd
;
3831 CreateCaret (hwnd
, NULL
, 0,
3832 w32_system_caret_height
);
3835 if (!SetCaretPos (w32_system_caret_x
, w32_system_caret_y
))
3837 /* Ensure visible caret gets turned on when requested. */
3838 else if (w32_use_visible_system_caret
3839 && w32_visible_system_caret_hwnd
!= hwnd
)
3841 w32_visible_system_caret_hwnd
= hwnd
;
3842 return ShowCaret (hwnd
);
3844 /* Ensure visible caret gets turned off when requested. */
3845 else if (!w32_use_visible_system_caret
3846 && w32_visible_system_caret_hwnd
)
3848 w32_visible_system_caret_hwnd
= NULL
;
3849 return HideCaret (hwnd
);
3854 case WM_EMACS_TRACKPOPUPMENU
:
3859 pos
= (POINT
*)lParam
;
3860 flags
= TPM_CENTERALIGN
;
3861 if (button_state
& LMOUSE
)
3862 flags
|= TPM_LEFTBUTTON
;
3863 else if (button_state
& RMOUSE
)
3864 flags
|= TPM_RIGHTBUTTON
;
3866 /* Remember we did a SetCapture on the initial mouse down event,
3867 so for safety, we make sure the capture is cancelled now. */
3871 /* Use menubar_active to indicate that WM_INITMENU is from
3872 TrackPopupMenu below, and should be ignored. */
3873 f
= x_window_to_frame (dpyinfo
, hwnd
);
3875 f
->output_data
.w32
->menubar_active
= 1;
3877 if (TrackPopupMenu ((HMENU
)wParam
, flags
, pos
->x
, pos
->y
,
3881 /* Eat any mouse messages during popupmenu */
3882 while (PeekMessage (&amsg
, hwnd
, WM_MOUSEFIRST
, WM_MOUSELAST
,
3884 /* Get the menu selection, if any */
3885 if (PeekMessage (&amsg
, hwnd
, WM_COMMAND
, WM_COMMAND
, PM_REMOVE
))
3887 retval
= LOWORD (amsg
.wParam
);
3903 /* Check for messages registered at runtime. */
3904 if (msg
== msh_mousewheel
)
3906 wmsg
.dwModifiers
= w32_get_modifiers ();
3907 my_post_msg (&wmsg
, hwnd
, msg
, wParam
, lParam
);
3908 signal_user_input ();
3913 return DefWindowProc (hwnd
, msg
, wParam
, lParam
);
3917 /* The most common default return code for handled messages is 0. */
3922 my_create_window (f
)
3927 if (!PostThreadMessage (dwWindowsThreadId
, WM_EMACS_CREATEWINDOW
, (WPARAM
)f
, 0))
3929 GetMessage (&msg
, NULL
, WM_EMACS_DONE
, WM_EMACS_DONE
);
3933 /* Create a tooltip window. Unlike my_create_window, we do not do this
3934 indirectly via the Window thread, as we do not need to process Window
3935 messages for the tooltip. Creating tooltips indirectly also creates
3936 deadlocks when tooltips are created for menu items. */
3938 my_create_tip_window (f
)
3943 rect
.left
= rect
.top
= 0;
3944 rect
.right
= FRAME_PIXEL_WIDTH (f
);
3945 rect
.bottom
= FRAME_PIXEL_HEIGHT (f
);
3947 AdjustWindowRect (&rect
, f
->output_data
.w32
->dwStyle
,
3948 FRAME_EXTERNAL_MENU_BAR (f
));
3950 tip_window
= FRAME_W32_WINDOW (f
)
3951 = CreateWindow (EMACS_CLASS
,
3953 f
->output_data
.w32
->dwStyle
,
3956 rect
.right
- rect
.left
,
3957 rect
.bottom
- rect
.top
,
3958 FRAME_W32_WINDOW (SELECTED_FRAME ()), /* owner */
3965 SetWindowLong (tip_window
, WND_FONTWIDTH_INDEX
, FRAME_COLUMN_WIDTH (f
));
3966 SetWindowLong (tip_window
, WND_LINEHEIGHT_INDEX
, FRAME_LINE_HEIGHT (f
));
3967 SetWindowLong (tip_window
, WND_BORDER_INDEX
, FRAME_INTERNAL_BORDER_WIDTH (f
));
3968 SetWindowLong (tip_window
, WND_BACKGROUND_INDEX
, FRAME_BACKGROUND_PIXEL (f
));
3970 /* Tip frames have no scrollbars. */
3971 SetWindowLong (tip_window
, WND_SCROLLBAR_INDEX
, 0);
3973 /* Do this to discard the default setting specified by our parent. */
3974 ShowWindow (tip_window
, SW_HIDE
);
3979 /* Create and set up the w32 window for frame F. */
3982 w32_window (f
, window_prompting
, minibuffer_only
)
3984 long window_prompting
;
3985 int minibuffer_only
;
3989 /* Use the resource name as the top-level window name
3990 for looking up resources. Make a non-Lisp copy
3991 for the window manager, so GC relocation won't bother it.
3993 Elsewhere we specify the window name for the window manager. */
3996 char *str
= (char *) SDATA (Vx_resource_name
);
3997 f
->namebuf
= (char *) xmalloc (strlen (str
) + 1);
3998 strcpy (f
->namebuf
, str
);
4001 my_create_window (f
);
4003 validate_x_resource_name ();
4005 /* x_set_name normally ignores requests to set the name if the
4006 requested name is the same as the current name. This is the one
4007 place where that assumption isn't correct; f->name is set, but
4008 the server hasn't been told. */
4011 int explicit = f
->explicit_name
;
4013 f
->explicit_name
= 0;
4016 x_set_name (f
, name
, explicit);
4021 if (!minibuffer_only
&& FRAME_EXTERNAL_MENU_BAR (f
))
4022 initialize_frame_menubar (f
);
4024 if (FRAME_W32_WINDOW (f
) == 0)
4025 error ("Unable to create window");
4028 /* Handle the icon stuff for this window. Perhaps later we might
4029 want an x_set_icon_position which can be called interactively as
4037 Lisp_Object icon_x
, icon_y
;
4039 /* Set the position of the icon. Note that Windows 95 groups all
4040 icons in the tray. */
4041 icon_x
= w32_get_arg (parms
, Qicon_left
, 0, 0, RES_TYPE_NUMBER
);
4042 icon_y
= w32_get_arg (parms
, Qicon_top
, 0, 0, RES_TYPE_NUMBER
);
4043 if (!EQ (icon_x
, Qunbound
) && !EQ (icon_y
, Qunbound
))
4045 CHECK_NUMBER (icon_x
);
4046 CHECK_NUMBER (icon_y
);
4048 else if (!EQ (icon_x
, Qunbound
) || !EQ (icon_y
, Qunbound
))
4049 error ("Both left and top icon corners of icon must be specified");
4053 if (! EQ (icon_x
, Qunbound
))
4054 x_wm_set_icon_position (f
, XINT (icon_x
), XINT (icon_y
));
4057 /* Start up iconic or window? */
4058 x_wm_set_window_state
4059 (f
, (EQ (w32_get_arg (parms
, Qvisibility
, 0, 0, RES_TYPE_SYMBOL
), Qicon
)
4063 x_text_icon (f
, (char *) SDATA ((!NILP (f
->icon_name
)
4076 XGCValues gc_values
;
4080 /* Create the GC's of this frame.
4081 Note that many default values are used. */
4084 gc_values
.font
= FRAME_FONT (f
);
4086 /* Cursor has cursor-color background, background-color foreground. */
4087 gc_values
.foreground
= FRAME_BACKGROUND_PIXEL (f
);
4088 gc_values
.background
= f
->output_data
.w32
->cursor_pixel
;
4089 f
->output_data
.w32
->cursor_gc
4090 = XCreateGC (NULL
, FRAME_W32_WINDOW (f
),
4091 (GCFont
| GCForeground
| GCBackground
),
4095 f
->output_data
.w32
->white_relief
.gc
= 0;
4096 f
->output_data
.w32
->black_relief
.gc
= 0;
4102 /* Handler for signals raised during x_create_frame and
4103 x_create_top_frame. FRAME is the frame which is partially
4107 unwind_create_frame (frame
)
4110 struct frame
*f
= XFRAME (frame
);
4112 /* If frame is ``official'', nothing to do. */
4113 if (!CONSP (Vframe_list
) || !EQ (XCAR (Vframe_list
), frame
))
4116 struct w32_display_info
*dpyinfo
= FRAME_W32_DISPLAY_INFO (f
);
4119 x_free_frame_resources (f
);
4121 /* Check that reference counts are indeed correct. */
4122 xassert (dpyinfo
->reference_count
== dpyinfo_refcount
);
4123 xassert (dpyinfo
->image_cache
->refcount
== image_cache_refcount
);
4132 DEFUN ("x-create-frame", Fx_create_frame
, Sx_create_frame
,
4134 doc
: /* Make a new window, which is called a \"frame\" in Emacs terms.
4135 Returns an Emacs frame object.
4136 PARAMETERS is an alist of frame parameters.
4137 If the parameters specify that the frame should not have a minibuffer,
4138 and do not specify a specific minibuffer window to use,
4139 then `default-minibuffer-frame' must be a frame whose minibuffer can
4140 be shared by the new frame.
4142 This function is an internal primitive--use `make-frame' instead. */)
4144 Lisp_Object parameters
;
4147 Lisp_Object frame
, tem
;
4149 int minibuffer_only
= 0;
4150 long window_prompting
= 0;
4152 int count
= SPECPDL_INDEX ();
4153 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
4154 Lisp_Object display
;
4155 struct w32_display_info
*dpyinfo
= NULL
;
4161 /* Use this general default value to start with
4162 until we know if this frame has a specified name. */
4163 Vx_resource_name
= Vinvocation_name
;
4165 display
= w32_get_arg (parameters
, Qdisplay
, 0, 0, RES_TYPE_STRING
);
4166 if (EQ (display
, Qunbound
))
4168 dpyinfo
= check_x_display_info (display
);
4170 kb
= dpyinfo
->kboard
;
4172 kb
= &the_only_kboard
;
4175 name
= w32_get_arg (parameters
, Qname
, "name", "Name", RES_TYPE_STRING
);
4177 && ! EQ (name
, Qunbound
)
4179 error ("Invalid frame name--not a string or nil");
4182 Vx_resource_name
= name
;
4184 /* See if parent window is specified. */
4185 parent
= w32_get_arg (parameters
, Qparent_id
, NULL
, NULL
, RES_TYPE_NUMBER
);
4186 if (EQ (parent
, Qunbound
))
4188 if (! NILP (parent
))
4189 CHECK_NUMBER (parent
);
4191 /* make_frame_without_minibuffer can run Lisp code and garbage collect. */
4192 /* No need to protect DISPLAY because that's not used after passing
4193 it to make_frame_without_minibuffer. */
4195 GCPRO4 (parameters
, parent
, name
, frame
);
4196 tem
= w32_get_arg (parameters
, Qminibuffer
, "minibuffer", "Minibuffer",
4198 if (EQ (tem
, Qnone
) || NILP (tem
))
4199 f
= make_frame_without_minibuffer (Qnil
, kb
, display
);
4200 else if (EQ (tem
, Qonly
))
4202 f
= make_minibuffer_frame ();
4203 minibuffer_only
= 1;
4205 else if (WINDOWP (tem
))
4206 f
= make_frame_without_minibuffer (tem
, kb
, display
);
4210 XSETFRAME (frame
, f
);
4212 /* Note that Windows does support scroll bars. */
4213 FRAME_CAN_HAVE_SCROLL_BARS (f
) = 1;
4215 /* By default, make scrollbars the system standard width. */
4216 FRAME_CONFIG_SCROLL_BAR_WIDTH (f
) = GetSystemMetrics (SM_CXVSCROLL
);
4218 f
->output_method
= output_w32
;
4219 f
->output_data
.w32
=
4220 (struct w32_output
*) xmalloc (sizeof (struct w32_output
));
4221 bzero (f
->output_data
.w32
, sizeof (struct w32_output
));
4222 FRAME_FONTSET (f
) = -1;
4223 record_unwind_protect (unwind_create_frame
, frame
);
4226 = w32_get_arg (parameters
, Qicon_name
, "iconName", "Title", RES_TYPE_STRING
);
4227 if (! STRINGP (f
->icon_name
))
4228 f
->icon_name
= Qnil
;
4230 /* FRAME_W32_DISPLAY_INFO (f) = dpyinfo; */
4232 FRAME_KBOARD (f
) = kb
;
4235 /* Specify the parent under which to make this window. */
4239 f
->output_data
.w32
->parent_desc
= (Window
) XFASTINT (parent
);
4240 f
->output_data
.w32
->explicit_parent
= 1;
4244 f
->output_data
.w32
->parent_desc
= FRAME_W32_DISPLAY_INFO (f
)->root_window
;
4245 f
->output_data
.w32
->explicit_parent
= 0;
4248 /* Set the name; the functions to which we pass f expect the name to
4250 if (EQ (name
, Qunbound
) || NILP (name
))
4252 f
->name
= build_string (dpyinfo
->w32_id_name
);
4253 f
->explicit_name
= 0;
4258 f
->explicit_name
= 1;
4259 /* use the frame's title when getting resources for this frame. */
4260 specbind (Qx_resource_name
, name
);
4263 /* Extract the window parameters from the supplied values
4264 that are needed to determine window geometry. */
4268 font
= w32_get_arg (parameters
, Qfont
, "font", "Font", RES_TYPE_STRING
);
4271 /* First, try whatever font the caller has specified. */
4274 tem
= Fquery_fontset (font
, Qnil
);
4276 font
= x_new_fontset (f
, SDATA (tem
));
4278 font
= x_new_font (f
, SDATA (font
));
4280 /* Try out a font which we hope has bold and italic variations. */
4281 if (!STRINGP (font
))
4282 font
= x_new_font (f
, "-*-Courier New-normal-r-*-*-*-100-*-*-c-*-iso8859-1");
4283 if (! STRINGP (font
))
4284 font
= x_new_font (f
, "-*-Courier-normal-r-*-*-13-*-*-*-c-*-iso8859-1");
4285 /* If those didn't work, look for something which will at least work. */
4286 if (! STRINGP (font
))
4287 font
= x_new_font (f
, "-*-Fixedsys-normal-r-*-*-12-*-*-*-c-*-iso8859-1");
4289 if (! STRINGP (font
))
4290 font
= build_string ("Fixedsys");
4292 x_default_parameter (f
, parameters
, Qfont
, font
,
4293 "font", "Font", RES_TYPE_STRING
);
4296 x_default_parameter (f
, parameters
, Qborder_width
, make_number (2),
4297 "borderWidth", "BorderWidth", RES_TYPE_NUMBER
);
4298 /* This defaults to 2 in order to match xterm. We recognize either
4299 internalBorderWidth or internalBorder (which is what xterm calls
4301 if (NILP (Fassq (Qinternal_border_width
, parameters
)))
4305 value
= w32_get_arg (parameters
, Qinternal_border_width
,
4306 "internalBorder", "InternalBorder", RES_TYPE_NUMBER
);
4307 if (! EQ (value
, Qunbound
))
4308 parameters
= Fcons (Fcons (Qinternal_border_width
, value
),
4311 /* Default internalBorderWidth to 0 on Windows to match other programs. */
4312 x_default_parameter (f
, parameters
, Qinternal_border_width
, make_number (0),
4313 "internalBorderWidth", "InternalBorder", RES_TYPE_NUMBER
);
4314 x_default_parameter (f
, parameters
, Qvertical_scroll_bars
, Qright
,
4315 "verticalScrollBars", "ScrollBars", RES_TYPE_SYMBOL
);
4317 /* Also do the stuff which must be set before the window exists. */
4318 x_default_parameter (f
, parameters
, Qforeground_color
, build_string ("black"),
4319 "foreground", "Foreground", RES_TYPE_STRING
);
4320 x_default_parameter (f
, parameters
, Qbackground_color
, build_string ("white"),
4321 "background", "Background", RES_TYPE_STRING
);
4322 x_default_parameter (f
, parameters
, Qmouse_color
, build_string ("black"),
4323 "pointerColor", "Foreground", RES_TYPE_STRING
);
4324 x_default_parameter (f
, parameters
, Qcursor_color
, build_string ("black"),
4325 "cursorColor", "Foreground", RES_TYPE_STRING
);
4326 x_default_parameter (f
, parameters
, Qborder_color
, build_string ("black"),
4327 "borderColor", "BorderColor", RES_TYPE_STRING
);
4328 x_default_parameter (f
, parameters
, Qscreen_gamma
, Qnil
,
4329 "screenGamma", "ScreenGamma", RES_TYPE_FLOAT
);
4330 x_default_parameter (f
, parameters
, Qline_spacing
, Qnil
,
4331 "lineSpacing", "LineSpacing", RES_TYPE_NUMBER
);
4332 x_default_parameter (f
, parameters
, Qleft_fringe
, Qnil
,
4333 "leftFringe", "LeftFringe", RES_TYPE_NUMBER
);
4334 x_default_parameter (f
, parameters
, Qright_fringe
, Qnil
,
4335 "rightFringe", "RightFringe", RES_TYPE_NUMBER
);
4338 /* Init faces before x_default_parameter is called for scroll-bar
4339 parameters because that function calls x_set_scroll_bar_width,
4340 which calls change_frame_size, which calls Fset_window_buffer,
4341 which runs hooks, which call Fvertical_motion. At the end, we
4342 end up in init_iterator with a null face cache, which should not
4344 init_frame_faces (f
);
4346 x_default_parameter (f
, parameters
, Qmenu_bar_lines
, make_number (1),
4347 "menuBar", "MenuBar", RES_TYPE_NUMBER
);
4348 x_default_parameter (f
, parameters
, Qtool_bar_lines
, make_number (1),
4349 "toolBar", "ToolBar", RES_TYPE_NUMBER
);
4351 x_default_parameter (f
, parameters
, Qbuffer_predicate
, Qnil
,
4352 "bufferPredicate", "BufferPredicate", RES_TYPE_SYMBOL
);
4353 x_default_parameter (f
, parameters
, Qtitle
, Qnil
,
4354 "title", "Title", RES_TYPE_STRING
);
4355 x_default_parameter (f
, parameters
, Qfullscreen
, Qnil
,
4356 "fullscreen", "Fullscreen", RES_TYPE_SYMBOL
);
4358 f
->output_data
.w32
->dwStyle
= WS_OVERLAPPEDWINDOW
;
4359 f
->output_data
.w32
->parent_desc
= FRAME_W32_DISPLAY_INFO (f
)->root_window
;
4361 f
->output_data
.w32
->text_cursor
= w32_load_cursor (IDC_IBEAM
);
4362 f
->output_data
.w32
->nontext_cursor
= w32_load_cursor (IDC_ARROW
);
4363 f
->output_data
.w32
->modeline_cursor
= w32_load_cursor (IDC_ARROW
);
4364 f
->output_data
.w32
->hand_cursor
= w32_load_cursor (IDC_HAND
);
4365 f
->output_data
.w32
->hourglass_cursor
= w32_load_cursor (IDC_WAIT
);
4366 f
->output_data
.w32
->horizontal_drag_cursor
= w32_load_cursor (IDC_SIZEWE
);
4368 window_prompting
= x_figure_window_size (f
, parameters
, 1);
4370 tem
= w32_get_arg (parameters
, Qunsplittable
, 0, 0, RES_TYPE_BOOLEAN
);
4371 f
->no_split
= minibuffer_only
|| EQ (tem
, Qt
);
4373 w32_window (f
, window_prompting
, minibuffer_only
);
4374 x_icon (f
, parameters
);
4378 /* Now consider the frame official. */
4379 FRAME_W32_DISPLAY_INFO (f
)->reference_count
++;
4380 Vframe_list
= Fcons (frame
, Vframe_list
);
4382 /* We need to do this after creating the window, so that the
4383 icon-creation functions can say whose icon they're describing. */
4384 x_default_parameter (f
, parameters
, Qicon_type
, Qnil
,
4385 "bitmapIcon", "BitmapIcon", RES_TYPE_SYMBOL
);
4387 x_default_parameter (f
, parameters
, Qauto_raise
, Qnil
,
4388 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
4389 x_default_parameter (f
, parameters
, Qauto_lower
, Qnil
,
4390 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
4391 x_default_parameter (f
, parameters
, Qcursor_type
, Qbox
,
4392 "cursorType", "CursorType", RES_TYPE_SYMBOL
);
4393 x_default_parameter (f
, parameters
, Qscroll_bar_width
, Qnil
,
4394 "scrollBarWidth", "ScrollBarWidth", RES_TYPE_NUMBER
);
4396 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
4397 Change will not be effected unless different from the current
4399 width
= FRAME_COLS (f
);
4400 height
= FRAME_LINES (f
);
4402 FRAME_LINES (f
) = 0;
4403 SET_FRAME_COLS (f
, 0);
4404 change_frame_size (f
, height
, width
, 1, 0, 0);
4406 /* Tell the server what size and position, etc, we want, and how
4407 badly we want them. This should be done after we have the menu
4408 bar so that its size can be taken into account. */
4410 x_wm_set_size_hint (f
, window_prompting
, 0);
4413 /* Make the window appear on the frame and enable display, unless
4414 the caller says not to. However, with explicit parent, Emacs
4415 cannot control visibility, so don't try. */
4416 if (! f
->output_data
.w32
->explicit_parent
)
4418 Lisp_Object visibility
;
4420 visibility
= w32_get_arg (parameters
, Qvisibility
, 0, 0, RES_TYPE_SYMBOL
);
4421 if (EQ (visibility
, Qunbound
))
4424 if (EQ (visibility
, Qicon
))
4425 x_iconify_frame (f
);
4426 else if (! NILP (visibility
))
4427 x_make_frame_visible (f
);
4429 /* Must have been Qnil. */
4434 /* Make sure windows on this frame appear in calls to next-window
4435 and similar functions. */
4436 Vwindow_list
= Qnil
;
4438 return unbind_to (count
, frame
);
4441 /* FRAME is used only to get a handle on the X display. We don't pass the
4442 display info directly because we're called from frame.c, which doesn't
4443 know about that structure. */
4445 x_get_focus_frame (frame
)
4446 struct frame
*frame
;
4448 struct w32_display_info
*dpyinfo
= FRAME_W32_DISPLAY_INFO (frame
);
4450 if (! dpyinfo
->w32_focus_frame
)
4453 XSETFRAME (xfocus
, dpyinfo
->w32_focus_frame
);
4457 DEFUN ("w32-focus-frame", Fw32_focus_frame
, Sw32_focus_frame
, 1, 1, 0,
4458 doc
: /* Give FRAME input focus, raising to foreground if necessary. */)
4462 x_focus_on_frame (check_x_frame (frame
));
4467 /* Return the charset portion of a font name. */
4468 char * xlfd_charset_of_font (char * fontname
)
4470 char *charset
, *encoding
;
4472 encoding
= strrchr(fontname
, '-');
4473 if (!encoding
|| encoding
== fontname
)
4476 for (charset
= encoding
- 1; charset
>= fontname
; charset
--)
4477 if (*charset
== '-')
4480 if (charset
== fontname
|| strcmp(charset
, "-*-*") == 0)
4486 struct font_info
*w32_load_bdf_font (struct frame
*f
, char *fontname
,
4487 int size
, char* filename
);
4488 static Lisp_Object
w32_list_bdf_fonts (Lisp_Object pattern
, int max_names
);
4489 static BOOL
w32_to_x_font (LOGFONT
* lplf
, char * lpxstr
, int len
,
4491 static BOOL
x_to_w32_font (char *lpxstr
, LOGFONT
*lplogfont
);
4493 static struct font_info
*
4494 w32_load_system_font (f
,fontname
,size
)
4499 struct w32_display_info
*dpyinfo
= FRAME_W32_DISPLAY_INFO (f
);
4500 Lisp_Object font_names
;
4502 /* Get a list of all the fonts that match this name. Once we
4503 have a list of matching fonts, we compare them against the fonts
4504 we already have loaded by comparing names. */
4505 font_names
= w32_list_fonts (f
, build_string (fontname
), size
, 100);
4507 if (!NILP (font_names
))
4512 /* First check if any are already loaded, as that is cheaper
4513 than loading another one. */
4514 for (i
= 0; i
< dpyinfo
->n_fonts
; i
++)
4515 for (tail
= font_names
; CONSP (tail
); tail
= XCDR (tail
))
4516 if (dpyinfo
->font_table
[i
].name
4517 && (!strcmp (dpyinfo
->font_table
[i
].name
,
4518 SDATA (XCAR (tail
)))
4519 || !strcmp (dpyinfo
->font_table
[i
].full_name
,
4520 SDATA (XCAR (tail
)))))
4521 return (dpyinfo
->font_table
+ i
);
4523 fontname
= (char *) SDATA (XCAR (font_names
));
4525 else if (w32_strict_fontnames
)
4527 /* If EnumFontFamiliesEx was available, we got a full list of
4528 fonts back so stop now to avoid the possibility of loading a
4529 random font. If we had to fall back to EnumFontFamilies, the
4530 list is incomplete, so continue whether the font we want was
4532 HMODULE gdi32
= GetModuleHandle ("gdi32.dll");
4533 FARPROC enum_font_families_ex
4534 = GetProcAddress (gdi32
, "EnumFontFamiliesExA");
4535 if (enum_font_families_ex
)
4539 /* Load the font and add it to the table. */
4541 char *full_name
, *encoding
, *charset
;
4543 struct font_info
*fontp
;
4549 if (!fontname
|| !x_to_w32_font (fontname
, &lf
))
4552 if (!*lf
.lfFaceName
)
4553 /* If no name was specified for the font, we get a random font
4554 from CreateFontIndirect - this is not particularly
4555 desirable, especially since CreateFontIndirect does not
4556 fill out the missing name in lf, so we never know what we
4560 lf
.lfQuality
= DEFAULT_QUALITY
;
4562 font
= (XFontStruct
*) xmalloc (sizeof (XFontStruct
));
4563 bzero (font
, sizeof (*font
));
4565 /* Set bdf to NULL to indicate that this is a Windows font. */
4570 font
->hfont
= CreateFontIndirect (&lf
);
4572 if (font
->hfont
== NULL
)
4581 codepage
= w32_codepage_for_font (fontname
);
4583 hdc
= GetDC (dpyinfo
->root_window
);
4584 oldobj
= SelectObject (hdc
, font
->hfont
);
4586 ok
= GetTextMetrics (hdc
, &font
->tm
);
4587 if (codepage
== CP_UNICODE
)
4588 font
->double_byte_p
= 1;
4591 /* Unfortunately, some fonts (eg. MingLiU, a big5 ttf font)
4592 don't report themselves as double byte fonts, when
4593 patently they are. So instead of trusting
4594 GetFontLanguageInfo, we check the properties of the
4595 codepage directly, since that is ultimately what we are
4596 working from anyway. */
4597 /* font->double_byte_p = GetFontLanguageInfo(hdc) & GCP_DBCS; */
4599 GetCPInfo (codepage
, &cpi
);
4600 font
->double_byte_p
= cpi
.MaxCharSize
> 1;
4603 SelectObject (hdc
, oldobj
);
4604 ReleaseDC (dpyinfo
->root_window
, hdc
);
4605 /* Fill out details in lf according to the font that was
4607 lf
.lfHeight
= font
->tm
.tmInternalLeading
- font
->tm
.tmHeight
;
4608 lf
.lfWidth
= font
->tm
.tmMaxCharWidth
;
4609 lf
.lfWeight
= font
->tm
.tmWeight
;
4610 lf
.lfItalic
= font
->tm
.tmItalic
;
4611 lf
.lfCharSet
= font
->tm
.tmCharSet
;
4612 lf
.lfPitchAndFamily
= ((font
->tm
.tmPitchAndFamily
& TMPF_FIXED_PITCH
)
4613 ? VARIABLE_PITCH
: FIXED_PITCH
);
4614 lf
.lfOutPrecision
= ((font
->tm
.tmPitchAndFamily
& TMPF_VECTOR
)
4615 ? OUT_STROKE_PRECIS
: OUT_STRING_PRECIS
);
4617 w32_cache_char_metrics (font
);
4624 w32_unload_font (dpyinfo
, font
);
4628 /* Find a free slot in the font table. */
4629 for (i
= 0; i
< dpyinfo
->n_fonts
; ++i
)
4630 if (dpyinfo
->font_table
[i
].name
== NULL
)
4633 /* If no free slot found, maybe enlarge the font table. */
4634 if (i
== dpyinfo
->n_fonts
4635 && dpyinfo
->n_fonts
== dpyinfo
->font_table_size
)
4638 dpyinfo
->font_table_size
= max (16, 2 * dpyinfo
->font_table_size
);
4639 sz
= dpyinfo
->font_table_size
* sizeof *dpyinfo
->font_table
;
4641 = (struct font_info
*) xrealloc (dpyinfo
->font_table
, sz
);
4644 fontp
= dpyinfo
->font_table
+ i
;
4645 if (i
== dpyinfo
->n_fonts
)
4648 /* Now fill in the slots of *FONTP. */
4650 bzero (fontp
, sizeof (*fontp
));
4652 fontp
->font_idx
= i
;
4653 fontp
->name
= (char *) xmalloc (strlen (fontname
) + 1);
4654 bcopy (fontname
, fontp
->name
, strlen (fontname
) + 1);
4656 if (lf
.lfPitchAndFamily
== FIXED_PITCH
)
4658 /* Fixed width font. */
4659 fontp
->average_width
= fontp
->space_width
= FONT_WIDTH (font
);
4665 pcm
= w32_per_char_metric (font
, &space
, ANSI_FONT
);
4667 fontp
->space_width
= pcm
->width
;
4669 fontp
->space_width
= FONT_WIDTH (font
);
4671 fontp
->average_width
= font
->tm
.tmAveCharWidth
;
4674 charset
= xlfd_charset_of_font (fontname
);
4676 /* Cache the W32 codepage for a font. This makes w32_encode_char
4677 (called for every glyph during redisplay) much faster. */
4678 fontp
->codepage
= codepage
;
4680 /* Work out the font's full name. */
4681 full_name
= (char *)xmalloc (100);
4682 if (full_name
&& w32_to_x_font (&lf
, full_name
, 100, charset
))
4683 fontp
->full_name
= full_name
;
4686 /* If all else fails - just use the name we used to load it. */
4688 fontp
->full_name
= fontp
->name
;
4691 fontp
->size
= FONT_WIDTH (font
);
4692 fontp
->height
= FONT_HEIGHT (font
);
4694 /* The slot `encoding' specifies how to map a character
4695 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
4696 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF), or
4697 (0:0x20..0x7F, 1:0xA0..0xFF,
4698 (0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF,
4699 2:0xA020..0xFF7F). For the moment, we don't know which charset
4700 uses this font. So, we set information in fontp->encoding[1]
4701 which is never used by any charset. If mapping can't be
4702 decided, set FONT_ENCODING_NOT_DECIDED. */
4704 /* SJIS fonts need to be set to type 4, all others seem to work as
4705 type FONT_ENCODING_NOT_DECIDED. */
4706 encoding
= strrchr (fontp
->name
, '-');
4707 if (encoding
&& strnicmp (encoding
+1, "sjis", 4) == 0)
4708 fontp
->encoding
[1] = 4;
4710 fontp
->encoding
[1] = FONT_ENCODING_NOT_DECIDED
;
4712 /* The following three values are set to 0 under W32, which is
4713 what they get set to if XGetFontProperty fails under X. */
4714 fontp
->baseline_offset
= 0;
4715 fontp
->relative_compose
= 0;
4716 fontp
->default_ascent
= 0;
4718 /* Set global flag fonts_changed_p to non-zero if the font loaded
4719 has a character with a smaller width than any other character
4720 before, or if the font loaded has a smaller height than any
4721 other font loaded before. If this happens, it will make a
4722 glyph matrix reallocation necessary. */
4723 fonts_changed_p
|= x_compute_min_glyph_bounds (f
);
4729 /* Load font named FONTNAME of size SIZE for frame F, and return a
4730 pointer to the structure font_info while allocating it dynamically.
4731 If loading fails, return NULL. */
4733 w32_load_font (f
,fontname
,size
)
4738 Lisp_Object bdf_fonts
;
4739 struct font_info
*retval
= NULL
;
4740 struct w32_display_info
*dpyinfo
= FRAME_W32_DISPLAY_INFO (f
);
4742 bdf_fonts
= w32_list_bdf_fonts (build_string (fontname
), 1);
4744 while (!retval
&& CONSP (bdf_fonts
))
4746 char *bdf_name
, *bdf_file
;
4747 Lisp_Object bdf_pair
;
4750 bdf_name
= SDATA (XCAR (bdf_fonts
));
4751 bdf_pair
= Fassoc (XCAR (bdf_fonts
), Vw32_bdf_filename_alist
);
4752 bdf_file
= SDATA (XCDR (bdf_pair
));
4754 // If the font is already loaded, do not load it again.
4755 for (i
= 0; i
< dpyinfo
->n_fonts
; i
++)
4757 if ((dpyinfo
->font_table
[i
].name
4758 && !strcmp (dpyinfo
->font_table
[i
].name
, bdf_name
))
4759 || (dpyinfo
->font_table
[i
].full_name
4760 && !strcmp (dpyinfo
->font_table
[i
].full_name
, bdf_name
)))
4761 return dpyinfo
->font_table
+ i
;
4764 retval
= w32_load_bdf_font (f
, bdf_name
, size
, bdf_file
);
4766 bdf_fonts
= XCDR (bdf_fonts
);
4772 return w32_load_system_font(f
, fontname
, size
);
4777 w32_unload_font (dpyinfo
, font
)
4778 struct w32_display_info
*dpyinfo
;
4783 if (font
->per_char
) xfree (font
->per_char
);
4784 if (font
->bdf
) w32_free_bdf_font (font
->bdf
);
4786 if (font
->hfont
) DeleteObject(font
->hfont
);
4791 /* The font conversion stuff between x and w32 */
4793 /* X font string is as follows (from faces.el)
4797 * (weight "\\(bold\\|demibold\\|medium\\)") ; 1
4798 * (weight\? "\\([^-]*\\)") ; 1
4799 * (slant "\\([ior]\\)") ; 2
4800 * (slant\? "\\([^-]?\\)") ; 2
4801 * (swidth "\\([^-]*\\)") ; 3
4802 * (adstyle "[^-]*") ; 4
4803 * (pixelsize "[0-9]+")
4804 * (pointsize "[0-9][0-9]+")
4805 * (resx "[0-9][0-9]+")
4806 * (resy "[0-9][0-9]+")
4807 * (spacing "[cmp?*]")
4808 * (avgwidth "[0-9]+")
4809 * (registry "[^-]+")
4810 * (encoding "[^-]+")
4815 x_to_w32_weight (lpw
)
4818 if (!lpw
) return (FW_DONTCARE
);
4820 if (stricmp (lpw
,"heavy") == 0) return FW_HEAVY
;
4821 else if (stricmp (lpw
,"extrabold") == 0) return FW_EXTRABOLD
;
4822 else if (stricmp (lpw
,"bold") == 0) return FW_BOLD
;
4823 else if (stricmp (lpw
,"demibold") == 0) return FW_SEMIBOLD
;
4824 else if (stricmp (lpw
,"semibold") == 0) return FW_SEMIBOLD
;
4825 else if (stricmp (lpw
,"medium") == 0) return FW_MEDIUM
;
4826 else if (stricmp (lpw
,"normal") == 0) return FW_NORMAL
;
4827 else if (stricmp (lpw
,"light") == 0) return FW_LIGHT
;
4828 else if (stricmp (lpw
,"extralight") == 0) return FW_EXTRALIGHT
;
4829 else if (stricmp (lpw
,"thin") == 0) return FW_THIN
;
4836 w32_to_x_weight (fnweight
)
4839 if (fnweight
>= FW_HEAVY
) return "heavy";
4840 if (fnweight
>= FW_EXTRABOLD
) return "extrabold";
4841 if (fnweight
>= FW_BOLD
) return "bold";
4842 if (fnweight
>= FW_SEMIBOLD
) return "demibold";
4843 if (fnweight
>= FW_MEDIUM
) return "medium";
4844 if (fnweight
>= FW_NORMAL
) return "normal";
4845 if (fnweight
>= FW_LIGHT
) return "light";
4846 if (fnweight
>= FW_EXTRALIGHT
) return "extralight";
4847 if (fnweight
>= FW_THIN
) return "thin";
4853 x_to_w32_charset (lpcs
)
4856 Lisp_Object this_entry
, w32_charset
;
4858 int len
= strlen (lpcs
);
4860 /* Support "*-#nnn" format for unknown charsets. */
4861 if (strncmp (lpcs
, "*-#", 3) == 0)
4862 return atoi (lpcs
+ 3);
4864 /* Handle wildcards by ignoring them; eg. treat "big5*-*" as "big5". */
4865 charset
= alloca (len
+ 1);
4866 strcpy (charset
, lpcs
);
4867 lpcs
= strchr (charset
, '*');
4871 /* Look through w32-charset-info-alist for the character set.
4872 Format of each entry is
4873 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE)).
4875 this_entry
= Fassoc (build_string(charset
), Vw32_charset_info_alist
);
4877 if (NILP(this_entry
))
4879 /* At startup, we want iso8859-1 fonts to come up properly. */
4880 if (stricmp(charset
, "iso8859-1") == 0)
4881 return ANSI_CHARSET
;
4883 return DEFAULT_CHARSET
;
4886 w32_charset
= Fcar (Fcdr (this_entry
));
4888 /* Translate Lisp symbol to number. */
4889 if (EQ (w32_charset
, Qw32_charset_ansi
))
4890 return ANSI_CHARSET
;
4891 if (EQ (w32_charset
, Qw32_charset_symbol
))
4892 return SYMBOL_CHARSET
;
4893 if (EQ (w32_charset
, Qw32_charset_shiftjis
))
4894 return SHIFTJIS_CHARSET
;
4895 if (EQ (w32_charset
, Qw32_charset_hangeul
))
4896 return HANGEUL_CHARSET
;
4897 if (EQ (w32_charset
, Qw32_charset_chinesebig5
))
4898 return CHINESEBIG5_CHARSET
;
4899 if (EQ (w32_charset
, Qw32_charset_gb2312
))
4900 return GB2312_CHARSET
;
4901 if (EQ (w32_charset
, Qw32_charset_oem
))
4903 #ifdef JOHAB_CHARSET
4904 if (EQ (w32_charset
, Qw32_charset_johab
))
4905 return JOHAB_CHARSET
;
4906 if (EQ (w32_charset
, Qw32_charset_easteurope
))
4907 return EASTEUROPE_CHARSET
;
4908 if (EQ (w32_charset
, Qw32_charset_turkish
))
4909 return TURKISH_CHARSET
;
4910 if (EQ (w32_charset
, Qw32_charset_baltic
))
4911 return BALTIC_CHARSET
;
4912 if (EQ (w32_charset
, Qw32_charset_russian
))
4913 return RUSSIAN_CHARSET
;
4914 if (EQ (w32_charset
, Qw32_charset_arabic
))
4915 return ARABIC_CHARSET
;
4916 if (EQ (w32_charset
, Qw32_charset_greek
))
4917 return GREEK_CHARSET
;
4918 if (EQ (w32_charset
, Qw32_charset_hebrew
))
4919 return HEBREW_CHARSET
;
4920 if (EQ (w32_charset
, Qw32_charset_vietnamese
))
4921 return VIETNAMESE_CHARSET
;
4922 if (EQ (w32_charset
, Qw32_charset_thai
))
4923 return THAI_CHARSET
;
4924 if (EQ (w32_charset
, Qw32_charset_mac
))
4926 #endif /* JOHAB_CHARSET */
4927 #ifdef UNICODE_CHARSET
4928 if (EQ (w32_charset
, Qw32_charset_unicode
))
4929 return UNICODE_CHARSET
;
4932 return DEFAULT_CHARSET
;
4937 w32_to_x_charset (fncharset
)
4940 static char buf
[32];
4941 Lisp_Object charset_type
;
4946 /* Handle startup case of w32-charset-info-alist not
4947 being set up yet. */
4948 if (NILP(Vw32_charset_info_alist
))
4950 charset_type
= Qw32_charset_ansi
;
4952 case DEFAULT_CHARSET
:
4953 charset_type
= Qw32_charset_default
;
4955 case SYMBOL_CHARSET
:
4956 charset_type
= Qw32_charset_symbol
;
4958 case SHIFTJIS_CHARSET
:
4959 charset_type
= Qw32_charset_shiftjis
;
4961 case HANGEUL_CHARSET
:
4962 charset_type
= Qw32_charset_hangeul
;
4964 case GB2312_CHARSET
:
4965 charset_type
= Qw32_charset_gb2312
;
4967 case CHINESEBIG5_CHARSET
:
4968 charset_type
= Qw32_charset_chinesebig5
;
4971 charset_type
= Qw32_charset_oem
;
4974 /* More recent versions of Windows (95 and NT4.0) define more
4976 #ifdef EASTEUROPE_CHARSET
4977 case EASTEUROPE_CHARSET
:
4978 charset_type
= Qw32_charset_easteurope
;
4980 case TURKISH_CHARSET
:
4981 charset_type
= Qw32_charset_turkish
;
4983 case BALTIC_CHARSET
:
4984 charset_type
= Qw32_charset_baltic
;
4986 case RUSSIAN_CHARSET
:
4987 charset_type
= Qw32_charset_russian
;
4989 case ARABIC_CHARSET
:
4990 charset_type
= Qw32_charset_arabic
;
4993 charset_type
= Qw32_charset_greek
;
4995 case HEBREW_CHARSET
:
4996 charset_type
= Qw32_charset_hebrew
;
4998 case VIETNAMESE_CHARSET
:
4999 charset_type
= Qw32_charset_vietnamese
;
5002 charset_type
= Qw32_charset_thai
;
5005 charset_type
= Qw32_charset_mac
;
5008 charset_type
= Qw32_charset_johab
;
5012 #ifdef UNICODE_CHARSET
5013 case UNICODE_CHARSET
:
5014 charset_type
= Qw32_charset_unicode
;
5018 /* Encode numerical value of unknown charset. */
5019 sprintf (buf
, "*-#%u", fncharset
);
5025 char * best_match
= NULL
;
5027 /* Look through w32-charset-info-alist for the character set.
5028 Prefer ISO codepages, and prefer lower numbers in the ISO
5029 range. Only return charsets for codepages which are installed.
5031 Format of each entry is
5032 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE)).
5034 for (rest
= Vw32_charset_info_alist
; CONSP (rest
); rest
= XCDR (rest
))
5037 Lisp_Object w32_charset
;
5038 Lisp_Object codepage
;
5040 Lisp_Object this_entry
= XCAR (rest
);
5042 /* Skip invalid entries in alist. */
5043 if (!CONSP (this_entry
) || !STRINGP (XCAR (this_entry
))
5044 || !CONSP (XCDR (this_entry
))
5045 || !SYMBOLP (XCAR (XCDR (this_entry
))))
5048 x_charset
= SDATA (XCAR (this_entry
));
5049 w32_charset
= XCAR (XCDR (this_entry
));
5050 codepage
= XCDR (XCDR (this_entry
));
5052 /* Look for Same charset and a valid codepage (or non-int
5053 which means ignore). */
5054 if (EQ (w32_charset
, charset_type
)
5055 && (!INTEGERP (codepage
) || XINT (codepage
) == CP_DEFAULT
5056 || IsValidCodePage (XINT (codepage
))))
5058 /* If we don't have a match already, then this is the
5061 best_match
= x_charset
;
5062 /* If this is an ISO codepage, and the best so far isn't,
5063 then this is better. */
5064 else if (strnicmp (best_match
, "iso", 3) != 0
5065 && strnicmp (x_charset
, "iso", 3) == 0)
5066 best_match
= x_charset
;
5067 /* If both are ISO8859 codepages, choose the one with the
5068 lowest number in the encoding field. */
5069 else if (strnicmp (best_match
, "iso8859-", 8) == 0
5070 && strnicmp (x_charset
, "iso8859-", 8) == 0)
5072 int best_enc
= atoi (best_match
+ 8);
5073 int this_enc
= atoi (x_charset
+ 8);
5074 if (this_enc
> 0 && this_enc
< best_enc
)
5075 best_match
= x_charset
;
5080 /* If no match, encode the numeric value. */
5083 sprintf (buf
, "*-#%u", fncharset
);
5087 strncpy(buf
, best_match
, 31);
5094 /* Return all the X charsets that map to a font. */
5096 w32_to_all_x_charsets (fncharset
)
5099 static char buf
[32];
5100 Lisp_Object charset_type
;
5101 Lisp_Object retval
= Qnil
;
5106 /* Handle startup case of w32-charset-info-alist not
5107 being set up yet. */
5108 if (NILP(Vw32_charset_info_alist
))
5109 return Fcons (build_string ("iso8859-1"), Qnil
);
5111 charset_type
= Qw32_charset_ansi
;
5113 case DEFAULT_CHARSET
:
5114 charset_type
= Qw32_charset_default
;
5116 case SYMBOL_CHARSET
:
5117 charset_type
= Qw32_charset_symbol
;
5119 case SHIFTJIS_CHARSET
:
5120 charset_type
= Qw32_charset_shiftjis
;
5122 case HANGEUL_CHARSET
:
5123 charset_type
= Qw32_charset_hangeul
;
5125 case GB2312_CHARSET
:
5126 charset_type
= Qw32_charset_gb2312
;
5128 case CHINESEBIG5_CHARSET
:
5129 charset_type
= Qw32_charset_chinesebig5
;
5132 charset_type
= Qw32_charset_oem
;
5135 /* More recent versions of Windows (95 and NT4.0) define more
5137 #ifdef EASTEUROPE_CHARSET
5138 case EASTEUROPE_CHARSET
:
5139 charset_type
= Qw32_charset_easteurope
;
5141 case TURKISH_CHARSET
:
5142 charset_type
= Qw32_charset_turkish
;
5144 case BALTIC_CHARSET
:
5145 charset_type
= Qw32_charset_baltic
;
5147 case RUSSIAN_CHARSET
:
5148 charset_type
= Qw32_charset_russian
;
5150 case ARABIC_CHARSET
:
5151 charset_type
= Qw32_charset_arabic
;
5154 charset_type
= Qw32_charset_greek
;
5156 case HEBREW_CHARSET
:
5157 charset_type
= Qw32_charset_hebrew
;
5159 case VIETNAMESE_CHARSET
:
5160 charset_type
= Qw32_charset_vietnamese
;
5163 charset_type
= Qw32_charset_thai
;
5166 charset_type
= Qw32_charset_mac
;
5169 charset_type
= Qw32_charset_johab
;
5173 #ifdef UNICODE_CHARSET
5174 case UNICODE_CHARSET
:
5175 charset_type
= Qw32_charset_unicode
;
5179 /* Encode numerical value of unknown charset. */
5180 sprintf (buf
, "*-#%u", fncharset
);
5181 return Fcons (build_string (buf
), Qnil
);
5186 /* Look through w32-charset-info-alist for the character set.
5187 Only return charsets for codepages which are installed.
5189 Format of each entry in Vw32_charset_info_alist is
5190 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE)).
5192 for (rest
= Vw32_charset_info_alist
; CONSP (rest
); rest
= XCDR (rest
))
5194 Lisp_Object x_charset
;
5195 Lisp_Object w32_charset
;
5196 Lisp_Object codepage
;
5198 Lisp_Object this_entry
= XCAR (rest
);
5200 /* Skip invalid entries in alist. */
5201 if (!CONSP (this_entry
) || !STRINGP (XCAR (this_entry
))
5202 || !CONSP (XCDR (this_entry
))
5203 || !SYMBOLP (XCAR (XCDR (this_entry
))))
5206 x_charset
= XCAR (this_entry
);
5207 w32_charset
= XCAR (XCDR (this_entry
));
5208 codepage
= XCDR (XCDR (this_entry
));
5210 /* Look for Same charset and a valid codepage (or non-int
5211 which means ignore). */
5212 if (EQ (w32_charset
, charset_type
)
5213 && (!INTEGERP (codepage
) || XINT (codepage
) == CP_DEFAULT
5214 || IsValidCodePage (XINT (codepage
))))
5216 retval
= Fcons (x_charset
, retval
);
5220 /* If no match, encode the numeric value. */
5223 sprintf (buf
, "*-#%u", fncharset
);
5224 return Fcons (build_string (buf
), Qnil
);
5231 /* Get the Windows codepage corresponding to the specified font. The
5232 charset info in the font name is used to look up
5233 w32-charset-to-codepage-alist. */
5235 w32_codepage_for_font (char *fontname
)
5237 Lisp_Object codepage
, entry
;
5238 char *charset_str
, *charset
, *end
;
5240 if (NILP (Vw32_charset_info_alist
))
5243 /* Extract charset part of font string. */
5244 charset
= xlfd_charset_of_font (fontname
);
5249 charset_str
= (char *) alloca (strlen (charset
) + 1);
5250 strcpy (charset_str
, charset
);
5253 /* Remove leading "*-". */
5254 if (strncmp ("*-", charset_str
, 2) == 0)
5255 charset
= charset_str
+ 2;
5258 charset
= charset_str
;
5260 /* Stop match at wildcard (including preceding '-'). */
5261 if (end
= strchr (charset
, '*'))
5263 if (end
> charset
&& *(end
-1) == '-')
5268 entry
= Fassoc (build_string(charset
), Vw32_charset_info_alist
);
5272 codepage
= Fcdr (Fcdr (entry
));
5274 if (NILP (codepage
))
5276 else if (XFASTINT (codepage
) == XFASTINT (Qt
))
5278 else if (INTEGERP (codepage
))
5279 return XINT (codepage
);
5286 w32_to_x_font (lplogfont
, lpxstr
, len
, specific_charset
)
5287 LOGFONT
* lplogfont
;
5290 char * specific_charset
;
5294 char height_pixels
[8];
5296 char width_pixels
[8];
5297 char *fontname_dash
;
5298 int display_resy
= (int) one_w32_display_info
.resy
;
5299 int display_resx
= (int) one_w32_display_info
.resx
;
5301 struct coding_system coding
;
5303 if (!lpxstr
) abort ();
5308 if (lplogfont
->lfOutPrecision
== OUT_STRING_PRECIS
)
5309 fonttype
= "raster";
5310 else if (lplogfont
->lfOutPrecision
== OUT_STROKE_PRECIS
)
5311 fonttype
= "outline";
5313 fonttype
= "unknown";
5315 setup_coding_system (Fcheck_coding_system (Vlocale_coding_system
),
5317 coding
.src_multibyte
= 0;
5318 coding
.dst_multibyte
= 1;
5319 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
5320 /* We explicitely disable composition handling because selection
5321 data should not contain any composition sequence. */
5322 coding
.composing
= COMPOSITION_DISABLED
;
5323 bufsz
= decoding_buffer_size (&coding
, LF_FACESIZE
);
5325 fontname
= alloca(sizeof(*fontname
) * bufsz
);
5326 decode_coding (&coding
, lplogfont
->lfFaceName
, fontname
,
5327 strlen(lplogfont
->lfFaceName
), bufsz
- 1);
5328 *(fontname
+ coding
.produced
) = '\0';
5330 /* Replace dashes with underscores so the dashes are not
5332 fontname_dash
= fontname
;
5333 while (fontname_dash
= strchr (fontname_dash
, '-'))
5334 *fontname_dash
= '_';
5336 if (lplogfont
->lfHeight
)
5338 sprintf (height_pixels
, "%u", abs (lplogfont
->lfHeight
));
5339 sprintf (height_dpi
, "%u",
5340 abs (lplogfont
->lfHeight
) * 720 / display_resy
);
5344 strcpy (height_pixels
, "*");
5345 strcpy (height_dpi
, "*");
5348 #if 0 /* Never put the width in the xfld. It fails on fonts with
5349 double-width characters. */
5350 if (lplogfont
->lfWidth
)
5351 sprintf (width_pixels
, "%u", lplogfont
->lfWidth
* 10);
5354 strcpy (width_pixels
, "*");
5356 _snprintf (lpxstr
, len
- 1,
5357 "-%s-%s-%s-%c-normal-normal-%s-%s-%d-%d-%c-%s-%s",
5358 fonttype
, /* foundry */
5359 fontname
, /* family */
5360 w32_to_x_weight (lplogfont
->lfWeight
), /* weight */
5361 lplogfont
->lfItalic
?'i':'r', /* slant */
5363 /* add style name */
5364 height_pixels
, /* pixel size */
5365 height_dpi
, /* point size */
5366 display_resx
, /* resx */
5367 display_resy
, /* resy */
5368 ((lplogfont
->lfPitchAndFamily
& 0x3) == VARIABLE_PITCH
)
5369 ? 'p' : 'c', /* spacing */
5370 width_pixels
, /* avg width */
5371 specific_charset
? specific_charset
5372 : w32_to_x_charset (lplogfont
->lfCharSet
)
5373 /* charset registry and encoding */
5376 lpxstr
[len
- 1] = 0; /* just to be sure */
5381 x_to_w32_font (lpxstr
, lplogfont
)
5383 LOGFONT
* lplogfont
;
5385 struct coding_system coding
;
5387 if (!lplogfont
) return (FALSE
);
5389 memset (lplogfont
, 0, sizeof (*lplogfont
));
5391 /* Set default value for each field. */
5393 lplogfont
->lfOutPrecision
= OUT_DEFAULT_PRECIS
;
5394 lplogfont
->lfClipPrecision
= CLIP_DEFAULT_PRECIS
;
5395 lplogfont
->lfQuality
= DEFAULT_QUALITY
;
5397 /* go for maximum quality */
5398 lplogfont
->lfOutPrecision
= OUT_STROKE_PRECIS
;
5399 lplogfont
->lfClipPrecision
= CLIP_STROKE_PRECIS
;
5400 lplogfont
->lfQuality
= PROOF_QUALITY
;
5403 lplogfont
->lfCharSet
= DEFAULT_CHARSET
;
5404 lplogfont
->lfWeight
= FW_DONTCARE
;
5405 lplogfont
->lfPitchAndFamily
= DEFAULT_PITCH
| FF_DONTCARE
;
5410 /* Provide a simple escape mechanism for specifying Windows font names
5411 * directly -- if font spec does not beginning with '-', assume this
5413 * "<font name>[:height in pixels[:width in pixels[:weight]]]"
5419 char name
[50], weight
[20], slant
, pitch
, pixels
[10], height
[10],
5420 width
[10], resy
[10], remainder
[50];
5422 int dpi
= (int) one_w32_display_info
.resy
;
5424 fields
= sscanf (lpxstr
,
5425 "-%*[^-]-%49[^-]-%19[^-]-%c-%*[^-]-%*[^-]-%9[^-]-%9[^-]-%*[^-]-%9[^-]-%c-%9[^-]-%49s",
5426 name
, weight
, &slant
, pixels
, height
, resy
, &pitch
, width
, remainder
);
5430 /* In the general case when wildcards cover more than one field,
5431 we don't know which field is which, so don't fill any in.
5432 However, we need to cope with this particular form, which is
5433 generated by font_list_1 (invoked by try_font_list):
5434 "-raster-6x10-*-gb2312*-*"
5435 and make sure to correctly parse the charset field. */
5438 fields
= sscanf (lpxstr
,
5439 "-%*[^-]-%49[^-]-*-%49s",
5442 else if (fields
< 9)
5448 if (fields
> 0 && name
[0] != '*')
5454 (Fcheck_coding_system (Vlocale_coding_system
), &coding
);
5455 coding
.src_multibyte
= 1;
5456 coding
.dst_multibyte
= 0;
5457 /* Need to set COMPOSITION_DISABLED, otherwise Emacs crashes in
5458 encode_coding_iso2022 trying to dereference a null pointer. */
5459 coding
.composing
= COMPOSITION_DISABLED
;
5460 if (coding
.type
== coding_type_iso2022
)
5461 coding
.flags
|= CODING_FLAG_ISO_SAFE
;
5462 bufsize
= encoding_buffer_size (&coding
, strlen (name
));
5463 buf
= (unsigned char *) alloca (bufsize
);
5464 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
5465 encode_coding (&coding
, name
, buf
, strlen (name
), bufsize
);
5466 if (coding
.produced
>= LF_FACESIZE
)
5467 coding
.produced
= LF_FACESIZE
- 1;
5468 buf
[coding
.produced
] = 0;
5469 strcpy (lplogfont
->lfFaceName
, buf
);
5473 lplogfont
->lfFaceName
[0] = '\0';
5478 lplogfont
->lfWeight
= x_to_w32_weight ((fields
> 0 ? weight
: ""));
5482 lplogfont
->lfItalic
= (fields
> 0 && slant
== 'i');
5486 if (fields
> 0 && pixels
[0] != '*')
5487 lplogfont
->lfHeight
= atoi (pixels
);
5491 if (fields
> 0 && resy
[0] != '*')
5494 if (tem
> 0) dpi
= tem
;
5497 if (fields
> -1 && lplogfont
->lfHeight
== 0 && height
[0] != '*')
5498 lplogfont
->lfHeight
= atoi (height
) * dpi
/ 720;
5501 lplogfont
->lfPitchAndFamily
=
5502 (fields
> 0 && pitch
== 'p') ? VARIABLE_PITCH
: FIXED_PITCH
;
5506 if (fields
> 0 && width
[0] != '*')
5507 lplogfont
->lfWidth
= atoi (width
) / 10;
5511 /* Strip the trailing '-' if present. (it shouldn't be, as it
5512 fails the test against xlfd-tight-regexp in fontset.el). */
5514 int len
= strlen (remainder
);
5515 if (len
> 0 && remainder
[len
-1] == '-')
5516 remainder
[len
-1] = 0;
5518 encoding
= remainder
;
5520 if (strncmp (encoding
, "*-", 2) == 0)
5523 lplogfont
->lfCharSet
= x_to_w32_charset (encoding
);
5528 char name
[100], height
[10], width
[10], weight
[20];
5530 fields
= sscanf (lpxstr
,
5531 "%99[^:]:%9[^:]:%9[^:]:%19s",
5532 name
, height
, width
, weight
);
5534 if (fields
== EOF
) return (FALSE
);
5538 strncpy (lplogfont
->lfFaceName
,name
, LF_FACESIZE
);
5539 lplogfont
->lfFaceName
[LF_FACESIZE
-1] = 0;
5543 lplogfont
->lfFaceName
[0] = 0;
5549 lplogfont
->lfHeight
= atoi (height
);
5554 lplogfont
->lfWidth
= atoi (width
);
5558 lplogfont
->lfWeight
= x_to_w32_weight ((fields
> 0 ? weight
: ""));
5561 /* This makes TrueType fonts work better. */
5562 lplogfont
->lfHeight
= - abs (lplogfont
->lfHeight
);
5567 /* Strip the pixel height and point height from the given xlfd, and
5568 return the pixel height. If no pixel height is specified, calculate
5569 one from the point height, or if that isn't defined either, return
5570 0 (which usually signifies a scalable font).
5573 xlfd_strip_height (char *fontname
)
5575 int pixel_height
, field_number
;
5576 char *read_from
, *write_to
;
5580 pixel_height
= field_number
= 0;
5583 /* Look for height fields. */
5584 for (read_from
= fontname
; *read_from
; read_from
++)
5586 if (*read_from
== '-')
5589 if (field_number
== 7) /* Pixel height. */
5592 write_to
= read_from
;
5594 /* Find end of field. */
5595 for (;*read_from
&& *read_from
!= '-'; read_from
++)
5598 /* Split the fontname at end of field. */
5604 pixel_height
= atoi (write_to
);
5605 /* Blank out field. */
5606 if (read_from
> write_to
)
5611 /* If the pixel height field is at the end (partial xlfd),
5614 return pixel_height
;
5616 /* If we got a pixel height, the point height can be
5617 ignored. Just blank it out and break now. */
5620 /* Find end of point size field. */
5621 for (; *read_from
&& *read_from
!= '-'; read_from
++)
5627 /* Blank out the point size field. */
5628 if (read_from
> write_to
)
5634 return pixel_height
;
5638 /* If the point height is already blank, break now. */
5639 if (*read_from
== '-')
5645 else if (field_number
== 8)
5647 /* If we didn't get a pixel height, try to get the point
5648 height and convert that. */
5650 char *point_size_start
= read_from
++;
5652 /* Find end of field. */
5653 for (; *read_from
&& *read_from
!= '-'; read_from
++)
5662 point_size
= atoi (point_size_start
);
5664 /* Convert to pixel height. */
5665 pixel_height
= point_size
5666 * one_w32_display_info
.height_in
/ 720;
5668 /* Blank out this field and break. */
5676 /* Shift the rest of the font spec into place. */
5677 if (write_to
&& read_from
> write_to
)
5679 for (; *read_from
; read_from
++, write_to
++)
5680 *write_to
= *read_from
;
5684 return pixel_height
;
5687 /* Assume parameter 1 is fully qualified, no wildcards. */
5689 w32_font_match (fontname
, pattern
)
5694 char *font_name_copy
;
5695 char *regex
= alloca (strlen (pattern
) * 2 + 3);
5697 font_name_copy
= alloca (strlen (fontname
) + 1);
5698 strcpy (font_name_copy
, fontname
);
5703 /* Turn pattern into a regexp and do a regexp match. */
5704 for (; *pattern
; pattern
++)
5706 if (*pattern
== '?')
5708 else if (*pattern
== '*')
5719 /* Strip out font heights and compare them seperately, since
5720 rounding error can cause mismatches. This also allows a
5721 comparison between a font that declares only a pixel height and a
5722 pattern that declares the point height.
5725 int font_height
, pattern_height
;
5727 font_height
= xlfd_strip_height (font_name_copy
);
5728 pattern_height
= xlfd_strip_height (regex
);
5730 /* Compare now, and don't bother doing expensive regexp matching
5731 if the heights differ. */
5732 if (font_height
&& pattern_height
&& (font_height
!= pattern_height
))
5736 return (fast_string_match_ignore_case (build_string (regex
),
5737 build_string(font_name_copy
)) >= 0);
5740 /* Callback functions, and a structure holding info they need, for
5741 listing system fonts on W32. We need one set of functions to do the
5742 job properly, but these don't work on NT 3.51 and earlier, so we
5743 have a second set which don't handle character sets properly to
5746 In both cases, there are two passes made. The first pass gets one
5747 font from each family, the second pass lists all the fonts from
5750 typedef struct enumfont_t
5755 XFontStruct
*size_ref
;
5756 Lisp_Object pattern
;
5762 enum_font_maybe_add_to_list (enumfont_t
*, LOGFONT
*, char *, Lisp_Object
);
5766 enum_font_cb2 (lplf
, lptm
, FontType
, lpef
)
5768 NEWTEXTMETRIC
* lptm
;
5772 /* Ignore struck out and underlined versions of fonts. */
5773 if (lplf
->elfLogFont
.lfStrikeOut
|| lplf
->elfLogFont
.lfUnderline
)
5776 /* Only return fonts with names starting with @ if they were
5777 explicitly specified, since Microsoft uses an initial @ to
5778 denote fonts for vertical writing, without providing a more
5779 convenient way of identifying them. */
5780 if (lplf
->elfLogFont
.lfFaceName
[0] == '@'
5781 && lpef
->logfont
.lfFaceName
[0] != '@')
5784 /* Check that the character set matches if it was specified */
5785 if (lpef
->logfont
.lfCharSet
!= DEFAULT_CHARSET
&&
5786 lplf
->elfLogFont
.lfCharSet
!= lpef
->logfont
.lfCharSet
)
5789 if (FontType
== RASTER_FONTTYPE
)
5791 /* DBCS raster fonts have problems displaying, so skip them. */
5792 int charset
= lplf
->elfLogFont
.lfCharSet
;
5793 if (charset
== SHIFTJIS_CHARSET
5794 || charset
== HANGEUL_CHARSET
5795 || charset
== CHINESEBIG5_CHARSET
5796 || charset
== GB2312_CHARSET
5797 #ifdef JOHAB_CHARSET
5798 || charset
== JOHAB_CHARSET
5806 Lisp_Object width
= Qnil
;
5807 Lisp_Object charset_list
= Qnil
;
5808 char *charset
= NULL
;
5810 /* Truetype fonts do not report their true metrics until loaded */
5811 if (FontType
!= RASTER_FONTTYPE
)
5813 if (!NILP (lpef
->pattern
))
5815 /* Scalable fonts are as big as you want them to be. */
5816 lplf
->elfLogFont
.lfHeight
= lpef
->logfont
.lfHeight
;
5817 lplf
->elfLogFont
.lfWidth
= lpef
->logfont
.lfWidth
;
5818 width
= make_number (lpef
->logfont
.lfWidth
);
5822 lplf
->elfLogFont
.lfHeight
= 0;
5823 lplf
->elfLogFont
.lfWidth
= 0;
5827 /* Make sure the height used here is the same as everywhere
5828 else (ie character height, not cell height). */
5829 if (lplf
->elfLogFont
.lfHeight
> 0)
5831 /* lptm can be trusted for RASTER fonts, but not scalable ones. */
5832 if (FontType
== RASTER_FONTTYPE
)
5833 lplf
->elfLogFont
.lfHeight
= lptm
->tmInternalLeading
- lptm
->tmHeight
;
5835 lplf
->elfLogFont
.lfHeight
= -lplf
->elfLogFont
.lfHeight
;
5838 if (!NILP (lpef
->pattern
))
5840 charset
= xlfd_charset_of_font (SDATA (lpef
->pattern
));
5842 /* We already checked charsets above, but DEFAULT_CHARSET
5843 slipped through. So only allow exact matches for DEFAULT_CHARSET. */
5845 && strncmp (charset
, "*-*", 3) != 0
5846 && lpef
->logfont
.lfCharSet
== DEFAULT_CHARSET
5847 && strcmp (charset
, w32_to_x_charset (DEFAULT_CHARSET
)) != 0)
5852 charset_list
= Fcons (build_string (charset
), Qnil
);
5854 charset_list
= w32_to_all_x_charsets (lplf
->elfLogFont
.lfCharSet
);
5856 /* Loop through the charsets. */
5857 for ( ; CONSP (charset_list
); charset_list
= Fcdr (charset_list
))
5859 Lisp_Object this_charset
= Fcar (charset_list
);
5860 charset
= SDATA (this_charset
);
5862 /* List bold and italic variations if w32-enable-synthesized-fonts
5863 is non-nil and this is a plain font. */
5864 if (w32_enable_synthesized_fonts
5865 && lplf
->elfLogFont
.lfWeight
== FW_NORMAL
5866 && lplf
->elfLogFont
.lfItalic
== FALSE
)
5868 enum_font_maybe_add_to_list (lpef
, &(lplf
->elfLogFont
),
5871 lplf
->elfLogFont
.lfWeight
= FW_BOLD
;
5872 enum_font_maybe_add_to_list (lpef
, &(lplf
->elfLogFont
),
5875 lplf
->elfLogFont
.lfItalic
= TRUE
;
5876 enum_font_maybe_add_to_list (lpef
, &(lplf
->elfLogFont
),
5879 lplf
->elfLogFont
.lfWeight
= FW_NORMAL
;
5880 enum_font_maybe_add_to_list (lpef
, &(lplf
->elfLogFont
),
5884 enum_font_maybe_add_to_list (lpef
, &(lplf
->elfLogFont
),
5893 enum_font_maybe_add_to_list (lpef
, logfont
, match_charset
, width
)
5896 char * match_charset
;
5901 if (!w32_to_x_font (logfont
, buf
, 100, match_charset
))
5904 if (NILP (lpef
->pattern
)
5905 || w32_font_match (buf
, SDATA (lpef
->pattern
)))
5907 /* Check if we already listed this font. This may happen if
5908 w32_enable_synthesized_fonts is non-nil, and there are real
5909 bold and italic versions of the font. */
5910 Lisp_Object font_name
= build_string (buf
);
5911 if (NILP (Fmember (font_name
, lpef
->list
)))
5913 Lisp_Object entry
= Fcons (font_name
, width
);
5914 lpef
->list
= Fcons (entry
, lpef
->list
);
5922 enum_font_cb1 (lplf
, lptm
, FontType
, lpef
)
5924 NEWTEXTMETRIC
* lptm
;
5928 return EnumFontFamilies (lpef
->hdc
,
5929 lplf
->elfLogFont
.lfFaceName
,
5930 (FONTENUMPROC
) enum_font_cb2
,
5936 enum_fontex_cb2 (lplf
, lptm
, font_type
, lpef
)
5937 ENUMLOGFONTEX
* lplf
;
5938 NEWTEXTMETRICEX
* lptm
;
5942 /* We are not interested in the extra info we get back from the 'Ex
5943 version - only the fact that we get character set variations
5944 enumerated seperately. */
5945 return enum_font_cb2 ((ENUMLOGFONT
*) lplf
, (NEWTEXTMETRIC
*) lptm
,
5950 enum_fontex_cb1 (lplf
, lptm
, font_type
, lpef
)
5951 ENUMLOGFONTEX
* lplf
;
5952 NEWTEXTMETRICEX
* lptm
;
5956 HMODULE gdi32
= GetModuleHandle ("gdi32.dll");
5957 FARPROC enum_font_families_ex
5958 = GetProcAddress ( gdi32
, "EnumFontFamiliesExA");
5959 /* We don't really expect EnumFontFamiliesEx to disappear once we
5960 get here, so don't bother handling it gracefully. */
5961 if (enum_font_families_ex
== NULL
)
5962 error ("gdi32.dll has disappeared!");
5963 return enum_font_families_ex (lpef
->hdc
,
5965 (FONTENUMPROC
) enum_fontex_cb2
,
5969 /* Interface to fontset handler. (adapted from mw32font.c in Meadow
5970 and xterm.c in Emacs 20.3) */
5972 static Lisp_Object
w32_list_bdf_fonts (Lisp_Object pattern
, int max_names
)
5974 char *fontname
, *ptnstr
;
5975 Lisp_Object list
, tem
, newlist
= Qnil
;
5978 list
= Vw32_bdf_filename_alist
;
5979 ptnstr
= SDATA (pattern
);
5981 for ( ; CONSP (list
); list
= XCDR (list
))
5985 fontname
= SDATA (XCAR (tem
));
5986 else if (STRINGP (tem
))
5987 fontname
= SDATA (tem
);
5991 if (w32_font_match (fontname
, ptnstr
))
5993 newlist
= Fcons (XCAR (tem
), newlist
);
5995 if (max_names
>= 0 && n_fonts
>= max_names
)
6004 /* Return a list of names of available fonts matching PATTERN on frame
6005 F. If SIZE is not 0, it is the size (maximum bound width) of fonts
6006 to be listed. Frame F NULL means we have not yet created any
6007 frame, which means we can't get proper size info, as we don't have
6008 a device context to use for GetTextMetrics.
6009 MAXNAMES sets a limit on how many fonts to match. If MAXNAMES is
6010 negative, then all matching fonts are returned. */
6013 w32_list_fonts (f
, pattern
, size
, maxnames
)
6015 Lisp_Object pattern
;
6019 Lisp_Object patterns
, key
= Qnil
, tem
, tpat
;
6020 Lisp_Object list
= Qnil
, newlist
= Qnil
, second_best
= Qnil
;
6021 struct w32_display_info
*dpyinfo
= &one_w32_display_info
;
6024 patterns
= Fassoc (pattern
, Valternate_fontname_alist
);
6025 if (NILP (patterns
))
6026 patterns
= Fcons (pattern
, Qnil
);
6028 for (; CONSP (patterns
); patterns
= XCDR (patterns
))
6033 tpat
= XCAR (patterns
);
6035 if (!STRINGP (tpat
))
6038 /* Avoid expensive EnumFontFamilies functions if we are not
6039 going to be able to output one of these anyway. */
6040 codepage
= w32_codepage_for_font (SDATA (tpat
));
6041 if (codepage
!= CP_8BIT
&& codepage
!= CP_UNICODE
6042 && codepage
!= CP_DEFAULT
&& codepage
!= CP_UNKNOWN
6043 && !IsValidCodePage(codepage
))
6046 /* See if we cached the result for this particular query.
6047 The cache is an alist of the form:
6048 ((PATTERN (FONTNAME . WIDTH) ...) ...)
6050 if (tem
= XCDR (dpyinfo
->name_list_element
),
6051 !NILP (list
= Fassoc (tpat
, tem
)))
6053 list
= Fcdr_safe (list
);
6054 /* We have a cached list. Don't have to get the list again. */
6059 /* At first, put PATTERN in the cache. */
6064 /* Use EnumFontFamiliesEx where it is available, as it knows
6065 about character sets. Fall back to EnumFontFamilies for
6066 older versions of NT that don't support the 'Ex function. */
6067 x_to_w32_font (SDATA (tpat
), &ef
.logfont
);
6069 LOGFONT font_match_pattern
;
6070 HMODULE gdi32
= GetModuleHandle ("gdi32.dll");
6071 FARPROC enum_font_families_ex
6072 = GetProcAddress ( gdi32
, "EnumFontFamiliesExA");
6074 /* We do our own pattern matching so we can handle wildcards. */
6075 font_match_pattern
.lfFaceName
[0] = 0;
6076 font_match_pattern
.lfPitchAndFamily
= 0;
6077 /* We can use the charset, because if it is a wildcard it will
6078 be DEFAULT_CHARSET anyway. */
6079 font_match_pattern
.lfCharSet
= ef
.logfont
.lfCharSet
;
6081 ef
.hdc
= GetDC (dpyinfo
->root_window
);
6083 if (enum_font_families_ex
)
6084 enum_font_families_ex (ef
.hdc
,
6085 &font_match_pattern
,
6086 (FONTENUMPROC
) enum_fontex_cb1
,
6089 EnumFontFamilies (ef
.hdc
, NULL
, (FONTENUMPROC
) enum_font_cb1
,
6092 ReleaseDC (dpyinfo
->root_window
, ef
.hdc
);
6098 /* Make a list of the fonts we got back.
6099 Store that in the font cache for the display. */
6100 XSETCDR (dpyinfo
->name_list_element
,
6101 Fcons (Fcons (tpat
, list
),
6102 XCDR (dpyinfo
->name_list_element
)));
6105 if (NILP (list
)) continue; /* Try the remaining alternatives. */
6107 newlist
= second_best
= Qnil
;
6109 /* Make a list of the fonts that have the right width. */
6110 for (; CONSP (list
); list
= XCDR (list
))
6117 if (NILP (XCAR (tem
)))
6121 newlist
= Fcons (XCAR (tem
), newlist
);
6123 if (maxnames
>= 0 && n_fonts
>= maxnames
)
6128 if (!INTEGERP (XCDR (tem
)))
6130 /* Since we don't yet know the size of the font, we must
6131 load it and try GetTextMetrics. */
6132 W32FontStruct thisinfo
;
6137 if (!x_to_w32_font (SDATA (XCAR (tem
)), &lf
))
6141 thisinfo
.bdf
= NULL
;
6142 thisinfo
.hfont
= CreateFontIndirect (&lf
);
6143 if (thisinfo
.hfont
== NULL
)
6146 hdc
= GetDC (dpyinfo
->root_window
);
6147 oldobj
= SelectObject (hdc
, thisinfo
.hfont
);
6148 if (GetTextMetrics (hdc
, &thisinfo
.tm
))
6149 XSETCDR (tem
, make_number (FONT_WIDTH (&thisinfo
)));
6151 XSETCDR (tem
, make_number (0));
6152 SelectObject (hdc
, oldobj
);
6153 ReleaseDC (dpyinfo
->root_window
, hdc
);
6154 DeleteObject(thisinfo
.hfont
);
6157 found_size
= XINT (XCDR (tem
));
6158 if (found_size
== size
)
6160 newlist
= Fcons (XCAR (tem
), newlist
);
6162 if (maxnames
>= 0 && n_fonts
>= maxnames
)
6165 /* keep track of the closest matching size in case
6166 no exact match is found. */
6167 else if (found_size
> 0)
6169 if (NILP (second_best
))
6172 else if (found_size
< size
)
6174 if (XINT (XCDR (second_best
)) > size
6175 || XINT (XCDR (second_best
)) < found_size
)
6180 if (XINT (XCDR (second_best
)) > size
6181 && XINT (XCDR (second_best
)) >
6188 if (!NILP (newlist
))
6190 else if (!NILP (second_best
))
6192 newlist
= Fcons (XCAR (second_best
), Qnil
);
6197 /* Include any bdf fonts. */
6198 if (n_fonts
< maxnames
|| maxnames
< 0)
6200 Lisp_Object combined
[2];
6201 combined
[0] = w32_list_bdf_fonts (pattern
, maxnames
- n_fonts
);
6202 combined
[1] = newlist
;
6203 newlist
= Fnconc(2, combined
);
6210 /* Return a pointer to struct font_info of font FONT_IDX of frame F. */
6212 w32_get_font_info (f
, font_idx
)
6216 return (FRAME_W32_FONT_TABLE (f
) + font_idx
);
6221 w32_query_font (struct frame
*f
, char *fontname
)
6224 struct font_info
*pfi
;
6226 pfi
= FRAME_W32_FONT_TABLE (f
);
6228 for (i
= 0; i
< one_w32_display_info
.n_fonts
;i
++, pfi
++)
6230 if (stricmp(pfi
->name
, fontname
) == 0) return pfi
;
6236 /* Find a CCL program for a font specified by FONTP, and set the member
6237 `encoder' of the structure. */
6240 w32_find_ccl_program (fontp
)
6241 struct font_info
*fontp
;
6243 Lisp_Object list
, elt
;
6245 for (list
= Vfont_ccl_encoder_alist
; CONSP (list
); list
= XCDR (list
))
6249 && STRINGP (XCAR (elt
))
6250 && (fast_c_string_match_ignore_case (XCAR (elt
), fontp
->name
)
6256 struct ccl_program
*ccl
6257 = (struct ccl_program
*) xmalloc (sizeof (struct ccl_program
));
6259 if (setup_ccl_program (ccl
, XCDR (elt
)) < 0)
6262 fontp
->font_encoder
= ccl
;
6266 /* directory-files from dired.c. */
6267 Lisp_Object Fdirectory_files
P_((Lisp_Object
, Lisp_Object
, Lisp_Object
, Lisp_Object
));
6270 /* Find BDF files in a specified directory. (use GCPRO when calling,
6271 as this calls lisp to get a directory listing). */
6273 w32_find_bdf_fonts_in_dir (Lisp_Object directory
)
6275 Lisp_Object filelist
, list
= Qnil
;
6278 if (!STRINGP(directory
))
6281 filelist
= Fdirectory_files (directory
, Qt
,
6282 build_string (".*\\.[bB][dD][fF]"), Qt
);
6284 for ( ; CONSP(filelist
); filelist
= XCDR (filelist
))
6286 Lisp_Object filename
= XCAR (filelist
);
6287 if (w32_BDF_to_x_font (SDATA (filename
), fontname
, 100))
6288 store_in_alist (&list
, build_string (fontname
), filename
);
6293 DEFUN ("w32-find-bdf-fonts", Fw32_find_bdf_fonts
, Sw32_find_bdf_fonts
,
6295 doc
: /* Return a list of BDF fonts in DIRECTORY.
6296 The list is suitable for appending to `w32-bdf-filename-alist'.
6297 Fonts which do not contain an xlfd description will not be included
6298 in the list. DIRECTORY may be a list of directories. */)
6300 Lisp_Object directory
;
6302 Lisp_Object list
= Qnil
;
6303 struct gcpro gcpro1
, gcpro2
;
6305 if (!CONSP (directory
))
6306 return w32_find_bdf_fonts_in_dir (directory
);
6308 for ( ; CONSP (directory
); directory
= XCDR (directory
))
6310 Lisp_Object pair
[2];
6313 GCPRO2 (directory
, list
);
6314 pair
[1] = w32_find_bdf_fonts_in_dir( XCAR (directory
) );
6315 list
= Fnconc( 2, pair
);
6322 DEFUN ("xw-color-defined-p", Fxw_color_defined_p
, Sxw_color_defined_p
, 1, 2, 0,
6323 doc
: /* Internal function called by `color-defined-p', which see. */)
6325 Lisp_Object color
, frame
;
6328 FRAME_PTR f
= check_x_frame (frame
);
6330 CHECK_STRING (color
);
6332 if (w32_defined_color (f
, SDATA (color
), &foo
, 0))
6338 DEFUN ("xw-color-values", Fxw_color_values
, Sxw_color_values
, 1, 2, 0,
6339 doc
: /* Internal function called by `color-values', which see. */)
6341 Lisp_Object color
, frame
;
6344 FRAME_PTR f
= check_x_frame (frame
);
6346 CHECK_STRING (color
);
6348 if (w32_defined_color (f
, SDATA (color
), &foo
, 0))
6349 return list3 (make_number ((GetRValue (foo
.pixel
) << 8)
6350 | GetRValue (foo
.pixel
)),
6351 make_number ((GetGValue (foo
.pixel
) << 8)
6352 | GetGValue (foo
.pixel
)),
6353 make_number ((GetBValue (foo
.pixel
) << 8)
6354 | GetBValue (foo
.pixel
)));
6359 DEFUN ("xw-display-color-p", Fxw_display_color_p
, Sxw_display_color_p
, 0, 1, 0,
6360 doc
: /* Internal function called by `display-color-p', which see. */)
6362 Lisp_Object display
;
6364 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
6366 if ((dpyinfo
->n_planes
* dpyinfo
->n_cbits
) <= 2)
6372 DEFUN ("x-display-grayscale-p", Fx_display_grayscale_p
,
6373 Sx_display_grayscale_p
, 0, 1, 0,
6374 doc
: /* Return t if DISPLAY supports shades of gray.
6375 Note that color displays do support shades of gray.
6376 The optional argument DISPLAY specifies which display to ask about.
6377 DISPLAY should be either a frame or a display name (a string).
6378 If omitted or nil, that stands for the selected frame's display. */)
6380 Lisp_Object display
;
6382 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
6384 if ((dpyinfo
->n_planes
* dpyinfo
->n_cbits
) <= 1)
6390 DEFUN ("x-display-pixel-width", Fx_display_pixel_width
,
6391 Sx_display_pixel_width
, 0, 1, 0,
6392 doc
: /* Returns the width in pixels of DISPLAY.
6393 The optional argument DISPLAY specifies which display to ask about.
6394 DISPLAY should be either a frame or a display name (a string).
6395 If omitted or nil, that stands for the selected frame's display. */)
6397 Lisp_Object display
;
6399 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
6401 return make_number (dpyinfo
->width
);
6404 DEFUN ("x-display-pixel-height", Fx_display_pixel_height
,
6405 Sx_display_pixel_height
, 0, 1, 0,
6406 doc
: /* Returns the height in pixels of DISPLAY.
6407 The optional argument DISPLAY specifies which display to ask about.
6408 DISPLAY should be either a frame or a display name (a string).
6409 If omitted or nil, that stands for the selected frame's display. */)
6411 Lisp_Object display
;
6413 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
6415 return make_number (dpyinfo
->height
);
6418 DEFUN ("x-display-planes", Fx_display_planes
, Sx_display_planes
,
6420 doc
: /* Returns the number of bitplanes of DISPLAY.
6421 The optional argument DISPLAY specifies which display to ask about.
6422 DISPLAY should be either a frame or a display name (a string).
6423 If omitted or nil, that stands for the selected frame's display. */)
6425 Lisp_Object display
;
6427 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
6429 return make_number (dpyinfo
->n_planes
* dpyinfo
->n_cbits
);
6432 DEFUN ("x-display-color-cells", Fx_display_color_cells
, Sx_display_color_cells
,
6434 doc
: /* Returns the number of color cells of DISPLAY.
6435 The optional argument DISPLAY specifies which display to ask about.
6436 DISPLAY should be either a frame or a display name (a string).
6437 If omitted or nil, that stands for the selected frame's display. */)
6439 Lisp_Object display
;
6441 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
6445 hdc
= GetDC (dpyinfo
->root_window
);
6446 if (dpyinfo
->has_palette
)
6447 cap
= GetDeviceCaps (hdc
, SIZEPALETTE
);
6449 cap
= GetDeviceCaps (hdc
, NUMCOLORS
);
6451 /* We force 24+ bit depths to 24-bit, both to prevent an overflow
6452 and because probably is more meaningful on Windows anyway */
6454 cap
= 1 << min(dpyinfo
->n_planes
* dpyinfo
->n_cbits
, 24);
6456 ReleaseDC (dpyinfo
->root_window
, hdc
);
6458 return make_number (cap
);
6461 DEFUN ("x-server-max-request-size", Fx_server_max_request_size
,
6462 Sx_server_max_request_size
,
6464 doc
: /* Returns the maximum request size of the server of DISPLAY.
6465 The optional argument DISPLAY specifies which display to ask about.
6466 DISPLAY should be either a frame or a display name (a string).
6467 If omitted or nil, that stands for the selected frame's display. */)
6469 Lisp_Object display
;
6471 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
6473 return make_number (1);
6476 DEFUN ("x-server-vendor", Fx_server_vendor
, Sx_server_vendor
, 0, 1, 0,
6477 doc
: /* Returns the "vendor ID" string of the W32 system (Microsoft).
6478 The optional argument DISPLAY specifies which display to ask about.
6479 DISPLAY should be either a frame or a display name (a string).
6480 If omitted or nil, that stands for the selected frame's display. */)
6482 Lisp_Object display
;
6484 return build_string ("Microsoft Corp.");
6487 DEFUN ("x-server-version", Fx_server_version
, Sx_server_version
, 0, 1, 0,
6488 doc
: /* Returns the version numbers of the server of DISPLAY.
6489 The value is a list of three integers: the major and minor
6490 version numbers of the X Protocol in use, and the distributor-specific release
6491 number. See also the function `x-server-vendor'.
6493 The optional argument DISPLAY specifies which display to ask about.
6494 DISPLAY should be either a frame or a display name (a string).
6495 If omitted or nil, that stands for the selected frame's display. */)
6497 Lisp_Object display
;
6499 return Fcons (make_number (w32_major_version
),
6500 Fcons (make_number (w32_minor_version
),
6501 Fcons (make_number (w32_build_number
), Qnil
)));
6504 DEFUN ("x-display-screens", Fx_display_screens
, Sx_display_screens
, 0, 1, 0,
6505 doc
: /* Returns the number of screens on the server of DISPLAY.
6506 The optional argument DISPLAY specifies which display to ask about.
6507 DISPLAY should be either a frame or a display name (a string).
6508 If omitted or nil, that stands for the selected frame's display. */)
6510 Lisp_Object display
;
6512 return make_number (1);
6515 DEFUN ("x-display-mm-height", Fx_display_mm_height
,
6516 Sx_display_mm_height
, 0, 1, 0,
6517 doc
: /* Returns the height in millimeters of DISPLAY.
6518 The optional argument DISPLAY specifies which display to ask about.
6519 DISPLAY should be either a frame or a display name (a string).
6520 If omitted or nil, that stands for the selected frame's display. */)
6522 Lisp_Object display
;
6524 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
6528 hdc
= GetDC (dpyinfo
->root_window
);
6530 cap
= GetDeviceCaps (hdc
, VERTSIZE
);
6532 ReleaseDC (dpyinfo
->root_window
, hdc
);
6534 return make_number (cap
);
6537 DEFUN ("x-display-mm-width", Fx_display_mm_width
, Sx_display_mm_width
, 0, 1, 0,
6538 doc
: /* Returns the width in millimeters of DISPLAY.
6539 The optional argument DISPLAY specifies which display to ask about.
6540 DISPLAY should be either a frame or a display name (a string).
6541 If omitted or nil, that stands for the selected frame's display. */)
6543 Lisp_Object display
;
6545 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
6550 hdc
= GetDC (dpyinfo
->root_window
);
6552 cap
= GetDeviceCaps (hdc
, HORZSIZE
);
6554 ReleaseDC (dpyinfo
->root_window
, hdc
);
6556 return make_number (cap
);
6559 DEFUN ("x-display-backing-store", Fx_display_backing_store
,
6560 Sx_display_backing_store
, 0, 1, 0,
6561 doc
: /* Returns an indication of whether DISPLAY does backing store.
6562 The value may be `always', `when-mapped', or `not-useful'.
6563 The optional argument DISPLAY specifies which display to ask about.
6564 DISPLAY should be either a frame or a display name (a string).
6565 If omitted or nil, that stands for the selected frame's display. */)
6567 Lisp_Object display
;
6569 return intern ("not-useful");
6572 DEFUN ("x-display-visual-class", Fx_display_visual_class
,
6573 Sx_display_visual_class
, 0, 1, 0,
6574 doc
: /* Returns the visual class of DISPLAY.
6575 The value is one of the symbols `static-gray', `gray-scale',
6576 `static-color', `pseudo-color', `true-color', or `direct-color'.
6578 The optional argument DISPLAY specifies which display to ask about.
6579 DISPLAY should be either a frame or a display name (a string).
6580 If omitted or nil, that stands for the selected frame's display. */)
6582 Lisp_Object display
;
6584 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
6585 Lisp_Object result
= Qnil
;
6587 if (dpyinfo
->has_palette
)
6588 result
= intern ("pseudo-color");
6589 else if (dpyinfo
->n_planes
* dpyinfo
->n_cbits
== 1)
6590 result
= intern ("static-grey");
6591 else if (dpyinfo
->n_planes
* dpyinfo
->n_cbits
== 4)
6592 result
= intern ("static-color");
6593 else if (dpyinfo
->n_planes
* dpyinfo
->n_cbits
> 8)
6594 result
= intern ("true-color");
6599 DEFUN ("x-display-save-under", Fx_display_save_under
,
6600 Sx_display_save_under
, 0, 1, 0,
6601 doc
: /* Returns t if DISPLAY supports the save-under feature.
6602 The optional argument DISPLAY specifies which display to ask about.
6603 DISPLAY should be either a frame or a display name (a string).
6604 If omitted or nil, that stands for the selected frame's display. */)
6606 Lisp_Object display
;
6613 register struct frame
*f
;
6615 return FRAME_PIXEL_WIDTH (f
);
6620 register struct frame
*f
;
6622 return FRAME_PIXEL_HEIGHT (f
);
6627 register struct frame
*f
;
6629 return FRAME_COLUMN_WIDTH (f
);
6634 register struct frame
*f
;
6636 return FRAME_LINE_HEIGHT (f
);
6641 register struct frame
*f
;
6643 return FRAME_W32_DISPLAY_INFO (f
)->n_planes
;
6646 /* Return the display structure for the display named NAME.
6647 Open a new connection if necessary. */
6649 struct w32_display_info
*
6650 x_display_info_for_name (name
)
6654 struct w32_display_info
*dpyinfo
;
6656 CHECK_STRING (name
);
6658 for (dpyinfo
= &one_w32_display_info
, names
= w32_display_name_list
;
6660 dpyinfo
= dpyinfo
->next
, names
= XCDR (names
))
6663 tem
= Fstring_equal (XCAR (XCAR (names
)), name
);
6668 /* Use this general default value to start with. */
6669 Vx_resource_name
= Vinvocation_name
;
6671 validate_x_resource_name ();
6673 dpyinfo
= w32_term_init (name
, (unsigned char *)0,
6674 (char *) SDATA (Vx_resource_name
));
6677 error ("Cannot connect to server %s", SDATA (name
));
6680 XSETFASTINT (Vwindow_system_version
, 3);
6685 DEFUN ("x-open-connection", Fx_open_connection
, Sx_open_connection
,
6686 1, 3, 0, doc
: /* Open a connection to a server.
6687 DISPLAY is the name of the display to connect to.
6688 Optional second arg XRM-STRING is a string of resources in xrdb format.
6689 If the optional third arg MUST-SUCCEED is non-nil,
6690 terminate Emacs if we can't open the connection. */)
6691 (display
, xrm_string
, must_succeed
)
6692 Lisp_Object display
, xrm_string
, must_succeed
;
6694 unsigned char *xrm_option
;
6695 struct w32_display_info
*dpyinfo
;
6697 /* If initialization has already been done, return now to avoid
6698 overwriting critical parts of one_w32_display_info. */
6702 CHECK_STRING (display
);
6703 if (! NILP (xrm_string
))
6704 CHECK_STRING (xrm_string
);
6706 if (! EQ (Vwindow_system
, intern ("w32")))
6707 error ("Not using Microsoft Windows");
6709 /* Allow color mapping to be defined externally; first look in user's
6710 HOME directory, then in Emacs etc dir for a file called rgb.txt. */
6712 Lisp_Object color_file
;
6713 struct gcpro gcpro1
;
6715 color_file
= build_string("~/rgb.txt");
6717 GCPRO1 (color_file
);
6719 if (NILP (Ffile_readable_p (color_file
)))
6721 Fexpand_file_name (build_string ("rgb.txt"),
6722 Fsymbol_value (intern ("data-directory")));
6724 Vw32_color_map
= Fw32_load_color_file (color_file
);
6728 if (NILP (Vw32_color_map
))
6729 Vw32_color_map
= Fw32_default_color_map ();
6731 /* Merge in system logical colors. */
6732 add_system_logical_colors_to_map (&Vw32_color_map
);
6734 if (! NILP (xrm_string
))
6735 xrm_option
= (unsigned char *) SDATA (xrm_string
);
6737 xrm_option
= (unsigned char *) 0;
6739 /* Use this general default value to start with. */
6740 /* First remove .exe suffix from invocation-name - it looks ugly. */
6742 char basename
[ MAX_PATH
], *str
;
6744 strcpy (basename
, SDATA (Vinvocation_name
));
6745 str
= strrchr (basename
, '.');
6747 Vinvocation_name
= build_string (basename
);
6749 Vx_resource_name
= Vinvocation_name
;
6751 validate_x_resource_name ();
6753 /* This is what opens the connection and sets x_current_display.
6754 This also initializes many symbols, such as those used for input. */
6755 dpyinfo
= w32_term_init (display
, xrm_option
,
6756 (char *) SDATA (Vx_resource_name
));
6760 if (!NILP (must_succeed
))
6761 fatal ("Cannot connect to server %s.\n",
6764 error ("Cannot connect to server %s", SDATA (display
));
6769 XSETFASTINT (Vwindow_system_version
, 3);
6773 DEFUN ("x-close-connection", Fx_close_connection
,
6774 Sx_close_connection
, 1, 1, 0,
6775 doc
: /* Close the connection to DISPLAY's server.
6776 For DISPLAY, specify either a frame or a display name (a string).
6777 If DISPLAY is nil, that stands for the selected frame's display. */)
6779 Lisp_Object display
;
6781 struct w32_display_info
*dpyinfo
= check_x_display_info (display
);
6784 if (dpyinfo
->reference_count
> 0)
6785 error ("Display still has frames on it");
6788 /* Free the fonts in the font table. */
6789 for (i
= 0; i
< dpyinfo
->n_fonts
; i
++)
6790 if (dpyinfo
->font_table
[i
].name
)
6792 if (dpyinfo
->font_table
[i
].name
!= dpyinfo
->font_table
[i
].full_name
)
6793 xfree (dpyinfo
->font_table
[i
].full_name
);
6794 xfree (dpyinfo
->font_table
[i
].name
);
6795 w32_unload_font (dpyinfo
, dpyinfo
->font_table
[i
].font
);
6797 x_destroy_all_bitmaps (dpyinfo
);
6799 x_delete_display (dpyinfo
);
6805 DEFUN ("x-display-list", Fx_display_list
, Sx_display_list
, 0, 0, 0,
6806 doc
: /* Return the list of display names that Emacs has connections to. */)
6809 Lisp_Object tail
, result
;
6812 for (tail
= w32_display_name_list
; ! NILP (tail
); tail
= XCDR (tail
))
6813 result
= Fcons (XCAR (XCAR (tail
)), result
);
6818 DEFUN ("x-synchronize", Fx_synchronize
, Sx_synchronize
, 1, 2, 0,
6819 doc
: /* This is a noop on W32 systems. */)
6821 Lisp_Object display
, on
;
6828 /***********************************************************************
6830 ***********************************************************************/
6832 DEFUN ("x-change-window-property", Fx_change_window_property
,
6833 Sx_change_window_property
, 2, 6, 0,
6834 doc
: /* Change window property PROP to VALUE on the X window of FRAME.
6835 VALUE may be a string or a list of conses, numbers and/or strings.
6836 If an element in the list is a string, it is converted to
6837 an Atom and the value of the Atom is used. If an element is a cons,
6838 it is converted to a 32 bit number where the car is the 16 top bits and the
6839 cdr is the lower 16 bits.
6840 FRAME nil or omitted means use the selected frame.
6841 If TYPE is given and non-nil, it is the name of the type of VALUE.
6842 If TYPE is not given or nil, the type is STRING.
6843 FORMAT gives the size in bits of each element if VALUE is a list.
6844 It must be one of 8, 16 or 32.
6845 If VALUE is a string or FORMAT is nil or not given, FORMAT defaults to 8.
6846 If OUTER_P is non-nil, the property is changed for the outer X window of
6847 FRAME. Default is to change on the edit X window.
6850 (prop
, value
, frame
, type
, format
, outer_p
)
6851 Lisp_Object prop
, value
, frame
, type
, format
, outer_p
;
6853 #if 0 /* TODO : port window properties to W32 */
6854 struct frame
*f
= check_x_frame (frame
);
6857 CHECK_STRING (prop
);
6858 CHECK_STRING (value
);
6861 prop_atom
= XInternAtom (FRAME_W32_DISPLAY (f
), SDATA (prop
), False
);
6862 XChangeProperty (FRAME_W32_DISPLAY (f
), FRAME_W32_WINDOW (f
),
6863 prop_atom
, XA_STRING
, 8, PropModeReplace
,
6864 SDATA (value
), SCHARS (value
));
6866 /* Make sure the property is set when we return. */
6867 XFlush (FRAME_W32_DISPLAY (f
));
6876 DEFUN ("x-delete-window-property", Fx_delete_window_property
,
6877 Sx_delete_window_property
, 1, 2, 0,
6878 doc
: /* Remove window property PROP from X window of FRAME.
6879 FRAME nil or omitted means use the selected frame. Value is PROP. */)
6881 Lisp_Object prop
, frame
;
6883 #if 0 /* TODO : port window properties to W32 */
6885 struct frame
*f
= check_x_frame (frame
);
6888 CHECK_STRING (prop
);
6890 prop_atom
= XInternAtom (FRAME_W32_DISPLAY (f
), SDATA (prop
), False
);
6891 XDeleteProperty (FRAME_W32_DISPLAY (f
), FRAME_W32_WINDOW (f
), prop_atom
);
6893 /* Make sure the property is removed when we return. */
6894 XFlush (FRAME_W32_DISPLAY (f
));
6902 DEFUN ("x-window-property", Fx_window_property
, Sx_window_property
,
6904 doc
: /* Value is the value of window property PROP on FRAME.
6905 If FRAME is nil or omitted, use the selected frame. Value is nil
6906 if FRAME hasn't a property with name PROP or if PROP has no string
6909 Lisp_Object prop
, frame
;
6911 #if 0 /* TODO : port window properties to W32 */
6913 struct frame
*f
= check_x_frame (frame
);
6916 Lisp_Object prop_value
= Qnil
;
6917 char *tmp_data
= NULL
;
6920 unsigned long actual_size
, bytes_remaining
;
6922 CHECK_STRING (prop
);
6924 prop_atom
= XInternAtom (FRAME_W32_DISPLAY (f
), SDATA (prop
), False
);
6925 rc
= XGetWindowProperty (FRAME_W32_DISPLAY (f
), FRAME_W32_WINDOW (f
),
6926 prop_atom
, 0, 0, False
, XA_STRING
,
6927 &actual_type
, &actual_format
, &actual_size
,
6928 &bytes_remaining
, (unsigned char **) &tmp_data
);
6931 int size
= bytes_remaining
;
6936 rc
= XGetWindowProperty (FRAME_W32_DISPLAY (f
), FRAME_W32_WINDOW (f
),
6937 prop_atom
, 0, bytes_remaining
,
6939 &actual_type
, &actual_format
,
6940 &actual_size
, &bytes_remaining
,
6941 (unsigned char **) &tmp_data
);
6943 prop_value
= make_string (tmp_data
, size
);
6958 /***********************************************************************
6960 ***********************************************************************/
6962 /* If non-null, an asynchronous timer that, when it expires, displays
6963 an hourglass cursor on all frames. */
6965 static struct atimer
*hourglass_atimer
;
6967 /* Non-zero means an hourglass cursor is currently shown. */
6969 static int hourglass_shown_p
;
6971 /* Number of seconds to wait before displaying an hourglass cursor. */
6973 static Lisp_Object Vhourglass_delay
;
6975 /* Default number of seconds to wait before displaying an hourglass
6978 #define DEFAULT_HOURGLASS_DELAY 1
6980 /* Function prototypes. */
6982 static void show_hourglass
P_ ((struct atimer
*));
6983 static void hide_hourglass
P_ ((void));
6986 /* Cancel a currently active hourglass timer, and start a new one. */
6991 #if 0 /* TODO: cursor shape changes. */
6993 int secs
, usecs
= 0;
6995 cancel_hourglass ();
6997 if (INTEGERP (Vhourglass_delay
)
6998 && XINT (Vhourglass_delay
) > 0)
6999 secs
= XFASTINT (Vhourglass_delay
);
7000 else if (FLOATP (Vhourglass_delay
)
7001 && XFLOAT_DATA (Vhourglass_delay
) > 0)
7004 tem
= Ftruncate (Vhourglass_delay
, Qnil
);
7005 secs
= XFASTINT (tem
);
7006 usecs
= (XFLOAT_DATA (Vhourglass_delay
) - secs
) * 1000000;
7009 secs
= DEFAULT_HOURGLASS_DELAY
;
7011 EMACS_SET_SECS_USECS (delay
, secs
, usecs
);
7012 hourglass_atimer
= start_atimer (ATIMER_RELATIVE
, delay
,
7013 show_hourglass
, NULL
);
7018 /* Cancel the hourglass cursor timer if active, hide an hourglass
7024 if (hourglass_atimer
)
7026 cancel_atimer (hourglass_atimer
);
7027 hourglass_atimer
= NULL
;
7030 if (hourglass_shown_p
)
7035 /* Timer function of hourglass_atimer. TIMER is equal to
7038 Display an hourglass cursor on all frames by mapping the frames'
7039 hourglass_window. Set the hourglass_p flag in the frames'
7040 output_data.x structure to indicate that an hourglass cursor is
7041 shown on the frames. */
7044 show_hourglass (timer
)
7045 struct atimer
*timer
;
7047 #if 0 /* TODO: cursor shape changes. */
7048 /* The timer implementation will cancel this timer automatically
7049 after this function has run. Set hourglass_atimer to null
7050 so that we know the timer doesn't have to be canceled. */
7051 hourglass_atimer
= NULL
;
7053 if (!hourglass_shown_p
)
7055 Lisp_Object rest
, frame
;
7059 FOR_EACH_FRAME (rest
, frame
)
7060 if (FRAME_W32_P (XFRAME (frame
)))
7062 struct frame
*f
= XFRAME (frame
);
7064 f
->output_data
.w32
->hourglass_p
= 1;
7066 if (!f
->output_data
.w32
->hourglass_window
)
7068 unsigned long mask
= CWCursor
;
7069 XSetWindowAttributes attrs
;
7071 attrs
.cursor
= f
->output_data
.w32
->hourglass_cursor
;
7073 f
->output_data
.w32
->hourglass_window
7074 = XCreateWindow (FRAME_X_DISPLAY (f
),
7075 FRAME_OUTER_WINDOW (f
),
7076 0, 0, 32000, 32000, 0, 0,
7082 XMapRaised (FRAME_X_DISPLAY (f
),
7083 f
->output_data
.w32
->hourglass_window
);
7084 XFlush (FRAME_X_DISPLAY (f
));
7087 hourglass_shown_p
= 1;
7094 /* Hide the hourglass cursor on all frames, if it is currently shown. */
7099 #if 0 /* TODO: cursor shape changes. */
7100 if (hourglass_shown_p
)
7102 Lisp_Object rest
, frame
;
7105 FOR_EACH_FRAME (rest
, frame
)
7107 struct frame
*f
= XFRAME (frame
);
7110 /* Watch out for newly created frames. */
7111 && f
->output_data
.x
->hourglass_window
)
7113 XUnmapWindow (FRAME_X_DISPLAY (f
),
7114 f
->output_data
.x
->hourglass_window
);
7115 /* Sync here because XTread_socket looks at the
7116 hourglass_p flag that is reset to zero below. */
7117 XSync (FRAME_X_DISPLAY (f
), False
);
7118 f
->output_data
.x
->hourglass_p
= 0;
7122 hourglass_shown_p
= 0;
7130 /***********************************************************************
7132 ***********************************************************************/
7134 static Lisp_Object x_create_tip_frame
P_ ((struct w32_display_info
*,
7135 Lisp_Object
, Lisp_Object
));
7136 static void compute_tip_xy
P_ ((struct frame
*, Lisp_Object
, Lisp_Object
,
7137 Lisp_Object
, int, int, int *, int *));
7139 /* The frame of a currently visible tooltip. */
7141 Lisp_Object tip_frame
;
7143 /* If non-nil, a timer started that hides the last tooltip when it
7146 Lisp_Object tip_timer
;
7149 /* If non-nil, a vector of 3 elements containing the last args
7150 with which x-show-tip was called. See there. */
7152 Lisp_Object last_show_tip_args
;
7154 /* Maximum size for tooltips; a cons (COLUMNS . ROWS). */
7156 Lisp_Object Vx_max_tooltip_size
;
7160 unwind_create_tip_frame (frame
)
7163 Lisp_Object deleted
;
7165 deleted
= unwind_create_frame (frame
);
7166 if (EQ (deleted
, Qt
))
7176 /* Create a frame for a tooltip on the display described by DPYINFO.
7177 PARMS is a list of frame parameters. TEXT is the string to
7178 display in the tip frame. Value is the frame.
7180 Note that functions called here, esp. x_default_parameter can
7181 signal errors, for instance when a specified color name is
7182 undefined. We have to make sure that we're in a consistent state
7183 when this happens. */
7186 x_create_tip_frame (dpyinfo
, parms
, text
)
7187 struct w32_display_info
*dpyinfo
;
7188 Lisp_Object parms
, text
;
7191 Lisp_Object frame
, tem
;
7193 long window_prompting
= 0;
7195 int count
= SPECPDL_INDEX ();
7196 struct gcpro gcpro1
, gcpro2
, gcpro3
;
7198 int face_change_count_before
= face_change_count
;
7200 struct buffer
*old_buffer
;
7204 /* Use this general default value to start with until we know if
7205 this frame has a specified name. */
7206 Vx_resource_name
= Vinvocation_name
;
7209 kb
= dpyinfo
->kboard
;
7211 kb
= &the_only_kboard
;
7214 /* Get the name of the frame to use for resource lookup. */
7215 name
= w32_get_arg (parms
, Qname
, "name", "Name", RES_TYPE_STRING
);
7217 && !EQ (name
, Qunbound
)
7219 error ("Invalid frame name--not a string or nil");
7220 Vx_resource_name
= name
;
7223 GCPRO3 (parms
, name
, frame
);
7224 /* Make a frame without minibuffer nor mode-line. */
7226 f
->wants_modeline
= 0;
7227 XSETFRAME (frame
, f
);
7229 buffer
= Fget_buffer_create (build_string (" *tip*"));
7230 Fset_window_buffer (FRAME_ROOT_WINDOW (f
), buffer
, Qnil
);
7231 old_buffer
= current_buffer
;
7232 set_buffer_internal_1 (XBUFFER (buffer
));
7233 current_buffer
->truncate_lines
= Qnil
;
7234 specbind (Qinhibit_read_only
, Qt
);
7235 specbind (Qinhibit_modification_hooks
, Qt
);
7238 set_buffer_internal_1 (old_buffer
);
7240 FRAME_CAN_HAVE_SCROLL_BARS (f
) = 0;
7241 record_unwind_protect (unwind_create_tip_frame
, frame
);
7243 /* By setting the output method, we're essentially saying that
7244 the frame is live, as per FRAME_LIVE_P. If we get a signal
7245 from this point on, x_destroy_window might screw up reference
7247 f
->output_method
= output_w32
;
7248 f
->output_data
.w32
=
7249 (struct w32_output
*) xmalloc (sizeof (struct w32_output
));
7250 bzero (f
->output_data
.w32
, sizeof (struct w32_output
));
7252 FRAME_FONTSET (f
) = -1;
7253 f
->icon_name
= Qnil
;
7255 #if 0 /* GLYPH_DEBUG TODO: image support. */
7256 image_cache_refcount
= FRAME_X_IMAGE_CACHE (f
)->refcount
;
7257 dpyinfo_refcount
= dpyinfo
->reference_count
;
7258 #endif /* GLYPH_DEBUG */
7260 FRAME_KBOARD (f
) = kb
;
7262 f
->output_data
.w32
->parent_desc
= FRAME_W32_DISPLAY_INFO (f
)->root_window
;
7263 f
->output_data
.w32
->explicit_parent
= 0;
7265 /* Set the name; the functions to which we pass f expect the name to
7267 if (EQ (name
, Qunbound
) || NILP (name
))
7269 f
->name
= build_string (dpyinfo
->w32_id_name
);
7270 f
->explicit_name
= 0;
7275 f
->explicit_name
= 1;
7276 /* use the frame's title when getting resources for this frame. */
7277 specbind (Qx_resource_name
, name
);
7280 /* Extract the window parameters from the supplied values
7281 that are needed to determine window geometry. */
7285 font
= w32_get_arg (parms
, Qfont
, "font", "Font", RES_TYPE_STRING
);
7288 /* First, try whatever font the caller has specified. */
7291 tem
= Fquery_fontset (font
, Qnil
);
7293 font
= x_new_fontset (f
, SDATA (tem
));
7295 font
= x_new_font (f
, SDATA (font
));
7298 /* Try out a font which we hope has bold and italic variations. */
7299 if (!STRINGP (font
))
7300 font
= x_new_font (f
, "-*-Courier New-normal-r-*-*-*-100-*-*-c-*-iso8859-1");
7301 if (! STRINGP (font
))
7302 font
= x_new_font (f
, "-*-Courier-normal-r-*-*-13-*-*-*-c-*-iso8859-1");
7303 /* If those didn't work, look for something which will at least work. */
7304 if (! STRINGP (font
))
7305 font
= x_new_font (f
, "-*-Fixedsys-normal-r-*-*-12-*-*-*-c-*-iso8859-1");
7307 if (! STRINGP (font
))
7308 font
= build_string ("Fixedsys");
7310 x_default_parameter (f
, parms
, Qfont
, font
,
7311 "font", "Font", RES_TYPE_STRING
);
7314 x_default_parameter (f
, parms
, Qborder_width
, make_number (2),
7315 "borderWidth", "BorderWidth", RES_TYPE_NUMBER
);
7316 /* This defaults to 2 in order to match xterm. We recognize either
7317 internalBorderWidth or internalBorder (which is what xterm calls
7319 if (NILP (Fassq (Qinternal_border_width
, parms
)))
7323 value
= w32_get_arg (parms
, Qinternal_border_width
,
7324 "internalBorder", "internalBorder", RES_TYPE_NUMBER
);
7325 if (! EQ (value
, Qunbound
))
7326 parms
= Fcons (Fcons (Qinternal_border_width
, value
),
7329 x_default_parameter (f
, parms
, Qinternal_border_width
, make_number (1),
7330 "internalBorderWidth", "internalBorderWidth",
7333 /* Also do the stuff which must be set before the window exists. */
7334 x_default_parameter (f
, parms
, Qforeground_color
, build_string ("black"),
7335 "foreground", "Foreground", RES_TYPE_STRING
);
7336 x_default_parameter (f
, parms
, Qbackground_color
, build_string ("white"),
7337 "background", "Background", RES_TYPE_STRING
);
7338 x_default_parameter (f
, parms
, Qmouse_color
, build_string ("black"),
7339 "pointerColor", "Foreground", RES_TYPE_STRING
);
7340 x_default_parameter (f
, parms
, Qcursor_color
, build_string ("black"),
7341 "cursorColor", "Foreground", RES_TYPE_STRING
);
7342 x_default_parameter (f
, parms
, Qborder_color
, build_string ("black"),
7343 "borderColor", "BorderColor", RES_TYPE_STRING
);
7345 /* Init faces before x_default_parameter is called for scroll-bar
7346 parameters because that function calls x_set_scroll_bar_width,
7347 which calls change_frame_size, which calls Fset_window_buffer,
7348 which runs hooks, which call Fvertical_motion. At the end, we
7349 end up in init_iterator with a null face cache, which should not
7351 init_frame_faces (f
);
7353 f
->output_data
.w32
->dwStyle
= WS_BORDER
| WS_POPUP
| WS_DISABLED
;
7354 f
->output_data
.w32
->parent_desc
= FRAME_W32_DISPLAY_INFO (f
)->root_window
;
7356 window_prompting
= x_figure_window_size (f
, parms
, 0);
7358 /* No fringes on tip frame. */
7360 f
->left_fringe_width
= 0;
7361 f
->right_fringe_width
= 0;
7364 my_create_tip_window (f
);
7369 x_default_parameter (f
, parms
, Qauto_raise
, Qnil
,
7370 "autoRaise", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
7371 x_default_parameter (f
, parms
, Qauto_lower
, Qnil
,
7372 "autoLower", "AutoRaiseLower", RES_TYPE_BOOLEAN
);
7373 x_default_parameter (f
, parms
, Qcursor_type
, Qbox
,
7374 "cursorType", "CursorType", RES_TYPE_SYMBOL
);
7376 /* Dimensions, especially FRAME_LINES (f), must be done via change_frame_size.
7377 Change will not be effected unless different from the current
7379 width
= FRAME_COLS (f
);
7380 height
= FRAME_LINES (f
);
7381 FRAME_LINES (f
) = 0;
7382 SET_FRAME_COLS (f
, 0);
7383 change_frame_size (f
, height
, width
, 1, 0, 0);
7385 /* Add `tooltip' frame parameter's default value. */
7386 if (NILP (Fframe_parameter (frame
, intern ("tooltip"))))
7387 Fmodify_frame_parameters (frame
, Fcons (Fcons (intern ("tooltip"), Qt
),
7390 /* Set up faces after all frame parameters are known. This call
7391 also merges in face attributes specified for new frames.
7393 Frame parameters may be changed if .Xdefaults contains
7394 specifications for the default font. For example, if there is an
7395 `Emacs.default.attributeBackground: pink', the `background-color'
7396 attribute of the frame get's set, which let's the internal border
7397 of the tooltip frame appear in pink. Prevent this. */
7399 Lisp_Object bg
= Fframe_parameter (frame
, Qbackground_color
);
7401 /* Set tip_frame here, so that */
7403 call1 (Qface_set_after_frame_default
, frame
);
7405 if (!EQ (bg
, Fframe_parameter (frame
, Qbackground_color
)))
7406 Fmodify_frame_parameters (frame
, Fcons (Fcons (Qbackground_color
, bg
),
7414 /* It is now ok to make the frame official even if we get an error
7415 below. And the frame needs to be on Vframe_list or making it
7416 visible won't work. */
7417 Vframe_list
= Fcons (frame
, Vframe_list
);
7419 /* Now that the frame is official, it counts as a reference to
7421 FRAME_W32_DISPLAY_INFO (f
)->reference_count
++;
7423 /* Setting attributes of faces of the tooltip frame from resources
7424 and similar will increment face_change_count, which leads to the
7425 clearing of all current matrices. Since this isn't necessary
7426 here, avoid it by resetting face_change_count to the value it
7427 had before we created the tip frame. */
7428 face_change_count
= face_change_count_before
;
7430 /* Discard the unwind_protect. */
7431 return unbind_to (count
, frame
);
7435 /* Compute where to display tip frame F. PARMS is the list of frame
7436 parameters for F. DX and DY are specified offsets from the current
7437 location of the mouse. WIDTH and HEIGHT are the width and height
7438 of the tooltip. Return coordinates relative to the root window of
7439 the display in *ROOT_X, and *ROOT_Y. */
7442 compute_tip_xy (f
, parms
, dx
, dy
, width
, height
, root_x
, root_y
)
7444 Lisp_Object parms
, dx
, dy
;
7446 int *root_x
, *root_y
;
7448 Lisp_Object left
, top
;
7450 /* User-specified position? */
7451 left
= Fcdr (Fassq (Qleft
, parms
));
7452 top
= Fcdr (Fassq (Qtop
, parms
));
7454 /* Move the tooltip window where the mouse pointer is. Resize and
7456 if (!INTEGERP (left
) || !INTEGERP (top
))
7468 *root_y
= XINT (top
);
7469 else if (*root_y
+ XINT (dy
) <= 0)
7470 *root_y
= 0; /* Can happen for negative dy */
7471 else if (*root_y
+ XINT (dy
) + height
<= FRAME_W32_DISPLAY_INFO (f
)->height
)
7472 /* It fits below the pointer */
7473 *root_y
+= XINT (dy
);
7474 else if (height
+ XINT (dy
) <= *root_y
)
7475 /* It fits above the pointer. */
7476 *root_y
-= height
+ XINT (dy
);
7478 /* Put it on the top. */
7481 if (INTEGERP (left
))
7482 *root_x
= XINT (left
);
7483 else if (*root_x
+ XINT (dx
) <= 0)
7484 *root_x
= 0; /* Can happen for negative dx */
7485 else if (*root_x
+ XINT (dx
) + width
<= FRAME_W32_DISPLAY_INFO (f
)->width
)
7486 /* It fits to the right of the pointer. */
7487 *root_x
+= XINT (dx
);
7488 else if (width
+ XINT (dx
) <= *root_x
)
7489 /* It fits to the left of the pointer. */
7490 *root_x
-= width
+ XINT (dx
);
7492 /* Put it left justified on the screen -- it ought to fit that way. */
7497 DEFUN ("x-show-tip", Fx_show_tip
, Sx_show_tip
, 1, 6, 0,
7498 doc
: /* Show STRING in a \"tooltip\" window on frame FRAME.
7499 A tooltip window is a small window displaying a string.
7501 This is an internal function; Lisp code should call `tooltip-show'.
7503 FRAME nil or omitted means use the selected frame.
7505 PARMS is an optional list of frame parameters which can be
7506 used to change the tooltip's appearance.
7508 Automatically hide the tooltip after TIMEOUT seconds. TIMEOUT nil
7509 means use the default timeout of 5 seconds.
7511 If the list of frame parameters PARMS contains a `left' parameter,
7512 the tooltip is displayed at that x-position. Otherwise it is
7513 displayed at the mouse position, with offset DX added (default is 5 if
7514 DX isn't specified). Likewise for the y-position; if a `top' frame
7515 parameter is specified, it determines the y-position of the tooltip
7516 window, otherwise it is displayed at the mouse position, with offset
7517 DY added (default is -10).
7519 A tooltip's maximum size is specified by `x-max-tooltip-size'.
7520 Text larger than the specified size is clipped. */)
7521 (string
, frame
, parms
, timeout
, dx
, dy
)
7522 Lisp_Object string
, frame
, parms
, timeout
, dx
, dy
;
7527 struct buffer
*old_buffer
;
7528 struct text_pos pos
;
7529 int i
, width
, height
;
7530 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
7531 int old_windows_or_buffers_changed
= windows_or_buffers_changed
;
7532 int count
= SPECPDL_INDEX ();
7534 specbind (Qinhibit_redisplay
, Qt
);
7536 GCPRO4 (string
, parms
, frame
, timeout
);
7538 CHECK_STRING (string
);
7539 f
= check_x_frame (frame
);
7541 timeout
= make_number (5);
7543 CHECK_NATNUM (timeout
);
7546 dx
= make_number (5);
7551 dy
= make_number (-10);
7555 if (NILP (last_show_tip_args
))
7556 last_show_tip_args
= Fmake_vector (make_number (3), Qnil
);
7558 if (!NILP (tip_frame
))
7560 Lisp_Object last_string
= AREF (last_show_tip_args
, 0);
7561 Lisp_Object last_frame
= AREF (last_show_tip_args
, 1);
7562 Lisp_Object last_parms
= AREF (last_show_tip_args
, 2);
7564 if (EQ (frame
, last_frame
)
7565 && !NILP (Fequal (last_string
, string
))
7566 && !NILP (Fequal (last_parms
, parms
)))
7568 struct frame
*f
= XFRAME (tip_frame
);
7570 /* Only DX and DY have changed. */
7571 if (!NILP (tip_timer
))
7573 Lisp_Object timer
= tip_timer
;
7575 call1 (Qcancel_timer
, timer
);
7579 compute_tip_xy (f
, parms
, dx
, dy
, FRAME_PIXEL_WIDTH (f
),
7580 FRAME_PIXEL_HEIGHT (f
), &root_x
, &root_y
);
7582 /* Put tooltip in topmost group and in position. */
7583 SetWindowPos (FRAME_W32_WINDOW (f
), HWND_TOPMOST
,
7584 root_x
, root_y
, 0, 0,
7585 SWP_NOSIZE
| SWP_NOACTIVATE
);
7587 /* Ensure tooltip is on top of other topmost windows (eg menus). */
7588 SetWindowPos (FRAME_W32_WINDOW (f
), HWND_TOP
,
7590 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
);
7597 /* Hide a previous tip, if any. */
7600 ASET (last_show_tip_args
, 0, string
);
7601 ASET (last_show_tip_args
, 1, frame
);
7602 ASET (last_show_tip_args
, 2, parms
);
7604 /* Add default values to frame parameters. */
7605 if (NILP (Fassq (Qname
, parms
)))
7606 parms
= Fcons (Fcons (Qname
, build_string ("tooltip")), parms
);
7607 if (NILP (Fassq (Qinternal_border_width
, parms
)))
7608 parms
= Fcons (Fcons (Qinternal_border_width
, make_number (3)), parms
);
7609 if (NILP (Fassq (Qborder_width
, parms
)))
7610 parms
= Fcons (Fcons (Qborder_width
, make_number (1)), parms
);
7611 if (NILP (Fassq (Qborder_color
, parms
)))
7612 parms
= Fcons (Fcons (Qborder_color
, build_string ("lightyellow")), parms
);
7613 if (NILP (Fassq (Qbackground_color
, parms
)))
7614 parms
= Fcons (Fcons (Qbackground_color
, build_string ("lightyellow")),
7617 /* Block input until the tip has been fully drawn, to avoid crashes
7618 when drawing tips in menus. */
7621 /* Create a frame for the tooltip, and record it in the global
7622 variable tip_frame. */
7623 frame
= x_create_tip_frame (FRAME_W32_DISPLAY_INFO (f
), parms
, string
);
7626 /* Set up the frame's root window. */
7627 w
= XWINDOW (FRAME_ROOT_WINDOW (f
));
7628 w
->left_col
= w
->top_line
= make_number (0);
7630 if (CONSP (Vx_max_tooltip_size
)
7631 && INTEGERP (XCAR (Vx_max_tooltip_size
))
7632 && XINT (XCAR (Vx_max_tooltip_size
)) > 0
7633 && INTEGERP (XCDR (Vx_max_tooltip_size
))
7634 && XINT (XCDR (Vx_max_tooltip_size
)) > 0)
7636 w
->total_cols
= XCAR (Vx_max_tooltip_size
);
7637 w
->total_lines
= XCDR (Vx_max_tooltip_size
);
7641 w
->total_cols
= make_number (80);
7642 w
->total_lines
= make_number (40);
7645 FRAME_TOTAL_COLS (f
) = XINT (w
->total_cols
);
7647 w
->pseudo_window_p
= 1;
7649 /* Display the tooltip text in a temporary buffer. */
7650 old_buffer
= current_buffer
;
7651 set_buffer_internal_1 (XBUFFER (XWINDOW (FRAME_ROOT_WINDOW (f
))->buffer
));
7652 current_buffer
->truncate_lines
= Qnil
;
7653 clear_glyph_matrix (w
->desired_matrix
);
7654 clear_glyph_matrix (w
->current_matrix
);
7655 SET_TEXT_POS (pos
, BEGV
, BEGV_BYTE
);
7656 try_window (FRAME_ROOT_WINDOW (f
), pos
, 0);
7658 /* Compute width and height of the tooltip. */
7660 for (i
= 0; i
< w
->desired_matrix
->nrows
; ++i
)
7662 struct glyph_row
*row
= &w
->desired_matrix
->rows
[i
];
7666 /* Stop at the first empty row at the end. */
7667 if (!row
->enabled_p
|| !row
->displays_text_p
)
7670 /* Let the row go over the full width of the frame. */
7671 row
->full_width_p
= 1;
7673 #ifdef TODO /* Investigate why some fonts need more width than is
7674 calculated for some tooltips. */
7675 /* There's a glyph at the end of rows that is use to place
7676 the cursor there. Don't include the width of this glyph. */
7677 if (row
->used
[TEXT_AREA
])
7679 last
= &row
->glyphs
[TEXT_AREA
][row
->used
[TEXT_AREA
] - 1];
7680 row_width
= row
->pixel_width
- last
->pixel_width
;
7684 row_width
= row
->pixel_width
;
7686 /* TODO: find why tips do not draw along baseline as instructed. */
7687 height
+= row
->height
;
7688 width
= max (width
, row_width
);
7691 /* Add the frame's internal border to the width and height the X
7692 window should have. */
7693 height
+= 2 * FRAME_INTERNAL_BORDER_WIDTH (f
);
7694 width
+= 2 * FRAME_INTERNAL_BORDER_WIDTH (f
);
7696 /* Move the tooltip window where the mouse pointer is. Resize and
7698 compute_tip_xy (f
, parms
, dx
, dy
, width
, height
, &root_x
, &root_y
);
7701 /* Adjust Window size to take border into account. */
7703 rect
.left
= rect
.top
= 0;
7705 rect
.bottom
= height
;
7706 AdjustWindowRect (&rect
, f
->output_data
.w32
->dwStyle
,
7707 FRAME_EXTERNAL_MENU_BAR (f
));
7709 /* Position and size tooltip, and put it in the topmost group.
7710 The add-on of 3 to the 5th argument is a kludge: without it,
7711 some fonts cause the last character of the tip to be truncated,
7712 for some obscure reason. */
7713 SetWindowPos (FRAME_W32_WINDOW (f
), HWND_TOPMOST
,
7714 root_x
, root_y
, rect
.right
- rect
.left
+ 3,
7715 rect
.bottom
- rect
.top
, SWP_NOACTIVATE
);
7717 /* Ensure tooltip is on top of other topmost windows (eg menus). */
7718 SetWindowPos (FRAME_W32_WINDOW (f
), HWND_TOP
,
7720 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
);
7722 /* Let redisplay know that we have made the frame visible already. */
7723 f
->async_visible
= 1;
7725 ShowWindow (FRAME_W32_WINDOW (f
), SW_SHOWNOACTIVATE
);
7728 /* Draw into the window. */
7729 w
->must_be_updated_p
= 1;
7730 update_single_window (w
, 1);
7734 /* Restore original current buffer. */
7735 set_buffer_internal_1 (old_buffer
);
7736 windows_or_buffers_changed
= old_windows_or_buffers_changed
;
7739 /* Let the tip disappear after timeout seconds. */
7740 tip_timer
= call3 (intern ("run-at-time"), timeout
, Qnil
,
7741 intern ("x-hide-tip"));
7744 return unbind_to (count
, Qnil
);
7748 DEFUN ("x-hide-tip", Fx_hide_tip
, Sx_hide_tip
, 0, 0, 0,
7749 doc
: /* Hide the current tooltip window, if there is any.
7750 Value is t if tooltip was open, nil otherwise. */)
7754 Lisp_Object deleted
, frame
, timer
;
7755 struct gcpro gcpro1
, gcpro2
;
7757 /* Return quickly if nothing to do. */
7758 if (NILP (tip_timer
) && NILP (tip_frame
))
7763 GCPRO2 (frame
, timer
);
7764 tip_frame
= tip_timer
= deleted
= Qnil
;
7766 count
= SPECPDL_INDEX ();
7767 specbind (Qinhibit_redisplay
, Qt
);
7768 specbind (Qinhibit_quit
, Qt
);
7771 call1 (Qcancel_timer
, timer
);
7775 Fdelete_frame (frame
, Qnil
);
7780 return unbind_to (count
, deleted
);
7785 /***********************************************************************
7786 File selection dialog
7787 ***********************************************************************/
7788 extern Lisp_Object Qfile_name_history
;
7790 /* Callback for altering the behaviour of the Open File dialog.
7791 Makes the Filename text field contain "Current Directory" and be
7792 read-only when "Directories" is selected in the filter. This
7793 allows us to work around the fact that the standard Open File
7794 dialog does not support directories. */
7796 file_dialog_callback (hwnd
, msg
, wParam
, lParam
)
7802 if (msg
== WM_NOTIFY
)
7804 OFNOTIFY
* notify
= (OFNOTIFY
*)lParam
;
7805 /* Detect when the Filter dropdown is changed. */
7806 if (notify
->hdr
.code
== CDN_TYPECHANGE
7807 || notify
->hdr
.code
== CDN_INITDONE
)
7809 HWND dialog
= GetParent (hwnd
);
7810 HWND edit_control
= GetDlgItem (dialog
, FILE_NAME_TEXT_FIELD
);
7812 /* Directories is in index 2. */
7813 if (notify
->lpOFN
->nFilterIndex
== 2)
7815 CommDlg_OpenSave_SetControlText (dialog
, FILE_NAME_TEXT_FIELD
,
7816 "Current Directory");
7817 EnableWindow (edit_control
, FALSE
);
7821 /* Don't override default filename on init done. */
7822 if (notify
->hdr
.code
== CDN_TYPECHANGE
)
7823 CommDlg_OpenSave_SetControlText (dialog
,
7824 FILE_NAME_TEXT_FIELD
, "");
7825 EnableWindow (edit_control
, TRUE
);
7832 /* Since we compile with _WIN32_WINNT set to 0x0400 (for NT4 compatibility)
7833 we end up with the old file dialogs. Define a big enough struct for the
7834 new dialog to trick GetOpenFileName into giving us the new dialogs on
7835 Windows 2000 and XP. */
7838 OPENFILENAME real_details
;
7845 DEFUN ("x-file-dialog", Fx_file_dialog
, Sx_file_dialog
, 2, 5, 0,
7846 doc
: /* Read file name, prompting with PROMPT in directory DIR.
7847 Use a file selection dialog.
7848 Select DEFAULT-FILENAME in the dialog's file selection box, if
7849 specified. Ensure that file exists if MUSTMATCH is non-nil.
7850 If ONLY-DIR-P is non-nil, the user can only select directories. */)
7851 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
)
7852 Lisp_Object prompt
, dir
, default_filename
, mustmatch
, only_dir_p
;
7854 struct frame
*f
= SELECTED_FRAME ();
7855 Lisp_Object file
= Qnil
;
7856 int count
= SPECPDL_INDEX ();
7857 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
, gcpro6
;
7858 char filename
[MAX_PATH
+ 1];
7859 char init_dir
[MAX_PATH
+ 1];
7860 int default_filter_index
= 1; /* 1: All Files, 2: Directories only */
7862 GCPRO6 (prompt
, dir
, default_filename
, mustmatch
, only_dir_p
, file
);
7863 CHECK_STRING (prompt
);
7866 /* Create the dialog with PROMPT as title, using DIR as initial
7867 directory and using "*" as pattern. */
7868 dir
= Fexpand_file_name (dir
, Qnil
);
7869 strncpy (init_dir
, SDATA (ENCODE_FILE (dir
)), MAX_PATH
);
7870 init_dir
[MAX_PATH
] = '\0';
7871 unixtodos_filename (init_dir
);
7873 if (STRINGP (default_filename
))
7875 char *file_name_only
;
7876 char *full_path_name
= SDATA (ENCODE_FILE (default_filename
));
7878 unixtodos_filename (full_path_name
);
7880 file_name_only
= strrchr (full_path_name
, '\\');
7881 if (!file_name_only
)
7882 file_name_only
= full_path_name
;
7886 strncpy (filename
, file_name_only
, MAX_PATH
);
7887 filename
[MAX_PATH
] = '\0';
7893 NEWOPENFILENAME new_file_details
;
7894 BOOL file_opened
= FALSE
;
7895 OPENFILENAME
* file_details
= &new_file_details
.real_details
;
7897 /* Prevent redisplay. */
7898 specbind (Qinhibit_redisplay
, Qt
);
7901 bzero (&new_file_details
, sizeof (new_file_details
));
7902 /* Apparently NT4 crashes if you give it an unexpected size.
7903 I'm not sure about Windows 9x, so play it safe. */
7904 if (w32_major_version
> 4 && w32_major_version
< 95)
7905 file_details
->lStructSize
= sizeof (new_file_details
);
7907 file_details
->lStructSize
= sizeof (file_details
);
7909 file_details
->hwndOwner
= FRAME_W32_WINDOW (f
);
7910 /* Undocumented Bug in Common File Dialog:
7911 If a filter is not specified, shell links are not resolved. */
7912 file_details
->lpstrFilter
= "All Files (*.*)\0*.*\0Directories\0*|*\0\0";
7913 file_details
->lpstrFile
= filename
;
7914 file_details
->nMaxFile
= sizeof (filename
);
7915 file_details
->lpstrInitialDir
= init_dir
;
7916 file_details
->lpstrTitle
= SDATA (prompt
);
7918 if (! NILP (only_dir_p
))
7919 default_filter_index
= 2;
7921 file_details
->nFilterIndex
= default_filter_index
;
7923 file_details
->Flags
= (OFN_HIDEREADONLY
| OFN_NOCHANGEDIR
7924 | OFN_EXPLORER
| OFN_ENABLEHOOK
);
7925 if (!NILP (mustmatch
))
7927 /* Require that the path to the parent directory exists. */
7928 file_details
->Flags
|= OFN_PATHMUSTEXIST
;
7929 /* If we are looking for a file, require that it exists. */
7930 if (NILP (only_dir_p
))
7931 file_details
->Flags
|= OFN_FILEMUSTEXIST
;
7934 file_details
->lpfnHook
= (LPOFNHOOKPROC
) file_dialog_callback
;
7936 file_opened
= GetOpenFileName (file_details
);
7942 dostounix_filename (filename
);
7944 if (file_details
->nFilterIndex
== 2)
7946 /* "Directories" selected - strip dummy file name. */
7947 char * last
= strrchr (filename
, '/');
7951 file
= DECODE_FILE(build_string (filename
));
7953 /* User cancelled the dialog without making a selection. */
7954 else if (!CommDlgExtendedError ())
7956 /* An error occurred, fallback on reading from the mini-buffer. */
7958 file
= Fcompleting_read (prompt
, intern ("read-file-name-internal"),
7959 dir
, mustmatch
, dir
, Qfile_name_history
,
7960 default_filename
, Qnil
);
7962 file
= unbind_to (count
, file
);
7967 /* Make "Cancel" equivalent to C-g. */
7969 Fsignal (Qquit
, Qnil
);
7971 return unbind_to (count
, file
);
7976 /***********************************************************************
7977 w32 specialized functions
7978 ***********************************************************************/
7980 DEFUN ("w32-select-font", Fw32_select_font
, Sw32_select_font
, 0, 2, 0,
7981 doc
: /* Select a font for the named FRAME using the W32 font dialog.
7982 Returns an X-style font string corresponding to the selection.
7984 If FRAME is omitted or nil, it defaults to the selected frame.
7985 If INCLUDE-PROPORTIONAL is non-nil, include proportional fonts
7986 in the font selection dialog. */)
7987 (frame
, include_proportional
)
7988 Lisp_Object frame
, include_proportional
;
7990 FRAME_PTR f
= check_x_frame (frame
);
7998 bzero (&cf
, sizeof (cf
));
7999 bzero (&lf
, sizeof (lf
));
8001 cf
.lStructSize
= sizeof (cf
);
8002 cf
.hwndOwner
= FRAME_W32_WINDOW (f
);
8003 cf
.Flags
= CF_FORCEFONTEXIST
| CF_SCREENFONTS
| CF_NOVERTFONTS
;
8005 /* Unless include_proportional is non-nil, limit the selection to
8006 monospaced fonts. */
8007 if (NILP (include_proportional
))
8008 cf
.Flags
|= CF_FIXEDPITCHONLY
;
8012 /* Initialize as much of the font details as we can from the current
8014 hdc
= GetDC (FRAME_W32_WINDOW (f
));
8015 oldobj
= SelectObject (hdc
, FRAME_FONT (f
)->hfont
);
8016 GetTextFace (hdc
, LF_FACESIZE
, lf
.lfFaceName
);
8017 if (GetTextMetrics (hdc
, &tm
))
8019 lf
.lfHeight
= tm
.tmInternalLeading
- tm
.tmHeight
;
8020 lf
.lfWeight
= tm
.tmWeight
;
8021 lf
.lfItalic
= tm
.tmItalic
;
8022 lf
.lfUnderline
= tm
.tmUnderlined
;
8023 lf
.lfStrikeOut
= tm
.tmStruckOut
;
8024 lf
.lfCharSet
= tm
.tmCharSet
;
8025 cf
.Flags
|= CF_INITTOLOGFONTSTRUCT
;
8027 SelectObject (hdc
, oldobj
);
8028 ReleaseDC (FRAME_W32_WINDOW (f
), hdc
);
8030 if (!ChooseFont (&cf
) || !w32_to_x_font (&lf
, buf
, 100, NULL
))
8033 return build_string (buf
);
8036 DEFUN ("w32-send-sys-command", Fw32_send_sys_command
,
8037 Sw32_send_sys_command
, 1, 2, 0,
8038 doc
: /* Send frame a Windows WM_SYSCOMMAND message of type COMMAND.
8039 Some useful values for COMMAND are #xf030 to maximize frame (#xf020
8040 to minimize), #xf120 to restore frame to original size, and #xf100
8041 to activate the menubar for keyboard access. #xf140 activates the
8042 screen saver if defined.
8044 If optional parameter FRAME is not specified, use selected frame. */)
8046 Lisp_Object command
, frame
;
8048 FRAME_PTR f
= check_x_frame (frame
);
8050 CHECK_NUMBER (command
);
8052 PostMessage (FRAME_W32_WINDOW (f
), WM_SYSCOMMAND
, XINT (command
), 0);
8057 DEFUN ("w32-shell-execute", Fw32_shell_execute
, Sw32_shell_execute
, 2, 4, 0,
8058 doc
: /* Get Windows to perform OPERATION on DOCUMENT.
8059 This is a wrapper around the ShellExecute system function, which
8060 invokes the application registered to handle OPERATION for DOCUMENT.
8062 OPERATION is either nil or a string that names a supported operation.
8063 What operations can be used depends on the particular DOCUMENT and its
8064 handler application, but typically it is one of the following common
8067 \"open\" - open DOCUMENT, which could be a file, a directory, or an
8068 executable program. If it is an application, that
8069 application is launched in the current buffer's default
8070 directory. Otherwise, the application associated with
8071 DOCUMENT is launched in the buffer's default directory.
8072 \"print\" - print DOCUMENT, which must be a file
8073 \"explore\" - start the Windows Explorer on DOCUMENT
8074 \"edit\" - launch an editor and open DOCUMENT for editing; which
8075 editor is launched depends on the association for the
8077 \"find\" - initiate search starting from DOCUMENT which must specify
8079 nil - invoke the default OPERATION, or \"open\" if default is
8080 not defined or unavailable
8082 DOCUMENT is typically the name of a document file or a URL, but can
8083 also be a program executable to run, or a directory to open in the
8086 If DOCUMENT is a program executable, the optional arg PARAMETERS can
8087 be a string containing command line parameters that will be passed to
8088 the program; otherwise, PARAMETERS should be nil or unspecified.
8090 Second optional argument SHOW-FLAG can be used to control how the
8091 application will be displayed when it is invoked. If SHOW-FLAG is nil
8092 or unspceified, the application is displayed normally, otherwise it is
8093 an integer representing a ShowWindow flag:
8098 6 - start minimized */)
8099 (operation
, document
, parameters
, show_flag
)
8100 Lisp_Object operation
, document
, parameters
, show_flag
;
8102 Lisp_Object current_dir
;
8104 CHECK_STRING (document
);
8106 /* Encode filename and current directory. */
8107 current_dir
= ENCODE_FILE (current_buffer
->directory
);
8108 document
= ENCODE_FILE (document
);
8109 if ((int) ShellExecute (NULL
,
8110 (STRINGP (operation
) ?
8111 SDATA (operation
) : NULL
),
8113 (STRINGP (parameters
) ?
8114 SDATA (parameters
) : NULL
),
8115 SDATA (current_dir
),
8116 (INTEGERP (show_flag
) ?
8117 XINT (show_flag
) : SW_SHOWDEFAULT
))
8120 error ("ShellExecute failed: %s", w32_strerror (0));
8123 /* Lookup virtual keycode from string representing the name of a
8124 non-ascii keystroke into the corresponding virtual key, using
8125 lispy_function_keys. */
8127 lookup_vk_code (char *key
)
8131 for (i
= 0; i
< 256; i
++)
8132 if (lispy_function_keys
[i
] != 0
8133 && strcmp (lispy_function_keys
[i
], key
) == 0)
8139 /* Convert a one-element vector style key sequence to a hot key
8142 w32_parse_hot_key (key
)
8145 /* Copied from Fdefine_key and store_in_keymap. */
8146 register Lisp_Object c
;
8150 struct gcpro gcpro1
;
8154 if (XFASTINT (Flength (key
)) != 1)
8159 c
= Faref (key
, make_number (0));
8161 if (CONSP (c
) && lucid_event_type_list_p (c
))
8162 c
= Fevent_convert_list (c
);
8166 if (! INTEGERP (c
) && ! SYMBOLP (c
))
8167 error ("Key definition is invalid");
8169 /* Work out the base key and the modifiers. */
8172 c
= parse_modifiers (c
);
8173 lisp_modifiers
= XINT (Fcar (Fcdr (c
)));
8177 vk_code
= lookup_vk_code (SDATA (SYMBOL_NAME (c
)));
8179 else if (INTEGERP (c
))
8181 lisp_modifiers
= XINT (c
) & ~CHARACTERBITS
;
8182 /* Many ascii characters are their own virtual key code. */
8183 vk_code
= XINT (c
) & CHARACTERBITS
;
8186 if (vk_code
< 0 || vk_code
> 255)
8189 if ((lisp_modifiers
& meta_modifier
) != 0
8190 && !NILP (Vw32_alt_is_meta
))
8191 lisp_modifiers
|= alt_modifier
;
8193 /* Supply defs missing from mingw32. */
8195 #define MOD_ALT 0x0001
8196 #define MOD_CONTROL 0x0002
8197 #define MOD_SHIFT 0x0004
8198 #define MOD_WIN 0x0008
8201 /* Convert lisp modifiers to Windows hot-key form. */
8202 w32_modifiers
= (lisp_modifiers
& hyper_modifier
) ? MOD_WIN
: 0;
8203 w32_modifiers
|= (lisp_modifiers
& alt_modifier
) ? MOD_ALT
: 0;
8204 w32_modifiers
|= (lisp_modifiers
& ctrl_modifier
) ? MOD_CONTROL
: 0;
8205 w32_modifiers
|= (lisp_modifiers
& shift_modifier
) ? MOD_SHIFT
: 0;
8207 return HOTKEY (vk_code
, w32_modifiers
);
8210 DEFUN ("w32-register-hot-key", Fw32_register_hot_key
,
8211 Sw32_register_hot_key
, 1, 1, 0,
8212 doc
: /* Register KEY as a hot-key combination.
8213 Certain key combinations like Alt-Tab are reserved for system use on
8214 Windows, and therefore are normally intercepted by the system. However,
8215 most of these key combinations can be received by registering them as
8216 hot-keys, overriding their special meaning.
8218 KEY must be a one element key definition in vector form that would be
8219 acceptable to `define-key' (e.g. [A-tab] for Alt-Tab). The meta
8220 modifier is interpreted as Alt if `w32-alt-is-meta' is t, and hyper
8221 is always interpreted as the Windows modifier keys.
8223 The return value is the hotkey-id if registered, otherwise nil. */)
8227 key
= w32_parse_hot_key (key
);
8229 if (NILP (Fmemq (key
, w32_grabbed_keys
)))
8231 /* Reuse an empty slot if possible. */
8232 Lisp_Object item
= Fmemq (Qnil
, w32_grabbed_keys
);
8234 /* Safe to add new key to list, even if we have focus. */
8236 w32_grabbed_keys
= Fcons (key
, w32_grabbed_keys
);
8238 XSETCAR (item
, key
);
8240 /* Notify input thread about new hot-key definition, so that it
8241 takes effect without needing to switch focus. */
8242 #ifdef USE_LISP_UNION_TYPE
8243 PostThreadMessage (dwWindowsThreadId
, WM_EMACS_REGISTER_HOT_KEY
,
8246 PostThreadMessage (dwWindowsThreadId
, WM_EMACS_REGISTER_HOT_KEY
,
8254 DEFUN ("w32-unregister-hot-key", Fw32_unregister_hot_key
,
8255 Sw32_unregister_hot_key
, 1, 1, 0,
8256 doc
: /* Unregister KEY as a hot-key combination. */)
8262 if (!INTEGERP (key
))
8263 key
= w32_parse_hot_key (key
);
8265 item
= Fmemq (key
, w32_grabbed_keys
);
8269 /* Notify input thread about hot-key definition being removed, so
8270 that it takes effect without needing focus switch. */
8271 #ifdef USE_LISP_UNION_TYPE
8272 if (PostThreadMessage (dwWindowsThreadId
, WM_EMACS_UNREGISTER_HOT_KEY
,
8273 (WPARAM
) XINT (XCAR (item
)), (LPARAM
) item
.i
))
8275 if (PostThreadMessage (dwWindowsThreadId
, WM_EMACS_UNREGISTER_HOT_KEY
,
8276 (WPARAM
) XINT (XCAR (item
)), (LPARAM
) item
))
8281 GetMessage (&msg
, NULL
, WM_EMACS_DONE
, WM_EMACS_DONE
);
8288 DEFUN ("w32-registered-hot-keys", Fw32_registered_hot_keys
,
8289 Sw32_registered_hot_keys
, 0, 0, 0,
8290 doc
: /* Return list of registered hot-key IDs. */)
8293 return Fcopy_sequence (w32_grabbed_keys
);
8296 DEFUN ("w32-reconstruct-hot-key", Fw32_reconstruct_hot_key
,
8297 Sw32_reconstruct_hot_key
, 1, 1, 0,
8298 doc
: /* Convert hot-key ID to a lisp key combination.
8299 usage: (w32-reconstruct-hot-key ID) */)
8301 Lisp_Object hotkeyid
;
8303 int vk_code
, w32_modifiers
;
8306 CHECK_NUMBER (hotkeyid
);
8308 vk_code
= HOTKEY_VK_CODE (hotkeyid
);
8309 w32_modifiers
= HOTKEY_MODIFIERS (hotkeyid
);
8311 if (lispy_function_keys
[vk_code
])
8312 key
= intern (lispy_function_keys
[vk_code
]);
8314 key
= make_number (vk_code
);
8316 key
= Fcons (key
, Qnil
);
8317 if (w32_modifiers
& MOD_SHIFT
)
8318 key
= Fcons (Qshift
, key
);
8319 if (w32_modifiers
& MOD_CONTROL
)
8320 key
= Fcons (Qctrl
, key
);
8321 if (w32_modifiers
& MOD_ALT
)
8322 key
= Fcons (NILP (Vw32_alt_is_meta
) ? Qalt
: Qmeta
, key
);
8323 if (w32_modifiers
& MOD_WIN
)
8324 key
= Fcons (Qhyper
, key
);
8329 DEFUN ("w32-toggle-lock-key", Fw32_toggle_lock_key
,
8330 Sw32_toggle_lock_key
, 1, 2, 0,
8331 doc
: /* Toggle the state of the lock key KEY.
8332 KEY can be `capslock', `kp-numlock', or `scroll'.
8333 If the optional parameter NEW-STATE is a number, then the state of KEY
8334 is set to off if the low bit of NEW-STATE is zero, otherwise on. */)
8336 Lisp_Object key
, new_state
;
8340 if (EQ (key
, intern ("capslock")))
8341 vk_code
= VK_CAPITAL
;
8342 else if (EQ (key
, intern ("kp-numlock")))
8343 vk_code
= VK_NUMLOCK
;
8344 else if (EQ (key
, intern ("scroll")))
8345 vk_code
= VK_SCROLL
;
8349 if (!dwWindowsThreadId
)
8350 return make_number (w32_console_toggle_lock_key (vk_code
, new_state
));
8352 #ifdef USE_LISP_UNION_TYPE
8353 if (PostThreadMessage (dwWindowsThreadId
, WM_EMACS_TOGGLE_LOCK_KEY
,
8354 (WPARAM
) vk_code
, (LPARAM
) new_state
.i
))
8356 if (PostThreadMessage (dwWindowsThreadId
, WM_EMACS_TOGGLE_LOCK_KEY
,
8357 (WPARAM
) vk_code
, (LPARAM
) new_state
))
8361 GetMessage (&msg
, NULL
, WM_EMACS_DONE
, WM_EMACS_DONE
);
8362 return make_number (msg
.wParam
);
8367 DEFUN ("w32-window-exists-p", Fw32_window_exists_p
, Sw32_window_exists_p
,
8369 doc
: /* Return non-nil if a window exists with the specified CLASS and NAME.
8371 This is a direct interface to the Windows API FindWindow function. */)
8373 Lisp_Object
class, name
;
8378 CHECK_STRING (class);
8380 CHECK_STRING (name
);
8382 hnd
= FindWindow (STRINGP (class) ? ((LPCTSTR
) SDATA (class)) : NULL
,
8383 STRINGP (name
) ? ((LPCTSTR
) SDATA (name
)) : NULL
);
8391 DEFUN ("file-system-info", Ffile_system_info
, Sfile_system_info
, 1, 1, 0,
8392 doc
: /* Return storage information about the file system FILENAME is on.
8393 Value is a list of floats (TOTAL FREE AVAIL), where TOTAL is the total
8394 storage of the file system, FREE is the free storage, and AVAIL is the
8395 storage available to a non-superuser. All 3 numbers are in bytes.
8396 If the underlying system call fails, value is nil. */)
8398 Lisp_Object filename
;
8400 Lisp_Object encoded
, value
;
8402 CHECK_STRING (filename
);
8403 filename
= Fexpand_file_name (filename
, Qnil
);
8404 encoded
= ENCODE_FILE (filename
);
8408 /* Determining the required information on Windows turns out, sadly,
8409 to be more involved than one would hope. The original Win32 api
8410 call for this will return bogus information on some systems, but we
8411 must dynamically probe for the replacement api, since that was
8412 added rather late on. */
8414 HMODULE hKernel
= GetModuleHandle ("kernel32");
8415 BOOL (*pfn_GetDiskFreeSpaceEx
)
8416 (char *, PULARGE_INTEGER
, PULARGE_INTEGER
, PULARGE_INTEGER
)
8417 = (void *) GetProcAddress (hKernel
, "GetDiskFreeSpaceEx");
8419 /* On Windows, we may need to specify the root directory of the
8420 volume holding FILENAME. */
8421 char rootname
[MAX_PATH
];
8422 char *name
= SDATA (encoded
);
8424 /* find the root name of the volume if given */
8425 if (isalpha (name
[0]) && name
[1] == ':')
8427 rootname
[0] = name
[0];
8428 rootname
[1] = name
[1];
8432 else if (IS_DIRECTORY_SEP (name
[0]) && IS_DIRECTORY_SEP (name
[1]))
8434 char *str
= rootname
;
8438 if (IS_DIRECTORY_SEP (*name
) && --slashes
== 0)
8448 if (pfn_GetDiskFreeSpaceEx
)
8450 /* Unsigned large integers cannot be cast to double, so
8451 use signed ones instead. */
8452 LARGE_INTEGER availbytes
;
8453 LARGE_INTEGER freebytes
;
8454 LARGE_INTEGER totalbytes
;
8456 if (pfn_GetDiskFreeSpaceEx(rootname
,
8457 (ULARGE_INTEGER
*)&availbytes
,
8458 (ULARGE_INTEGER
*)&totalbytes
,
8459 (ULARGE_INTEGER
*)&freebytes
))
8460 value
= list3 (make_float ((double) totalbytes
.QuadPart
),
8461 make_float ((double) freebytes
.QuadPart
),
8462 make_float ((double) availbytes
.QuadPart
));
8466 DWORD sectors_per_cluster
;
8467 DWORD bytes_per_sector
;
8468 DWORD free_clusters
;
8469 DWORD total_clusters
;
8471 if (GetDiskFreeSpace(rootname
,
8472 §ors_per_cluster
,
8476 value
= list3 (make_float ((double) total_clusters
8477 * sectors_per_cluster
* bytes_per_sector
),
8478 make_float ((double) free_clusters
8479 * sectors_per_cluster
* bytes_per_sector
),
8480 make_float ((double) free_clusters
8481 * sectors_per_cluster
* bytes_per_sector
));
8488 DEFUN ("default-printer-name", Fdefault_printer_name
, Sdefault_printer_name
,
8489 0, 0, 0, doc
: /* Return the name of Windows default printer device. */)
8492 static char pname_buf
[256];
8495 PRINTER_INFO_2
*ppi2
= NULL
;
8496 DWORD dwNeeded
= 0, dwReturned
= 0;
8498 /* Retrieve the default string from Win.ini (the registry).
8499 * String will be in form "printername,drivername,portname".
8500 * This is the most portable way to get the default printer. */
8501 if (GetProfileString ("windows", "device", ",,", pname_buf
, sizeof (pname_buf
)) <= 0)
8503 /* printername precedes first "," character */
8504 strtok (pname_buf
, ",");
8505 /* We want to know more than the printer name */
8506 if (!OpenPrinter (pname_buf
, &hPrn
, NULL
))
8508 GetPrinter (hPrn
, 2, NULL
, 0, &dwNeeded
);
8511 ClosePrinter (hPrn
);
8514 /* Allocate memory for the PRINTER_INFO_2 struct */
8515 ppi2
= (PRINTER_INFO_2
*) xmalloc (dwNeeded
);
8518 ClosePrinter (hPrn
);
8521 /* Call GetPrinter() again with big enouth memory block */
8522 err
= GetPrinter (hPrn
, 2, (LPBYTE
)ppi2
, dwNeeded
, &dwReturned
);
8523 ClosePrinter (hPrn
);
8532 if (ppi2
->Attributes
& PRINTER_ATTRIBUTE_SHARED
&& ppi2
->pServerName
)
8534 /* a remote printer */
8535 if (*ppi2
->pServerName
== '\\')
8536 _snprintf(pname_buf
, sizeof (pname_buf
), "%s\\%s", ppi2
->pServerName
,
8539 _snprintf(pname_buf
, sizeof (pname_buf
), "\\\\%s\\%s", ppi2
->pServerName
,
8541 pname_buf
[sizeof (pname_buf
) - 1] = '\0';
8545 /* a local printer */
8546 strncpy(pname_buf
, ppi2
->pPortName
, sizeof (pname_buf
));
8547 pname_buf
[sizeof (pname_buf
) - 1] = '\0';
8548 /* `pPortName' can include several ports, delimited by ','.
8549 * we only use the first one. */
8550 strtok(pname_buf
, ",");
8555 return build_string (pname_buf
);
8558 /***********************************************************************
8560 ***********************************************************************/
8562 /* Keep this list in the same order as frame_parms in frame.c.
8563 Use 0 for unsupported frame parameters. */
8565 frame_parm_handler w32_frame_parm_handlers
[] =
8569 x_set_background_color
,
8575 x_set_foreground_color
,
8578 x_set_internal_border_width
,
8579 x_set_menu_bar_lines
,
8581 x_explicitly_set_name
,
8582 x_set_scroll_bar_width
,
8585 x_set_vertical_scroll_bars
,
8587 x_set_tool_bar_lines
,
8588 0, /* x_set_scroll_bar_foreground, */
8589 0, /* x_set_scroll_bar_background, */
8594 0, /* x_set_wait_for_wm, */
8601 globals_of_w32fns ();
8602 /* This is zero if not using MS-Windows. */
8604 track_mouse_window
= NULL
;
8606 w32_visible_system_caret_hwnd
= NULL
;
8608 Qnone
= intern ("none");
8610 Qsuppress_icon
= intern ("suppress-icon");
8611 staticpro (&Qsuppress_icon
);
8612 Qundefined_color
= intern ("undefined-color");
8613 staticpro (&Qundefined_color
);
8614 Qcancel_timer
= intern ("cancel-timer");
8615 staticpro (&Qcancel_timer
);
8617 Qhyper
= intern ("hyper");
8618 staticpro (&Qhyper
);
8619 Qsuper
= intern ("super");
8620 staticpro (&Qsuper
);
8621 Qmeta
= intern ("meta");
8623 Qalt
= intern ("alt");
8625 Qctrl
= intern ("ctrl");
8627 Qcontrol
= intern ("control");
8628 staticpro (&Qcontrol
);
8629 Qshift
= intern ("shift");
8630 staticpro (&Qshift
);
8631 /* This is the end of symbol initialization. */
8633 /* Text property `display' should be nonsticky by default. */
8634 Vtext_property_default_nonsticky
8635 = Fcons (Fcons (Qdisplay
, Qt
), Vtext_property_default_nonsticky
);
8638 Fput (Qundefined_color
, Qerror_conditions
,
8639 Fcons (Qundefined_color
, Fcons (Qerror
, Qnil
)));
8640 Fput (Qundefined_color
, Qerror_message
,
8641 build_string ("Undefined color"));
8643 staticpro (&w32_grabbed_keys
);
8644 w32_grabbed_keys
= Qnil
;
8646 DEFVAR_LISP ("w32-color-map", &Vw32_color_map
,
8647 doc
: /* An array of color name mappings for Windows. */);
8648 Vw32_color_map
= Qnil
;
8650 DEFVAR_LISP ("w32-pass-alt-to-system", &Vw32_pass_alt_to_system
,
8651 doc
: /* Non-nil if Alt key presses are passed on to Windows.
8652 When non-nil, for example, Alt pressed and released and then space will
8653 open the System menu. When nil, Emacs processes the Alt key events, and
8654 then silently swallows them. */);
8655 Vw32_pass_alt_to_system
= Qnil
;
8657 DEFVAR_LISP ("w32-alt-is-meta", &Vw32_alt_is_meta
,
8658 doc
: /* Non-nil if the Alt key is to be considered the same as the META key.
8659 When nil, Emacs will translate the Alt key to the ALT modifier, not to META. */);
8660 Vw32_alt_is_meta
= Qt
;
8662 DEFVAR_INT ("w32-quit-key", &w32_quit_key
,
8663 doc
: /* If non-zero, the virtual key code for an alternative quit key. */);
8666 DEFVAR_LISP ("w32-pass-lwindow-to-system",
8667 &Vw32_pass_lwindow_to_system
,
8668 doc
: /* If non-nil, the left \"Windows\" key is passed on to Windows.
8670 When non-nil, the Start menu is opened by tapping the key.
8671 If you set this to nil, the left \"Windows\" key is processed by Emacs
8672 according to the value of `w32-lwindow-modifier', which see.
8674 Note that some combinations of the left \"Windows\" key with other keys are
8675 caught by Windows at low level, and so binding them in Emacs will have no
8676 effect. For example, <lwindow>-r always pops up the Windows Run dialog,
8677 <lwindow>-<Pause> pops up the "System Properties" dialog, etc. However, see
8678 the doc string of `w32-phantom-key-code'. */);
8679 Vw32_pass_lwindow_to_system
= Qt
;
8681 DEFVAR_LISP ("w32-pass-rwindow-to-system",
8682 &Vw32_pass_rwindow_to_system
,
8683 doc
: /* If non-nil, the right \"Windows\" key is passed on to Windows.
8685 When non-nil, the Start menu is opened by tapping the key.
8686 If you set this to nil, the right \"Windows\" key is processed by Emacs
8687 according to the value of `w32-rwindow-modifier', which see.
8689 Note that some combinations of the right \"Windows\" key with other keys are
8690 caught by Windows at low level, and so binding them in Emacs will have no
8691 effect. For example, <rwindow>-r always pops up the Windows Run dialog,
8692 <rwindow>-<Pause> pops up the "System Properties" dialog, etc. However, see
8693 the doc string of `w32-phantom-key-code'. */);
8694 Vw32_pass_rwindow_to_system
= Qt
;
8696 DEFVAR_LISP ("w32-phantom-key-code",
8697 &Vw32_phantom_key_code
,
8698 doc
: /* Virtual key code used to generate \"phantom\" key presses.
8699 Value is a number between 0 and 255.
8701 Phantom key presses are generated in order to stop the system from
8702 acting on \"Windows\" key events when `w32-pass-lwindow-to-system' or
8703 `w32-pass-rwindow-to-system' is nil. */);
8704 /* Although 255 is technically not a valid key code, it works and
8705 means that this hack won't interfere with any real key code. */
8706 XSETINT (Vw32_phantom_key_code
, 255);
8708 DEFVAR_LISP ("w32-enable-num-lock",
8709 &Vw32_enable_num_lock
,
8710 doc
: /* If non-nil, the Num Lock key acts normally.
8711 Set to nil to handle Num Lock as the `kp-numlock' key. */);
8712 Vw32_enable_num_lock
= Qt
;
8714 DEFVAR_LISP ("w32-enable-caps-lock",
8715 &Vw32_enable_caps_lock
,
8716 doc
: /* If non-nil, the Caps Lock key acts normally.
8717 Set to nil to handle Caps Lock as the `capslock' key. */);
8718 Vw32_enable_caps_lock
= Qt
;
8720 DEFVAR_LISP ("w32-scroll-lock-modifier",
8721 &Vw32_scroll_lock_modifier
,
8722 doc
: /* Modifier to use for the Scroll Lock ON state.
8723 The value can be hyper, super, meta, alt, control or shift for the
8724 respective modifier, or nil to handle Scroll Lock as the `scroll' key.
8725 Any other value will cause the Scroll Lock key to be ignored. */);
8726 Vw32_scroll_lock_modifier
= Qt
;
8728 DEFVAR_LISP ("w32-lwindow-modifier",
8729 &Vw32_lwindow_modifier
,
8730 doc
: /* Modifier to use for the left \"Windows\" key.
8731 The value can be hyper, super, meta, alt, control or shift for the
8732 respective modifier, or nil to appear as the `lwindow' key.
8733 Any other value will cause the key to be ignored. */);
8734 Vw32_lwindow_modifier
= Qnil
;
8736 DEFVAR_LISP ("w32-rwindow-modifier",
8737 &Vw32_rwindow_modifier
,
8738 doc
: /* Modifier to use for the right \"Windows\" key.
8739 The value can be hyper, super, meta, alt, control or shift for the
8740 respective modifier, or nil to appear as the `rwindow' key.
8741 Any other value will cause the key to be ignored. */);
8742 Vw32_rwindow_modifier
= Qnil
;
8744 DEFVAR_LISP ("w32-apps-modifier",
8745 &Vw32_apps_modifier
,
8746 doc
: /* Modifier to use for the \"Apps\" key.
8747 The value can be hyper, super, meta, alt, control or shift for the
8748 respective modifier, or nil to appear as the `apps' key.
8749 Any other value will cause the key to be ignored. */);
8750 Vw32_apps_modifier
= Qnil
;
8752 DEFVAR_BOOL ("w32-enable-synthesized-fonts", &w32_enable_synthesized_fonts
,
8753 doc
: /* Non-nil enables selection of artificially italicized and bold fonts. */);
8754 w32_enable_synthesized_fonts
= 0;
8756 DEFVAR_LISP ("w32-enable-palette", &Vw32_enable_palette
,
8757 doc
: /* Non-nil enables Windows palette management to map colors exactly. */);
8758 Vw32_enable_palette
= Qt
;
8760 DEFVAR_INT ("w32-mouse-button-tolerance",
8761 &w32_mouse_button_tolerance
,
8762 doc
: /* Analogue of double click interval for faking middle mouse events.
8763 The value is the minimum time in milliseconds that must elapse between
8764 left and right button down events before they are considered distinct events.
8765 If both mouse buttons are depressed within this interval, a middle mouse
8766 button down event is generated instead. */);
8767 w32_mouse_button_tolerance
= GetDoubleClickTime () / 2;
8769 DEFVAR_INT ("w32-mouse-move-interval",
8770 &w32_mouse_move_interval
,
8771 doc
: /* Minimum interval between mouse move events.
8772 The value is the minimum time in milliseconds that must elapse between
8773 successive mouse move (or scroll bar drag) events before they are
8774 reported as lisp events. */);
8775 w32_mouse_move_interval
= 0;
8777 DEFVAR_BOOL ("w32-pass-extra-mouse-buttons-to-system",
8778 &w32_pass_extra_mouse_buttons_to_system
,
8779 doc
: /* If non-nil, the fourth and fifth mouse buttons are passed to Windows.
8780 Recent versions of Windows support mice with up to five buttons.
8781 Since most applications don't support these extra buttons, most mouse
8782 drivers will allow you to map them to functions at the system level.
8783 If this variable is non-nil, Emacs will pass them on, allowing the
8784 system to handle them. */);
8785 w32_pass_extra_mouse_buttons_to_system
= 0;
8787 DEFVAR_LISP ("x-pointer-shape", &Vx_pointer_shape
,
8788 doc
: /* The shape of the pointer when over text.
8789 Changing the value does not affect existing frames
8790 unless you set the mouse color. */);
8791 Vx_pointer_shape
= Qnil
;
8793 Vx_nontext_pointer_shape
= Qnil
;
8795 Vx_mode_pointer_shape
= Qnil
;
8797 DEFVAR_LISP ("x-hourglass-pointer-shape", &Vx_hourglass_pointer_shape
,
8798 doc
: /* The shape of the pointer when Emacs is busy.
8799 This variable takes effect when you create a new frame
8800 or when you set the mouse color. */);
8801 Vx_hourglass_pointer_shape
= Qnil
;
8803 DEFVAR_BOOL ("display-hourglass", &display_hourglass_p
,
8804 doc
: /* Non-zero means Emacs displays an hourglass pointer on window systems. */);
8805 display_hourglass_p
= 1;
8807 DEFVAR_LISP ("hourglass-delay", &Vhourglass_delay
,
8808 doc
: /* *Seconds to wait before displaying an hourglass pointer.
8809 Value must be an integer or float. */);
8810 Vhourglass_delay
= make_number (DEFAULT_HOURGLASS_DELAY
);
8812 DEFVAR_LISP ("x-sensitive-text-pointer-shape",
8813 &Vx_sensitive_text_pointer_shape
,
8814 doc
: /* The shape of the pointer when over mouse-sensitive text.
8815 This variable takes effect when you create a new frame
8816 or when you set the mouse color. */);
8817 Vx_sensitive_text_pointer_shape
= Qnil
;
8819 DEFVAR_LISP ("x-window-horizontal-drag-cursor",
8820 &Vx_window_horizontal_drag_shape
,
8821 doc
: /* Pointer shape to use for indicating a window can be dragged horizontally.
8822 This variable takes effect when you create a new frame
8823 or when you set the mouse color. */);
8824 Vx_window_horizontal_drag_shape
= Qnil
;
8826 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel
,
8827 doc
: /* A string indicating the foreground color of the cursor box. */);
8828 Vx_cursor_fore_pixel
= Qnil
;
8830 DEFVAR_LISP ("x-max-tooltip-size", &Vx_max_tooltip_size
,
8831 doc
: /* Maximum size for tooltips.
8832 Value is a pair (COLUMNS . ROWS). Text larger than this is clipped. */);
8833 Vx_max_tooltip_size
= Fcons (make_number (80), make_number (40));
8835 DEFVAR_LISP ("x-no-window-manager", &Vx_no_window_manager
,
8836 doc
: /* Non-nil if no window manager is in use.
8837 Emacs doesn't try to figure this out; this is always nil
8838 unless you set it to something else. */);
8839 /* We don't have any way to find this out, so set it to nil
8840 and maybe the user would like to set it to t. */
8841 Vx_no_window_manager
= Qnil
;
8843 DEFVAR_LISP ("x-pixel-size-width-font-regexp",
8844 &Vx_pixel_size_width_font_regexp
,
8845 doc
: /* Regexp matching a font name whose width is the same as `PIXEL_SIZE'.
8847 Since Emacs gets width of a font matching with this regexp from
8848 PIXEL_SIZE field of the name, font finding mechanism gets faster for
8849 such a font. This is especially effective for such large fonts as
8850 Chinese, Japanese, and Korean. */);
8851 Vx_pixel_size_width_font_regexp
= Qnil
;
8853 DEFVAR_LISP ("w32-bdf-filename-alist",
8854 &Vw32_bdf_filename_alist
,
8855 doc
: /* List of bdf fonts and their corresponding filenames. */);
8856 Vw32_bdf_filename_alist
= Qnil
;
8858 DEFVAR_BOOL ("w32-strict-fontnames",
8859 &w32_strict_fontnames
,
8860 doc
: /* Non-nil means only use fonts that are exact matches for those requested.
8861 Default is nil, which allows old fontnames that are not XLFD compliant,
8862 and allows third-party CJK display to work by specifying false charset
8863 fields to trick Emacs into translating to Big5, SJIS etc.
8864 Setting this to t will prevent wrong fonts being selected when
8865 fontsets are automatically created. */);
8866 w32_strict_fontnames
= 0;
8868 DEFVAR_BOOL ("w32-strict-painting",
8869 &w32_strict_painting
,
8870 doc
: /* Non-nil means use strict rules for repainting frames.
8871 Set this to nil to get the old behavior for repainting; this should
8872 only be necessary if the default setting causes problems. */);
8873 w32_strict_painting
= 1;
8875 DEFVAR_LISP ("w32-charset-info-alist",
8876 &Vw32_charset_info_alist
,
8877 doc
: /* Alist linking Emacs character sets to Windows fonts and codepages.
8878 Each entry should be of the form:
8880 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE))
8882 where CHARSET_NAME is a string used in font names to identify the charset,
8883 WINDOWS_CHARSET is a symbol that can be one of:
8884 w32-charset-ansi, w32-charset-default, w32-charset-symbol,
8885 w32-charset-shiftjis, w32-charset-hangeul, w32-charset-gb2312,
8886 w32-charset-chinesebig5,
8887 w32-charset-johab, w32-charset-hebrew,
8888 w32-charset-arabic, w32-charset-greek, w32-charset-turkish,
8889 w32-charset-vietnamese, w32-charset-thai, w32-charset-easteurope,
8890 w32-charset-russian, w32-charset-mac, w32-charset-baltic,
8891 w32-charset-unicode,
8893 CODEPAGE should be an integer specifying the codepage that should be used
8894 to display the character set, t to do no translation and output as Unicode,
8895 or nil to do no translation and output as 8 bit (or multibyte on far-east
8896 versions of Windows) characters. */);
8897 Vw32_charset_info_alist
= Qnil
;
8899 staticpro (&Qw32_charset_ansi
);
8900 Qw32_charset_ansi
= intern ("w32-charset-ansi");
8901 staticpro (&Qw32_charset_symbol
);
8902 Qw32_charset_default
= intern ("w32-charset-default");
8903 staticpro (&Qw32_charset_default
);
8904 Qw32_charset_symbol
= intern ("w32-charset-symbol");
8905 staticpro (&Qw32_charset_shiftjis
);
8906 Qw32_charset_shiftjis
= intern ("w32-charset-shiftjis");
8907 staticpro (&Qw32_charset_hangeul
);
8908 Qw32_charset_hangeul
= intern ("w32-charset-hangeul");
8909 staticpro (&Qw32_charset_chinesebig5
);
8910 Qw32_charset_chinesebig5
= intern ("w32-charset-chinesebig5");
8911 staticpro (&Qw32_charset_gb2312
);
8912 Qw32_charset_gb2312
= intern ("w32-charset-gb2312");
8913 staticpro (&Qw32_charset_oem
);
8914 Qw32_charset_oem
= intern ("w32-charset-oem");
8916 #ifdef JOHAB_CHARSET
8918 static int w32_extra_charsets_defined
= 1;
8919 DEFVAR_BOOL ("w32-extra-charsets-defined", &w32_extra_charsets_defined
,
8920 doc
: /* Internal variable. */);
8922 staticpro (&Qw32_charset_johab
);
8923 Qw32_charset_johab
= intern ("w32-charset-johab");
8924 staticpro (&Qw32_charset_easteurope
);
8925 Qw32_charset_easteurope
= intern ("w32-charset-easteurope");
8926 staticpro (&Qw32_charset_turkish
);
8927 Qw32_charset_turkish
= intern ("w32-charset-turkish");
8928 staticpro (&Qw32_charset_baltic
);
8929 Qw32_charset_baltic
= intern ("w32-charset-baltic");
8930 staticpro (&Qw32_charset_russian
);
8931 Qw32_charset_russian
= intern ("w32-charset-russian");
8932 staticpro (&Qw32_charset_arabic
);
8933 Qw32_charset_arabic
= intern ("w32-charset-arabic");
8934 staticpro (&Qw32_charset_greek
);
8935 Qw32_charset_greek
= intern ("w32-charset-greek");
8936 staticpro (&Qw32_charset_hebrew
);
8937 Qw32_charset_hebrew
= intern ("w32-charset-hebrew");
8938 staticpro (&Qw32_charset_vietnamese
);
8939 Qw32_charset_vietnamese
= intern ("w32-charset-vietnamese");
8940 staticpro (&Qw32_charset_thai
);
8941 Qw32_charset_thai
= intern ("w32-charset-thai");
8942 staticpro (&Qw32_charset_mac
);
8943 Qw32_charset_mac
= intern ("w32-charset-mac");
8947 #ifdef UNICODE_CHARSET
8949 static int w32_unicode_charset_defined
= 1;
8950 DEFVAR_BOOL ("w32-unicode-charset-defined",
8951 &w32_unicode_charset_defined
,
8952 doc
: /* Internal variable. */);
8954 staticpro (&Qw32_charset_unicode
);
8955 Qw32_charset_unicode
= intern ("w32-charset-unicode");
8959 #if 0 /* TODO: Port to W32 */
8960 defsubr (&Sx_change_window_property
);
8961 defsubr (&Sx_delete_window_property
);
8962 defsubr (&Sx_window_property
);
8964 defsubr (&Sxw_display_color_p
);
8965 defsubr (&Sx_display_grayscale_p
);
8966 defsubr (&Sxw_color_defined_p
);
8967 defsubr (&Sxw_color_values
);
8968 defsubr (&Sx_server_max_request_size
);
8969 defsubr (&Sx_server_vendor
);
8970 defsubr (&Sx_server_version
);
8971 defsubr (&Sx_display_pixel_width
);
8972 defsubr (&Sx_display_pixel_height
);
8973 defsubr (&Sx_display_mm_width
);
8974 defsubr (&Sx_display_mm_height
);
8975 defsubr (&Sx_display_screens
);
8976 defsubr (&Sx_display_planes
);
8977 defsubr (&Sx_display_color_cells
);
8978 defsubr (&Sx_display_visual_class
);
8979 defsubr (&Sx_display_backing_store
);
8980 defsubr (&Sx_display_save_under
);
8981 defsubr (&Sx_create_frame
);
8982 defsubr (&Sx_open_connection
);
8983 defsubr (&Sx_close_connection
);
8984 defsubr (&Sx_display_list
);
8985 defsubr (&Sx_synchronize
);
8987 /* W32 specific functions */
8989 defsubr (&Sw32_focus_frame
);
8990 defsubr (&Sw32_select_font
);
8991 defsubr (&Sw32_define_rgb_color
);
8992 defsubr (&Sw32_default_color_map
);
8993 defsubr (&Sw32_load_color_file
);
8994 defsubr (&Sw32_send_sys_command
);
8995 defsubr (&Sw32_shell_execute
);
8996 defsubr (&Sw32_register_hot_key
);
8997 defsubr (&Sw32_unregister_hot_key
);
8998 defsubr (&Sw32_registered_hot_keys
);
8999 defsubr (&Sw32_reconstruct_hot_key
);
9000 defsubr (&Sw32_toggle_lock_key
);
9001 defsubr (&Sw32_window_exists_p
);
9002 defsubr (&Sw32_find_bdf_fonts
);
9004 defsubr (&Sfile_system_info
);
9005 defsubr (&Sdefault_printer_name
);
9007 /* Setting callback functions for fontset handler. */
9008 get_font_info_func
= w32_get_font_info
;
9010 #if 0 /* This function pointer doesn't seem to be used anywhere.
9011 And the pointer assigned has the wrong type, anyway. */
9012 list_fonts_func
= w32_list_fonts
;
9015 load_font_func
= w32_load_font
;
9016 find_ccl_program_func
= w32_find_ccl_program
;
9017 query_font_func
= w32_query_font
;
9018 set_frame_fontset_func
= x_set_font
;
9019 check_window_system_func
= check_w32
;
9022 hourglass_atimer
= NULL
;
9023 hourglass_shown_p
= 0;
9024 defsubr (&Sx_show_tip
);
9025 defsubr (&Sx_hide_tip
);
9027 staticpro (&tip_timer
);
9029 staticpro (&tip_frame
);
9031 last_show_tip_args
= Qnil
;
9032 staticpro (&last_show_tip_args
);
9034 defsubr (&Sx_file_dialog
);
9039 globals_of_w32fns is used to initialize those global variables that
9040 must always be initialized on startup even when the global variable
9041 initialized is non zero (see the function main in emacs.c).
9042 globals_of_w32fns is called from syms_of_w32fns when the global
9043 variable initialized is 0 and directly from main when initialized
9046 void globals_of_w32fns ()
9048 HMODULE user32_lib
= GetModuleHandle ("user32.dll");
9050 TrackMouseEvent not available in all versions of Windows, so must load
9051 it dynamically. Do it once, here, instead of every time it is used.
9053 track_mouse_event_fn
= (TrackMouseEvent_Proc
)
9054 GetProcAddress (user32_lib
, "TrackMouseEvent");
9055 /* ditto for GetClipboardSequenceNumber. */
9056 clipboard_sequence_fn
= (ClipboardSequence_Proc
)
9057 GetProcAddress (user32_lib
, "GetClipboardSequenceNumber");
9059 DEFVAR_INT ("w32-ansi-code-page",
9060 &w32_ansi_code_page
,
9061 doc
: /* The ANSI code page used by the system. */);
9062 w32_ansi_code_page
= GetACP ();
9067 void w32_abort (void) NO_RETURN
;
9073 button
= MessageBox (NULL
,
9074 "A fatal error has occurred!\n\n"
9075 "Would you like to attach a debugger?\n\n"
9076 "Select YES to debug, NO to abort Emacs"
9078 "\n\n(type \"gdb -p <emacs-PID>\" and\n"
9079 "\"continue\" inside GDB before clicking YES.)"
9081 , "Emacs Abort Dialog",
9082 MB_ICONEXCLAMATION
| MB_TASKMODAL
9083 | MB_SETFOREGROUND
| MB_YESNO
);
9088 exit (2); /* tell the compiler we will never return */
9096 /* For convenience when debugging. */
9100 return GetLastError ();
9103 /* arch-tag: 707589ab-b9be-4638-8cdd-74629cc9b446
9104 (do not change this comment) */