Use 'header-line-highlight' face in proced and erc
[emacs.git] / src / w32term.c
blob0f7bb9337f6b2661386a305aae1b652f0e1f8ae4
1 /* Implementation of GUI terminal on the Microsoft Windows API.
3 Copyright (C) 1989, 1993-2017 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 3 of the License, or (at
10 your option) any later version.
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. If not, see <http://www.gnu.org/licenses/>. */
20 #include <config.h>
21 #include <signal.h>
22 #include <stdio.h>
23 #include "lisp.h"
24 #include "blockinput.h"
25 #include "w32term.h"
26 #include "w32common.h" /* for OS version info */
28 #include <ctype.h>
29 #include <errno.h>
30 #include <sys/stat.h>
31 #ifdef CYGWIN
32 #include <fcntl.h> /* for O_RDWR */
33 #endif
34 #include <imm.h>
36 #include "coding.h"
37 #include "frame.h"
38 #include "fontset.h"
39 #include "termhooks.h"
40 #include "termopts.h"
41 #include "termchar.h"
42 #include "buffer.h"
43 #include "window.h"
44 #include "keyboard.h"
45 #include "menu.h" /* for w32_menu_show */
47 #ifdef WINDOWSNT
48 #include "w32.h" /* for filename_from_utf16, filename_from_ansi */
49 #endif
51 #ifndef WINDOWSNT
52 #include <io.h> /* for get_osfhandle */
53 #endif
55 #include <shellapi.h>
57 #include "font.h"
58 #include "w32font.h"
60 #if 0 /* TODO: stipple */
61 #include "bitmaps/gray.xbm"
62 #endif
64 /* Fringe bitmaps. */
66 static int max_fringe_bmp = 0;
67 static HBITMAP *fringe_bmp = 0;
69 /* Temporary variables for w32_read_socket. */
71 static int last_mousemove_x = 0;
72 static int last_mousemove_y = 0;
74 /* Define GET_WHEEL_DELTA_WPARAM macro if system headers don't. */
75 #ifndef GET_WHEEL_DELTA_WPARAM
76 #define GET_WHEEL_DELTA_WPARAM(wparam) ((short)HIWORD (wparam))
77 #endif
79 /* Non-zero means that a HELP_EVENT has been generated since Emacs
80 start. */
82 static int any_help_event_p;
84 extern unsigned int msh_mousewheel;
86 extern int w32_codepage_for_font (char *fontname);
87 extern Cursor w32_load_cursor (LPCTSTR name);
89 #define x_any_window_to_frame x_window_to_frame
90 #define x_top_window_to_frame x_window_to_frame
93 /* This is display since w32 does not support multiple ones. */
94 struct w32_display_info one_w32_display_info;
95 struct w32_display_info *x_display_list;
97 #if _WIN32_WINNT < 0x0500 && !defined(MINGW_W64)
98 /* Pre Windows 2000, this was not available, but define it here so
99 that Emacs compiled on such a platform will run on newer versions.
100 MinGW64 defines these unconditionally, so avoid redefining. */
102 typedef struct tagWCRANGE
104 WCHAR wcLow;
105 USHORT cGlyphs;
106 } WCRANGE;
108 typedef struct tagGLYPHSET
110 DWORD cbThis;
111 DWORD flAccel;
112 DWORD cGlyphsSupported;
113 DWORD cRanges;
114 WCRANGE ranges[1];
115 } GLYPHSET;
117 #endif /* compiling for pre-Win2k */
119 /* Dynamic linking to SetLayeredWindowAttribute (only since 2000). */
120 BOOL (WINAPI *pfnSetLayeredWindowAttributes) (HWND, COLORREF, BYTE, DWORD);
122 #ifndef LWA_ALPHA
123 #define LWA_ALPHA 0x02
124 #endif
125 /* WS_EX_LAYERED is defined unconditionally by MingW, but only for W2K and
126 later targets by MSVC headers. */
127 #ifndef WS_EX_LAYERED
128 #define WS_EX_LAYERED 0x80000
129 #endif
131 /* SM_CXVIRTUALSCREEN and SM_CYVIRTUALSCREEN are not defined on 95 and
132 NT4. */
133 #ifndef SM_CXVIRTUALSCREEN
134 #define SM_CXVIRTUALSCREEN 78
135 #endif
136 #ifndef SM_CYVIRTUALSCREEN
137 #define SM_CYVIRTUALSCREEN 79
138 #endif
140 /* The handle of the frame that currently owns the system caret. */
141 HWND w32_system_caret_hwnd;
142 int w32_system_caret_height;
143 int w32_system_caret_x;
144 int w32_system_caret_y;
145 struct window *w32_system_caret_window;
146 int w32_system_caret_hdr_height;
147 int w32_system_caret_mode_height;
148 DWORD dwWindowsThreadId = 0;
149 HANDLE hWindowsThread = NULL;
150 DWORD dwMainThreadId = 0;
151 HANDLE hMainThread = NULL;
153 int vertical_scroll_bar_min_handle;
154 int horizontal_scroll_bar_min_handle;
155 int vertical_scroll_bar_top_border;
156 int vertical_scroll_bar_bottom_border;
157 int horizontal_scroll_bar_left_border;
158 int horizontal_scroll_bar_right_border;
160 int last_scroll_bar_drag_pos;
162 /* Keyboard code page - may be changed by language-change events. */
163 int w32_keyboard_codepage;
165 /* Incremented by w32_read_socket whenever it really tries to read
166 events. */
167 static int volatile input_signal_count;
169 #ifdef CYGWIN
170 int w32_message_fd = -1;
171 #endif /* CYGWIN */
173 static void w32_handle_tool_bar_click (struct frame *,
174 struct input_event *);
175 static void w32_define_cursor (Window, Cursor);
177 void x_lower_frame (struct frame *);
178 void x_scroll_bar_clear (struct frame *);
179 void x_raise_frame (struct frame *);
180 void x_wm_set_window_state (struct frame *, int);
181 void x_wm_set_icon_pixmap (struct frame *, int);
182 static void w32_initialize (void);
183 static void x_update_end (struct frame *);
184 static void w32_frame_up_to_date (struct frame *);
185 static void x_clear_frame (struct frame *);
186 static void frame_highlight (struct frame *);
187 static void frame_unhighlight (struct frame *);
188 static void x_new_focus_frame (struct w32_display_info *,
189 struct frame *);
190 static void x_focus_changed (int, int, struct w32_display_info *,
191 struct frame *, struct input_event *);
192 static void w32_detect_focus_change (struct w32_display_info *,
193 W32Msg *, struct input_event *);
194 static void w32_frame_rehighlight (struct frame *);
195 static void x_frame_rehighlight (struct w32_display_info *);
196 static void x_draw_hollow_cursor (struct window *, struct glyph_row *);
197 static void x_draw_bar_cursor (struct window *, struct glyph_row *, int,
198 enum text_cursor_kinds);
199 static void w32_clip_to_row (struct window *, struct glyph_row *,
200 enum glyph_row_area, HDC);
201 static BOOL my_show_window (struct frame *, HWND, int);
202 static void my_set_window_pos (HWND, HWND, int, int, int, int, UINT);
203 #if 0
204 static void my_set_focus (struct frame *, HWND);
205 #endif
206 static void my_set_foreground_window (HWND);
207 static void my_destroy_window (struct frame *, HWND);
208 static void w32fullscreen_hook (struct frame *);
210 #ifdef GLYPH_DEBUG
211 static void x_check_font (struct frame *, struct font *);
212 #endif
215 /***********************************************************************
216 Debugging
217 ***********************************************************************/
219 #if 0
221 /* This is a function useful for recording debugging information about
222 the sequence of occurrences in this file. */
224 struct record
226 char *locus;
227 int type;
230 struct record event_record[100];
232 int event_record_index;
234 record_event (char *locus, int type)
236 if (event_record_index == sizeof (event_record) / sizeof (struct record))
237 event_record_index = 0;
239 event_record[event_record_index].locus = locus;
240 event_record[event_record_index].type = type;
241 event_record_index++;
244 #endif /* 0 */
247 static void
248 XChangeGC (void *ignore, XGCValues *gc, unsigned long mask,
249 XGCValues *xgcv)
251 if (mask & GCForeground)
252 gc->foreground = xgcv->foreground;
253 if (mask & GCBackground)
254 gc->background = xgcv->background;
255 if (mask & GCFont)
256 gc->font = xgcv->font;
259 XGCValues *
260 XCreateGC (void *ignore, HWND wignore, unsigned long mask, XGCValues *xgcv)
262 XGCValues *gc = xzalloc (sizeof (XGCValues));
264 XChangeGC (ignore, gc, mask, xgcv);
266 return gc;
269 #if 0 /* unused for now, see x_draw_image_glyph_string below */
270 static void
271 XGetGCValues (void *ignore, XGCValues *gc,
272 unsigned long mask, XGCValues *xgcv)
274 XChangeGC (ignore, xgcv, mask, gc);
276 #endif
278 static void
279 w32_set_clip_rectangle (HDC hdc, RECT *rect)
281 if (rect)
283 HRGN clip_region = CreateRectRgnIndirect (rect);
284 SelectClipRgn (hdc, clip_region);
285 DeleteObject (clip_region);
287 else
288 SelectClipRgn (hdc, NULL);
291 /* Restore clipping rectangle in S */
292 static void
293 w32_restore_glyph_string_clip (struct glyph_string *s)
295 RECT *r = s->clip;
296 int n = s->num_clips;
298 if (n == 1)
299 w32_set_clip_rectangle (s->hdc, r);
300 else if (n > 1)
302 HRGN clip1 = CreateRectRgnIndirect (r);
303 HRGN clip2 = CreateRectRgnIndirect (r + 1);
304 if (CombineRgn (clip1, clip1, clip2, RGN_OR) != ERROR)
305 SelectClipRgn (s->hdc, clip1);
306 DeleteObject (clip1);
307 DeleteObject (clip2);
312 Draw a wavy line under S. The wave fills wave_height pixels from y0.
314 x0 wave_length = 2
316 y0 * * * * *
317 |* * * * * * * * *
318 wave_height = 3 | * * * *
322 static void
323 w32_draw_underwave (struct glyph_string *s, COLORREF color)
325 int wave_height = 3, wave_length = 2;
326 int dx, dy, x0, y0, width, x1, y1, x2, y2, odd, xmax;
327 XRectangle wave_clip, string_clip, final_clip;
328 RECT w32_final_clip, w32_string_clip;
329 HPEN hp, oldhp;
331 dx = wave_length;
332 dy = wave_height - 1;
333 x0 = s->x;
334 y0 = s->ybase - wave_height + 3;
335 width = s->width;
336 xmax = x0 + width;
338 /* Find and set clipping rectangle */
340 wave_clip.x = x0;
341 wave_clip.y = y0;
342 wave_clip.width = width;
343 wave_clip.height = wave_height;
345 get_glyph_string_clip_rect (s, &w32_string_clip);
346 CONVERT_TO_XRECT (string_clip, w32_string_clip);
348 if (!x_intersect_rectangles (&wave_clip, &string_clip, &final_clip))
349 return;
351 hp = CreatePen (PS_SOLID, 0, color);
352 oldhp = SelectObject (s->hdc, hp);
353 CONVERT_FROM_XRECT (final_clip, w32_final_clip);
354 w32_set_clip_rectangle (s->hdc, &w32_final_clip);
356 /* Draw the waves */
358 x1 = x0 - (x0 % dx);
359 x2 = x1 + dx;
360 odd = (x1/dx) % 2;
361 y1 = y2 = y0;
363 if (odd)
364 y1 += dy;
365 else
366 y2 += dy;
368 MoveToEx (s->hdc, x1, y1, NULL);
370 while (x1 <= xmax)
372 LineTo (s->hdc, x2, y2);
373 x1 = x2, y1 = y2;
374 x2 += dx, y2 = y0 + odd*dy;
375 odd = !odd;
378 /* Restore previous pen and clipping rectangle(s) */
379 w32_restore_glyph_string_clip (s);
380 SelectObject (s->hdc, oldhp);
381 DeleteObject (hp);
384 /* Draw a hollow rectangle at the specified position. */
385 static void
386 w32_draw_rectangle (HDC hdc, XGCValues *gc, int x, int y,
387 int width, int height)
389 HBRUSH hb, oldhb;
390 HPEN hp, oldhp;
392 hb = CreateSolidBrush (gc->background);
393 hp = CreatePen (PS_SOLID, 0, gc->foreground);
394 oldhb = SelectObject (hdc, hb);
395 oldhp = SelectObject (hdc, hp);
397 /* We enlarge WIDTH and HEIGHT by 1 to be bug-compatible to the
398 brain-dead design of XDrawRectangle, which draws a rectangle that
399 is 1 pixel wider and higher than its arguments WIDTH and HEIGHT.
400 This allows us to keep the code that calls this function similar
401 to the corresponding code in xterm.c. For the details, see
402 http://lists.gnu.org/archives/html/emacs-devel/2014-10/msg00546.html. */
403 Rectangle (hdc, x, y, x + width + 1, y + height + 1);
405 SelectObject (hdc, oldhb);
406 SelectObject (hdc, oldhp);
407 DeleteObject (hb);
408 DeleteObject (hp);
411 /* Draw a filled rectangle at the specified position. */
412 void
413 w32_fill_rect (struct frame *f, HDC hdc, COLORREF pix, RECT *lprect)
415 HBRUSH hb;
417 hb = CreateSolidBrush (pix);
418 FillRect (hdc, lprect, hb);
419 DeleteObject (hb);
422 void
423 w32_clear_window (struct frame *f)
425 RECT rect;
426 HDC hdc = get_frame_dc (f);
428 /* Under certain conditions, this can be called at startup with
429 a console frame pointer before the GUI frame is created. An HDC
430 of 0 indicates this. */
431 if (hdc)
433 GetClientRect (FRAME_W32_WINDOW (f), &rect);
434 w32_clear_rect (f, hdc, &rect);
437 release_frame_dc (f, hdc);
440 #define OPAQUE_FRAME 255
442 void
443 x_set_frame_alpha (struct frame *f)
445 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
446 double alpha = 1.0;
447 double alpha_min = 1.0;
448 BYTE opac;
449 LONG ex_style;
450 HWND window = FRAME_W32_WINDOW (f);
452 /* Older versions of Windows do not support transparency. */
453 if (!pfnSetLayeredWindowAttributes)
454 return;
456 if (dpyinfo->w32_focus_frame == f)
457 alpha = f->alpha[0];
458 else
459 alpha = f->alpha[1];
461 if (FLOATP (Vframe_alpha_lower_limit))
462 alpha_min = XFLOAT_DATA (Vframe_alpha_lower_limit);
463 else if (INTEGERP (Vframe_alpha_lower_limit))
464 alpha_min = (XINT (Vframe_alpha_lower_limit)) / 100.0;
466 if (alpha < 0.0)
467 return;
468 else if (alpha > 1.0)
469 alpha = 1.0;
470 else if (alpha < alpha_min && alpha_min <= 1.0)
471 alpha = alpha_min;
473 opac = alpha * OPAQUE_FRAME;
475 ex_style = GetWindowLong (window, GWL_EXSTYLE);
477 if (opac == OPAQUE_FRAME)
478 ex_style &= ~WS_EX_LAYERED;
479 else
480 ex_style |= WS_EX_LAYERED;
482 SetWindowLong (window, GWL_EXSTYLE, ex_style);
484 if (opac != OPAQUE_FRAME)
485 pfnSetLayeredWindowAttributes (window, 0, opac, LWA_ALPHA);
489 x_display_pixel_height (struct w32_display_info *dpyinfo)
491 int pixels = GetSystemMetrics (SM_CYVIRTUALSCREEN);
493 if (pixels == 0)
494 /* Fallback for Windows 95 or NT 4.0. */
495 pixels = GetSystemMetrics (SM_CYSCREEN);
497 return pixels;
501 x_display_pixel_width (struct w32_display_info *dpyinfo)
503 int pixels = GetSystemMetrics (SM_CXVIRTUALSCREEN);
505 if (pixels == 0)
506 /* Fallback for Windows 95 or NT 4.0. */
507 pixels = GetSystemMetrics (SM_CXSCREEN);
509 return pixels;
513 /***********************************************************************
514 Starting and ending an update
515 ***********************************************************************/
517 /* Start an update of frame F. This function is installed as a hook
518 for update_begin, i.e. it is called when update_begin is called.
519 This function is called prior to calls to x_update_window_begin for
520 each window being updated. */
522 static void
523 x_update_begin (struct frame *f)
525 struct w32_display_info *display_info = FRAME_DISPLAY_INFO (f);
527 if (! FRAME_W32_P (f))
528 return;
530 /* Regenerate display palette before drawing if list of requested
531 colors has changed. */
532 if (display_info->regen_palette)
534 w32_regenerate_palette (f);
535 display_info->regen_palette = FALSE;
540 /* Start update of window W. */
542 static void
543 x_update_window_begin (struct window *w)
545 struct frame *f = XFRAME (WINDOW_FRAME (w));
546 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
548 /* Hide the system caret during an update. */
549 if (w32_use_visible_system_caret && w32_system_caret_hwnd)
551 SendMessageTimeout (w32_system_caret_hwnd, WM_EMACS_HIDE_CARET, 0, 0,
552 0, 6000, NULL);
555 w->output_cursor = w->cursor;
557 block_input ();
559 if (f == hlinfo->mouse_face_mouse_frame)
561 /* Don't do highlighting for mouse motion during the update. */
562 hlinfo->mouse_face_defer = true;
564 /* If F needs to be redrawn, simply forget about any prior mouse
565 highlighting. */
566 if (FRAME_GARBAGED_P (f))
567 hlinfo->mouse_face_window = Qnil;
569 #if 0 /* Rows in a current matrix containing glyphs in mouse-face have
570 their mouse_face_p flag set, which means that they are always
571 unequal to rows in a desired matrix which never have that
572 flag set. So, rows containing mouse-face glyphs are never
573 scrolled, and we don't have to switch the mouse highlight off
574 here to prevent it from being scrolled. */
576 /* Can we tell that this update does not affect the window
577 where the mouse highlight is? If so, no need to turn off.
578 Likewise, don't do anything if the frame is garbaged;
579 in that case, the frame's current matrix that we would use
580 is all wrong, and we will redisplay that line anyway. */
581 if (!NILP (hlinfo->mouse_face_window)
582 && w == XWINDOW (hlinfo->mouse_face_window))
584 int i;
586 for (i = 0; i < w->desired_matrix->nrows; ++i)
587 if (MATRIX_ROW_ENABLED_P (w->desired_matrix, i))
588 break;
590 if (i < w->desired_matrix->nrows)
591 clear_mouse_face (hlinfo);
593 #endif /* 0 */
596 unblock_input ();
599 /* Draw a vertical window border from (x,y0) to (x,y1) */
601 static void
602 w32_draw_vertical_window_border (struct window *w, int x, int y0, int y1)
604 struct frame *f = XFRAME (WINDOW_FRAME (w));
605 RECT r;
606 HDC hdc;
607 struct face *face;
609 r.left = x;
610 r.right = x + 1;
611 r.top = y0;
612 r.bottom = y1;
614 hdc = get_frame_dc (f);
615 face = FACE_FROM_ID_OR_NULL (f, VERTICAL_BORDER_FACE_ID);
616 if (face)
617 w32_fill_rect (f, hdc, face->foreground, &r);
618 else
619 w32_fill_rect (f, hdc, FRAME_FOREGROUND_PIXEL (f), &r);
621 release_frame_dc (f, hdc);
625 /* Draw a window divider from (x0, y0) to (x1, y1) */
627 static void
628 w32_draw_window_divider (struct window *w, int x0, int x1, int y0, int y1)
630 struct frame *f = XFRAME (WINDOW_FRAME (w));
631 HDC hdc = get_frame_dc (f);
632 struct face *face = FACE_FROM_ID_OR_NULL (f, WINDOW_DIVIDER_FACE_ID);
633 struct face *face_first
634 = FACE_FROM_ID_OR_NULL (f, WINDOW_DIVIDER_FIRST_PIXEL_FACE_ID);
635 struct face *face_last
636 = FACE_FROM_ID_OR_NULL (f, WINDOW_DIVIDER_LAST_PIXEL_FACE_ID);
637 unsigned long color = face ? face->foreground : FRAME_FOREGROUND_PIXEL (f);
638 unsigned long color_first = (face_first
639 ? face_first->foreground
640 : FRAME_FOREGROUND_PIXEL (f));
641 unsigned long color_last = (face_last
642 ? face_last->foreground
643 : FRAME_FOREGROUND_PIXEL (f));
645 if (y1 - y0 > x1 - x0 && x1 - x0 > 2)
646 /* Vertical. */
648 w32_fill_area_abs (f, hdc, color_first, x0, y0, x0 + 1, y1);
649 w32_fill_area_abs (f, hdc, color, x0 + 1, y0, x1 - 1, y1);
650 w32_fill_area_abs (f, hdc, color_last, x1 - 1, y0, x1, y1);
652 else if (x1 - x0 > y1 - y0 && y1 - y0 > 3)
653 /* Horizontal. */
655 w32_fill_area_abs (f, hdc, color_first, x0, y0, x1, y0 + 1);
656 w32_fill_area_abs (f, hdc, color, x0, y0 + 1, x1, y1 - 1);
657 w32_fill_area_abs (f, hdc, color_last, x0, y1 - 1, x1, y1);
659 else
660 w32_fill_area_abs (f, hdc, color, x0, y0, x1, y1);
662 release_frame_dc (f, hdc);
665 /* End update of window W.
667 Draw vertical borders between horizontally adjacent windows, and
668 display W's cursor if CURSOR_ON_P is non-zero.
670 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
671 glyphs in mouse-face were overwritten. In that case we have to
672 make sure that the mouse-highlight is properly redrawn.
674 W may be a menu bar pseudo-window in case we don't have X toolkit
675 support. Such windows don't have a cursor, so don't display it
676 here. */
678 static void
679 x_update_window_end (struct window *w, bool cursor_on_p,
680 bool mouse_face_overwritten_p)
682 if (!w->pseudo_window_p)
684 block_input ();
686 if (cursor_on_p)
687 display_and_set_cursor (w, true,
688 w->output_cursor.hpos, w->output_cursor.vpos,
689 w->output_cursor.x, w->output_cursor.y);
691 if (draw_window_fringes (w, true))
693 if (WINDOW_RIGHT_DIVIDER_WIDTH (w))
694 x_draw_right_divider (w);
695 else
696 x_draw_vertical_border (w);
699 unblock_input ();
702 /* If a row with mouse-face was overwritten, arrange for
703 XTframe_up_to_date to redisplay the mouse highlight. */
704 if (mouse_face_overwritten_p)
706 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
708 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
709 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
710 hlinfo->mouse_face_window = Qnil;
713 /* Unhide the caret. This won't actually show the cursor, unless it
714 was visible before the corresponding call to HideCaret in
715 x_update_window_begin. */
716 if (w32_use_visible_system_caret && w32_system_caret_hwnd)
718 SendMessageTimeout (w32_system_caret_hwnd, WM_EMACS_SHOW_CARET, 0, 0,
719 0, 6000, NULL);
724 /* End update of frame F. This function is installed as a hook in
725 update_end. */
727 static void
728 x_update_end (struct frame *f)
730 if (! FRAME_W32_P (f))
731 return;
733 /* Mouse highlight may be displayed again. */
734 MOUSE_HL_INFO (f)->mouse_face_defer = false;
738 /* This function is called from various places in xdisp.c
739 whenever a complete update has been performed. */
741 static void
742 w32_frame_up_to_date (struct frame *f)
744 if (FRAME_W32_P (f))
745 FRAME_MOUSE_UPDATE (f);
749 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
750 arrow bitmaps, or clear the fringes if no bitmaps are required
751 before DESIRED_ROW is made current. This function is called from
752 update_window_line only if it is known that there are differences
753 between bitmaps to be drawn between current row and DESIRED_ROW. */
755 static void
756 x_after_update_window_line (struct window *w, struct glyph_row *desired_row)
758 struct frame *f;
759 int width, height;
761 eassert (w);
763 if (!desired_row->mode_line_p && !w->pseudo_window_p)
764 desired_row->redraw_fringe_bitmaps_p = true;
766 /* When a window has disappeared, make sure that no rest of
767 full-width rows stays visible in the internal border. Could
768 check here if updated window is the leftmost/rightmost window,
769 but I guess it's not worth doing since vertically split windows
770 are almost never used, internal border is rarely set, and the
771 overhead is very small. */
772 if (windows_or_buffers_changed
773 && desired_row->full_width_p
774 && (f = XFRAME (w->frame),
775 width = FRAME_INTERNAL_BORDER_WIDTH (f),
776 width != 0)
777 && (height = desired_row->visible_height,
778 height > 0))
780 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
782 block_input ();
784 HDC hdc = get_frame_dc (f);
785 struct face *face = FACE_FROM_ID_OR_NULL (f, INTERNAL_BORDER_FACE_ID);
787 if (face)
789 /* Fill border with internal border face. */
790 unsigned long color = face->background;
792 w32_fill_area (f, hdc, color, 0, y, width, height);
793 w32_fill_area (f, hdc, color, FRAME_PIXEL_WIDTH (f) - width,
794 y, width, height);
796 else
798 w32_clear_area (f, hdc, 0, y, width, height);
799 w32_clear_area (f, hdc, FRAME_PIXEL_WIDTH (f) - width,
800 y, width, height);
802 release_frame_dc (f, hdc);
804 unblock_input ();
809 /* Draw the bitmap WHICH in one of the left or right fringes of
810 window W. ROW is the glyph row for which to display the bitmap; it
811 determines the vertical position at which the bitmap has to be
812 drawn. */
814 static void
815 w32_draw_fringe_bitmap (struct window *w, struct glyph_row *row,
816 struct draw_fringe_bitmap_params *p)
818 struct frame *f = XFRAME (WINDOW_FRAME (w));
819 HDC hdc;
820 struct face *face = p->face;
822 hdc = get_frame_dc (f);
824 /* Must clip because of partially visible lines. */
825 w32_clip_to_row (w, row, ANY_AREA, hdc);
827 if (p->bx >= 0 && !p->overlay_p)
828 w32_fill_area (f, hdc, face->background,
829 p->bx, p->by, p->nx, p->ny);
831 if (p->which && p->which < max_fringe_bmp)
833 HBITMAP pixmap = fringe_bmp[p->which];
834 HDC compat_hdc;
835 HANDLE horig_obj;
837 compat_hdc = CreateCompatibleDC (hdc);
839 SaveDC (hdc);
841 horig_obj = SelectObject (compat_hdc, pixmap);
843 /* Paint overlays transparently. */
844 if (p->overlay_p)
846 HBRUSH h_brush, h_orig_brush;
848 SetTextColor (hdc, BLACK_PIX_DEFAULT (f));
849 SetBkColor (hdc, WHITE_PIX_DEFAULT (f));
850 h_brush = CreateSolidBrush (face->foreground);
851 h_orig_brush = SelectObject (hdc, h_brush);
853 BitBlt (hdc, p->x, p->y, p->wd, p->h,
854 compat_hdc, 0, p->dh,
855 DSTINVERT);
856 BitBlt (hdc, p->x, p->y, p->wd, p->h,
857 compat_hdc, 0, p->dh,
858 0x2E064A);
859 BitBlt (hdc, p->x, p->y, p->wd, p->h,
860 compat_hdc, 0, p->dh,
861 DSTINVERT);
863 SelectObject (hdc, h_orig_brush);
864 DeleteObject (h_brush);
866 else
868 SetTextColor (hdc, face->background);
869 SetBkColor (hdc, (p->cursor_p
870 ? f->output_data.w32->cursor_pixel
871 : face->foreground));
873 BitBlt (hdc, p->x, p->y, p->wd, p->h,
874 compat_hdc, 0, p->dh,
875 SRCCOPY);
878 SelectObject (compat_hdc, horig_obj);
879 DeleteDC (compat_hdc);
880 RestoreDC (hdc, -1);
883 w32_set_clip_rectangle (hdc, NULL);
885 release_frame_dc (f, hdc);
888 static void
889 w32_define_fringe_bitmap (int which, unsigned short *bits, int h, int wd)
891 if (which >= max_fringe_bmp)
893 int i = max_fringe_bmp;
894 max_fringe_bmp = which + 20;
895 fringe_bmp = (HBITMAP *) xrealloc (fringe_bmp, max_fringe_bmp * sizeof (HBITMAP));
896 while (i < max_fringe_bmp)
897 fringe_bmp[i++] = 0;
900 fringe_bmp[which] = CreateBitmap (wd, h, 1, 1, bits);
903 static void
904 w32_destroy_fringe_bitmap (int which)
906 if (which >= max_fringe_bmp)
907 return;
909 if (fringe_bmp[which])
910 DeleteObject (fringe_bmp[which]);
911 fringe_bmp[which] = 0;
914 /***********************************************************************
915 Display Iterator
916 ***********************************************************************/
918 /* Function prototypes of this page. */
920 static void x_set_glyph_string_clipping (struct glyph_string *);
921 static void x_set_glyph_string_gc (struct glyph_string *);
922 static void x_draw_glyph_string_background (struct glyph_string *,
923 bool);
924 static void x_draw_glyph_string_foreground (struct glyph_string *);
925 static void x_draw_composite_glyph_string_foreground (struct glyph_string *);
926 static void x_draw_glyph_string_box (struct glyph_string *);
927 static void x_draw_glyph_string (struct glyph_string *);
928 static void x_set_cursor_gc (struct glyph_string *);
929 static void x_set_mode_line_face_gc (struct glyph_string *);
930 static void x_set_mouse_face_gc (struct glyph_string *);
931 static int w32_alloc_lighter_color (struct frame *, COLORREF *, double, int);
932 static void w32_setup_relief_color (struct frame *, struct relief *,
933 double, int, COLORREF);
934 static void x_setup_relief_colors (struct glyph_string *);
935 static void x_draw_image_glyph_string (struct glyph_string *);
936 static void x_draw_image_relief (struct glyph_string *);
937 static void x_draw_image_foreground (struct glyph_string *);
938 static void w32_draw_image_foreground_1 (struct glyph_string *, HBITMAP);
939 static void x_clear_glyph_string_rect (struct glyph_string *, int,
940 int, int, int);
941 static void w32_draw_relief_rect (struct frame *, int, int, int, int,
942 int, int, int, int, int, int,
943 RECT *);
944 static void w32_draw_box_rect (struct glyph_string *, int, int, int, int,
945 int, bool, bool, RECT *);
948 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
949 face. */
951 static void
952 x_set_cursor_gc (struct glyph_string *s)
954 if (s->font == FRAME_FONT (s->f)
955 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
956 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
957 /* Sometimes we are not called for each change in the default
958 face's background color (e.g., bug#26851), so the additional
959 test in the next line gives us a chance to resync. */
960 && s->f->output_data.w32->cursor_gc->foreground == s->face->background
961 && !s->cmp)
962 s->gc = s->f->output_data.w32->cursor_gc;
963 else
965 /* Cursor on non-default face: must merge. */
966 XGCValues xgcv;
967 unsigned long mask;
969 xgcv.background = s->f->output_data.w32->cursor_pixel;
970 xgcv.foreground = s->face->background;
972 /* If the glyph would be invisible, try a different foreground. */
973 if (xgcv.foreground == xgcv.background)
974 xgcv.foreground = s->face->foreground;
975 if (xgcv.foreground == xgcv.background)
976 xgcv.foreground = s->f->output_data.w32->cursor_foreground_pixel;
977 if (xgcv.foreground == xgcv.background)
978 xgcv.foreground = s->face->foreground;
980 /* Make sure the cursor is distinct from text in this face. */
981 if (xgcv.background == s->face->background
982 && xgcv.foreground == s->face->foreground)
984 xgcv.background = s->face->foreground;
985 xgcv.foreground = s->face->background;
988 IF_DEBUG (x_check_font (s->f, s->font));
989 xgcv.font = s->font;
990 mask = GCForeground | GCBackground | GCFont;
992 if (FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc)
993 XChangeGC (NULL, FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc,
994 mask, &xgcv);
995 else
996 FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc
997 = XCreateGC (NULL, FRAME_W32_WINDOW (s->f), mask, &xgcv);
999 s->gc = FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc;
1004 /* Set up S->gc of glyph string S for drawing text in mouse face. */
1006 static void
1007 x_set_mouse_face_gc (struct glyph_string *s)
1009 int face_id;
1010 struct face *face;
1012 /* What face has to be used last for the mouse face? */
1013 face_id = MOUSE_HL_INFO (s->f)->mouse_face_face_id;
1014 face = FACE_FROM_ID_OR_NULL (s->f, face_id);
1015 if (face == NULL)
1016 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
1018 if (s->first_glyph->type == CHAR_GLYPH)
1019 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch, -1, Qnil);
1020 else
1021 face_id = FACE_FOR_CHAR (s->f, face, 0, -1, Qnil);
1022 s->face = FACE_FROM_ID (s->f, face_id);
1023 prepare_face_for_display (s->f, s->face);
1025 /* If font in this face is same as S->font, use it. */
1026 if (s->font == s->face->font)
1027 s->gc = s->face->gc;
1028 else
1030 /* Otherwise construct scratch_cursor_gc with values from FACE
1031 but font FONT. */
1032 XGCValues xgcv;
1033 unsigned long mask;
1035 xgcv.background = s->face->background;
1036 xgcv.foreground = s->face->foreground;
1037 IF_DEBUG (x_check_font (s->f, s->font));
1038 xgcv.font = s->font;
1039 mask = GCForeground | GCBackground | GCFont;
1041 if (FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc)
1042 XChangeGC (NULL, FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc,
1043 mask, &xgcv);
1044 else
1045 FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc
1046 = XCreateGC (NULL, FRAME_W32_WINDOW (s->f), mask, &xgcv);
1048 s->gc = FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc;
1051 eassert (s->gc != 0);
1055 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
1056 Faces to use in the mode line have already been computed when the
1057 matrix was built, so there isn't much to do, here. */
1059 static inline void
1060 x_set_mode_line_face_gc (struct glyph_string *s)
1062 s->gc = s->face->gc;
1066 /* Set S->gc of glyph string S for drawing that glyph string. Set
1067 S->stippled_p to a non-zero value if the face of S has a stipple
1068 pattern. */
1070 static inline void
1071 x_set_glyph_string_gc (struct glyph_string *s)
1073 prepare_face_for_display (s->f, s->face);
1075 if (s->hl == DRAW_NORMAL_TEXT)
1077 s->gc = s->face->gc;
1078 s->stippled_p = s->face->stipple != 0;
1080 else if (s->hl == DRAW_INVERSE_VIDEO)
1082 x_set_mode_line_face_gc (s);
1083 s->stippled_p = s->face->stipple != 0;
1085 else if (s->hl == DRAW_CURSOR)
1087 x_set_cursor_gc (s);
1088 s->stippled_p = false;
1090 else if (s->hl == DRAW_MOUSE_FACE)
1092 x_set_mouse_face_gc (s);
1093 s->stippled_p = s->face->stipple != 0;
1095 else if (s->hl == DRAW_IMAGE_RAISED
1096 || s->hl == DRAW_IMAGE_SUNKEN)
1098 s->gc = s->face->gc;
1099 s->stippled_p = s->face->stipple != 0;
1101 else
1102 emacs_abort ();
1104 /* GC must have been set. */
1105 eassert (s->gc != 0);
1109 /* Set clipping for output of glyph string S. S may be part of a mode
1110 line or menu if we don't have X toolkit support. */
1112 static inline void
1113 x_set_glyph_string_clipping (struct glyph_string *s)
1115 RECT *r = s->clip;
1116 int n = get_glyph_string_clip_rects (s, r, 2);
1118 if (n == 1)
1119 w32_set_clip_rectangle (s->hdc, r);
1120 else if (n > 1)
1122 HRGN clip1 = CreateRectRgnIndirect (r);
1123 HRGN clip2 = CreateRectRgnIndirect (r + 1);
1124 if (CombineRgn (clip1, clip1, clip2, RGN_OR) != ERROR)
1125 SelectClipRgn (s->hdc, clip1);
1126 DeleteObject (clip1);
1127 DeleteObject (clip2);
1129 s->num_clips = n;
1132 /* Set SRC's clipping for output of glyph string DST. This is called
1133 when we are drawing DST's left_overhang or right_overhang only in
1134 the area of SRC. */
1136 static void
1137 x_set_glyph_string_clipping_exactly (struct glyph_string *src,
1138 struct glyph_string *dst)
1140 RECT r;
1142 r.left = src->x;
1143 r.right = r.left + src->width;
1144 r.top = src->y;
1145 r.bottom = r.top + src->height;
1146 dst->clip[0] = r;
1147 dst->num_clips = 1;
1148 w32_set_clip_rectangle (dst->hdc, &r);
1151 /* RIF:
1152 Compute left and right overhang of glyph string S. */
1154 static void
1155 w32_compute_glyph_string_overhangs (struct glyph_string *s)
1157 if (s->cmp == NULL
1158 && s->first_glyph->type == CHAR_GLYPH
1159 && !s->font_not_found_p)
1161 unsigned *code = alloca (sizeof (unsigned) * s->nchars);
1162 struct font *font = s->font;
1163 struct font_metrics metrics;
1164 int i;
1166 for (i = 0; i < s->nchars; i++)
1167 code[i] = s->char2b[i];
1168 font->driver->text_extents (font, code, s->nchars, &metrics);
1169 s->right_overhang = (metrics.rbearing > metrics.width
1170 ? metrics.rbearing - metrics.width : 0);
1171 s->left_overhang = metrics.lbearing < 0 ? -metrics.lbearing : 0;
1173 else if (s->cmp)
1175 s->right_overhang = s->cmp->rbearing - s->cmp->pixel_width;
1176 s->left_overhang = -s->cmp->lbearing;
1180 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
1182 static inline void
1183 x_clear_glyph_string_rect (struct glyph_string *s,
1184 int x, int y, int w, int h)
1186 int real_x = x;
1187 int real_y = y;
1188 int real_w = w;
1189 int real_h = h;
1190 #if 0
1191 /* Take clipping into account. */
1192 if (s->gc->clip_mask == Rect)
1194 real_x = max (real_x, s->gc->clip_rectangle.left);
1195 real_y = max (real_y, s->gc->clip_rectangle.top);
1196 real_w = min (real_w, s->gc->clip_rectangle.right
1197 - s->gc->clip_rectangle.left);
1198 real_h = min (real_h, s->gc->clip_rectangle.bottom
1199 - s->gc->clip_rectangle.top);
1201 #endif
1202 w32_fill_area (s->f, s->hdc, s->gc->background, real_x, real_y,
1203 real_w, real_h);
1207 /* Draw the background of glyph_string S. If S->background_filled_p
1208 is non-zero don't draw it. FORCE_P non-zero means draw the
1209 background even if it wouldn't be drawn normally. This is used
1210 when a string preceding S draws into the background of S, or S
1211 contains the first component of a composition. */
1213 static void
1214 x_draw_glyph_string_background (struct glyph_string *s, bool force_p)
1216 /* Nothing to do if background has already been drawn or if it
1217 shouldn't be drawn in the first place. */
1218 if (!s->background_filled_p)
1220 int box_line_width = max (s->face->box_line_width, 0);
1222 #if 0 /* TODO: stipple */
1223 if (s->stippled_p)
1225 /* Fill background with a stipple pattern. */
1226 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
1227 XFillRectangle (s->display, FRAME_W32_WINDOW (s->f), s->gc, s->x,
1228 s->y + box_line_width,
1229 s->background_width,
1230 s->height - 2 * box_line_width);
1231 XSetFillStyle (s->display, s->gc, FillSolid);
1232 s->background_filled_p = true;
1234 else
1235 #endif
1236 if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
1237 /* When xdisp.c ignores FONT_HEIGHT, we cannot trust
1238 font dimensions, since the actual glyphs might be
1239 much smaller. So in that case we always clear the
1240 rectangle with background color. */
1241 || FONT_TOO_HIGH (s->font)
1242 || s->font_not_found_p
1243 || s->extends_to_end_of_line_p
1244 || force_p)
1246 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
1247 s->background_width,
1248 s->height - 2 * box_line_width);
1249 s->background_filled_p = true;
1255 /* Draw the foreground of glyph string S. */
1257 static void
1258 x_draw_glyph_string_foreground (struct glyph_string *s)
1260 int i, x;
1262 /* If first glyph of S has a left box line, start drawing the text
1263 of S to the right of that box line. */
1264 if (s->face->box != FACE_NO_BOX
1265 && s->first_glyph->left_box_line_p)
1266 x = s->x + eabs (s->face->box_line_width);
1267 else
1268 x = s->x;
1270 SetTextColor (s->hdc, s->gc->foreground);
1271 SetBkColor (s->hdc, s->gc->background);
1272 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
1274 /* Draw characters of S as rectangles if S's font could not be
1275 loaded. */
1276 if (s->font_not_found_p)
1278 for (i = 0; i < s->nchars; ++i)
1280 struct glyph *g = s->first_glyph + i;
1282 w32_draw_rectangle (s->hdc, s->gc, x, s->y, g->pixel_width - 1,
1283 s->height - 1);
1284 x += g->pixel_width;
1287 else
1289 struct font *font = s->font;
1290 int boff = font->baseline_offset;
1291 int y;
1292 HFONT old_font;
1294 old_font = SelectObject (s->hdc, FONT_HANDLE (font));
1296 if (font->vertical_centering)
1297 boff = VCENTER_BASELINE_OFFSET (font, s->f) - boff;
1299 y = s->ybase - boff;
1300 if (s->for_overlaps
1301 || (s->background_filled_p && s->hl != DRAW_CURSOR))
1302 font->driver->draw (s, 0, s->nchars, x, y, false);
1303 else
1304 font->driver->draw (s, 0, s->nchars, x, y, true);
1305 if (s->face->overstrike)
1306 font->driver->draw (s, 0, s->nchars, x + 1, y, false);
1308 SelectObject (s->hdc, old_font);
1312 /* Draw the foreground of composite glyph string S. */
1314 static void
1315 x_draw_composite_glyph_string_foreground (struct glyph_string *s)
1317 int i, j, x;
1318 struct font *font = s->font;
1320 /* If first glyph of S has a left box line, start drawing the text
1321 of S to the right of that box line. */
1322 if (s->face && s->face->box != FACE_NO_BOX
1323 && s->first_glyph->left_box_line_p)
1324 x = s->x + eabs (s->face->box_line_width);
1325 else
1326 x = s->x;
1328 /* S is a glyph string for a composition. S->cmp_from is the index
1329 of the first character drawn for glyphs of this composition.
1330 S->cmp_from == 0 means we are drawing the very first character of
1331 this composition. */
1333 SetTextColor (s->hdc, s->gc->foreground);
1334 SetBkColor (s->hdc, s->gc->background);
1335 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
1337 /* Draw a rectangle for the composition if the font for the very
1338 first character of the composition could not be loaded. */
1339 if (s->font_not_found_p)
1341 if (s->cmp_from == 0)
1342 w32_draw_rectangle (s->hdc, s->gc, x, s->y, s->width - 1,
1343 s->height - 1);
1345 else if (! s->first_glyph->u.cmp.automatic)
1347 int y = s->ybase;
1348 HFONT old_font;
1350 old_font = SelectObject (s->hdc, FONT_HANDLE (font));
1352 for (i = 0, j = s->cmp_from; i < s->nchars; i++, j++)
1353 /* TAB in a composition means display glyphs with padding
1354 space on the left or right. */
1355 if (COMPOSITION_GLYPH (s->cmp, j) != '\t')
1357 int xx = x + s->cmp->offsets[j * 2];
1358 int yy = y - s->cmp->offsets[j * 2 + 1];
1360 font->driver->draw (s, j, j + 1, xx, yy, false);
1361 if (s->face->overstrike)
1362 font->driver->draw (s, j, j + 1, xx + 1, yy, false);
1364 SelectObject (s->hdc, old_font);
1366 else
1368 Lisp_Object gstring = composition_gstring_from_id (s->cmp_id);
1369 Lisp_Object glyph;
1370 int y = s->ybase;
1371 int width = 0;
1372 HFONT old_font;
1374 old_font = SelectObject (s->hdc, FONT_HANDLE (font));
1376 for (i = j = s->cmp_from; i < s->cmp_to; i++)
1378 glyph = LGSTRING_GLYPH (gstring, i);
1379 if (NILP (LGLYPH_ADJUSTMENT (glyph)))
1380 width += LGLYPH_WIDTH (glyph);
1381 else
1383 int xoff, yoff, wadjust;
1385 if (j < i)
1387 font->driver->draw (s, j, i, x, y, false);
1388 x += width;
1390 xoff = LGLYPH_XOFF (glyph);
1391 yoff = LGLYPH_YOFF (glyph);
1392 wadjust = LGLYPH_WADJUST (glyph);
1393 font->driver->draw (s, i, i + 1, x + xoff, y + yoff, false);
1394 x += wadjust;
1395 j = i + 1;
1396 width = 0;
1399 if (j < i)
1400 font->driver->draw (s, j, i, x, y, false);
1402 SelectObject (s->hdc, old_font);
1407 /* Draw the foreground of glyph string S for glyphless characters. */
1409 static void
1410 x_draw_glyphless_glyph_string_foreground (struct glyph_string *s)
1412 struct glyph *glyph = s->first_glyph;
1413 XChar2b char2b[8];
1414 int x, i, j;
1415 bool with_background;
1417 /* If first glyph of S has a left box line, start drawing the text
1418 of S to the right of that box line. */
1419 if (s->face->box != FACE_NO_BOX
1420 && s->first_glyph->left_box_line_p)
1421 x = s->x + eabs (s->face->box_line_width);
1422 else
1423 x = s->x;
1425 SetTextColor (s->hdc, s->gc->foreground);
1426 SetBkColor (s->hdc, s->gc->background);
1427 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
1429 s->char2b = char2b;
1430 with_background = ((s->for_overlaps
1431 || (s->background_filled_p && s->hl != DRAW_CURSOR))) == 0;
1432 for (i = 0; i < s->nchars; i++, glyph++)
1434 char buf[7], *str = NULL;
1435 int len = glyph->u.glyphless.len;
1437 if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_ACRONYM)
1439 if (len > 0
1440 && CHAR_TABLE_P (Vglyphless_char_display)
1441 && (CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display))
1442 >= 1))
1444 Lisp_Object acronym
1445 = (! glyph->u.glyphless.for_no_font
1446 ? CHAR_TABLE_REF (Vglyphless_char_display,
1447 glyph->u.glyphless.ch)
1448 : XCHAR_TABLE (Vglyphless_char_display)->extras[0]);
1449 if (STRINGP (acronym))
1450 str = SSDATA (acronym);
1453 else if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_HEX_CODE)
1455 sprintf ((char *) buf, "%0*X",
1456 glyph->u.glyphless.ch < 0x10000 ? 4 : 6,
1457 (unsigned int) glyph->u.glyphless.ch);
1458 str = buf;
1461 if (glyph->u.glyphless.method != GLYPHLESS_DISPLAY_THIN_SPACE)
1462 w32_draw_rectangle (s->hdc, s->gc,
1463 x, s->ybase - glyph->ascent,
1464 glyph->pixel_width - 1,
1465 glyph->ascent + glyph->descent - 1);
1466 if (str)
1468 struct font *font = s->font;
1469 int upper_len = (len + 1) / 2;
1470 unsigned code;
1471 HFONT old_font;
1473 old_font = SelectObject (s->hdc, FONT_HANDLE (font));
1474 /* It is certain that all LEN characters in STR are ASCII. */
1475 for (j = 0; j < len; j++)
1477 code = font->driver->encode_char (font, str[j]);
1478 STORE_XCHAR2B (char2b + j, code >> 8, code & 0xFF);
1480 font->driver->draw (s, 0, upper_len,
1481 x + glyph->slice.glyphless.upper_xoff,
1482 s->ybase + glyph->slice.glyphless.upper_yoff,
1483 with_background);
1484 font->driver->draw (s, upper_len, len,
1485 x + glyph->slice.glyphless.lower_xoff,
1486 s->ybase + glyph->slice.glyphless.lower_yoff,
1487 with_background);
1488 SelectObject (s->hdc, old_font);
1490 x += glyph->pixel_width;
1495 /* Brightness beyond which a color won't have its highlight brightness
1496 boosted.
1498 Nominally, highlight colors for `3d' faces are calculated by
1499 brightening an object's color by a constant scale factor, but this
1500 doesn't yield good results for dark colors, so for colors whose
1501 brightness is less than this value (on a scale of 0-255) have to
1502 use an additional additive factor.
1504 The value here is set so that the default menu-bar/mode-line color
1505 (grey75) will not have its highlights changed at all. */
1506 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 187
1509 /* Allocate a color which is lighter or darker than *COLOR by FACTOR
1510 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1511 If this produces the same color as COLOR, try a color where all RGB
1512 values have DELTA added. Return the allocated color in *COLOR.
1513 DISPLAY is the X display, CMAP is the colormap to operate on.
1514 Value is non-zero if successful. */
1516 static int
1517 w32_alloc_lighter_color (struct frame *f, COLORREF *color,
1518 double factor, int delta)
1520 COLORREF new;
1521 long bright;
1523 /* On Windows, RGB values are 0-255, not 0-65535, so scale delta. */
1524 delta /= 256;
1526 /* Change RGB values by specified FACTOR. Avoid overflow! */
1527 eassert (factor >= 0);
1528 new = PALETTERGB (min (0xff, factor * GetRValue (*color)),
1529 min (0xff, factor * GetGValue (*color)),
1530 min (0xff, factor * GetBValue (*color)));
1532 /* Calculate brightness of COLOR. */
1533 bright = (2 * GetRValue (*color) + 3 * GetGValue (*color)
1534 + GetBValue (*color)) / 6;
1536 /* We only boost colors that are darker than
1537 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
1538 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
1539 /* Make an additive adjustment to NEW, because it's dark enough so
1540 that scaling by FACTOR alone isn't enough. */
1542 /* How far below the limit this color is (0 - 1, 1 being darker). */
1543 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
1544 /* The additive adjustment. */
1545 int min_delta = delta * dimness * factor / 2;
1547 if (factor < 1)
1548 new = PALETTERGB (max (0, min (0xff, min_delta - GetRValue (*color))),
1549 max (0, min (0xff, min_delta - GetGValue (*color))),
1550 max (0, min (0xff, min_delta - GetBValue (*color))));
1551 else
1552 new = PALETTERGB (max (0, min (0xff, min_delta + GetRValue (*color))),
1553 max (0, min (0xff, min_delta + GetGValue (*color))),
1554 max (0, min (0xff, min_delta + GetBValue (*color))));
1557 if (new == *color)
1558 new = PALETTERGB (max (0, min (0xff, delta + GetRValue (*color))),
1559 max (0, min (0xff, delta + GetGValue (*color))),
1560 max (0, min (0xff, delta + GetBValue (*color))));
1562 /* TODO: Map to palette and retry with delta if same? */
1563 /* TODO: Free colors (if using palette)? */
1565 if (new == *color)
1566 return 0;
1568 *color = new;
1570 return 1;
1573 /* On frame F, translate pixel colors to RGB values for the NCOLORS
1574 colors in COLORS. On W32, we no longer try to map colors to
1575 a palette. */
1576 void
1577 x_query_colors (struct frame *f, XColor *colors, int ncolors)
1579 int i;
1581 for (i = 0; i < ncolors; i++)
1583 DWORD pixel = colors[i].pixel;
1584 /* Convert to a 16 bit value in range 0 - 0xffff. */
1585 colors[i].red = GetRValue (pixel) * 257;
1586 colors[i].green = GetGValue (pixel) * 257;
1587 colors[i].blue = GetBValue (pixel) * 257;
1591 void
1592 x_query_color (struct frame *f, XColor *color)
1594 x_query_colors (f, color, 1);
1598 /* Set up the foreground color for drawing relief lines of glyph
1599 string S. RELIEF is a pointer to a struct relief containing the GC
1600 with which lines will be drawn. Use a color that is FACTOR or
1601 DELTA lighter or darker than the relief's background which is found
1602 in S->f->output_data.x->relief_background. If such a color cannot
1603 be allocated, use DEFAULT_PIXEL, instead. */
1605 static void
1606 w32_setup_relief_color (struct frame *f, struct relief *relief, double factor,
1607 int delta, COLORREF default_pixel)
1609 XGCValues xgcv;
1610 struct w32_output *di = f->output_data.w32;
1611 unsigned long mask = GCForeground;
1612 COLORREF pixel;
1613 COLORREF background = di->relief_background;
1614 #if 0
1615 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
1616 #endif
1618 /* TODO: Free colors (if using palette)? */
1620 /* Allocate new color. */
1621 xgcv.foreground = default_pixel;
1622 pixel = background;
1623 if (w32_alloc_lighter_color (f, &pixel, factor, delta))
1624 xgcv.foreground = relief->pixel = pixel;
1626 if (relief->gc == 0)
1628 #if 0 /* TODO: stipple */
1629 xgcv.stipple = dpyinfo->gray;
1630 mask |= GCStipple;
1631 #endif
1632 relief->gc = XCreateGC (NULL, FRAME_W32_WINDOW (f), mask, &xgcv);
1634 else
1635 XChangeGC (NULL, relief->gc, mask, &xgcv);
1639 /* Set up colors for the relief lines around glyph string S. */
1641 static void
1642 x_setup_relief_colors (struct glyph_string *s)
1644 struct w32_output *di = s->f->output_data.w32;
1645 COLORREF color;
1647 if (s->face->use_box_color_for_shadows_p)
1648 color = s->face->box_color;
1649 else if (s->first_glyph->type == IMAGE_GLYPH
1650 && s->img->pixmap
1651 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
1652 color = IMAGE_BACKGROUND (s->img, s->f, 0);
1653 else
1654 color = s->gc->background;
1656 if (di->white_relief.gc == 0
1657 || color != di->relief_background)
1659 di->relief_background = color;
1660 w32_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
1661 WHITE_PIX_DEFAULT (s->f));
1662 w32_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
1663 BLACK_PIX_DEFAULT (s->f));
1668 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
1669 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
1670 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
1671 relief. LEFT_P non-zero means draw a relief on the left side of
1672 the rectangle. RIGHT_P non-zero means draw a relief on the right
1673 side of the rectangle. CLIP_RECT is the clipping rectangle to use
1674 when drawing. */
1676 static void
1677 w32_draw_relief_rect (struct frame *f,
1678 int left_x, int top_y, int right_x, int bottom_y,
1679 int width, int raised_p,
1680 int top_p, int bot_p, int left_p, int right_p,
1681 RECT *clip_rect)
1683 int i;
1684 XGCValues gc;
1685 HDC hdc = get_frame_dc (f);
1687 if (raised_p)
1688 gc.foreground = f->output_data.w32->white_relief.gc->foreground;
1689 else
1690 gc.foreground = f->output_data.w32->black_relief.gc->foreground;
1692 w32_set_clip_rectangle (hdc, clip_rect);
1694 /* Top. */
1695 if (top_p)
1696 for (i = 0; i < width; ++i)
1697 w32_fill_area (f, hdc, gc.foreground,
1698 left_x + i * left_p, top_y + i,
1699 right_x - left_x - i * (left_p + right_p ) + 1, 1);
1701 /* Left. */
1702 if (left_p)
1703 for (i = 0; i < width; ++i)
1704 w32_fill_area (f, hdc, gc.foreground,
1705 left_x + i, top_y + (i + 1) * top_p, 1,
1706 bottom_y - top_y - (i + 1) * (bot_p + top_p) + 1);
1708 if (raised_p)
1709 gc.foreground = f->output_data.w32->black_relief.gc->foreground;
1710 else
1711 gc.foreground = f->output_data.w32->white_relief.gc->foreground;
1713 /* Bottom. */
1714 if (bot_p)
1715 for (i = 0; i < width; ++i)
1716 w32_fill_area (f, hdc, gc.foreground,
1717 left_x + i * left_p, bottom_y - i,
1718 right_x - left_x - i * (left_p + right_p) + 1, 1);
1720 /* Right. */
1721 if (right_p)
1722 for (i = 0; i < width; ++i)
1723 w32_fill_area (f, hdc, gc.foreground,
1724 right_x - i, top_y + (i + 1) * top_p, 1,
1725 bottom_y - top_y - (i + 1) * (bot_p + top_p) + 1);
1727 w32_set_clip_rectangle (hdc, NULL);
1729 release_frame_dc (f, hdc);
1733 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
1734 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
1735 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
1736 left side of the rectangle. RIGHT_P non-zero means draw a line
1737 on the right side of the rectangle. CLIP_RECT is the clipping
1738 rectangle to use when drawing. */
1740 static void
1741 w32_draw_box_rect (struct glyph_string *s,
1742 int left_x, int top_y, int right_x, int bottom_y, int width,
1743 bool left_p, bool right_p, RECT *clip_rect)
1745 w32_set_clip_rectangle (s->hdc, clip_rect);
1747 /* Top. */
1748 w32_fill_area (s->f, s->hdc, s->face->box_color,
1749 left_x, top_y, right_x - left_x + 1, width);
1751 /* Left. */
1752 if (left_p)
1754 w32_fill_area (s->f, s->hdc, s->face->box_color,
1755 left_x, top_y, width, bottom_y - top_y + 1);
1758 /* Bottom. */
1759 w32_fill_area (s->f, s->hdc, s->face->box_color,
1760 left_x, bottom_y - width + 1, right_x - left_x + 1, width);
1762 /* Right. */
1763 if (right_p)
1765 w32_fill_area (s->f, s->hdc, s->face->box_color,
1766 right_x - width + 1, top_y, width, bottom_y - top_y + 1);
1769 w32_set_clip_rectangle (s->hdc, NULL);
1773 /* Draw a box around glyph string S. */
1775 static void
1776 x_draw_glyph_string_box (struct glyph_string *s)
1778 int width, left_x, right_x, top_y, bottom_y, last_x;
1779 bool left_p, right_p, raised_p;
1780 struct glyph *last_glyph;
1781 RECT clip_rect;
1783 last_x = ((s->row->full_width_p && !s->w->pseudo_window_p)
1784 ? WINDOW_RIGHT_EDGE_X (s->w)
1785 : window_box_right (s->w, s->area));
1787 /* The glyph that may have a right box line. */
1788 last_glyph = (s->cmp || s->img
1789 ? s->first_glyph
1790 : s->first_glyph + s->nchars - 1);
1792 width = eabs (s->face->box_line_width);
1793 raised_p = s->face->box == FACE_RAISED_BOX;
1794 left_x = s->x;
1795 right_x = ((s->row->full_width_p && s->extends_to_end_of_line_p
1796 ? last_x - 1
1797 : min (last_x, s->x + s->background_width) - 1));
1798 top_y = s->y;
1799 bottom_y = top_y + s->height - 1;
1801 left_p = (s->first_glyph->left_box_line_p
1802 || (s->hl == DRAW_MOUSE_FACE
1803 && (s->prev == NULL
1804 || s->prev->hl != s->hl)));
1805 right_p = (last_glyph->right_box_line_p
1806 || (s->hl == DRAW_MOUSE_FACE
1807 && (s->next == NULL
1808 || s->next->hl != s->hl)));
1810 get_glyph_string_clip_rect (s, &clip_rect);
1812 if (s->face->box == FACE_SIMPLE_BOX)
1813 w32_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
1814 left_p, right_p, &clip_rect);
1815 else
1817 x_setup_relief_colors (s);
1818 w32_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
1819 width, raised_p, 1, 1, left_p, right_p, &clip_rect);
1824 /* Draw foreground of image glyph string S. */
1826 static void
1827 x_draw_image_foreground (struct glyph_string *s)
1829 int x = s->x;
1830 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
1832 /* If first glyph of S has a left box line, start drawing it to the
1833 right of that line. */
1834 if (s->face->box != FACE_NO_BOX
1835 && s->first_glyph->left_box_line_p
1836 && s->slice.x == 0)
1837 x += eabs (s->face->box_line_width);
1839 /* If there is a margin around the image, adjust x- and y-position
1840 by that margin. */
1841 if (s->slice.x == 0)
1842 x += s->img->hmargin;
1843 if (s->slice.y == 0)
1844 y += s->img->vmargin;
1846 SaveDC (s->hdc);
1848 if (s->img->pixmap)
1850 HDC compat_hdc = CreateCompatibleDC (s->hdc);
1851 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
1852 HBRUSH orig_brush = SelectObject (s->hdc, fg_brush);
1853 HGDIOBJ orig_obj = SelectObject (compat_hdc, s->img->pixmap);
1854 SetBkColor (compat_hdc, RGB (255, 255, 255));
1855 SetTextColor (s->hdc, RGB (0, 0, 0));
1856 x_set_glyph_string_clipping (s);
1858 if (s->img->mask)
1860 HDC mask_dc = CreateCompatibleDC (s->hdc);
1861 HGDIOBJ mask_orig_obj = SelectObject (mask_dc, s->img->mask);
1863 SetTextColor (s->hdc, RGB (255, 255, 255));
1864 SetBkColor (s->hdc, RGB (0, 0, 0));
1866 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
1867 compat_hdc, s->slice.x, s->slice.y, SRCINVERT);
1868 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
1869 mask_dc, s->slice.x, s->slice.y, SRCAND);
1870 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
1871 compat_hdc, s->slice.x, s->slice.y, SRCINVERT);
1873 SelectObject (mask_dc, mask_orig_obj);
1874 DeleteDC (mask_dc);
1876 else
1878 SetTextColor (s->hdc, s->gc->foreground);
1879 SetBkColor (s->hdc, s->gc->background);
1881 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
1882 compat_hdc, s->slice.x, s->slice.y, SRCCOPY);
1884 /* When the image has a mask, we can expect that at
1885 least part of a mouse highlight or a block cursor will
1886 be visible. If the image doesn't have a mask, make
1887 a block cursor visible by drawing a rectangle around
1888 the image. I believe it's looking better if we do
1889 nothing here for mouse-face. */
1890 if (s->hl == DRAW_CURSOR)
1892 int r = s->img->relief;
1893 if (r < 0) r = -r;
1894 w32_draw_rectangle (s->hdc, s->gc, x - r, y - r ,
1895 s->slice.width + r*2 - 1,
1896 s->slice.height + r*2 - 1);
1900 w32_set_clip_rectangle (s->hdc, NULL);
1901 SelectObject (s->hdc, orig_brush);
1902 DeleteObject (fg_brush);
1903 SelectObject (compat_hdc, orig_obj);
1904 DeleteDC (compat_hdc);
1906 else
1907 w32_draw_rectangle (s->hdc, s->gc, x, y,
1908 s->slice.width - 1, s->slice.height - 1);
1910 RestoreDC (s->hdc ,-1);
1914 /* Draw a relief around the image glyph string S. */
1916 static void
1917 x_draw_image_relief (struct glyph_string *s)
1919 int x1, y1, thick, raised_p, top_p, bot_p, left_p, right_p;
1920 int extra_x, extra_y;
1921 RECT r;
1922 int x = s->x;
1923 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
1925 /* If first glyph of S has a left box line, start drawing it to the
1926 right of that line. */
1927 if (s->face->box != FACE_NO_BOX
1928 && s->first_glyph->left_box_line_p
1929 && s->slice.x == 0)
1930 x += eabs (s->face->box_line_width);
1932 /* If there is a margin around the image, adjust x- and y-position
1933 by that margin. */
1934 if (s->slice.x == 0)
1935 x += s->img->hmargin;
1936 if (s->slice.y == 0)
1937 y += s->img->vmargin;
1939 if (s->hl == DRAW_IMAGE_SUNKEN
1940 || s->hl == DRAW_IMAGE_RAISED)
1942 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief
1943 : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
1944 raised_p = s->hl == DRAW_IMAGE_RAISED;
1946 else
1948 thick = eabs (s->img->relief);
1949 raised_p = s->img->relief > 0;
1952 x1 = x + s->slice.width - 1;
1953 y1 = y + s->slice.height - 1;
1955 extra_x = extra_y = 0;
1956 if (s->face->id == TOOL_BAR_FACE_ID)
1958 if (CONSP (Vtool_bar_button_margin)
1959 && INTEGERP (XCAR (Vtool_bar_button_margin))
1960 && INTEGERP (XCDR (Vtool_bar_button_margin)))
1962 extra_x = XINT (XCAR (Vtool_bar_button_margin));
1963 extra_y = XINT (XCDR (Vtool_bar_button_margin));
1965 else if (INTEGERP (Vtool_bar_button_margin))
1966 extra_x = extra_y = XINT (Vtool_bar_button_margin);
1969 top_p = bot_p = left_p = right_p = 0;
1971 if (s->slice.x == 0)
1972 x -= thick + extra_x, left_p = 1;
1973 if (s->slice.y == 0)
1974 y -= thick + extra_y, top_p = 1;
1975 if (s->slice.x + s->slice.width == s->img->width)
1976 x1 += thick + extra_x, right_p = 1;
1977 if (s->slice.y + s->slice.height == s->img->height)
1978 y1 += thick + extra_y, bot_p = 1;
1980 x_setup_relief_colors (s);
1981 get_glyph_string_clip_rect (s, &r);
1982 w32_draw_relief_rect (s->f, x, y, x1, y1, thick, raised_p,
1983 top_p, bot_p, left_p, right_p, &r);
1987 /* Draw the foreground of image glyph string S to PIXMAP. */
1989 static void
1990 w32_draw_image_foreground_1 (struct glyph_string *s, HBITMAP pixmap)
1992 HDC hdc = CreateCompatibleDC (s->hdc);
1993 HGDIOBJ orig_hdc_obj = SelectObject (hdc, pixmap);
1994 int x = 0;
1995 int y = s->ybase - s->y - image_ascent (s->img, s->face, &s->slice);
1997 /* If first glyph of S has a left box line, start drawing it to the
1998 right of that line. */
1999 if (s->face->box != FACE_NO_BOX
2000 && s->first_glyph->left_box_line_p
2001 && s->slice.x == 0)
2002 x += eabs (s->face->box_line_width);
2004 /* If there is a margin around the image, adjust x- and y-position
2005 by that margin. */
2006 if (s->slice.x == 0)
2007 x += s->img->hmargin;
2008 if (s->slice.y == 0)
2009 y += s->img->vmargin;
2011 if (s->img->pixmap)
2013 HDC compat_hdc = CreateCompatibleDC (hdc);
2014 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
2015 HBRUSH orig_brush = SelectObject (hdc, fg_brush);
2016 HGDIOBJ orig_obj = SelectObject (compat_hdc, s->img->pixmap);
2018 if (s->img->mask)
2020 HDC mask_dc = CreateCompatibleDC (hdc);
2021 HGDIOBJ mask_orig_obj = SelectObject (mask_dc, s->img->mask);
2023 SetTextColor (hdc, RGB (0, 0, 0));
2024 SetBkColor (hdc, RGB (255, 255, 255));
2025 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
2026 compat_hdc, s->slice.x, s->slice.y, SRCINVERT);
2027 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
2028 mask_dc, s->slice.x, s->slice.y, SRCAND);
2029 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
2030 compat_hdc, s->slice.x, s->slice.y, SRCINVERT);
2032 SelectObject (mask_dc, mask_orig_obj);
2033 DeleteDC (mask_dc);
2035 else
2037 SetTextColor (hdc, s->gc->foreground);
2038 SetBkColor (hdc, s->gc->background);
2040 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
2041 compat_hdc, s->slice.x, s->slice.y, SRCCOPY);
2043 /* When the image has a mask, we can expect that at
2044 least part of a mouse highlight or a block cursor will
2045 be visible. If the image doesn't have a mask, make
2046 a block cursor visible by drawing a rectangle around
2047 the image. I believe it's looking better if we do
2048 nothing here for mouse-face. */
2049 if (s->hl == DRAW_CURSOR)
2051 int r = s->img->relief;
2052 if (r < 0) r = -r;
2053 w32_draw_rectangle (hdc, s->gc, x - r, y - r,
2054 s->slice.width + r*2 - 1,
2055 s->slice.height + r*2 - 1);
2059 SelectObject (hdc, orig_brush);
2060 DeleteObject (fg_brush);
2061 SelectObject (compat_hdc, orig_obj);
2062 DeleteDC (compat_hdc);
2064 else
2065 w32_draw_rectangle (hdc, s->gc, x, y,
2066 s->slice.width - 1, s->slice.height - 1);
2068 SelectObject (hdc, orig_hdc_obj);
2069 DeleteDC (hdc);
2073 /* Draw part of the background of glyph string S. X, Y, W, and H
2074 give the rectangle to draw. */
2076 static void
2077 x_draw_glyph_string_bg_rect (struct glyph_string *s, int x, int y, int w, int h)
2079 #if 0 /* TODO: stipple */
2080 if (s->stippled_p)
2082 /* Fill background with a stipple pattern. */
2083 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2084 XFillRectangle (s->display, FRAME_W32_WINDOW (s->f), s->gc, x, y, w, h);
2085 XSetFillStyle (s->display, s->gc, FillSolid);
2087 else
2088 #endif
2089 x_clear_glyph_string_rect (s, x, y, w, h);
2093 /* Draw image glyph string S.
2095 s->y
2096 s->x +-------------------------
2097 | s->face->box
2099 | +-------------------------
2100 | | s->img->vmargin
2102 | | +-------------------
2103 | | | the image
2107 static void
2108 x_draw_image_glyph_string (struct glyph_string *s)
2110 int x, y;
2111 int box_line_hwidth = eabs (s->face->box_line_width);
2112 int box_line_vwidth = max (s->face->box_line_width, 0);
2113 int height, width;
2114 HBITMAP pixmap = 0;
2116 height = s->height;
2117 if (s->slice.y == 0)
2118 height -= box_line_vwidth;
2119 if (s->slice.y + s->slice.height >= s->img->height)
2120 height -= box_line_vwidth;
2122 /* Fill background with face under the image. Do it only if row is
2123 taller than image or if image has a clip mask to reduce
2124 flickering. */
2125 s->stippled_p = s->face->stipple != 0;
2126 if (height > s->slice.height
2127 || s->img->hmargin
2128 || s->img->vmargin
2129 || s->img->mask
2130 || s->img->pixmap == 0
2131 || s->width != s->background_width)
2133 width = s->background_width;
2134 x = s->x;
2135 if (s->first_glyph->left_box_line_p
2136 && s->slice.x == 0)
2138 x += box_line_hwidth;
2139 width -= box_line_hwidth;
2142 y = s->y;
2143 if (s->slice.y == 0)
2144 y += box_line_vwidth;
2146 #if 0 /* TODO: figure out if we need to do this on Windows. */
2147 if (s->img->mask)
2149 /* Create a pixmap as large as the glyph string. Fill it
2150 with the background color. Copy the image to it, using
2151 its mask. Copy the temporary pixmap to the display. */
2152 Screen *screen = FRAME_X_SCREEN (s->f);
2153 int depth = DefaultDepthOfScreen (screen);
2155 /* Create a pixmap as large as the glyph string. */
2156 pixmap = XCreatePixmap (s->display, FRAME_W32_WINDOW (s->f),
2157 s->background_width,
2158 s->height, depth);
2160 /* Don't clip in the following because we're working on the
2161 pixmap. */
2162 XSetClipMask (s->display, s->gc, None);
2164 /* Fill the pixmap with the background color/stipple. */
2165 if (s->stippled_p)
2167 /* Fill background with a stipple pattern. */
2168 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2169 XFillRectangle (s->display, pixmap, s->gc,
2170 0, 0, s->background_width, s->height);
2171 XSetFillStyle (s->display, s->gc, FillSolid);
2173 else
2175 XGCValues xgcv;
2176 XGetGCValues (s->display, s->gc, GCForeground | GCBackground,
2177 &xgcv);
2178 XSetForeground (s->display, s->gc, xgcv.background);
2179 XFillRectangle (s->display, pixmap, s->gc,
2180 0, 0, s->background_width, s->height);
2181 XSetForeground (s->display, s->gc, xgcv.foreground);
2184 else
2185 #endif
2186 x_draw_glyph_string_bg_rect (s, x, y, width, height);
2188 s->background_filled_p = true;
2191 /* Draw the foreground. */
2192 if (pixmap != 0)
2194 w32_draw_image_foreground_1 (s, pixmap);
2195 x_set_glyph_string_clipping (s);
2197 HDC compat_hdc = CreateCompatibleDC (s->hdc);
2198 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
2199 HBRUSH orig_brush = SelectObject (s->hdc, fg_brush);
2200 HGDIOBJ orig_obj = SelectObject (compat_hdc, pixmap);
2202 SetTextColor (s->hdc, s->gc->foreground);
2203 SetBkColor (s->hdc, s->gc->background);
2204 BitBlt (s->hdc, s->x, s->y, s->background_width, s->height,
2205 compat_hdc, 0, 0, SRCCOPY);
2207 SelectObject (s->hdc, orig_brush);
2208 DeleteObject (fg_brush);
2209 SelectObject (compat_hdc, orig_obj);
2210 DeleteDC (compat_hdc);
2212 DeleteObject (pixmap);
2213 pixmap = 0;
2215 else
2216 x_draw_image_foreground (s);
2218 /* If we must draw a relief around the image, do it. */
2219 if (s->img->relief
2220 || s->hl == DRAW_IMAGE_RAISED
2221 || s->hl == DRAW_IMAGE_SUNKEN)
2222 x_draw_image_relief (s);
2226 /* Draw stretch glyph string S. */
2228 static void
2229 x_draw_stretch_glyph_string (struct glyph_string *s)
2231 eassert (s->first_glyph->type == STRETCH_GLYPH);
2233 if (s->hl == DRAW_CURSOR
2234 && !x_stretch_cursor_p)
2236 /* If `x-stretch-cursor' is nil, don't draw a block cursor as
2237 wide as the stretch glyph. */
2238 int width, background_width = s->background_width;
2239 int x = s->x;
2241 if (!s->row->reversed_p)
2243 int left_x = window_box_left_offset (s->w, TEXT_AREA);
2245 if (x < left_x)
2247 background_width -= left_x - x;
2248 x = left_x;
2251 else
2253 /* In R2L rows, draw the cursor on the right edge of the
2254 stretch glyph. */
2255 int right_x = window_box_right (s->w, TEXT_AREA);
2257 if (x + background_width > right_x)
2258 background_width -= x - right_x;
2259 x += background_width;
2261 width = min (FRAME_COLUMN_WIDTH (s->f), background_width);
2262 if (s->row->reversed_p)
2263 x -= width;
2265 /* Draw cursor. */
2266 x_draw_glyph_string_bg_rect (s, x, s->y, width, s->height);
2268 /* Clear rest using the GC of the original non-cursor face. */
2269 if (width < background_width)
2271 XGCValues *gc = s->face->gc;
2272 int y = s->y;
2273 int w = background_width - width, h = s->height;
2274 RECT r;
2275 HDC hdc = s->hdc;
2277 if (!s->row->reversed_p)
2278 x += width;
2279 else
2280 x = s->x;
2281 if (s->row->mouse_face_p
2282 && cursor_in_mouse_face_p (s->w))
2284 x_set_mouse_face_gc (s);
2285 gc = s->gc;
2287 else
2288 gc = s->face->gc;
2290 get_glyph_string_clip_rect (s, &r);
2291 w32_set_clip_rectangle (hdc, &r);
2293 #if 0 /* TODO: stipple */
2294 if (s->face->stipple)
2296 /* Fill background with a stipple pattern. */
2297 XSetFillStyle (s->display, gc, FillOpaqueStippled);
2298 XFillRectangle (s->display, FRAME_W32_WINDOW (s->f), gc, x, y, w, h);
2299 XSetFillStyle (s->display, gc, FillSolid);
2301 else
2302 #endif
2304 w32_fill_area (s->f, s->hdc, gc->background, x, y, w, h);
2308 else if (!s->background_filled_p)
2310 int background_width = s->background_width;
2311 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
2313 /* Don't draw into left margin, fringe or scrollbar area
2314 except for header line and mode line. */
2315 if (x < left_x && !s->row->mode_line_p)
2317 background_width -= left_x - x;
2318 x = left_x;
2320 if (background_width > 0)
2321 x_draw_glyph_string_bg_rect (s, x, s->y, background_width, s->height);
2324 s->background_filled_p = true;
2328 /* Draw glyph string S. */
2330 static void
2331 x_draw_glyph_string (struct glyph_string *s)
2333 bool relief_drawn_p = 0;
2335 /* If S draws into the background of its successor, draw the
2336 background of the successor first so that S can draw into it.
2337 This makes S->next use XDrawString instead of XDrawImageString. */
2338 if (s->next && s->right_overhang && !s->for_overlaps)
2340 int width;
2341 struct glyph_string *next;
2342 for (width = 0, next = s->next;
2343 next && width < s->right_overhang;
2344 width += next->width, next = next->next)
2345 if (next->first_glyph->type != IMAGE_GLYPH)
2347 x_set_glyph_string_gc (next);
2348 x_set_glyph_string_clipping (next);
2349 if (next->first_glyph->type == STRETCH_GLYPH)
2350 x_draw_stretch_glyph_string (next);
2351 else
2352 x_draw_glyph_string_background (next, true);
2353 next->num_clips = 0;
2357 /* Set up S->gc, set clipping and draw S. */
2358 x_set_glyph_string_gc (s);
2360 /* Draw relief (if any) in advance for char/composition so that the
2361 glyph string can be drawn over it. */
2362 if (!s->for_overlaps
2363 && s->face->box != FACE_NO_BOX
2364 && (s->first_glyph->type == CHAR_GLYPH
2365 || s->first_glyph->type == COMPOSITE_GLYPH))
2368 x_set_glyph_string_clipping (s);
2369 x_draw_glyph_string_background (s, true);
2370 x_draw_glyph_string_box (s);
2371 x_set_glyph_string_clipping (s);
2372 relief_drawn_p = 1;
2374 else if (!s->clip_head /* draw_glyphs didn't specify a clip mask. */
2375 && !s->clip_tail
2376 && ((s->prev && s->prev->hl != s->hl && s->left_overhang)
2377 || (s->next && s->next->hl != s->hl && s->right_overhang)))
2378 /* We must clip just this glyph. left_overhang part has already
2379 drawn when s->prev was drawn, and right_overhang part will be
2380 drawn later when s->next is drawn. */
2381 x_set_glyph_string_clipping_exactly (s, s);
2382 else
2383 x_set_glyph_string_clipping (s);
2385 switch (s->first_glyph->type)
2387 case IMAGE_GLYPH:
2388 x_draw_image_glyph_string (s);
2389 break;
2391 case STRETCH_GLYPH:
2392 x_draw_stretch_glyph_string (s);
2393 break;
2395 case CHAR_GLYPH:
2396 if (s->for_overlaps)
2397 s->background_filled_p = true;
2398 else
2399 x_draw_glyph_string_background (s, false);
2400 x_draw_glyph_string_foreground (s);
2401 break;
2403 case COMPOSITE_GLYPH:
2404 if (s->for_overlaps || (s->cmp_from > 0
2405 && ! s->first_glyph->u.cmp.automatic))
2406 s->background_filled_p = true;
2407 else
2408 x_draw_glyph_string_background (s, true);
2409 x_draw_composite_glyph_string_foreground (s);
2410 break;
2412 case GLYPHLESS_GLYPH:
2413 if (s->for_overlaps)
2414 s->background_filled_p = true;
2415 else
2416 x_draw_glyph_string_background (s, false);
2417 x_draw_glyphless_glyph_string_foreground (s);
2418 break;
2420 default:
2421 emacs_abort ();
2424 if (!s->for_overlaps)
2426 /* Draw underline. */
2427 if (s->face->underline_p)
2429 if (s->face->underline_type == FACE_UNDER_WAVE)
2431 COLORREF color;
2433 if (s->face->underline_defaulted_p)
2434 color = s->gc->foreground;
2435 else
2436 color = s->face->underline_color;
2438 w32_draw_underwave (s, color);
2440 else if (s->face->underline_type == FACE_UNDER_LINE)
2442 unsigned long thickness, position;
2443 int y;
2445 if (s->prev && s->prev->face->underline_p
2446 && s->prev->face->underline_type == FACE_UNDER_LINE)
2448 /* We use the same underline style as the previous one. */
2449 thickness = s->prev->underline_thickness;
2450 position = s->prev->underline_position;
2452 else
2454 struct font *font = font_for_underline_metrics (s);
2456 /* Get the underline thickness. Default is 1 pixel. */
2457 if (font && font->underline_thickness > 0)
2458 thickness = font->underline_thickness;
2459 else
2460 thickness = 1;
2461 if (x_underline_at_descent_line || !font)
2462 position = (s->height - thickness) - (s->ybase - s->y);
2463 else
2465 /* Get the underline position. This is the recommended
2466 vertical offset in pixels from the baseline to the top of
2467 the underline. This is a signed value according to the
2468 specs, and its default is
2470 ROUND ((maximum_descent) / 2), with
2471 ROUND (x) = floor (x + 0.5) */
2473 if (x_use_underline_position_properties
2474 && font->underline_position >= 0)
2475 position = font->underline_position;
2476 else
2477 position = (font->descent + 1) / 2;
2479 position = max (position, underline_minimum_offset);
2481 /* Check the sanity of thickness and position. We should
2482 avoid drawing underline out of the current line area. */
2483 if (s->y + s->height <= s->ybase + position)
2484 position = (s->height - 1) - (s->ybase - s->y);
2485 if (s->y + s->height < s->ybase + position + thickness)
2486 thickness = (s->y + s->height) - (s->ybase + position);
2487 s->underline_thickness = thickness;
2488 s->underline_position = position;
2489 y = s->ybase + position;
2490 if (s->face->underline_defaulted_p)
2492 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x,
2493 y, s->width, 1);
2495 else
2497 w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x,
2498 y, s->width, 1);
2502 /* Draw overline. */
2503 if (s->face->overline_p)
2505 unsigned long dy = 0, h = 1;
2507 if (s->face->overline_color_defaulted_p)
2509 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x,
2510 s->y + dy, s->width, h);
2512 else
2514 w32_fill_area (s->f, s->hdc, s->face->overline_color, s->x,
2515 s->y + dy, s->width, h);
2519 /* Draw strike-through. */
2520 if (s->face->strike_through_p
2521 && !FONT_TEXTMETRIC (s->font).tmStruckOut)
2523 /* Y-coordinate and height of the glyph string's first
2524 glyph. We cannot use s->y and s->height because those
2525 could be larger if there are taller display elements
2526 (e.g., characters displayed with a larger font) in the
2527 same glyph row. */
2528 int glyph_y = s->ybase - s->first_glyph->ascent;
2529 int glyph_height = s->first_glyph->ascent + s->first_glyph->descent;
2530 /* Strike-through width and offset from the glyph string's
2531 top edge. */
2532 unsigned long h = 1;
2533 unsigned long dy = (glyph_height - h) / 2;
2535 if (s->face->strike_through_color_defaulted_p)
2537 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x,
2538 glyph_y + dy, s->width, h);
2540 else
2542 w32_fill_area (s->f, s->hdc, s->face->strike_through_color, s->x,
2543 glyph_y + dy, s->width, h);
2547 /* Draw relief if not yet drawn. */
2548 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
2549 x_draw_glyph_string_box (s);
2551 if (s->prev)
2553 struct glyph_string *prev;
2555 for (prev = s->prev; prev; prev = prev->prev)
2556 if (prev->hl != s->hl
2557 && prev->x + prev->width + prev->right_overhang > s->x)
2559 /* As prev was drawn while clipped to its own area, we
2560 must draw the right_overhang part using s->hl now. */
2561 enum draw_glyphs_face save = prev->hl;
2563 prev->hl = s->hl;
2564 x_set_glyph_string_gc (prev);
2565 x_set_glyph_string_clipping_exactly (s, prev);
2566 if (prev->first_glyph->type == CHAR_GLYPH)
2567 x_draw_glyph_string_foreground (prev);
2568 else
2569 x_draw_composite_glyph_string_foreground (prev);
2570 w32_set_clip_rectangle (prev->hdc, NULL);
2571 prev->hl = save;
2572 prev->num_clips = 0;
2576 if (s->next)
2578 struct glyph_string *next;
2580 for (next = s->next; next; next = next->next)
2581 if (next->hl != s->hl
2582 && next->x - next->left_overhang < s->x + s->width)
2584 /* As next will be drawn while clipped to its own area,
2585 we must draw the left_overhang part using s->hl now. */
2586 enum draw_glyphs_face save = next->hl;
2588 next->hl = s->hl;
2589 x_set_glyph_string_gc (next);
2590 x_set_glyph_string_clipping_exactly (s, next);
2591 if (next->first_glyph->type == CHAR_GLYPH)
2592 x_draw_glyph_string_foreground (next);
2593 else
2594 x_draw_composite_glyph_string_foreground (next);
2595 w32_set_clip_rectangle (next->hdc, NULL);
2596 next->hl = save;
2597 next->num_clips = 0;
2598 next->clip_head = s->next;
2603 /* Reset clipping. */
2604 w32_set_clip_rectangle (s->hdc, NULL);
2605 s->num_clips = 0;
2609 /* Shift display to make room for inserted glyphs. */
2611 static void
2612 w32_shift_glyphs_for_insert (struct frame *f, int x, int y,
2613 int width, int height, int shift_by)
2615 HDC hdc;
2617 hdc = get_frame_dc (f);
2618 BitBlt (hdc, x + shift_by, y, width, height,
2619 hdc, x, y, SRCCOPY);
2621 release_frame_dc (f, hdc);
2625 /* Delete N glyphs at the nominal cursor position. Not implemented
2626 for X frames. */
2628 static void
2629 x_delete_glyphs (struct frame *f, register int n)
2631 if (! FRAME_W32_P (f))
2632 return;
2634 emacs_abort ();
2638 /* Clear entire frame. */
2640 static void
2641 x_clear_frame (struct frame *f)
2643 if (! FRAME_W32_P (f))
2644 return;
2646 /* Clearing the frame will erase any cursor, so mark them all as no
2647 longer visible. */
2648 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
2650 block_input ();
2652 w32_clear_window (f);
2654 /* We have to clear the scroll bars, too. If we have changed
2655 colors or something like that, then they should be notified. */
2656 x_scroll_bar_clear (f);
2658 unblock_input ();
2662 /* Make audible bell. */
2664 static void
2665 w32_ring_bell (struct frame *f)
2667 block_input ();
2669 if (FRAME_W32_P (f) && visible_bell)
2671 int i;
2672 HWND hwnd = FRAME_W32_WINDOW (f);
2674 for (i = 0; i < 5; i++)
2676 FlashWindow (hwnd, TRUE);
2677 Sleep (10);
2679 FlashWindow (hwnd, FALSE);
2681 else
2682 w32_sys_ring_bell (f);
2684 unblock_input ();
2687 /***********************************************************************
2688 Line Dance
2689 ***********************************************************************/
2691 /* Perform an insert-lines or delete-lines operation, inserting N
2692 lines or deleting -N lines at vertical position VPOS. */
2694 static void
2695 x_ins_del_lines (struct frame *f, int vpos, int n)
2697 if (! FRAME_W32_P (f))
2698 return;
2700 emacs_abort ();
2704 /* Scroll part of the display as described by RUN. */
2706 static void
2707 x_scroll_run (struct window *w, struct run *run)
2709 struct frame *f = XFRAME (w->frame);
2710 int x, y, width, height, from_y, to_y, bottom_y;
2711 HWND hwnd = FRAME_W32_WINDOW (f);
2712 HRGN expect_dirty;
2714 /* Get frame-relative bounding box of the text display area of W,
2715 without mode lines. Include in this box the left and right
2716 fringes of W. */
2717 window_box (w, ANY_AREA, &x, &y, &width, &height);
2719 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
2720 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
2721 bottom_y = y + height;
2723 if (to_y < from_y)
2725 /* Scrolling up. Make sure we don't copy part of the mode
2726 line at the bottom. */
2727 if (from_y + run->height > bottom_y)
2728 height = bottom_y - from_y;
2729 else
2730 height = run->height;
2731 expect_dirty = CreateRectRgn (x, y + height, x + width, bottom_y);
2733 else
2735 /* Scrolling down. Make sure we don't copy over the mode line.
2736 at the bottom. */
2737 if (to_y + run->height > bottom_y)
2738 height = bottom_y - to_y;
2739 else
2740 height = run->height;
2741 expect_dirty = CreateRectRgn (x, y, x + width, to_y);
2744 block_input ();
2746 /* Cursor off. Will be switched on again in x_update_window_end. */
2747 x_clear_cursor (w);
2750 RECT from;
2751 RECT to;
2752 HRGN dirty = CreateRectRgn (0, 0, 0, 0);
2753 HRGN combined = CreateRectRgn (0, 0, 0, 0);
2755 from.left = to.left = x;
2756 from.right = to.right = x + width;
2757 from.top = from_y;
2758 from.bottom = from_y + height;
2759 to.top = y;
2760 to.bottom = bottom_y;
2762 ScrollWindowEx (hwnd, 0, to_y - from_y, &from, &to, dirty,
2763 NULL, SW_INVALIDATE);
2765 /* Combine this with what we expect to be dirty. This covers the
2766 case where not all of the region we expect is actually dirty. */
2767 CombineRgn (combined, dirty, expect_dirty, RGN_OR);
2769 /* If the dirty region is not what we expected, redraw the entire frame. */
2770 if (!EqualRgn (combined, expect_dirty))
2771 SET_FRAME_GARBAGED (f);
2773 DeleteObject (dirty);
2774 DeleteObject (combined);
2777 unblock_input ();
2778 DeleteObject (expect_dirty);
2783 /***********************************************************************
2784 Exposure Events
2785 ***********************************************************************/
2787 static void
2788 frame_highlight (struct frame *f)
2790 x_update_cursor (f, 1);
2791 x_set_frame_alpha (f);
2794 static void
2795 frame_unhighlight (struct frame *f)
2797 x_update_cursor (f, 1);
2798 x_set_frame_alpha (f);
2801 /* The focus has changed. Update the frames as necessary to reflect
2802 the new situation. Note that we can't change the selected frame
2803 here, because the Lisp code we are interrupting might become confused.
2804 Each event gets marked with the frame in which it occurred, so the
2805 Lisp code can tell when the switch took place by examining the events. */
2807 static void
2808 x_new_focus_frame (struct w32_display_info *dpyinfo, struct frame *frame)
2810 struct frame *old_focus = dpyinfo->w32_focus_frame;
2812 if (frame != dpyinfo->w32_focus_frame)
2814 /* Set this before calling other routines, so that they see
2815 the correct value of w32_focus_frame. */
2816 dpyinfo->w32_focus_frame = frame;
2818 if (old_focus && old_focus->auto_lower)
2819 x_lower_frame (old_focus);
2821 if (dpyinfo->w32_focus_frame && dpyinfo->w32_focus_frame->auto_raise)
2822 dpyinfo->w32_pending_autoraise_frame = dpyinfo->w32_focus_frame;
2823 else
2824 dpyinfo->w32_pending_autoraise_frame = NULL;
2827 x_frame_rehighlight (dpyinfo);
2831 /* Handle FocusIn and FocusOut state changes for FRAME.
2832 If FRAME has focus and there exists more than one frame, puts
2833 a FOCUS_IN_EVENT into *BUFP. */
2835 static void
2836 x_focus_changed (int type, int state, struct w32_display_info *dpyinfo,
2837 struct frame *frame, struct input_event *bufp)
2839 if (type == WM_SETFOCUS)
2841 if (dpyinfo->w32_focus_event_frame != frame)
2843 x_new_focus_frame (dpyinfo, frame);
2844 dpyinfo->w32_focus_event_frame = frame;
2846 /* Don't stop displaying the initial startup message
2847 for a switch-frame event we don't need. */
2848 if (NILP (Vterminal_frame)
2849 && CONSP (Vframe_list)
2850 && !NILP (XCDR (Vframe_list)))
2852 bufp->arg = Qt;
2854 else
2856 bufp->arg = Qnil;
2859 bufp->kind = FOCUS_IN_EVENT;
2860 XSETFRAME (bufp->frame_or_window, frame);
2863 frame->output_data.x->focus_state |= state;
2865 /* TODO: IME focus? */
2867 else if (type == WM_KILLFOCUS)
2869 frame->output_data.x->focus_state &= ~state;
2871 if (dpyinfo->w32_focus_event_frame == frame)
2873 dpyinfo->w32_focus_event_frame = 0;
2874 x_new_focus_frame (dpyinfo, 0);
2876 bufp->kind = FOCUS_OUT_EVENT;
2877 XSETFRAME (bufp->frame_or_window, frame);
2880 /* TODO: IME focus? */
2885 /* The focus may have changed. Figure out if it is a real focus change,
2886 by checking both FocusIn/Out and Enter/LeaveNotify events.
2888 Returns FOCUS_IN_EVENT event in *BUFP. */
2890 static void
2891 w32_detect_focus_change (struct w32_display_info *dpyinfo, W32Msg *event,
2892 struct input_event *bufp)
2894 struct frame *frame;
2896 frame = x_any_window_to_frame (dpyinfo, event->msg.hwnd);
2897 if (! frame)
2898 return;
2900 /* On w32, this is only called from focus events, so no switch needed. */
2901 x_focus_changed (event->msg.message,
2902 (event->msg.message == WM_KILLFOCUS ?
2903 FOCUS_IMPLICIT : FOCUS_EXPLICIT),
2904 dpyinfo, frame, bufp);
2908 #if 0 /* unused */
2909 /* Handle an event saying the mouse has moved out of an Emacs frame. */
2911 static void
2912 x_mouse_leave (struct w32_display_info *dpyinfo)
2914 x_new_focus_frame (dpyinfo, dpyinfo->w32_focus_event_frame);
2916 #endif
2918 /* The focus has changed, or we have redirected a frame's focus to
2919 another frame (this happens when a frame uses a surrogate
2920 mini-buffer frame). Shift the highlight as appropriate.
2922 The FRAME argument doesn't necessarily have anything to do with which
2923 frame is being highlighted or un-highlighted; we only use it to find
2924 the appropriate X display info. */
2926 static void
2927 w32_frame_rehighlight (struct frame *frame)
2929 if (! FRAME_W32_P (frame))
2930 return;
2931 x_frame_rehighlight (FRAME_DISPLAY_INFO (frame));
2934 static void
2935 x_frame_rehighlight (struct w32_display_info *dpyinfo)
2937 struct frame *old_highlight = dpyinfo->x_highlight_frame;
2939 if (dpyinfo->w32_focus_frame)
2941 dpyinfo->x_highlight_frame
2942 = ((FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame)))
2943 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame))
2944 : dpyinfo->w32_focus_frame);
2945 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
2947 fset_focus_frame (dpyinfo->w32_focus_frame, Qnil);
2948 dpyinfo->x_highlight_frame = dpyinfo->w32_focus_frame;
2951 else
2952 dpyinfo->x_highlight_frame = 0;
2954 if (dpyinfo->x_highlight_frame != old_highlight)
2956 if (old_highlight)
2957 frame_unhighlight (old_highlight);
2958 if (dpyinfo->x_highlight_frame)
2959 frame_highlight (dpyinfo->x_highlight_frame);
2963 /* Keyboard processing - modifier keys, etc. */
2965 /* Convert a keysym to its name. */
2967 char *
2968 x_get_keysym_name (int keysym)
2970 /* Make static so we can always return it */
2971 static char value[100];
2973 block_input ();
2974 GetKeyNameText (keysym, value, 100);
2975 unblock_input ();
2977 return value;
2980 static int
2981 codepage_for_locale (LCID locale)
2983 char cp[20];
2985 if (GetLocaleInfo (locale, LOCALE_IDEFAULTANSICODEPAGE, cp, 20) > 0)
2986 return atoi (cp);
2987 else
2988 return CP_ACP;
2992 /* Mouse clicks and mouse movement. Rah. */
2994 /* Parse a button MESSAGE. The button index is returned in PBUTTON, and
2995 the state in PUP. XBUTTON provides extra information for extended mouse
2996 button messages. Returns FALSE if unable to parse the message. */
2997 BOOL
2998 parse_button (int message, int xbutton, int * pbutton, int * pup)
3000 int button = 0;
3001 int up = 0;
3003 switch (message)
3005 case WM_LBUTTONDOWN:
3006 button = 0;
3007 up = 0;
3008 break;
3009 case WM_LBUTTONUP:
3010 button = 0;
3011 up = 1;
3012 break;
3013 case WM_MBUTTONDOWN:
3014 if (NILP (Vw32_swap_mouse_buttons))
3015 button = 1;
3016 else
3017 button = 2;
3018 up = 0;
3019 break;
3020 case WM_MBUTTONUP:
3021 if (NILP (Vw32_swap_mouse_buttons))
3022 button = 1;
3023 else
3024 button = 2;
3025 up = 1;
3026 break;
3027 case WM_RBUTTONDOWN:
3028 if (NILP (Vw32_swap_mouse_buttons))
3029 button = 2;
3030 else
3031 button = 1;
3032 up = 0;
3033 break;
3034 case WM_RBUTTONUP:
3035 if (NILP (Vw32_swap_mouse_buttons))
3036 button = 2;
3037 else
3038 button = 1;
3039 up = 1;
3040 break;
3041 case WM_XBUTTONDOWN:
3042 button = xbutton + 2;
3043 up = 0;
3044 break;
3045 case WM_XBUTTONUP:
3046 button = xbutton + 2;
3047 up = 1;
3048 break;
3049 default:
3050 return (FALSE);
3053 if (pup) *pup = up;
3054 if (pbutton) *pbutton = button;
3056 return (TRUE);
3060 /* Prepare a mouse-event in *RESULT for placement in the input queue.
3062 If the event is a button press, then note that we have grabbed
3063 the mouse. */
3065 static Lisp_Object
3066 construct_mouse_click (struct input_event *result, W32Msg *msg, struct frame *f)
3068 int button;
3069 int up;
3071 parse_button (msg->msg.message, HIWORD (msg->msg.wParam),
3072 &button, &up);
3074 /* Make the event type NO_EVENT; we'll change that when we decide
3075 otherwise. */
3076 result->kind = MOUSE_CLICK_EVENT;
3077 result->code = button;
3078 result->timestamp = msg->msg.time;
3079 result->modifiers = (msg->dwModifiers
3080 | (up
3081 ? up_modifier
3082 : down_modifier));
3084 XSETINT (result->x, LOWORD (msg->msg.lParam));
3085 XSETINT (result->y, HIWORD (msg->msg.lParam));
3086 XSETFRAME (result->frame_or_window, f);
3087 result->arg = Qnil;
3088 return Qnil;
3091 static Lisp_Object
3092 construct_mouse_wheel (struct input_event *result, W32Msg *msg, struct frame *f)
3094 POINT p;
3095 int delta;
3097 result->kind = msg->msg.message == WM_MOUSEHWHEEL ? HORIZ_WHEEL_EVENT
3098 : WHEEL_EVENT;
3099 result->code = 0;
3100 result->timestamp = msg->msg.time;
3102 /* A WHEEL_DELTA positive value indicates that the wheel was rotated
3103 forward, away from the user (up); a negative value indicates that
3104 the wheel was rotated backward, toward the user (down). */
3105 delta = GET_WHEEL_DELTA_WPARAM (msg->msg.wParam);
3107 /* The up and down modifiers indicate if the wheel was rotated up or
3108 down based on WHEEL_DELTA value. */
3109 result->modifiers = (msg->dwModifiers
3110 | ((delta < 0 ) ? down_modifier : up_modifier));
3112 /* With multiple monitors, we can legitimately get negative
3113 coordinates, so cast to short to interpret them correctly. */
3114 p.x = (short) LOWORD (msg->msg.lParam);
3115 p.y = (short) HIWORD (msg->msg.lParam);
3116 /* For the case that F's w32 window is not msg->msg.hwnd. */
3117 ScreenToClient (FRAME_W32_WINDOW (f), &p);
3118 XSETINT (result->x, p.x);
3119 XSETINT (result->y, p.y);
3120 XSETFRAME (result->frame_or_window, f);
3121 result->arg = Qnil;
3122 return Qnil;
3125 static Lisp_Object
3126 construct_drag_n_drop (struct input_event *result, W32Msg *msg, struct frame *f)
3128 Lisp_Object files;
3129 Lisp_Object frame;
3130 HDROP hdrop;
3131 POINT p;
3132 WORD num_files;
3133 wchar_t name_w[MAX_PATH];
3134 #ifdef NTGUI_UNICODE
3135 const int use_unicode = 1;
3136 #else
3137 int use_unicode = w32_unicode_filenames;
3138 char name_a[MAX_PATH];
3139 char file[MAX_UTF8_PATH];
3140 #endif
3141 int i;
3143 result->kind = DRAG_N_DROP_EVENT;
3144 result->code = 0;
3145 result->timestamp = msg->msg.time;
3146 result->modifiers = msg->dwModifiers;
3148 hdrop = (HDROP) msg->msg.wParam;
3149 DragQueryPoint (hdrop, &p);
3151 #if 0
3152 p.x = LOWORD (msg->msg.lParam);
3153 p.y = HIWORD (msg->msg.lParam);
3154 ScreenToClient (msg->msg.hwnd, &p);
3155 #endif
3157 XSETINT (result->x, p.x);
3158 XSETINT (result->y, p.y);
3160 num_files = DragQueryFile (hdrop, 0xFFFFFFFF, NULL, 0);
3161 files = Qnil;
3163 for (i = 0; i < num_files; i++)
3165 if (use_unicode)
3167 eassert (DragQueryFileW (hdrop, i, NULL, 0) < MAX_PATH);
3168 /* If DragQueryFile returns zero, it failed to fetch a file
3169 name. */
3170 if (DragQueryFileW (hdrop, i, name_w, MAX_PATH) == 0)
3171 continue;
3172 #ifdef NTGUI_UNICODE
3173 files = Fcons (from_unicode_buffer (name_w), files);
3174 #else
3175 filename_from_utf16 (name_w, file);
3176 files = Fcons (DECODE_FILE (build_unibyte_string (file)), files);
3177 #endif /* NTGUI_UNICODE */
3179 #ifndef NTGUI_UNICODE
3180 else
3182 eassert (DragQueryFileA (hdrop, i, NULL, 0) < MAX_PATH);
3183 if (DragQueryFileA (hdrop, i, name_a, MAX_PATH) == 0)
3184 continue;
3185 filename_from_ansi (name_a, file);
3186 files = Fcons (DECODE_FILE (build_unibyte_string (file)), files);
3188 #endif
3191 DragFinish (hdrop);
3193 XSETFRAME (frame, f);
3194 result->frame_or_window = frame;
3195 result->arg = files;
3196 return Qnil;
3200 #if HAVE_W32NOTIFY
3202 /* File event notifications (see w32notify.c). */
3204 Lisp_Object
3205 lispy_file_action (DWORD action)
3207 static char unknown_fmt[] = "unknown-action(%d)";
3208 Lisp_Object retval;
3210 switch (action)
3212 case FILE_ACTION_ADDED:
3213 retval = Qadded;
3214 break;
3215 case FILE_ACTION_REMOVED:
3216 retval = Qremoved;
3217 break;
3218 case FILE_ACTION_MODIFIED:
3219 retval = Qmodified;
3220 break;
3221 case FILE_ACTION_RENAMED_OLD_NAME:
3222 retval = Qrenamed_from;
3223 break;
3224 case FILE_ACTION_RENAMED_NEW_NAME:
3225 retval = Qrenamed_to;
3226 break;
3227 default:
3229 char buf[sizeof(unknown_fmt) - 1 + INT_STRLEN_BOUND (DWORD)];
3231 sprintf (buf, unknown_fmt, action);
3232 retval = intern (buf);
3234 break;
3237 return retval;
3240 #ifdef WINDOWSNT
3241 /* Put file notifications into the Emacs input event queue. This
3242 function runs when the WM_EMACS_FILENOTIFY message arrives from a
3243 watcher thread. */
3244 static void
3245 queue_notifications (struct input_event *event, W32Msg *msg, struct frame *f,
3246 int *evcount)
3248 struct notifications_set *ns = NULL;
3249 Lisp_Object frame;
3250 int done = 0;
3252 /* We cannot process notification before Emacs is fully initialized,
3253 since we need the UTF-16LE coding-system to be set up. */
3254 if (!initialized)
3255 return;
3257 XSETFRAME (frame, f);
3259 while (!done)
3261 ns = NULL;
3263 /* Find out if there is a record available in the linked list of
3264 notifications sets. If so, unlink the set from the linked
3265 list. Use critical section. */
3266 enter_crit ();
3267 if (notifications_set_head->next != notifications_set_head)
3269 ns = notifications_set_head->next;
3270 ns->prev->next = ns->next;
3271 ns->next->prev = ns->prev;
3273 else
3274 done = 1;
3275 leave_crit();
3277 if (ns)
3279 BYTE *p = ns->notifications;
3280 FILE_NOTIFY_INFORMATION *fni = (PFILE_NOTIFY_INFORMATION)p;
3281 const DWORD min_size
3282 = offsetof (FILE_NOTIFY_INFORMATION, FileName) + sizeof(wchar_t);
3283 DWORD info_size = ns->size;
3284 Lisp_Object cs = Qutf_16le;
3285 Lisp_Object obj = w32_get_watch_object (ns->desc);
3287 /* notifications size could be zero when the buffer of
3288 notifications overflowed on the OS level, or when the
3289 directory being watched was itself deleted. Do nothing in
3290 that case. */
3291 if (info_size
3292 && !NILP (obj) && CONSP (obj))
3294 Lisp_Object callback = XCDR (obj);
3296 while (info_size >= min_size)
3298 Lisp_Object utf_16_fn
3299 = make_unibyte_string ((char *)fni->FileName,
3300 fni->FileNameLength);
3301 /* Note: mule-conf is preloaded, so utf-16le must
3302 already be defined at this point. */
3303 Lisp_Object fname
3304 = code_convert_string_norecord (utf_16_fn, cs, 0);
3305 Lisp_Object action = lispy_file_action (fni->Action);
3307 event->kind = FILE_NOTIFY_EVENT;
3308 event->timestamp = msg->msg.time;
3309 event->modifiers = 0;
3310 event->frame_or_window = callback;
3311 event->arg = list3 (make_pointer_integer (ns->desc),
3312 action, fname);
3313 kbd_buffer_store_event (event);
3314 (*evcount)++;
3315 if (!fni->NextEntryOffset)
3316 break;
3317 p += fni->NextEntryOffset;
3318 fni = (PFILE_NOTIFY_INFORMATION)p;
3319 info_size -= fni->NextEntryOffset;
3322 /* Free this notifications set. */
3323 xfree (ns->notifications);
3324 xfree (ns);
3327 /* We've stuffed all the events ourselves, so w32_read_socket shouldn't. */
3328 event->kind = NO_EVENT;
3330 #endif /* WINDOWSNT */
3331 #endif /* HAVE_W32NOTIFY */
3334 /* Function to report a mouse movement to the mainstream Emacs code.
3335 The input handler calls this.
3337 We have received a mouse movement event, which is given in *event.
3338 If the mouse is over a different glyph than it was last time, tell
3339 the mainstream emacs code by setting mouse_moved. If not, ask for
3340 another motion event, so we can check again the next time it moves. */
3342 static int
3343 note_mouse_movement (struct frame *frame, MSG *msg)
3345 struct w32_display_info *dpyinfo;
3346 int mouse_x = LOWORD (msg->lParam);
3347 int mouse_y = HIWORD (msg->lParam);
3348 RECT *r;
3350 if (!FRAME_X_OUTPUT (frame))
3351 return 0;
3353 dpyinfo = FRAME_DISPLAY_INFO (frame);
3354 dpyinfo->last_mouse_movement_time = msg->time;
3355 dpyinfo->last_mouse_motion_frame = frame;
3356 dpyinfo->last_mouse_motion_x = mouse_x;
3357 dpyinfo->last_mouse_motion_y = mouse_y;
3359 if (msg->hwnd != FRAME_W32_WINDOW (frame))
3361 frame->mouse_moved = true;
3362 dpyinfo->last_mouse_scroll_bar = NULL;
3363 note_mouse_highlight (frame, -1, -1);
3364 dpyinfo->last_mouse_glyph_frame = NULL;
3365 return 1;
3368 /* Has the mouse moved off the glyph it was on at the last sighting? */
3369 r = &dpyinfo->last_mouse_glyph;
3370 if (frame != dpyinfo->last_mouse_glyph_frame
3371 || mouse_x < r->left || mouse_x >= r->right
3372 || mouse_y < r->top || mouse_y >= r->bottom)
3374 frame->mouse_moved = true;
3375 dpyinfo->last_mouse_scroll_bar = NULL;
3376 note_mouse_highlight (frame, mouse_x, mouse_y);
3377 /* Remember the mouse position here, as w32_mouse_position only
3378 gets called when mouse tracking is enabled but we also need
3379 to keep track of the mouse for help_echo and highlighting at
3380 other times. */
3381 remember_mouse_glyph (frame, mouse_x, mouse_y, r);
3382 dpyinfo->last_mouse_glyph_frame = frame;
3383 return 1;
3386 return 0;
3390 /************************************************************************
3391 Mouse Face
3392 ************************************************************************/
3394 static struct scroll_bar *x_window_to_scroll_bar (Window, int);
3395 static void x_scroll_bar_report_motion (struct frame **, Lisp_Object *,
3396 enum scroll_bar_part *,
3397 Lisp_Object *, Lisp_Object *,
3398 Time *);
3399 static void x_horizontal_scroll_bar_report_motion (struct frame **, Lisp_Object *,
3400 enum scroll_bar_part *,
3401 Lisp_Object *, Lisp_Object *,
3402 Time *);
3403 static void
3404 w32_define_cursor (Window window, Cursor cursor)
3406 PostMessage (window, WM_EMACS_SETCURSOR, (WPARAM) cursor, 0);
3409 /* Return the current position of the mouse.
3410 *fp should be a frame which indicates which display to ask about.
3412 If the mouse movement started in a scroll bar, set *fp, *bar_window,
3413 and *part to the frame, window, and scroll bar part that the mouse
3414 is over. Set *x and *y to the portion and whole of the mouse's
3415 position on the scroll bar.
3417 If the mouse movement started elsewhere, set *fp to the frame the
3418 mouse is on, *bar_window to nil, and *x and *y to the character cell
3419 the mouse is over.
3421 Set *time to the server time-stamp for the time at which the mouse
3422 was at this position.
3424 Don't store anything if we don't have a valid set of values to report.
3426 This clears the mouse_moved flag, so we can wait for the next mouse
3427 movement. */
3429 static void
3430 w32_mouse_position (struct frame **fp, int insist, Lisp_Object *bar_window,
3431 enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y,
3432 Time *time)
3434 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (*fp);
3436 block_input ();
3438 if (dpyinfo->last_mouse_scroll_bar && insist == 0)
3440 struct scroll_bar *bar = dpyinfo->last_mouse_scroll_bar;
3442 if (bar->horizontal)
3443 x_horizontal_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
3444 else
3445 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
3447 else
3449 POINT pt;
3450 Lisp_Object frame, tail;
3451 struct frame *f1 = NULL;
3453 /* Clear the mouse-moved flag for every frame on this display. */
3454 FOR_EACH_FRAME (tail, frame)
3455 XFRAME (frame)->mouse_moved = false;
3457 dpyinfo->last_mouse_scroll_bar = NULL;
3459 GetCursorPos (&pt);
3461 /* Now we have a position on the root; find the innermost window
3462 containing the pointer. */
3464 /* If mouse was grabbed on a frame, give coords for that
3465 frame even if the mouse is now outside it. Otherwise
3466 check for window under mouse on one of our frames. */
3467 if (x_mouse_grabbed (dpyinfo))
3468 f1 = dpyinfo->last_mouse_frame;
3469 else
3471 HWND wfp = WindowFromPoint (pt);
3473 if (wfp)
3475 f1 = x_any_window_to_frame (dpyinfo, wfp);
3476 if (f1)
3478 HWND cwfp = ChildWindowFromPoint (wfp, pt);
3480 if (cwfp)
3482 struct frame *f2 = x_any_window_to_frame (dpyinfo, cwfp);
3484 /* If a child window was found, make sure that its
3485 frame is a child frame (Bug#26615, maybe). */
3486 if (f2 && FRAME_PARENT_FRAME (f2))
3487 f1 = f2;
3493 /* If not, is it one of our scroll bars? */
3494 if (! f1)
3496 struct scroll_bar *bar
3497 = x_window_to_scroll_bar (WindowFromPoint (pt), 2);
3499 if (bar)
3500 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3503 if (f1 == 0 && insist > 0)
3504 f1 = SELECTED_FRAME ();
3506 if (f1)
3508 /* Ok, we found a frame. Store all the values.
3509 last_mouse_glyph is a rectangle used to reduce the
3510 generation of mouse events. To not miss any motion
3511 events, we must divide the frame into rectangles of the
3512 size of the smallest character that could be displayed
3513 on it, i.e. into the same rectangles that matrices on
3514 the frame are divided into. */
3516 dpyinfo = FRAME_DISPLAY_INFO (f1);
3517 ScreenToClient (FRAME_W32_WINDOW (f1), &pt);
3518 remember_mouse_glyph (f1, pt.x, pt.y, &dpyinfo->last_mouse_glyph);
3519 dpyinfo->last_mouse_glyph_frame = f1;
3521 *bar_window = Qnil;
3522 *part = scroll_bar_above_handle;
3523 *fp = f1;
3524 XSETINT (*x, pt.x);
3525 XSETINT (*y, pt.y);
3526 *time = dpyinfo->last_mouse_movement_time;
3531 unblock_input ();
3535 /***********************************************************************
3536 Tool-bars
3537 ***********************************************************************/
3539 /* Handle mouse button event on the tool-bar of frame F, at
3540 frame-relative coordinates X/Y. EVENT_TYPE is either ButtonPress
3541 or ButtonRelease. */
3543 static void
3544 w32_handle_tool_bar_click (struct frame *f, struct input_event *button_event)
3546 int x = XFASTINT (button_event->x);
3547 int y = XFASTINT (button_event->y);
3549 if (button_event->modifiers & down_modifier)
3550 handle_tool_bar_click (f, x, y, 1, 0);
3551 else
3552 handle_tool_bar_click (f, x, y, 0,
3553 button_event->modifiers & ~up_modifier);
3558 /***********************************************************************
3559 Scroll bars
3560 ***********************************************************************/
3562 /* Scroll bar support. */
3564 /* Given a window ID, find the struct scroll_bar which manages it
3565 vertically. This can be called in GC, so we have to make sure to
3566 strip off mark bits. */
3568 static struct scroll_bar *
3569 x_window_to_scroll_bar (Window window_id, int type)
3571 Lisp_Object tail, frame;
3573 FOR_EACH_FRAME (tail, frame)
3575 Lisp_Object bar, condemned;
3577 /* Scan this frame's scroll bar list for a scroll bar with the
3578 right window ID. */
3579 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
3580 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
3581 /* This trick allows us to search both the ordinary and
3582 condemned scroll bar lists with one loop. */
3583 ! NILP (bar) || (bar = condemned,
3584 condemned = Qnil,
3585 ! NILP (bar));
3586 bar = XSCROLL_BAR (bar)->next)
3587 if (SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar)) == window_id
3588 && (type = 2
3589 || (type == 1 && XSCROLL_BAR (bar)->horizontal)
3590 || (type == 0 && !XSCROLL_BAR (bar)->horizontal)))
3591 return XSCROLL_BAR (bar);
3594 return 0;
3599 /* Set the thumb size and position of vertical scroll bar BAR. We are currently
3600 displaying PORTION out of a whole WHOLE, and our position POSITION. */
3602 static void
3603 w32_set_scroll_bar_thumb (struct scroll_bar *bar,
3604 int portion, int position, int whole)
3606 Window w = SCROLL_BAR_W32_WINDOW (bar);
3607 /* We use the whole scroll-bar height in the calculations below, to
3608 avoid strange effects like scrolling backwards when just clicking
3609 on the handle (without moving it). */
3610 double range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height)
3611 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3612 int sb_page, sb_pos;
3613 BOOL draggingp = bar->dragging ? TRUE : FALSE;
3614 SCROLLINFO si;
3616 /* We used to change the nPage setting while dragging the handle,
3617 but that had very strange effects (such as scrolling backwards
3618 while dragging downwards).
3620 Now, we don't change the nPage setting while dragging unless we
3621 get near to the end of the buffer, in which case we often have to
3622 resize the handle to "go all the way". */
3624 if (draggingp)
3626 int near_bottom_p;
3627 block_input ();
3628 si.cbSize = sizeof (si);
3629 si.fMask = SIF_POS | SIF_PAGE;
3630 GetScrollInfo (w, SB_CTL, &si);
3631 near_bottom_p = si.nPos + si.nPage >= range;
3632 unblock_input ();
3633 if (!near_bottom_p)
3634 return;
3637 if (whole)
3639 /* Position scroll bar at rock bottom if the bottom of the
3640 buffer is visible. This avoids shrinking the thumb away
3641 to nothing if it is held at the bottom of the buffer. */
3642 if (position + portion >= whole && !draggingp)
3644 sb_page = range * (whole - position) / whole;
3645 sb_pos = range;
3647 else
3649 sb_pos = position * range / whole;
3650 sb_page = (min (portion, (whole - position)) * range) / whole;
3653 else
3655 sb_page = range;
3656 sb_pos = 0;
3659 sb_page = max (sb_page, VERTICAL_SCROLL_BAR_MIN_HANDLE);
3661 block_input ();
3663 si.cbSize = sizeof (si);
3664 si.fMask = SIF_PAGE | SIF_POS;
3665 si.nPage = sb_page;
3666 si.nPos = sb_pos;
3668 SetScrollInfo (w, SB_CTL, &si, TRUE);
3670 unblock_input ();
3673 /* Set the thumb size and position of horizontal scroll bar BAR. We are currently
3674 displaying PORTION out of a whole WHOLE, and our position POSITION. */
3676 static void
3677 w32_set_horizontal_scroll_bar_thumb (struct scroll_bar *bar,
3678 int portion, int position, int whole)
3680 Window w = SCROLL_BAR_W32_WINDOW (bar);
3681 SCROLLINFO si;
3683 block_input ();
3685 si.cbSize = sizeof (si);
3686 si.fMask = SIF_PAGE | SIF_POS | SIF_RANGE;
3687 si.nMin = 0;
3688 si.nMax = whole;
3689 /* Allow nPage to be one larger than nPos so we don't allow the scrolling
3690 of an already fully visible buffer. */
3691 si.nPage = min (portion, si.nMax) + 1;
3692 si.nPos = min (position, si.nMax);
3693 SetScrollInfo (w, SB_CTL, &si, TRUE);
3695 unblock_input ();
3699 /************************************************************************
3700 Scroll bars, general
3701 ************************************************************************/
3703 static HWND
3704 my_create_vscrollbar (struct frame * f, struct scroll_bar * bar)
3706 return (HWND) SendMessage (FRAME_W32_WINDOW (f),
3707 WM_EMACS_CREATEVSCROLLBAR, (WPARAM) f,
3708 (LPARAM) bar);
3711 static HWND
3712 my_create_hscrollbar (struct frame * f, struct scroll_bar * bar)
3714 return (HWND) SendMessage (FRAME_W32_WINDOW (f),
3715 WM_EMACS_CREATEHSCROLLBAR, (WPARAM) f,
3716 (LPARAM) bar);
3719 /*#define ATTACH_THREADS*/
3721 static BOOL
3722 my_show_window (struct frame *f, HWND hwnd, int how)
3724 #ifndef ATTACH_THREADS
3725 return SendMessageTimeout (FRAME_W32_WINDOW (f), WM_EMACS_SHOWWINDOW,
3726 (WPARAM) hwnd, (LPARAM) how, 0, 6000, NULL);
3727 #else
3728 return ShowWindow (hwnd, how);
3729 #endif
3732 static void
3733 my_set_window_pos (HWND hwnd, HWND hwndAfter,
3734 int x, int y, int cx, int cy, UINT flags)
3736 #ifndef ATTACH_THREADS
3737 WINDOWPOS pos;
3738 pos.hwndInsertAfter = hwndAfter;
3739 pos.x = x;
3740 pos.y = y;
3741 pos.cx = cx;
3742 pos.cy = cy;
3743 pos.flags = flags;
3744 SendMessageTimeout (hwnd, WM_EMACS_SETWINDOWPOS, (WPARAM) &pos, 0,
3745 0, 6000, NULL);
3746 #else
3747 SetWindowPos (hwnd, hwndAfter, x, y, cx, cy, flags);
3748 #endif
3751 #if 0
3752 static void
3753 my_set_focus (struct frame * f, HWND hwnd)
3755 SendMessageTimeout (FRAME_W32_WINDOW (f), WM_EMACS_SETFOCUS,
3756 (WPARAM) hwnd, 0, 0, 6000, NULL);
3758 #endif
3760 static void
3761 my_set_foreground_window (HWND hwnd)
3763 SendMessageTimeout (hwnd, WM_EMACS_SETFOREGROUND, (WPARAM) hwnd, 0,
3764 0, 6000, NULL);
3768 static void
3769 my_destroy_window (struct frame * f, HWND hwnd)
3771 SendMessageTimeout (FRAME_W32_WINDOW (f), WM_EMACS_DESTROYWINDOW,
3772 (WPARAM) hwnd, 0, 0, 6000, NULL);
3775 static void
3776 my_bring_window_to_top (HWND hwnd)
3778 SendMessageTimeout (hwnd, WM_EMACS_BRINGTOTOP, (WPARAM) hwnd, 0,
3779 0, 6000, NULL);
3782 /* Create a scroll bar and return the scroll bar vector for it. W is
3783 the Emacs window on which to create the scroll bar. TOP, LEFT,
3784 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
3785 scroll bar. */
3787 static struct scroll_bar *
3788 x_scroll_bar_create (struct window *w, int left, int top, int width, int height, bool horizontal)
3790 struct frame *f = XFRAME (WINDOW_FRAME (w));
3791 HWND hwnd;
3792 SCROLLINFO si;
3793 struct scroll_bar *bar
3794 = ALLOCATE_PSEUDOVECTOR (struct scroll_bar, top, PVEC_OTHER);
3795 Lisp_Object barobj;
3797 block_input ();
3799 XSETWINDOW (bar->window, w);
3800 bar->top = top;
3801 bar->left = left;
3802 bar->width = width;
3803 bar->height = height;
3804 bar->start = 0;
3805 bar->end = 0;
3806 bar->dragging = 0;
3807 bar->horizontal = horizontal;
3809 /* Requires geometry to be set before call to create the real window */
3811 if (horizontal)
3812 hwnd = my_create_hscrollbar (f, bar);
3813 else
3814 hwnd = my_create_vscrollbar (f, bar);
3816 si.cbSize = sizeof (si);
3817 si.fMask = SIF_ALL;
3818 si.nMin = 0;
3819 if (horizontal)
3820 si.nMax = HORIZONTAL_SCROLL_BAR_LEFT_RANGE (f, width)
3821 + HORIZONTAL_SCROLL_BAR_MIN_HANDLE;
3822 else
3823 si.nMax = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height)
3824 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3825 si.nPage = si.nMax;
3826 si.nPos = 0;
3828 SetScrollInfo (hwnd, SB_CTL, &si, FALSE);
3830 SET_SCROLL_BAR_W32_WINDOW (bar, hwnd);
3832 /* Add bar to its frame's list of scroll bars. */
3833 bar->next = FRAME_SCROLL_BARS (f);
3834 bar->prev = Qnil;
3835 XSETVECTOR (barobj, bar);
3836 fset_scroll_bars (f, barobj);
3837 if (! NILP (bar->next))
3838 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
3840 unblock_input ();
3842 return bar;
3846 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
3847 nil. */
3849 static void
3850 x_scroll_bar_remove (struct scroll_bar *bar)
3852 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3854 block_input ();
3856 /* Destroy the window. */
3857 my_destroy_window (f, SCROLL_BAR_W32_WINDOW (bar));
3859 /* Dissociate this scroll bar from its window. */
3860 if (bar->horizontal)
3861 wset_horizontal_scroll_bar (XWINDOW (bar->window), Qnil);
3862 else
3863 wset_vertical_scroll_bar (XWINDOW (bar->window), Qnil);
3865 unblock_input ();
3868 /* Set the handle of the vertical scroll bar for WINDOW to indicate that
3869 we are displaying PORTION characters out of a total of WHOLE
3870 characters, starting at POSITION. If WINDOW has no vertical scroll
3871 bar, create one. */
3872 static void
3873 w32_set_vertical_scroll_bar (struct window *w,
3874 int portion, int whole, int position)
3876 struct frame *f = XFRAME (w->frame);
3877 Lisp_Object barobj;
3878 struct scroll_bar *bar;
3879 int top, height, left, width;
3880 int window_y, window_height;
3882 /* Get window dimensions. */
3883 window_box (w, ANY_AREA, 0, &window_y, 0, &window_height);
3884 top = window_y;
3885 height = window_height;
3887 /* Compute the left edge and the width of the scroll bar area. */
3888 left = WINDOW_SCROLL_BAR_AREA_X (w);
3889 width = WINDOW_SCROLL_BAR_AREA_WIDTH (w);
3891 /* Does the scroll bar exist yet? */
3892 if (NILP (w->vertical_scroll_bar))
3894 HDC hdc;
3895 block_input ();
3896 if (width > 0 && height > 0)
3898 hdc = get_frame_dc (f);
3899 w32_clear_area (f, hdc, left, top, width, height);
3900 release_frame_dc (f, hdc);
3902 unblock_input ();
3904 bar = x_scroll_bar_create (w, left, top, width, height, false);
3906 else
3908 /* It may just need to be moved and resized. */
3909 HWND hwnd;
3911 bar = XSCROLL_BAR (w->vertical_scroll_bar);
3912 hwnd = SCROLL_BAR_W32_WINDOW (bar);
3914 /* If already correctly positioned, do nothing. */
3915 if (bar->left == left
3916 && bar->top == top
3917 && bar->width == width
3918 && bar->height == height)
3920 /* Redraw after clear_frame. */
3921 if (!my_show_window (f, hwnd, SW_NORMAL))
3922 InvalidateRect (hwnd, NULL, FALSE);
3924 else
3926 HDC hdc;
3927 SCROLLINFO si;
3929 block_input ();
3930 if (width && height)
3932 hdc = get_frame_dc (f);
3933 /* Since Windows scroll bars are smaller than the space reserved
3934 for them on the frame, we have to clear "under" them. */
3935 w32_clear_area (f, hdc, left, top, width, height);
3936 release_frame_dc (f, hdc);
3937 x_clear_under_internal_border (f);
3939 /* Make sure scroll bar is "visible" before moving, to ensure the
3940 area of the parent window now exposed will be refreshed. */
3941 my_show_window (f, hwnd, SW_HIDE);
3942 /** MoveWindow (hwnd, left, top, width, max (height, 1), TRUE); **/
3943 /* Try to not draw over child frames. */
3944 SetWindowPos (hwnd, HWND_BOTTOM, left, top, width, max (height, 1),
3945 SWP_FRAMECHANGED);
3947 si.cbSize = sizeof (si);
3948 si.fMask = SIF_RANGE;
3949 si.nMin = 0;
3950 si.nMax = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height)
3951 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3953 SetScrollInfo (hwnd, SB_CTL, &si, FALSE);
3955 my_show_window (f, hwnd, SW_NORMAL);
3956 /* InvalidateRect (w, NULL, FALSE); */
3958 /* Remember new settings. */
3959 bar->left = left;
3960 bar->top = top;
3961 bar->width = width;
3962 bar->height = height;
3964 unblock_input ();
3967 w32_set_scroll_bar_thumb (bar, portion, position, whole);
3968 XSETVECTOR (barobj, bar);
3969 wset_vertical_scroll_bar (w, barobj);
3972 /* Set the handle of the horizontal scroll bar for WINDOW to indicate
3973 that we are displaying PORTION characters out of a total of WHOLE
3974 characters, starting at POSITION. If WINDOW has no horizontal scroll
3975 bar, create one. */
3976 static void
3977 w32_set_horizontal_scroll_bar (struct window *w,
3978 int portion, int whole, int position)
3980 struct frame *f = XFRAME (w->frame);
3981 Lisp_Object barobj;
3982 struct scroll_bar *bar;
3983 int top, height, left, width;
3984 int window_x, window_width;
3985 int clear_left = WINDOW_LEFT_EDGE_X (w);
3986 int clear_width = WINDOW_PIXEL_WIDTH (w) - WINDOW_RIGHT_DIVIDER_WIDTH (w);
3988 /* Get window dimensions. */
3989 window_box (w, ANY_AREA, &window_x, 0, &window_width, 0);
3990 left = window_x;
3991 height = WINDOW_SCROLL_BAR_AREA_HEIGHT (w);
3992 width = window_width;
3993 top = WINDOW_SCROLL_BAR_AREA_Y (w);
3995 /* Does the scroll bar exist yet? */
3996 if (NILP (w->horizontal_scroll_bar))
3998 HDC hdc;
3999 block_input ();
4000 if (width > 0 && height > 0)
4002 hdc = get_frame_dc (f);
4003 w32_clear_area (f, hdc, clear_left, top, clear_width, height);
4004 release_frame_dc (f, hdc);
4006 unblock_input ();
4008 bar = x_scroll_bar_create (w, left, top, width, height, true);
4010 else
4012 /* It may just need to be moved and resized. */
4013 HWND hwnd;
4015 bar = XSCROLL_BAR (w->horizontal_scroll_bar);
4016 hwnd = SCROLL_BAR_W32_WINDOW (bar);
4018 /* If already correctly positioned, do nothing. */
4019 if (bar->left == left && bar->top == top
4020 && bar->width == width && bar->height == height)
4022 /* Redraw after clear_frame. */
4023 if (!my_show_window (f, hwnd, SW_NORMAL))
4024 InvalidateRect (hwnd, NULL, FALSE);
4026 else
4028 HDC hdc;
4029 SCROLLINFO si;
4031 block_input ();
4032 if (width && height)
4034 hdc = get_frame_dc (f);
4035 /* Since Windows scroll bars are smaller than the space reserved
4036 for them on the frame, we have to clear "under" them. */
4037 w32_clear_area (f, hdc, clear_left, top, clear_width, height);
4038 release_frame_dc (f, hdc);
4039 x_clear_under_internal_border (f);
4041 /* Make sure scroll bar is "visible" before moving, to ensure the
4042 area of the parent window now exposed will be refreshed. */
4043 my_show_window (f, hwnd, SW_HIDE);
4044 /** MoveWindow (hwnd, left, top, width, max (height, 1), TRUE); **/
4045 /* Try to not draw over child frames. */
4046 SetWindowPos (hwnd, HWND_BOTTOM, left, top, max (width, 1), height,
4047 SWP_FRAMECHANGED);
4049 /* +++ SetScrollInfo +++ */
4050 si.cbSize = sizeof (si);
4051 si.fMask = SIF_PAGE | SIF_POS | SIF_RANGE;
4052 si.nMin = 0;
4053 si.nMax = whole;
4054 si.nPage = min (portion, si.nMax) + 1;
4055 si.nPos = min (position, si.nMax);
4056 SetScrollInfo (hwnd, SB_CTL, &si, FALSE);
4058 my_show_window (f, hwnd, SW_NORMAL);
4059 /* InvalidateRect (w, NULL, FALSE); */
4061 /* Remember new settings. */
4062 bar->left = left;
4063 bar->top = top;
4064 bar->width = width;
4065 bar->height = height;
4067 unblock_input ();
4071 w32_set_horizontal_scroll_bar_thumb (bar, portion, position, whole);
4072 XSETVECTOR (barobj, bar);
4073 wset_horizontal_scroll_bar (w, barobj);
4077 /* The following three hooks are used when we're doing a thorough
4078 redisplay of the frame. We don't explicitly know which scroll bars
4079 are going to be deleted, because keeping track of when windows go
4080 away is a real pain - "Can you say set-window-configuration, boys
4081 and girls?" Instead, we just assert at the beginning of redisplay
4082 that *all* scroll bars are to be removed, and then save a scroll bar
4083 from the fiery pit when we actually redisplay its window. */
4085 /* Arrange for all scroll bars on FRAME to be removed at the next call
4086 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
4087 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
4089 static void
4090 w32_condemn_scroll_bars (struct frame *frame)
4092 if (!NILP (FRAME_SCROLL_BARS (frame)))
4094 if (!NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
4096 /* Prepend scrollbars to already condemned ones. */
4097 Lisp_Object last = FRAME_SCROLL_BARS (frame);
4099 while (!NILP (XSCROLL_BAR (last)->next))
4100 last = XSCROLL_BAR (last)->next;
4102 XSCROLL_BAR (last)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
4103 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = last;
4106 fset_condemned_scroll_bars (frame, FRAME_SCROLL_BARS (frame));
4107 fset_scroll_bars (frame, Qnil);
4112 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
4113 Note that WINDOW isn't necessarily condemned at all. */
4115 static void
4116 w32_redeem_scroll_bar (struct window *w)
4118 struct scroll_bar *bar;
4119 Lisp_Object barobj;
4120 struct frame *f;
4122 /* We can't redeem this window's scroll bar if it doesn't have one. */
4123 if (NILP (w->vertical_scroll_bar) && NILP (w->horizontal_scroll_bar))
4124 emacs_abort ();
4126 if (!NILP (w->vertical_scroll_bar) && WINDOW_HAS_VERTICAL_SCROLL_BAR (w))
4128 bar = XSCROLL_BAR (w->vertical_scroll_bar);
4129 /* Unlink it from the condemned list. */
4130 f = XFRAME (WINDOW_FRAME (w));
4131 if (NILP (bar->prev))
4133 /* If the prev pointer is nil, it must be the first in one of
4134 the lists. */
4135 if (EQ (FRAME_SCROLL_BARS (f), w->vertical_scroll_bar))
4136 /* It's not condemned. Everything's fine. */
4137 goto horizontal;
4138 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
4139 w->vertical_scroll_bar))
4140 fset_condemned_scroll_bars (f, bar->next);
4141 else
4142 /* If its prev pointer is nil, it must be at the front of
4143 one or the other! */
4144 emacs_abort ();
4146 else
4147 XSCROLL_BAR (bar->prev)->next = bar->next;
4149 if (! NILP (bar->next))
4150 XSCROLL_BAR (bar->next)->prev = bar->prev;
4152 bar->next = FRAME_SCROLL_BARS (f);
4153 bar->prev = Qnil;
4154 XSETVECTOR (barobj, bar);
4155 fset_scroll_bars (f, barobj);
4156 if (! NILP (bar->next))
4157 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
4160 horizontal:
4161 if (!NILP (w->horizontal_scroll_bar) && WINDOW_HAS_HORIZONTAL_SCROLL_BAR (w))
4163 bar = XSCROLL_BAR (w->horizontal_scroll_bar);
4164 /* Unlink it from the condemned list. */
4165 f = XFRAME (WINDOW_FRAME (w));
4166 if (NILP (bar->prev))
4168 /* If the prev pointer is nil, it must be the first in one of
4169 the lists. */
4170 if (EQ (FRAME_SCROLL_BARS (f), w->horizontal_scroll_bar))
4171 /* It's not condemned. Everything's fine. */
4172 return;
4173 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
4174 w->horizontal_scroll_bar))
4175 fset_condemned_scroll_bars (f, bar->next);
4176 else
4177 /* If its prev pointer is nil, it must be at the front of
4178 one or the other! */
4179 emacs_abort ();
4181 else
4182 XSCROLL_BAR (bar->prev)->next = bar->next;
4184 if (! NILP (bar->next))
4185 XSCROLL_BAR (bar->next)->prev = bar->prev;
4187 bar->next = FRAME_SCROLL_BARS (f);
4188 bar->prev = Qnil;
4189 XSETVECTOR (barobj, bar);
4190 fset_scroll_bars (f, barobj);
4191 if (! NILP (bar->next))
4192 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
4196 /* Remove all scroll bars on FRAME that haven't been saved since the
4197 last call to `*condemn_scroll_bars_hook'. */
4199 static void
4200 w32_judge_scroll_bars (struct frame *f)
4202 Lisp_Object bar, next;
4204 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
4206 /* Clear out the condemned list now so we won't try to process any
4207 more events on the hapless scroll bars. */
4208 fset_condemned_scroll_bars (f, Qnil);
4210 for (; ! NILP (bar); bar = next)
4212 struct scroll_bar *b = XSCROLL_BAR (bar);
4214 x_scroll_bar_remove (b);
4216 next = b->next;
4217 b->next = b->prev = Qnil;
4220 /* Now there should be no references to the condemned scroll bars,
4221 and they should get garbage-collected. */
4224 /* Handle a mouse click on the vertical scroll bar BAR. If
4225 *EMACS_EVENT's kind is set to something other than NO_EVENT, it is
4226 enqueued.
4228 This may be called from a signal handler, so we have to ignore GC
4229 mark bits. */
4231 static int
4232 w32_scroll_bar_handle_click (struct scroll_bar *bar, W32Msg *msg,
4233 struct input_event *emacs_event)
4235 if (! WINDOWP (bar->window))
4236 emacs_abort ();
4238 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
4239 emacs_event->code = 0;
4240 /* not really meaningful to distinguish up/down */
4241 emacs_event->modifiers = msg->dwModifiers;
4242 emacs_event->frame_or_window = bar->window;
4243 emacs_event->arg = Qnil;
4244 emacs_event->timestamp = msg->msg.time;
4247 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
4248 int y;
4249 int dragging = bar->dragging;
4250 SCROLLINFO si;
4251 int sb_event = LOWORD (msg->msg.wParam);
4253 si.cbSize = sizeof (si);
4254 if (sb_event == SB_THUMBTRACK)
4255 si.fMask = SIF_TRACKPOS;
4256 else
4257 si.fMask = SIF_POS;
4259 GetScrollInfo ((HWND) msg->msg.lParam, SB_CTL, &si);
4260 if (sb_event == SB_THUMBTRACK)
4261 y = si.nTrackPos;
4262 else
4263 y = si.nPos;
4265 bar->dragging = 0;
4266 struct frame *f; /* Value is not used. */
4267 FRAME_DISPLAY_INFO (f)->last_mouse_scroll_bar_pos = msg->msg.wParam;
4269 switch (sb_event)
4271 case SB_LINEDOWN:
4272 emacs_event->part = scroll_bar_down_arrow;
4273 break;
4274 case SB_LINEUP:
4275 emacs_event->part = scroll_bar_up_arrow;
4276 break;
4277 case SB_PAGEUP:
4278 emacs_event->part = scroll_bar_above_handle;
4279 break;
4280 case SB_PAGEDOWN:
4281 emacs_event->part = scroll_bar_below_handle;
4282 break;
4283 case SB_TOP:
4284 emacs_event->part = scroll_bar_handle;
4285 y = 0;
4286 break;
4287 case SB_BOTTOM:
4288 emacs_event->part = scroll_bar_handle;
4289 y = top_range;
4290 break;
4291 case SB_THUMBTRACK:
4292 case SB_THUMBPOSITION:
4293 bar->dragging = 1; /* ??????? */
4294 emacs_event->part = scroll_bar_handle;
4296 /* "Silently" update current position. */
4298 SCROLLINFO si;
4300 si.cbSize = sizeof (si);
4301 si.fMask = SIF_POS;
4302 si.nPos = y;
4303 /* Remember apparent position (we actually lag behind the real
4304 position, so don't set that directly). */
4305 last_scroll_bar_drag_pos = y;
4307 SetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, FALSE);
4309 break;
4310 case SB_ENDSCROLL:
4311 /* If this is the end of a drag sequence, then reset the scroll
4312 handle size to normal and do a final redraw. Otherwise do
4313 nothing. */
4314 if (dragging)
4316 SCROLLINFO si;
4317 int start = bar->start;
4318 int end = bar->end;
4320 si.cbSize = sizeof (si);
4321 si.fMask = SIF_PAGE | SIF_POS;
4322 si.nPage = end - start + VERTICAL_SCROLL_BAR_MIN_HANDLE;
4323 si.nPos = last_scroll_bar_drag_pos;
4324 SetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, TRUE);
4326 /* fall through */
4327 default:
4328 emacs_event->kind = NO_EVENT;
4329 return FALSE;
4332 XSETINT (emacs_event->x, y);
4333 XSETINT (emacs_event->y, top_range);
4335 return TRUE;
4339 /* Handle a mouse click on the horizontal scroll bar BAR. If
4340 *EMACS_EVENT's kind is set to something other than NO_EVENT, it is
4341 enqueued.
4343 This may be called from a signal handler, so we have to ignore GC
4344 mark bits. */
4346 static int
4347 w32_horizontal_scroll_bar_handle_click (struct scroll_bar *bar, W32Msg *msg,
4348 struct input_event *emacs_event)
4350 if (! WINDOWP (bar->window))
4351 emacs_abort ();
4353 emacs_event->kind = HORIZONTAL_SCROLL_BAR_CLICK_EVENT;
4354 emacs_event->code = 0;
4355 /* not really meaningful to distinguish left/right */
4356 emacs_event->modifiers = msg->dwModifiers;
4357 emacs_event->frame_or_window = bar->window;
4358 emacs_event->arg = Qnil;
4359 emacs_event->timestamp = msg->msg.time;
4362 int left_range = HORIZONTAL_SCROLL_BAR_LEFT_RANGE (f, bar->width);
4363 int x, y;
4364 int dragging = bar->dragging;
4365 SCROLLINFO si;
4366 int sb_event = LOWORD (msg->msg.wParam);
4368 si.cbSize = sizeof (si);
4369 if (sb_event == SB_THUMBTRACK)
4370 si.fMask = SIF_TRACKPOS | SIF_PAGE | SIF_RANGE;
4371 else
4372 si.fMask = SIF_POS | SIF_PAGE | SIF_RANGE;
4374 GetScrollInfo ((HWND) msg->msg.lParam, SB_CTL, &si);
4375 if (sb_event == SB_THUMBTRACK)
4376 x = si.nTrackPos;
4377 else
4378 x = si.nPos;
4379 y = si.nMax - si.nPage;
4381 bar->dragging = 0;
4382 struct frame *f; /* Value is not used. */
4383 FRAME_DISPLAY_INFO (f)->last_mouse_scroll_bar_pos = msg->msg.wParam;
4385 switch (sb_event)
4387 case SB_LINELEFT:
4388 emacs_event->part = scroll_bar_left_arrow;
4389 break;
4390 case SB_LINERIGHT:
4391 emacs_event->part = scroll_bar_right_arrow;
4392 break;
4393 case SB_PAGELEFT:
4394 emacs_event->part = scroll_bar_before_handle;
4395 break;
4396 case SB_PAGERIGHT:
4397 emacs_event->part = scroll_bar_after_handle;
4398 break;
4399 case SB_LEFT:
4400 emacs_event->part = scroll_bar_horizontal_handle;
4401 x = 0;
4402 break;
4403 case SB_RIGHT:
4404 emacs_event->part = scroll_bar_horizontal_handle;
4405 x = left_range;
4406 break;
4407 case SB_THUMBTRACK:
4408 case SB_THUMBPOSITION:
4409 bar->dragging = 1;
4410 emacs_event->part = scroll_bar_horizontal_handle;
4412 /* "Silently" update current position. */
4414 SCROLLINFO si;
4416 si.cbSize = sizeof (si);
4417 si.fMask = SIF_POS;
4418 si.nPos = min (x, XWINDOW (bar->window)->hscroll_whole - 1);
4419 /* Remember apparent position (we actually lag behind the real
4420 position, so don't set that directly). */
4421 last_scroll_bar_drag_pos = x;
4423 SetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, FALSE);
4425 break;
4426 case SB_ENDSCROLL:
4427 /* If this is the end of a drag sequence, then reset the scroll
4428 handle size to normal and do a final redraw. Otherwise do
4429 nothing. */
4430 if (dragging)
4432 SCROLLINFO si;
4434 si.cbSize = sizeof (si);
4435 si.fMask = SIF_POS;
4436 si.nPos = min (last_scroll_bar_drag_pos,
4437 XWINDOW (bar->window)->hscroll_whole - 1);
4438 SetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, TRUE);
4440 /* fall through */
4441 default:
4442 emacs_event->kind = NO_EVENT;
4443 return FALSE;
4446 XSETINT (emacs_event->x, x);
4447 XSETINT (emacs_event->y, y);
4449 return TRUE;
4453 /* Return information to the user about the current position of the mouse
4454 on the vertical scroll bar. */
4455 static void
4456 x_scroll_bar_report_motion (struct frame **fp, Lisp_Object *bar_window,
4457 enum scroll_bar_part *part,
4458 Lisp_Object *x, Lisp_Object *y,
4459 Time *time)
4461 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (*fp);
4462 struct scroll_bar *bar = dpyinfo->last_mouse_scroll_bar;
4463 Window w = SCROLL_BAR_W32_WINDOW (bar);
4464 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4465 int pos;
4466 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
4467 SCROLLINFO si;
4468 int sb_event = LOWORD (dpyinfo->last_mouse_scroll_bar_pos);
4470 block_input ();
4472 *fp = f;
4473 *bar_window = bar->window;
4475 si.cbSize = sizeof (si);
4476 if (sb_event == SB_THUMBTRACK)
4477 si.fMask = SIF_TRACKPOS | SIF_PAGE | SIF_RANGE;
4478 else
4479 si.fMask = SIF_POS | SIF_PAGE | SIF_RANGE;
4481 GetScrollInfo (w, SB_CTL, &si);
4482 if (sb_event == SB_THUMBTRACK)
4483 pos = si.nTrackPos;
4484 else
4485 pos = si.nPos;
4486 top_range = si.nMax - si.nPage + 1;
4488 *part = scroll_bar_handle;
4489 if (sb_event == SB_LINEDOWN)
4490 pos++;
4492 XSETINT (*x, pos);
4493 XSETINT (*y, top_range);
4495 f->mouse_moved = false;
4496 dpyinfo->last_mouse_scroll_bar = NULL;
4498 *time = dpyinfo->last_mouse_movement_time;
4500 unblock_input ();
4503 /* Return information to the user about the current position of the mouse
4504 on the horizontal scroll bar. */
4505 static void
4506 x_horizontal_scroll_bar_report_motion (struct frame **fp, Lisp_Object *bar_window,
4507 enum scroll_bar_part *part,
4508 Lisp_Object *x, Lisp_Object *y,
4509 Time *time)
4511 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (*fp);
4512 struct scroll_bar *bar = dpyinfo->last_mouse_scroll_bar;
4513 Window w = SCROLL_BAR_W32_WINDOW (bar);
4514 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4515 int pos;
4516 int left_range = HORIZONTAL_SCROLL_BAR_LEFT_RANGE (f, bar->width);
4517 SCROLLINFO si;
4518 int sb_event = LOWORD (dpyinfo->last_mouse_scroll_bar_pos);
4520 block_input ();
4522 *fp = f;
4523 *bar_window = bar->window;
4525 si.cbSize = sizeof (si);
4526 if (sb_event == SB_THUMBTRACK)
4527 si.fMask = SIF_TRACKPOS | SIF_PAGE | SIF_RANGE;
4528 else
4529 si.fMask = SIF_POS | SIF_PAGE | SIF_RANGE;
4531 GetScrollInfo (w, SB_CTL, &si);
4532 if (sb_event == SB_THUMBTRACK)
4533 pos = si.nTrackPos;
4534 else
4535 pos = si.nPos;
4536 left_range = si.nMax - si.nPage + 1;
4538 *part = scroll_bar_handle;
4539 if (sb_event == SB_LINERIGHT)
4540 pos++;
4543 XSETINT (*y, pos);
4544 XSETINT (*x, left_range);
4546 f->mouse_moved = false;
4547 dpyinfo->last_mouse_scroll_bar = NULL;
4549 *time = dpyinfo->last_mouse_movement_time;
4551 unblock_input ();
4555 /* The screen has been cleared so we may have changed foreground or
4556 background colors, and the scroll bars may need to be redrawn.
4557 Clear out the scroll bars, and ask for expose events, so we can
4558 redraw them. */
4560 void
4561 x_scroll_bar_clear (struct frame *f)
4563 Lisp_Object bar;
4565 /* We can have scroll bars even if this is 0,
4566 if we just turned off scroll bar mode.
4567 But in that case we should not clear them. */
4568 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f)
4569 || FRAME_HAS_HORIZONTAL_SCROLL_BARS (f))
4570 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
4571 bar = XSCROLL_BAR (bar)->next)
4573 HWND window = SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar));
4574 HDC hdc = GetDC (window);
4575 RECT rect;
4577 /* Hide scroll bar until ready to repaint. x_scroll_bar_move
4578 arranges to refresh the scroll bar if hidden. */
4579 my_show_window (f, window, SW_HIDE);
4581 GetClientRect (window, &rect);
4582 select_palette (f, hdc);
4583 w32_clear_rect (f, hdc, &rect);
4584 x_clear_under_internal_border (f);
4585 deselect_palette (f, hdc);
4587 ReleaseDC (window, hdc);
4591 /* The main W32 event-reading loop - w32_read_socket. */
4593 /* Record the last 100 characters stored
4594 to help debug the loss-of-chars-during-GC problem. */
4596 static int temp_index;
4597 static short temp_buffer[100];
4599 /* Temporarily store lead byte of DBCS input sequences. */
4600 static char dbcs_lead = 0;
4602 /* Read events coming from the W32 shell.
4603 This routine is called by the SIGIO handler.
4604 We return as soon as there are no more events to be read.
4606 For an overview of how Emacs input works on MS-Windows, see the
4607 commentary before w32_msg_pump in w32fns.c.
4609 We return the number of characters stored into the buffer,
4610 thus pretending to be `read'.
4612 Some of these messages are reposted back to the message queue since the
4613 system calls the windows proc directly in a context where we cannot return
4614 the data nor can we guarantee the state we are in. So if we dispatch them
4615 we will get into an infinite loop. To prevent this from ever happening we
4616 will set a variable to indicate we are in the read_socket call and indicate
4617 which message we are processing since the windows proc gets called
4618 recursively with different messages by the system.
4621 extern void menubar_selection_callback (struct frame *, void *);
4623 static int
4624 w32_read_socket (struct terminal *terminal,
4625 struct input_event *hold_quit)
4627 int count = 0;
4628 int check_visibility = 0;
4629 W32Msg msg;
4630 struct frame *f;
4631 struct w32_display_info *dpyinfo = &one_w32_display_info;
4632 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
4634 block_input ();
4636 /* So people can tell when we have read the available input. */
4637 input_signal_count++;
4639 /* Process any incoming thread messages. */
4640 drain_message_queue ();
4642 /* TODO: ghostscript integration. */
4643 while (get_next_msg (&msg, FALSE))
4645 struct input_event inev;
4646 int do_help = 0;
4648 /* DebPrint (("w32_read_socket: %s time:%u\n", */
4649 /* w32_name_of_message (msg.msg.message), */
4650 /* msg.msg.time)); */
4652 EVENT_INIT (inev);
4653 inev.kind = NO_EVENT;
4654 inev.arg = Qnil;
4656 switch (msg.msg.message)
4658 case WM_EMACS_PAINT:
4659 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4661 if (f)
4663 if (msg.rect.right == msg.rect.left ||
4664 msg.rect.bottom == msg.rect.top)
4666 /* We may get paint messages even though the client
4667 area is clipped - these are not expose events. */
4668 DebPrint (("clipped frame %p (%s) got WM_PAINT - ignored\n", f,
4669 SDATA (f->name)));
4671 else if (FRAME_VISIBLE_P (f) != 1)
4673 bool iconified = FRAME_ICONIFIED_P (f);
4675 /* Definitely not obscured, so mark as visible. */
4676 SET_FRAME_VISIBLE (f, 1);
4677 SET_FRAME_ICONIFIED (f, false);
4678 SET_FRAME_GARBAGED (f);
4679 if (!f->output_data.w32->asked_for_visible)
4680 DebPrint (("frame %p (%s) reexposed by WM_PAINT\n", f,
4681 SDATA (f->name)));
4683 /* WM_PAINT serves as MapNotify as well, so report
4684 visibility changes properly. */
4685 if (iconified)
4687 inev.kind = DEICONIFY_EVENT;
4688 XSETFRAME (inev.frame_or_window, f);
4690 else if (!NILP (Vframe_list) && !NILP (XCDR (Vframe_list)))
4691 /* Force a redisplay sooner or later to update the
4692 frame titles in case this is the second frame. */
4693 record_asynch_buffer_change ();
4695 else
4697 /* Erase background again for safety. But don't do
4698 that if the frame's 'garbaged' flag is set, since
4699 in that case expose_frame will do nothing, and if
4700 the various redisplay flags happen to be unset,
4701 we are left with a blank frame. */
4702 if (!FRAME_GARBAGED_P (f) || FRAME_PARENT_FRAME (f))
4704 HDC hdc = get_frame_dc (f);
4706 w32_clear_rect (f, hdc, &msg.rect);
4707 release_frame_dc (f, hdc);
4709 expose_frame (f,
4710 msg.rect.left,
4711 msg.rect.top,
4712 msg.rect.right - msg.rect.left,
4713 msg.rect.bottom - msg.rect.top);
4714 x_clear_under_internal_border (f);
4717 break;
4719 case WM_INPUTLANGCHANGE:
4720 /* Generate a language change event. */
4721 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4723 /* lParam contains the input language ID in its low 16 bits.
4724 Use it to update our record of the keyboard codepage. */
4725 w32_keyboard_codepage = codepage_for_locale ((LCID)(msg.msg.lParam
4726 & 0xffff));
4728 if (f)
4730 inev.kind = LANGUAGE_CHANGE_EVENT;
4731 XSETFRAME (inev.frame_or_window, f);
4732 inev.code = w32_keyboard_codepage;
4733 inev.modifiers = msg.msg.lParam & 0xffff;
4735 break;
4737 case WM_KEYDOWN:
4738 case WM_SYSKEYDOWN:
4739 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4741 if (f && !FRAME_ICONIFIED_P (f))
4743 if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
4744 && !EQ (f->tool_bar_window, hlinfo->mouse_face_window))
4746 clear_mouse_face (hlinfo);
4747 hlinfo->mouse_face_hidden = true;
4750 if (temp_index == sizeof temp_buffer / sizeof (short))
4751 temp_index = 0;
4752 temp_buffer[temp_index++] = msg.msg.wParam;
4753 inev.kind = NON_ASCII_KEYSTROKE_EVENT;
4754 inev.code = msg.msg.wParam;
4755 inev.modifiers = msg.dwModifiers;
4756 XSETFRAME (inev.frame_or_window, f);
4757 inev.timestamp = msg.msg.time;
4759 break;
4761 case WM_UNICHAR:
4762 case WM_SYSCHAR:
4763 case WM_CHAR:
4764 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4766 if (f && !FRAME_ICONIFIED_P (f))
4768 if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
4769 && !EQ (f->tool_bar_window, hlinfo->mouse_face_window))
4771 clear_mouse_face (hlinfo);
4772 hlinfo->mouse_face_hidden = true;
4775 if (temp_index == sizeof temp_buffer / sizeof (short))
4776 temp_index = 0;
4777 temp_buffer[temp_index++] = msg.msg.wParam;
4779 inev.modifiers = msg.dwModifiers;
4780 XSETFRAME (inev.frame_or_window, f);
4781 inev.timestamp = msg.msg.time;
4783 if (msg.msg.message == WM_UNICHAR)
4785 inev.code = msg.msg.wParam;
4787 else if (msg.msg.wParam < 256)
4789 wchar_t code;
4790 char dbcs[2];
4791 dbcs[0] = 0;
4792 dbcs[1] = (char) msg.msg.wParam;
4794 if (dbcs_lead)
4796 dbcs[0] = dbcs_lead;
4797 dbcs_lead = 0;
4798 if (!MultiByteToWideChar (w32_keyboard_codepage, 0,
4799 dbcs, 2, &code, 1))
4801 /* Garbage */
4802 DebPrint (("Invalid DBCS sequence: %d %d\n",
4803 dbcs[0], dbcs[1]));
4804 inev.kind = NO_EVENT;
4805 break;
4808 else if (IsDBCSLeadByteEx (w32_keyboard_codepage,
4809 (BYTE) msg.msg.wParam))
4811 dbcs_lead = (char) msg.msg.wParam;
4812 inev.kind = NO_EVENT;
4813 break;
4815 else
4817 if (!MultiByteToWideChar (w32_keyboard_codepage, 0,
4818 &dbcs[1], 1, &code, 1))
4820 /* What to do with garbage? */
4821 DebPrint (("Invalid character: %d\n", dbcs[1]));
4822 inev.kind = NO_EVENT;
4823 break;
4826 inev.code = code;
4828 else
4830 /* Windows shouldn't generate WM_CHAR events above 0xFF
4831 in non-Unicode message handlers. */
4832 DebPrint (("Non-byte WM_CHAR: %d\n", msg.msg.wParam));
4833 inev.kind = NO_EVENT;
4834 break;
4836 inev.kind = inev.code < 128 ? ASCII_KEYSTROKE_EVENT
4837 : MULTIBYTE_CHAR_KEYSTROKE_EVENT;
4839 break;
4841 case WM_APPCOMMAND:
4842 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4844 if (f && !FRAME_ICONIFIED_P (f))
4846 if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
4847 && !EQ (f->tool_bar_window, hlinfo->mouse_face_window))
4849 clear_mouse_face (hlinfo);
4850 hlinfo->mouse_face_hidden = true;
4853 if (temp_index == sizeof temp_buffer / sizeof (short))
4854 temp_index = 0;
4855 temp_buffer[temp_index++] = msg.msg.wParam;
4856 inev.kind = MULTIMEDIA_KEY_EVENT;
4857 inev.code = GET_APPCOMMAND_LPARAM (msg.msg.lParam);
4858 inev.modifiers = msg.dwModifiers;
4859 XSETFRAME (inev.frame_or_window, f);
4860 inev.timestamp = msg.msg.time;
4862 break;
4864 case WM_MOUSEMOVE:
4865 /* Ignore non-movement. */
4867 int x = LOWORD (msg.msg.lParam);
4868 int y = HIWORD (msg.msg.lParam);
4869 if (x == last_mousemove_x && y == last_mousemove_y)
4870 break;
4871 last_mousemove_x = x;
4872 last_mousemove_y = y;
4875 previous_help_echo_string = help_echo_string;
4876 help_echo_string = Qnil;
4878 f = (x_mouse_grabbed (dpyinfo) ? dpyinfo->last_mouse_frame
4879 : x_window_to_frame (dpyinfo, msg.msg.hwnd));
4881 if (hlinfo->mouse_face_hidden)
4883 hlinfo->mouse_face_hidden = false;
4884 clear_mouse_face (hlinfo);
4887 if (f)
4889 /* Maybe generate SELECT_WINDOW_EVENTs for
4890 `mouse-autoselect-window'. */
4891 if (!NILP (Vmouse_autoselect_window)
4892 && (f == XFRAME (selected_frame)
4893 /* Switch to f from another frame iff
4894 focus_follows_mouse is set and f accepts
4895 focus. */
4896 || (!NILP (focus_follows_mouse)
4897 && !FRAME_NO_ACCEPT_FOCUS (f))))
4899 static Lisp_Object last_mouse_window;
4900 Lisp_Object window = window_from_coordinates
4901 (f, LOWORD (msg.msg.lParam), HIWORD (msg.msg.lParam), 0, 0);
4903 /* Window will be selected only when it is not
4904 selected now and last mouse movement event was
4905 not in it. Minibuffer window will be selected
4906 only when it is active. */
4907 if (WINDOWP (window)
4908 && !EQ (window, last_mouse_window)
4909 && !EQ (window, selected_window))
4911 inev.kind = SELECT_WINDOW_EVENT;
4912 inev.frame_or_window = window;
4915 /* Remember the last window where we saw the mouse. */
4916 last_mouse_window = window;
4919 if (!note_mouse_movement (f, &msg.msg))
4920 help_echo_string = previous_help_echo_string;
4922 else
4924 /* If we move outside the frame, then we're
4925 certainly no longer on any text in the frame. */
4926 clear_mouse_face (hlinfo);
4929 /* If the contents of the global variable help_echo_string
4930 has changed, generate a HELP_EVENT. */
4931 #if 0 /* The below is an invalid comparison when CHECK_LISP_OBJECT_TYPE.
4932 But it was originally changed to this to fix a bug, so I have
4933 not removed it completely in case the bug is still there. */
4934 if (help_echo_string != previous_help_echo_string ||
4935 (!NILP (help_echo_string) && !STRINGP (help_echo_string) && f->mouse_moved))
4936 #else /* This is what xterm.c does. */
4937 if (!NILP (help_echo_string)
4938 || !NILP (previous_help_echo_string))
4939 do_help = 1;
4940 #endif
4941 break;
4943 case WM_LBUTTONDOWN:
4944 case WM_LBUTTONUP:
4945 case WM_MBUTTONDOWN:
4946 case WM_MBUTTONUP:
4947 case WM_RBUTTONDOWN:
4948 case WM_RBUTTONUP:
4949 case WM_XBUTTONDOWN:
4950 case WM_XBUTTONUP:
4952 /* If we decide we want to generate an event to be seen
4953 by the rest of Emacs, we put it here. */
4954 bool tool_bar_p = 0;
4955 int button;
4956 int up;
4958 f = (x_mouse_grabbed (dpyinfo) ? dpyinfo->last_mouse_frame
4959 : x_window_to_frame (dpyinfo, msg.msg.hwnd));
4961 if (f)
4963 construct_mouse_click (&inev, &msg, f);
4965 /* Is this in the tool-bar? */
4966 if (WINDOWP (f->tool_bar_window)
4967 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)))
4969 Lisp_Object window;
4970 int x = XFASTINT (inev.x);
4971 int y = XFASTINT (inev.y);
4973 window = window_from_coordinates (f, x, y, 0, 1);
4975 if (EQ (window, f->tool_bar_window))
4977 w32_handle_tool_bar_click (f, &inev);
4978 tool_bar_p = 1;
4982 if (tool_bar_p
4983 || (dpyinfo->w32_focus_frame
4984 && f != dpyinfo->w32_focus_frame
4985 /* This does not help when the click happens in
4986 a grand-parent frame. */
4987 && !frame_ancestor_p (f, dpyinfo->w32_focus_frame)))
4988 inev.kind = NO_EVENT;
4991 parse_button (msg.msg.message, HIWORD (msg.msg.wParam),
4992 &button, &up);
4994 if (up)
4996 dpyinfo->grabbed &= ~ (1 << button);
4998 else
5000 dpyinfo->grabbed |= (1 << button);
5001 dpyinfo->last_mouse_frame = f;
5002 /* Ignore any mouse motion that happened
5003 before this event; any subsequent mouse-movement
5004 Emacs events should reflect only motion after
5005 the ButtonPress. */
5006 if (f != 0)
5008 f->mouse_moved = false;
5009 if (!tool_bar_p)
5010 f->last_tool_bar_item = -1;
5013 break;
5016 case WM_MOUSEWHEEL:
5017 case WM_MOUSEHWHEEL:
5019 f = (x_mouse_grabbed (dpyinfo) ? dpyinfo->last_mouse_frame
5020 : x_window_to_frame (dpyinfo, msg.msg.hwnd));
5022 if (f)
5024 if (!dpyinfo->w32_focus_frame
5025 || f == dpyinfo->w32_focus_frame)
5026 /* Emit an Emacs wheel-up/down event. */
5028 construct_mouse_wheel (&inev, &msg, f);
5030 /* Ignore any mouse motion that happened before this
5031 event; any subsequent mouse-movement Emacs events
5032 should reflect only motion after the ButtonPress. */
5033 f->mouse_moved = false;
5034 f->last_tool_bar_item = -1;
5035 dpyinfo->last_mouse_frame = f;
5037 else if (FRAME_NO_ACCEPT_FOCUS (f)
5038 && !x_mouse_grabbed (dpyinfo))
5040 Lisp_Object frame1 = get_frame_param (f, Qmouse_wheel_frame);
5041 struct frame *f1 = FRAMEP (frame1) ? XFRAME (frame1) : NULL;
5043 if (f1 && FRAME_LIVE_P (f1) && FRAME_W32_P (f1))
5045 construct_mouse_wheel (&inev, &msg, f1);
5046 f1->mouse_moved = false;
5047 f1->last_tool_bar_item = -1;
5048 dpyinfo->last_mouse_frame = f1;
5050 else
5051 dpyinfo->last_mouse_frame = f;
5053 else
5054 dpyinfo->last_mouse_frame = f;
5056 else
5057 dpyinfo->last_mouse_frame = f;
5059 break;
5061 case WM_DROPFILES:
5062 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
5064 if (f)
5065 construct_drag_n_drop (&inev, &msg, f);
5066 break;
5068 case WM_HSCROLL:
5070 struct scroll_bar *bar =
5071 x_window_to_scroll_bar ((HWND)msg.msg.lParam, 1);
5073 if (bar)
5074 w32_horizontal_scroll_bar_handle_click (bar, &msg, &inev);
5075 break;
5078 case WM_VSCROLL:
5080 struct scroll_bar *bar =
5081 x_window_to_scroll_bar ((HWND)msg.msg.lParam, 0);
5083 if (bar)
5084 w32_scroll_bar_handle_click (bar, &msg, &inev);
5085 break;
5088 case WM_WINDOWPOSCHANGED:
5089 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
5091 if (f)
5093 RECT rect;
5094 int /* rows, columns, */ width, height, text_width, text_height;
5096 if (GetClientRect (msg.msg.hwnd, &rect)
5097 /* GetClientRect evidently returns (0, 0, 0, 0) if
5098 called on a minimized frame. Such "dimensions"
5099 aren't useful anyway. */
5100 && !(rect.bottom == 0
5101 && rect.top == 0
5102 && rect.left == 0
5103 && rect.right == 0))
5105 height = rect.bottom - rect.top;
5106 width = rect.right - rect.left;
5107 text_width = FRAME_PIXEL_TO_TEXT_WIDTH (f, width);
5108 text_height = FRAME_PIXEL_TO_TEXT_HEIGHT (f, height);
5109 /* rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, height); */
5110 /* columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, width); */
5112 /* TODO: Clip size to the screen dimensions. */
5114 /* Even if the number of character rows and columns
5115 has not changed, the font size may have changed,
5116 so we need to check the pixel dimensions as well. */
5118 if (width != FRAME_PIXEL_WIDTH (f)
5119 || height != FRAME_PIXEL_HEIGHT (f)
5120 || text_width != FRAME_TEXT_WIDTH (f)
5121 || text_height != FRAME_TEXT_HEIGHT (f))
5123 change_frame_size (f, text_width, text_height, 0, 1, 0, 1);
5124 SET_FRAME_GARBAGED (f);
5125 cancel_mouse_face (f);
5126 f->win_gravity = NorthWestGravity;
5131 check_visibility = 1;
5132 break;
5134 case WM_ACTIVATE:
5135 case WM_ACTIVATEAPP:
5136 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
5137 if (f)
5139 /* Run the full-screen hook function also when we are
5140 being activated, to actually install the required
5141 size in effect, if the WAIT flag is set. This is
5142 because when the hook is run from x_set_fullscreen,
5143 the frame might not yet be visible, if that call is a
5144 result of make-frame, and in that case the hook just
5145 sets the WAIT flag. */
5146 if ((msg.msg.message == WM_WINDOWPOSCHANGED || msg.msg.wParam)
5147 && (f->want_fullscreen & FULLSCREEN_WAIT))
5149 /* Must set visibility right here since otherwise
5150 w32fullscreen_hook returns immediately. */
5151 SET_FRAME_VISIBLE (f, 1);
5152 w32fullscreen_hook (f);
5156 check_visibility = 1;
5157 break;
5159 case WM_MOVE:
5160 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
5162 if (f && FRAME_VISIBLE_P (f) && !FRAME_ICONIFIED_P(f))
5164 x_real_positions (f, &f->left_pos, &f->top_pos);
5165 inev.kind = MOVE_FRAME_EVENT;
5166 XSETFRAME (inev.frame_or_window, f);
5169 check_visibility = 1;
5170 break;
5172 case WM_SHOWWINDOW:
5173 /* wParam non-zero means Window is about to be shown, 0 means
5174 about to be hidden. */
5175 /* Redo the mouse-highlight after the tooltip has gone. */
5176 if (!msg.msg.wParam && msg.msg.hwnd == tip_window)
5178 tip_window = NULL;
5179 x_redo_mouse_highlight (dpyinfo);
5182 /* If window has been obscured or exposed by another window
5183 being maximized or minimized/restored, then recheck
5184 visibility of all frames. Direct changes to our own
5185 windows get handled by WM_SIZE. */
5186 #if 0
5187 if (msg.msg.lParam != 0)
5188 check_visibility = 1;
5189 else
5191 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
5192 f->async_visible = msg.msg.wParam;
5194 #endif
5196 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
5197 if (f)
5198 x_clear_under_internal_border (f);
5200 check_visibility = 1;
5201 break;
5203 case WM_SIZE:
5204 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
5206 /* Inform lisp of whether frame has been iconified etc. */
5207 if (f)
5209 switch (msg.msg.wParam)
5211 case SIZE_MINIMIZED:
5212 SET_FRAME_VISIBLE (f, 0);
5213 SET_FRAME_ICONIFIED (f, true);
5215 inev.kind = ICONIFY_EVENT;
5216 XSETFRAME (inev.frame_or_window, f);
5217 break;
5219 case SIZE_MAXIMIZED:
5221 bool iconified = FRAME_ICONIFIED_P (f);
5222 Lisp_Object fullscreen = get_frame_param (f, Qfullscreen);
5224 SET_FRAME_VISIBLE (f, 1);
5225 SET_FRAME_ICONIFIED (f, false);
5227 /* wait_reading_process_output will notice this
5228 and update the frame's display structures. */
5229 SET_FRAME_GARBAGED (f);
5231 if (iconified)
5233 int x, y;
5235 /* Reset top and left positions of the Window
5236 here since Windows sends a WM_MOVE message
5237 BEFORE telling us the Window is minimized
5238 when the Window is iconified, with 3000,3000
5239 as the co-ords. */
5240 x_real_positions (f, &x, &y);
5241 f->left_pos = x;
5242 f->top_pos = y;
5244 inev.kind = DEICONIFY_EVENT;
5245 XSETFRAME (inev.frame_or_window, f);
5247 else if (! NILP (Vframe_list)
5248 && ! NILP (XCDR (Vframe_list)))
5249 /* Force a redisplay sooner or later
5250 to update the frame titles
5251 in case this is the second frame. */
5252 record_asynch_buffer_change ();
5254 /* Windows can send us a SIZE_MAXIMIZED message even
5255 when fullscreen is fullboth. The following is a
5256 simple hack to check that based on the fact that
5257 only a maximized fullscreen frame should have both
5258 top/left outside the screen. */
5259 if (EQ (fullscreen, Qfullwidth) || EQ (fullscreen, Qfullheight)
5260 || NILP (fullscreen))
5262 int x, y;
5264 x_real_positions (f, &x, &y);
5265 if (x < 0 && y < 0)
5266 store_frame_param (f, Qfullscreen, Qmaximized);
5270 break;
5272 case SIZE_RESTORED:
5274 bool iconified = FRAME_ICONIFIED_P (f);
5276 /* The following was made unconditional in a
5277 pathetic attempt to fix bug#16967 in revision
5278 116716 but, considered counterproductive was made
5279 conditional again in revision 116727. martin */
5280 if (iconified)
5281 SET_FRAME_VISIBLE (f, 1);
5282 SET_FRAME_ICONIFIED (f, false);
5284 /* wait_reading_process_output will notice this
5285 and update the frame's display structures. */
5286 SET_FRAME_GARBAGED (f);
5288 if (iconified)
5290 /* Reset top and left positions of the Window
5291 here since Windows sends a WM_MOVE message
5292 BEFORE telling us the Window is minimized
5293 when the Window is iconified, with 3000,3000
5294 as the co-ords. */
5295 x_real_positions (f, &f->left_pos, &f->top_pos);
5297 inev.kind = DEICONIFY_EVENT;
5298 XSETFRAME (inev.frame_or_window, f);
5300 else if (! NILP (Vframe_list)
5301 && ! NILP (XCDR (Vframe_list)))
5302 /* Force a redisplay sooner or later
5303 to update the frame titles
5304 in case this is the second frame. */
5305 record_asynch_buffer_change ();
5308 if (EQ (get_frame_param (f, Qfullscreen), Qmaximized))
5309 store_frame_param (f, Qfullscreen, Qnil);
5311 break;
5315 if (f && !FRAME_ICONIFIED_P (f) && msg.msg.wParam != SIZE_MINIMIZED)
5317 RECT rect;
5318 int /* rows, columns, */ width, height, text_width, text_height;
5320 if (GetClientRect (msg.msg.hwnd, &rect)
5321 /* GetClientRect evidently returns (0, 0, 0, 0) if
5322 called on a minimized frame. Such "dimensions"
5323 aren't useful anyway. */
5324 && !(rect.bottom == 0
5325 && rect.top == 0
5326 && rect.left == 0
5327 && rect.right == 0))
5329 height = rect.bottom - rect.top;
5330 width = rect.right - rect.left;
5331 text_width = FRAME_PIXEL_TO_TEXT_WIDTH (f, width);
5332 text_height = FRAME_PIXEL_TO_TEXT_HEIGHT (f, height);
5333 /* rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, height); */
5334 /* columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, width); */
5336 /* TODO: Clip size to the screen dimensions. */
5338 /* Even if the number of character rows and columns
5339 has not changed, the font size may have changed,
5340 so we need to check the pixel dimensions as well. */
5342 if (width != FRAME_PIXEL_WIDTH (f)
5343 || height != FRAME_PIXEL_HEIGHT (f)
5344 || text_width != FRAME_TEXT_WIDTH (f)
5345 || text_height != FRAME_TEXT_HEIGHT (f))
5347 change_frame_size (f, text_width, text_height, 0, 1, 0, 1);
5348 SET_FRAME_GARBAGED (f);
5349 cancel_mouse_face (f);
5350 f->win_gravity = NorthWestGravity;
5355 check_visibility = 1;
5356 break;
5358 case WM_MOUSELEAVE:
5359 f = x_any_window_to_frame (dpyinfo, msg.msg.hwnd);
5360 if (f)
5362 if (f == hlinfo->mouse_face_mouse_frame)
5364 /* If we move outside the frame, then we're
5365 certainly no longer on any text in the frame. */
5366 clear_mouse_face (hlinfo);
5367 hlinfo->mouse_face_mouse_frame = 0;
5370 /* Generate a nil HELP_EVENT to cancel a help-echo.
5371 Do it only if there's something to cancel.
5372 Otherwise, the startup message is cleared when
5373 the mouse leaves the frame. */
5374 if (any_help_event_p)
5375 do_help = -1;
5377 break;
5379 case WM_SETFOCUS:
5380 w32_detect_focus_change (dpyinfo, &msg, &inev);
5382 dpyinfo->grabbed = 0;
5383 check_visibility = 1;
5384 break;
5386 case WM_KILLFOCUS:
5387 w32_detect_focus_change (dpyinfo, &msg, &inev);
5388 f = x_top_window_to_frame (dpyinfo, msg.msg.hwnd);
5390 if (f)
5392 if (f == hlinfo->mouse_face_mouse_frame)
5394 /* If we move outside the frame, then we're
5395 certainly no longer on any text in the frame. */
5396 clear_mouse_face (hlinfo);
5397 hlinfo->mouse_face_mouse_frame = 0;
5400 /* Generate a nil HELP_EVENT to cancel a help-echo.
5401 Do it only if there's something to cancel.
5402 Otherwise, the startup message is cleared when
5403 the mouse leaves the frame. */
5404 if (any_help_event_p)
5405 do_help = -1;
5408 dpyinfo->grabbed = 0;
5409 check_visibility = 1;
5410 break;
5412 case WM_CLOSE:
5413 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
5415 if (f)
5417 inev.kind = DELETE_WINDOW_EVENT;
5418 XSETFRAME (inev.frame_or_window, f);
5420 break;
5422 case WM_ENDSESSION:
5423 inev.kind = END_SESSION_EVENT;
5424 break;
5426 case WM_INITMENU:
5427 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
5429 if (f)
5431 inev.kind = MENU_BAR_ACTIVATE_EVENT;
5432 XSETFRAME (inev.frame_or_window, f);
5434 break;
5436 case WM_COMMAND:
5437 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
5439 if (f)
5441 menubar_selection_callback (f, (void *)msg.msg.wParam);
5444 check_visibility = 1;
5445 break;
5447 case WM_DISPLAYCHANGE:
5448 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
5450 if (f)
5452 Lisp_Object fullscreen = get_frame_param (f, Qfullscreen);
5454 dpyinfo->n_cbits = msg.msg.wParam;
5455 /* The new display could have a different resolution, in
5456 which case we must reconsider what fullscreen means.
5457 The following code is untested yet. */
5458 if (!NILP (fullscreen))
5460 x_set_fullscreen (f, fullscreen, fullscreen);
5461 w32fullscreen_hook (f);
5464 DebPrint (("display change: %d %d\n",
5465 (short) LOWORD (msg.msg.lParam),
5466 (short) HIWORD (msg.msg.lParam)));
5469 check_visibility = 1;
5470 break;
5472 #if HAVE_W32NOTIFY
5473 case WM_EMACS_FILENOTIFY:
5474 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
5475 if (f)
5476 queue_notifications (&inev, &msg, f, &count);
5477 break;
5478 #endif
5480 default:
5481 /* Check for messages registered at runtime. */
5482 if (msg.msg.message == msh_mousewheel)
5484 /* Forward MSH_MOUSEWHEEL as WM_MOUSEWHEEL. */
5485 msg.msg.message = WM_MOUSEWHEEL;
5486 prepend_msg (&msg);
5488 break;
5491 if (inev.kind != NO_EVENT)
5493 kbd_buffer_store_event_hold (&inev, hold_quit);
5494 count++;
5497 if (do_help
5498 && !(hold_quit && hold_quit->kind != NO_EVENT))
5500 Lisp_Object frame;
5502 if (f)
5503 XSETFRAME (frame, f);
5504 else
5505 frame = Qnil;
5507 if (do_help > 0)
5509 if (NILP (help_echo_string))
5511 help_echo_object = help_echo_window = Qnil;
5512 help_echo_pos = -1;
5515 any_help_event_p = 1;
5516 gen_help_event (help_echo_string, frame, help_echo_window,
5517 help_echo_object, help_echo_pos);
5519 else
5521 help_echo_string = Qnil;
5522 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
5524 count++;
5528 /* If the focus was just given to an autoraising frame,
5529 raise it now. FIXME: handle more than one such frame. */
5530 if (dpyinfo->w32_pending_autoraise_frame)
5532 x_raise_frame (dpyinfo->w32_pending_autoraise_frame);
5533 dpyinfo->w32_pending_autoraise_frame = NULL;
5536 /* Check which frames are still visible, if we have enqueued any user
5537 events or been notified of events that may affect visibility. We
5538 do this here because there doesn't seem to be any direct
5539 notification from Windows that the visibility of a window has
5540 changed (at least, not in all cases). */
5541 if (count > 0 || check_visibility)
5543 Lisp_Object tail, frame;
5545 FOR_EACH_FRAME (tail, frame)
5547 struct frame *f = XFRAME (frame);
5548 /* The tooltip has been drawn already. Avoid the
5549 SET_FRAME_GARBAGED below. */
5550 if (EQ (frame, tip_frame))
5551 continue;
5553 /* Check "visible" frames and mark each as obscured or not.
5554 Note that visible is nonzero for unobscured and obscured
5555 frames, but zero for hidden and iconified frames. */
5556 if (FRAME_W32_P (f) && FRAME_VISIBLE_P (f))
5558 RECT clipbox;
5559 HDC hdc;
5560 bool obscured;
5562 enter_crit ();
5563 /* Query clipping rectangle for the entire window area
5564 (GetWindowDC), not just the client portion (GetDC).
5565 Otherwise, the scrollbars and menubar aren't counted as
5566 part of the visible area of the frame, and we may think
5567 the frame is obscured when really a scrollbar is still
5568 visible and gets WM_PAINT messages above. */
5569 hdc = GetWindowDC (FRAME_W32_WINDOW (f));
5570 GetClipBox (hdc, &clipbox);
5571 ReleaseDC (FRAME_W32_WINDOW (f), hdc);
5572 leave_crit ();
5574 obscured = FRAME_OBSCURED_P (f);
5576 if (clipbox.right == clipbox.left || clipbox.bottom == clipbox.top)
5578 /* Frame has become completely obscured so mark as such (we
5579 do this by setting visible to 2 so that FRAME_VISIBLE_P
5580 is still true, but redisplay will skip it). */
5581 SET_FRAME_VISIBLE (f, 2);
5583 if (!obscured)
5584 DebPrint (("frame %p (%s) obscured\n", f, SDATA (f->name)));
5586 else
5588 /* Frame is not obscured, so mark it as such. */
5589 SET_FRAME_VISIBLE (f, 1);
5591 if (obscured)
5593 SET_FRAME_GARBAGED (f);
5594 DebPrint (("obscured frame %p (%s) found to be visible\n",
5595 f, SDATA (f->name)));
5597 /* Force a redisplay sooner or later. */
5598 record_asynch_buffer_change ();
5605 unblock_input ();
5606 return count;
5611 /***********************************************************************
5612 Text Cursor
5613 ***********************************************************************/
5615 /* Set clipping for output in glyph row ROW. W is the window in which
5616 we operate. GC is the graphics context to set clipping in.
5618 ROW may be a text row or, e.g., a mode line. Text rows must be
5619 clipped to the interior of the window dedicated to text display,
5620 mode lines must be clipped to the whole window. */
5622 static void
5623 w32_clip_to_row (struct window *w, struct glyph_row *row,
5624 enum glyph_row_area area, HDC hdc)
5626 RECT clip_rect;
5627 int window_x, window_y, window_width;
5629 window_box (w, area, &window_x, &window_y, &window_width, 0);
5631 clip_rect.left = window_x;
5632 clip_rect.top = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
5633 clip_rect.top = max (clip_rect.top, window_y);
5634 clip_rect.right = clip_rect.left + window_width;
5635 clip_rect.bottom = clip_rect.top + row->visible_height;
5637 w32_set_clip_rectangle (hdc, &clip_rect);
5641 /* Draw a hollow box cursor on window W in glyph row ROW. */
5643 static void
5644 x_draw_hollow_cursor (struct window *w, struct glyph_row *row)
5646 struct frame *f = XFRAME (WINDOW_FRAME (w));
5647 HDC hdc;
5648 RECT rect;
5649 int left, top, h;
5650 struct glyph *cursor_glyph;
5651 HBRUSH hb = CreateSolidBrush (f->output_data.w32->cursor_pixel);
5653 /* Get the glyph the cursor is on. If we can't tell because
5654 the current matrix is invalid or such, give up. */
5655 cursor_glyph = get_phys_cursor_glyph (w);
5656 if (cursor_glyph == NULL)
5658 DeleteObject (hb);
5659 return;
5662 /* Compute frame-relative coordinates for phys cursor. */
5663 get_phys_cursor_geometry (w, row, cursor_glyph, &left, &top, &h);
5664 rect.left = left;
5665 /* When on R2L character, show cursor at the right edge of the
5666 glyph, unless the cursor box is as wide as the glyph or wider
5667 (the latter happens when x-stretch-cursor is non-nil). */
5668 if ((cursor_glyph->resolved_level & 1) != 0
5669 && cursor_glyph->pixel_width > w->phys_cursor_width)
5670 rect.left += cursor_glyph->pixel_width - w->phys_cursor_width;
5671 rect.top = top;
5672 rect.bottom = rect.top + h;
5673 rect.right = rect.left + w->phys_cursor_width;
5675 hdc = get_frame_dc (f);
5676 /* Set clipping, draw the rectangle, and reset clipping again. */
5677 w32_clip_to_row (w, row, TEXT_AREA, hdc);
5678 FrameRect (hdc, &rect, hb);
5679 DeleteObject (hb);
5680 w32_set_clip_rectangle (hdc, NULL);
5681 release_frame_dc (f, hdc);
5685 /* Draw a bar cursor on window W in glyph row ROW.
5687 Implementation note: One would like to draw a bar cursor with an
5688 angle equal to the one given by the font property XA_ITALIC_ANGLE.
5689 Unfortunately, I didn't find a font yet that has this property set.
5690 --gerd. */
5692 static void
5693 x_draw_bar_cursor (struct window *w, struct glyph_row *row,
5694 int width, enum text_cursor_kinds kind)
5696 struct frame *f = XFRAME (w->frame);
5697 struct glyph *cursor_glyph;
5699 /* If cursor is out of bounds, don't draw garbage. This can happen
5700 in mini-buffer windows when switching between echo area glyphs
5701 and mini-buffer. */
5702 cursor_glyph = get_phys_cursor_glyph (w);
5703 if (cursor_glyph == NULL)
5704 return;
5706 /* If on an image, draw like a normal cursor. That's usually better
5707 visible than drawing a bar, esp. if the image is large so that
5708 the bar might not be in the window. */
5709 if (cursor_glyph->type == IMAGE_GLYPH)
5711 struct glyph_row *row;
5712 row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
5713 draw_phys_cursor_glyph (w, row, DRAW_CURSOR);
5715 else
5717 COLORREF cursor_color = f->output_data.w32->cursor_pixel;
5718 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
5719 int x;
5720 HDC hdc;
5722 /* If the glyph's background equals the color we normally draw
5723 the bar cursor in, the bar cursor in its normal color is
5724 invisible. Use the glyph's foreground color instead in this
5725 case, on the assumption that the glyph's colors are chosen so
5726 that the glyph is legible. */
5727 if (face->background == cursor_color)
5728 cursor_color = face->foreground;
5730 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
5732 hdc = get_frame_dc (f);
5733 w32_clip_to_row (w, row, TEXT_AREA, hdc);
5735 if (kind == BAR_CURSOR)
5737 if (width < 0)
5738 width = FRAME_CURSOR_WIDTH (f);
5739 width = min (cursor_glyph->pixel_width, width);
5741 w->phys_cursor_width = width;
5743 /* If the character under cursor is R2L, draw the bar cursor
5744 on the right of its glyph, rather than on the left. */
5745 if ((cursor_glyph->resolved_level & 1) != 0)
5746 x += cursor_glyph->pixel_width - width;
5748 w32_fill_area (f, hdc, cursor_color, x,
5749 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
5750 width, row->height);
5752 else /* HBAR_CURSOR */
5754 int dummy_x, dummy_y, dummy_h;
5756 if (width < 0)
5757 width = row->height;
5759 width = min (row->height, width);
5761 get_phys_cursor_geometry (w, row, cursor_glyph, &dummy_x,
5762 &dummy_y, &dummy_h);
5763 if ((cursor_glyph->resolved_level & 1) != 0
5764 && cursor_glyph->pixel_width > w->phys_cursor_width)
5765 x += cursor_glyph->pixel_width - w->phys_cursor_width;
5766 w32_fill_area (f, hdc, cursor_color, x,
5767 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
5768 row->height - width),
5769 w->phys_cursor_width, width);
5772 w32_set_clip_rectangle (hdc, NULL);
5773 release_frame_dc (f, hdc);
5778 /* RIF: Define cursor CURSOR on frame F. */
5780 static void
5781 w32_define_frame_cursor (struct frame *f, Cursor cursor)
5783 w32_define_cursor (FRAME_W32_WINDOW (f), cursor);
5787 /* RIF: Clear area on frame F. */
5789 static void
5790 w32_clear_frame_area (struct frame *f, int x, int y, int width, int height)
5792 HDC hdc;
5794 hdc = get_frame_dc (f);
5795 w32_clear_area (f, hdc, x, y, width, height);
5796 release_frame_dc (f, hdc);
5799 /* RIF: Draw or clear cursor on window W. */
5801 static void
5802 w32_draw_window_cursor (struct window *w, struct glyph_row *glyph_row,
5803 int x, int y, enum text_cursor_kinds cursor_type,
5804 int cursor_width, bool on_p, bool active_p)
5806 if (on_p)
5808 /* If the user wants to use the system caret, make sure our own
5809 cursor remains invisible. */
5810 if (w32_use_visible_system_caret)
5812 /* Call to erase_phys_cursor here seems to use the
5813 wrong values of w->phys_cursor, as they have been
5814 overwritten before this function was called. */
5815 if (w->phys_cursor_type != NO_CURSOR)
5816 erase_phys_cursor (w);
5818 cursor_type = w->phys_cursor_type = NO_CURSOR;
5819 w->phys_cursor_width = -1;
5821 else
5823 w->phys_cursor_type = cursor_type;
5826 w->phys_cursor_on_p = true;
5828 /* If this is the active cursor, we need to track it with the
5829 system caret, so third party software like screen magnifiers
5830 and speech synthesizers can follow the cursor. */
5831 if (active_p)
5833 struct frame *f = XFRAME (WINDOW_FRAME (w));
5834 HWND hwnd = FRAME_W32_WINDOW (f);
5836 w32_system_caret_x
5837 = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
5838 w32_system_caret_y
5839 = (WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y)
5840 + glyph_row->ascent - w->phys_cursor_ascent);
5841 w32_system_caret_window = w;
5842 w32_system_caret_hdr_height = WINDOW_HEADER_LINE_HEIGHT (w);
5843 w32_system_caret_mode_height = WINDOW_MODE_LINE_HEIGHT (w);
5845 PostMessage (hwnd, WM_IME_STARTCOMPOSITION, 0, 0);
5847 /* If the size of the active cursor changed, destroy the old
5848 system caret. */
5849 if (w32_system_caret_hwnd
5850 && (w32_system_caret_height != w->phys_cursor_height))
5851 PostMessage (hwnd, WM_EMACS_DESTROY_CARET, 0, 0);
5853 w32_system_caret_height = w->phys_cursor_height;
5855 /* Move the system caret. */
5856 PostMessage (hwnd, WM_EMACS_TRACK_CARET, 0, 0);
5859 if (glyph_row->exact_window_width_line_p
5860 && (glyph_row->reversed_p
5861 ? (w->phys_cursor.hpos < 0)
5862 : (w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])))
5864 glyph_row->cursor_in_fringe_p = true;
5865 draw_fringe_bitmap (w, glyph_row, glyph_row->reversed_p);
5866 return;
5869 switch (cursor_type)
5871 case HOLLOW_BOX_CURSOR:
5872 x_draw_hollow_cursor (w, glyph_row);
5873 break;
5875 case FILLED_BOX_CURSOR:
5876 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
5877 break;
5879 case BAR_CURSOR:
5880 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
5881 break;
5883 case HBAR_CURSOR:
5884 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
5885 break;
5887 case NO_CURSOR:
5888 w->phys_cursor_width = 0;
5889 break;
5891 default:
5892 emacs_abort ();
5899 /* Icons. */
5901 bool
5902 x_bitmap_icon (struct frame *f, Lisp_Object icon)
5904 HANDLE main_icon;
5905 HANDLE small_icon = NULL;
5907 if (FRAME_W32_WINDOW (f) == 0)
5908 return 1;
5910 if (NILP (icon))
5911 main_icon = LoadIcon (hinst, EMACS_CLASS);
5912 else if (STRINGP (icon))
5914 /* Load the main icon from the named file. */
5915 main_icon = LoadImage (NULL, (LPCTSTR) SDATA (icon), IMAGE_ICON, 0, 0,
5916 LR_DEFAULTSIZE | LR_LOADFROMFILE);
5917 /* Try to load a small icon to go with it. */
5918 small_icon = LoadImage (NULL, (LPCSTR) SDATA (icon), IMAGE_ICON,
5919 GetSystemMetrics (SM_CXSMICON),
5920 GetSystemMetrics (SM_CYSMICON),
5921 LR_LOADFROMFILE);
5923 else if (SYMBOLP (icon))
5925 LPCTSTR name;
5927 if (EQ (icon, intern ("application")))
5928 name = (LPCTSTR) IDI_APPLICATION;
5929 else if (EQ (icon, intern ("hand")))
5930 name = (LPCTSTR) IDI_HAND;
5931 else if (EQ (icon, intern ("question")))
5932 name = (LPCTSTR) IDI_QUESTION;
5933 else if (EQ (icon, intern ("exclamation")))
5934 name = (LPCTSTR) IDI_EXCLAMATION;
5935 else if (EQ (icon, intern ("asterisk")))
5936 name = (LPCTSTR) IDI_ASTERISK;
5937 else if (EQ (icon, intern ("winlogo")))
5938 name = (LPCTSTR) IDI_WINLOGO;
5939 else
5940 return 1;
5942 main_icon = LoadIcon (NULL, name);
5944 else
5945 return 1;
5947 if (main_icon == NULL)
5948 return 1;
5950 PostMessage (FRAME_W32_WINDOW (f), WM_SETICON, (WPARAM) ICON_BIG,
5951 (LPARAM) main_icon);
5953 /* If there is a small icon that goes with it, set that too. */
5954 if (small_icon)
5955 PostMessage (FRAME_W32_WINDOW (f), WM_SETICON, (WPARAM) ICON_SMALL,
5956 (LPARAM) small_icon);
5958 return 0;
5962 /************************************************************************
5963 Handling X errors
5964 ************************************************************************/
5966 /* Display Error Handling functions not used on W32. Listing them here
5967 helps diff stay in step when comparing w32term.c with xterm.c.
5969 x_error_catcher (display, error)
5970 x_catch_errors (dpy)
5971 x_catch_errors_unwind (old_val)
5972 x_check_errors (dpy, format)
5973 x_fully_uncatch_errors ()
5974 x_had_errors_p (dpy)
5975 x_clear_errors (dpy)
5976 x_uncatch_errors (dpy, count)
5977 x_trace_wire ()
5978 x_connection_signal (signalnum)
5979 x_connection_closed (dpy, error_message)
5980 x_error_quitter (display, error)
5981 x_error_handler (display, error)
5982 x_io_error_quitter (display)
5987 /* Changing the font of the frame. */
5989 Lisp_Object
5990 x_new_font (struct frame *f, Lisp_Object font_object, int fontset)
5992 struct font *font = XFONT_OBJECT (font_object);
5993 int unit, font_ascent, font_descent;
5995 if (fontset < 0)
5996 fontset = fontset_from_font (font_object);
5997 FRAME_FONTSET (f) = fontset;
5998 if (FRAME_FONT (f) == font)
5999 /* This font is already set in frame F. There's nothing more to
6000 do. */
6001 return font_object;
6003 FRAME_FONT (f) = font;
6004 FRAME_BASELINE_OFFSET (f) = font->baseline_offset;
6005 FRAME_COLUMN_WIDTH (f) = unit = font->average_width;
6006 get_font_ascent_descent (font, &font_ascent, &font_descent);
6007 FRAME_LINE_HEIGHT (f) = font_ascent + font_descent;
6009 /* Compute number of scrollbar columns. */
6010 unit = FRAME_COLUMN_WIDTH (f);
6011 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
6012 FRAME_CONFIG_SCROLL_BAR_COLS (f)
6013 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + unit - 1) / unit;
6014 else
6016 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + unit - 1) / unit;
6017 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) =
6018 FRAME_CONFIG_SCROLL_BAR_COLS (f) * unit;
6021 /* Now make the frame display the given font. */
6022 if (FRAME_X_WINDOW (f) != 0)
6024 /* Don't change the size of a tip frame; there's no point in
6025 doing it because it's done in Fx_show_tip, and it leads to
6026 problems because the tip frame has no widget. */
6027 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
6028 adjust_frame_size (f, FRAME_COLS (f) * FRAME_COLUMN_WIDTH (f),
6029 FRAME_LINES (f) * FRAME_LINE_HEIGHT (f), 3,
6030 false, Qfont);
6033 /* X version sets font of input methods here also. */
6035 return font_object;
6039 /***********************************************************************
6040 TODO: W32 Input Methods
6041 ***********************************************************************/
6042 /* Listing missing functions from xterm.c helps diff stay in step.
6044 xim_destroy_callback (xim, client_data, call_data)
6045 xim_open_dpy (dpyinfo, resource_name)
6046 struct xim_inst_t
6047 xim_instantiate_callback (display, client_data, call_data)
6048 xim_initialize (dpyinfo, resource_name)
6049 xim_close_dpy (dpyinfo)
6054 /* Calculate the absolute position in frame F
6055 from its current recorded position values and gravity. */
6057 static void
6058 x_calc_absolute_position (struct frame *f)
6060 int flags = f->size_hint_flags;
6062 /* The sum of the widths of the frame's left and right borders, and
6063 the sum of the heights of the frame's top and bottom borders (in
6064 pixels) drawn by Windows. */
6065 unsigned int left_right_borders_width, top_bottom_borders_height;
6067 /* Try to get the actual values of these two variables. We compute
6068 the border width (height) by subtracting the width (height) of
6069 the frame's client area from the width (height) of the frame's
6070 entire window. */
6071 WINDOWPLACEMENT wp = { 0 };
6072 RECT client_rect = { 0 };
6074 if (GetWindowPlacement (FRAME_W32_WINDOW (f), &wp)
6075 && GetClientRect (FRAME_W32_WINDOW (f), &client_rect))
6077 left_right_borders_width =
6078 (wp.rcNormalPosition.right - wp.rcNormalPosition.left) -
6079 (client_rect.right - client_rect.left);
6081 top_bottom_borders_height =
6082 (wp.rcNormalPosition.bottom - wp.rcNormalPosition.top) -
6083 (client_rect.bottom - client_rect.top);
6085 else
6087 /* Use sensible default values. */
6088 left_right_borders_width = 8;
6089 top_bottom_borders_height = 32;
6092 /* With multiple monitors, we can legitimately get negative
6093 coordinates (for monitors above or to the left of the primary
6094 monitor). Find the display origin to ensure negative positions
6095 are computed correctly (Bug#21173). */
6096 int display_left = 0;
6097 int display_top = 0;
6098 struct frame *p = FRAME_PARENT_FRAME (f);
6100 if (!p && flags & (XNegative | YNegative))
6102 Lisp_Object list;
6104 list = Fw32_display_monitor_attributes_list (Qnil);
6105 while (CONSP (list))
6107 Lisp_Object attributes = CAR(list);
6108 Lisp_Object geometry;
6109 Lisp_Object monitor_left, monitor_top;
6111 list = CDR(list);
6113 geometry = Fassoc (Qgeometry, attributes, Qnil);
6114 if (!NILP (geometry))
6116 monitor_left = Fnth (make_number (1), geometry);
6117 monitor_top = Fnth (make_number (2), geometry);
6119 display_left = min (display_left, XINT (monitor_left));
6120 display_top = min (display_top, XINT (monitor_top));
6125 /* Treat negative positions as relative to the rightmost bottommost
6126 position that fits on the screen or parent frame.
6128 I see no need for subtracting 1 from the border widths - is there
6129 any on the remaining platforms? Here these subtractions did put
6130 the last pixel line/column of a frame off-display when, for
6131 example, a (set-frame-parameter nil 'left '(- 0)) specification was
6132 used - martin 20017-05-05. */
6133 if (flags & XNegative)
6135 if (p)
6136 f->left_pos = (FRAME_PIXEL_WIDTH (p)
6137 - FRAME_PIXEL_WIDTH (f)
6138 + f->left_pos
6139 - left_right_borders_width);
6140 else
6141 f->left_pos = (x_display_pixel_width (FRAME_DISPLAY_INFO (f))
6142 + display_left
6143 - FRAME_PIXEL_WIDTH (f)
6144 + f->left_pos
6145 - left_right_borders_width);
6148 if (flags & YNegative)
6150 if (p)
6151 f->top_pos = (FRAME_PIXEL_HEIGHT (p)
6152 - FRAME_PIXEL_HEIGHT (f)
6153 + f->top_pos
6154 - top_bottom_borders_height);
6155 else
6156 f->top_pos = (x_display_pixel_height (FRAME_DISPLAY_INFO (f))
6157 + display_top
6158 - FRAME_PIXEL_HEIGHT (f)
6159 + f->top_pos
6160 - top_bottom_borders_height);
6163 /* The left_pos and top_pos are now relative to the top and left
6164 screen edges, so the flags should correspond. */
6165 f->size_hint_flags &= ~ (XNegative | YNegative);
6168 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
6169 to really change the position, and 0 when calling from
6170 x_make_frame_visible (in that case, XOFF and YOFF are the current
6171 position values). It is -1 when calling from x_set_frame_parameters,
6172 which means, do adjust for borders but don't change the gravity. */
6174 void
6175 x_set_offset (struct frame *f, register int xoff, register int yoff,
6176 int change_gravity)
6178 int modified_top, modified_left;
6180 if (change_gravity > 0)
6182 f->top_pos = yoff;
6183 f->left_pos = xoff;
6184 f->size_hint_flags &= ~ (XNegative | YNegative);
6185 if (xoff < 0)
6186 f->size_hint_flags |= XNegative;
6187 if (yoff < 0)
6188 f->size_hint_flags |= YNegative;
6189 f->win_gravity = NorthWestGravity;
6191 x_calc_absolute_position (f);
6193 block_input ();
6194 x_wm_set_size_hint (f, (long) 0, false);
6196 modified_left = f->left_pos;
6197 modified_top = f->top_pos;
6199 if (!FRAME_PARENT_FRAME (f))
6200 my_set_window_pos (FRAME_W32_WINDOW (f), NULL,
6201 modified_left, modified_top,
6202 0, 0,
6203 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
6204 else
6205 my_set_window_pos (FRAME_W32_WINDOW (f), HWND_TOP,
6206 modified_left, modified_top,
6207 0, 0,
6208 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
6209 unblock_input ();
6212 static void
6213 w32fullscreen_hook (struct frame *f)
6215 if (FRAME_VISIBLE_P (f))
6217 HWND hwnd = FRAME_W32_WINDOW(f);
6218 DWORD dwStyle = GetWindowLong (hwnd, GWL_STYLE);
6219 RECT rect;
6220 enum fullscreen_type prev_fsmode = FRAME_PREV_FSMODE (f);
6222 block_input();
6223 f->want_fullscreen &= ~FULLSCREEN_WAIT;
6225 if (FRAME_PREV_FSMODE (f) == FULLSCREEN_NONE)
6226 GetWindowPlacement (hwnd, &FRAME_NORMAL_PLACEMENT (f));
6228 if (FRAME_PREV_FSMODE (f) == FULLSCREEN_BOTH)
6230 SetWindowLong (hwnd, GWL_STYLE, dwStyle | WS_OVERLAPPEDWINDOW);
6231 SetWindowPlacement (hwnd, &FRAME_NORMAL_PLACEMENT (f));
6233 else if (FRAME_PREV_FSMODE (f) == FULLSCREEN_HEIGHT
6234 || FRAME_PREV_FSMODE (f) == FULLSCREEN_WIDTH)
6235 SetWindowPlacement (hwnd, &FRAME_NORMAL_PLACEMENT (f));
6237 FRAME_PREV_FSMODE (f) = f->want_fullscreen;
6239 if (f->want_fullscreen == FULLSCREEN_NONE)
6240 ShowWindow (hwnd, SW_SHOWNORMAL);
6241 else if (f->want_fullscreen == FULLSCREEN_MAXIMIZED)
6243 if (prev_fsmode == FULLSCREEN_BOTH || prev_fsmode == FULLSCREEN_WIDTH
6244 || prev_fsmode == FULLSCREEN_HEIGHT)
6245 /* Make window normal since otherwise the subsequent
6246 maximization might fail in some cases. */
6247 ShowWindow (hwnd, SW_SHOWNORMAL);
6248 ShowWindow (hwnd, SW_MAXIMIZE);
6250 else if (f->want_fullscreen == FULLSCREEN_BOTH)
6252 int menu_bar_height = GetSystemMetrics (SM_CYMENU);
6254 w32_fullscreen_rect (hwnd, f->want_fullscreen,
6255 FRAME_NORMAL_PLACEMENT (f).rcNormalPosition, &rect);
6256 SetWindowLong (hwnd, GWL_STYLE, dwStyle & ~WS_OVERLAPPEDWINDOW);
6257 SetWindowPos (hwnd, HWND_TOP, rect.left, rect.top,
6258 rect.right - rect.left, rect.bottom - rect.top,
6259 SWP_NOOWNERZORDER | SWP_FRAMECHANGED);
6260 change_frame_size
6261 (f, FRAME_PIXEL_TO_TEXT_WIDTH (f, rect.right - rect.left),
6262 FRAME_PIXEL_TO_TEXT_HEIGHT (f, (rect.bottom - rect.top
6263 - menu_bar_height)),
6264 0, 1, 0, 1);
6266 else
6268 ShowWindow (hwnd, SW_SHOWNORMAL);
6269 w32_fullscreen_rect (hwnd, f->want_fullscreen,
6270 FRAME_NORMAL_PLACEMENT (f).rcNormalPosition, &rect);
6271 SetWindowPos (hwnd, HWND_TOP, rect.left, rect.top,
6272 rect.right - rect.left, rect.bottom - rect.top, 0);
6274 if (f->want_fullscreen == FULLSCREEN_WIDTH)
6276 int border_width = GetSystemMetrics (SM_CXFRAME);
6278 change_frame_size
6279 (f, (FRAME_PIXEL_TO_TEXT_WIDTH
6280 (f, rect.right - rect.left - 2 * border_width)),
6281 0, 0, 1, 0, 1);
6283 else
6285 int border_height = GetSystemMetrics (SM_CYFRAME);
6286 /* Won't work for wrapped menu bar. */
6287 int menu_bar_height = GetSystemMetrics (SM_CYMENU);
6288 int title_height = GetSystemMetrics (SM_CYCAPTION);
6290 change_frame_size
6291 (f, 0, (FRAME_PIXEL_TO_TEXT_HEIGHT
6292 (f, rect.bottom - rect.top - 2 * border_height
6293 - title_height - menu_bar_height)),
6294 0, 1, 0, 1);
6298 f->want_fullscreen = FULLSCREEN_NONE;
6299 unblock_input ();
6301 if (f->want_fullscreen == FULLSCREEN_BOTH
6302 || f->want_fullscreen == FULLSCREEN_WIDTH
6303 || f->want_fullscreen == FULLSCREEN_HEIGHT)
6304 do_pending_window_change (0);
6307 else
6308 f->want_fullscreen |= FULLSCREEN_WAIT;
6311 /* Call this to change the size of frame F's x-window.
6312 If CHANGE_GRAVITY, change to top-left-corner window gravity
6313 for this size change and subsequent size changes.
6314 Otherwise we leave the window gravity unchanged. */
6316 void
6317 x_set_window_size (struct frame *f, bool change_gravity,
6318 int width, int height, bool pixelwise)
6320 int pixelwidth, pixelheight;
6321 Lisp_Object fullscreen = get_frame_param (f, Qfullscreen);
6322 RECT rect;
6323 MENUBARINFO info;
6324 int menu_bar_height;
6326 block_input ();
6328 /* Get the height of the menu bar here. It's used below to detect
6329 whether the menu bar is wrapped. It's also used to specify the
6330 third argument for AdjustWindowRect. See bug#22105. */
6331 info.cbSize = sizeof (info);
6332 info.rcBar.top = info.rcBar.bottom = 0;
6333 GetMenuBarInfo (FRAME_W32_WINDOW (f), 0xFFFFFFFD, 0, &info);
6334 menu_bar_height = info.rcBar.bottom - info.rcBar.top;
6336 if (pixelwise)
6338 pixelwidth = FRAME_TEXT_TO_PIXEL_WIDTH (f, width);
6339 pixelheight = FRAME_TEXT_TO_PIXEL_HEIGHT (f, height);
6341 else
6343 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width);
6344 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height);
6347 if (w32_add_wrapped_menu_bar_lines)
6349 /* When the menu bar wraps sending a SetWindowPos shrinks the
6350 height of the frame then the wrapped menu bar lines are not
6351 accounted for (Bug#15174 and Bug#18720). Here we add these
6352 extra lines to the frame height. */
6353 int default_menu_bar_height;
6355 /* Why is (apparently) SM_CYMENUSIZE needed here instead of
6356 SM_CYMENU ?? */
6357 default_menu_bar_height = GetSystemMetrics (SM_CYMENUSIZE);
6359 if ((default_menu_bar_height > 0)
6360 && (menu_bar_height > default_menu_bar_height)
6361 && ((menu_bar_height % default_menu_bar_height) == 0))
6362 pixelheight = pixelheight + menu_bar_height - default_menu_bar_height;
6365 f->win_gravity = NorthWestGravity;
6366 x_wm_set_size_hint (f, (long) 0, false);
6368 rect.left = rect.top = 0;
6369 rect.right = pixelwidth;
6370 rect.bottom = pixelheight;
6372 AdjustWindowRect (&rect, f->output_data.w32->dwStyle, menu_bar_height > 0);
6374 if (!(f->after_make_frame)
6375 && !(f->want_fullscreen & FULLSCREEN_WAIT)
6376 && FRAME_VISIBLE_P (f))
6378 RECT window_rect;
6380 GetWindowRect (FRAME_W32_WINDOW (f), &window_rect);
6382 if (EQ (fullscreen, Qmaximized)
6383 || EQ (fullscreen, Qfullboth)
6384 || EQ (fullscreen, Qfullwidth))
6386 rect.left = window_rect.left;
6387 rect.right = window_rect.right;
6388 pixelwidth = 0;
6390 if (EQ (fullscreen, Qmaximized)
6391 || EQ (fullscreen, Qfullboth)
6392 || EQ (fullscreen, Qfullheight))
6394 rect.top = window_rect.top;
6395 rect.bottom = window_rect.bottom;
6396 pixelheight = 0;
6400 if (pixelwidth > 0 || pixelheight > 0)
6402 frame_size_history_add
6403 (f, Qx_set_window_size_1, width, height,
6404 list2 (Fcons (make_number (pixelwidth),
6405 make_number (pixelheight)),
6406 Fcons (make_number (rect.right - rect.left),
6407 make_number (rect.bottom - rect.top))));
6409 if (!FRAME_PARENT_FRAME (f))
6410 my_set_window_pos (FRAME_W32_WINDOW (f), NULL,
6411 0, 0,
6412 rect.right - rect.left,
6413 rect.bottom - rect.top,
6414 SWP_NOZORDER | SWP_NOMOVE | SWP_NOACTIVATE);
6415 else
6416 my_set_window_pos (FRAME_W32_WINDOW (f), HWND_TOP,
6417 0, 0,
6418 rect.right - rect.left,
6419 rect.bottom - rect.top,
6420 SWP_NOMOVE | SWP_NOACTIVATE);
6422 change_frame_size (f,
6423 ((pixelwidth == 0)
6424 ? 0 : FRAME_PIXEL_TO_TEXT_WIDTH (f, pixelwidth)),
6425 ((pixelheight == 0)
6426 ? 0 : FRAME_PIXEL_TO_TEXT_HEIGHT (f, pixelheight)),
6427 0, 1, 0, 1);
6428 SET_FRAME_GARBAGED (f);
6430 /* If cursor was outside the new size, mark it as off. */
6431 mark_window_cursors_off (XWINDOW (f->root_window));
6433 /* Clear out any recollection of where the mouse highlighting was,
6434 since it might be in a place that's outside the new frame size.
6435 Actually checking whether it is outside is a pain in the neck,
6436 so don't try--just let the highlighting be done afresh with new
6437 size. */
6438 cancel_mouse_face (f);
6441 unblock_input ();
6443 do_pending_window_change (false);
6446 /* Mouse warping. */
6448 void
6449 frame_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y)
6451 UINT trail_num = 0;
6452 BOOL ret = false;
6453 RECT rect;
6454 POINT pt;
6456 block_input ();
6458 GetClientRect (FRAME_W32_WINDOW (f), &rect);
6459 pt.x = rect.left + pix_x;
6460 pt.y = rect.top + pix_y;
6461 ClientToScreen (FRAME_W32_WINDOW (f), &pt);
6463 /* When "mouse trails" are in effect, moving the mouse cursor
6464 sometimes leaves behind an annoying "ghost" of the pointer.
6465 Avoid that by momentarily switching off mouse trails. */
6466 if (os_subtype == OS_NT
6467 && w32_major_version + w32_minor_version >= 6)
6468 ret = SystemParametersInfo (SPI_GETMOUSETRAILS, 0, &trail_num, 0);
6469 SetCursorPos (pt.x, pt.y);
6470 if (ret)
6471 SystemParametersInfo (SPI_SETMOUSETRAILS, trail_num, NULL, 0);
6473 unblock_input ();
6477 /* Focus shifting, raising and lowering. */
6479 /* The NOACTIVATE argument has no effect on Windows. According to the
6480 Windows API: An application cannot activate an inactive window
6481 without also bringing it to the top of the Z order. */
6483 void
6484 x_focus_frame (struct frame *f, bool noactivate)
6486 #if 0
6487 struct w32_display_info *dpyinfo = &one_w32_display_info;
6488 #endif
6490 /* Give input focus to frame. */
6491 block_input ();
6492 #if 0
6493 /* Try not to change its Z-order if possible. */
6494 if (x_window_to_frame (dpyinfo, GetForegroundWindow ()))
6495 my_set_focus (f, FRAME_W32_WINDOW (f));
6496 else
6497 #endif
6498 my_set_foreground_window (FRAME_W32_WINDOW (f));
6499 unblock_input ();
6502 /* Raise frame F. */
6503 void
6504 x_raise_frame (struct frame *f)
6506 block_input ();
6508 /* Strictly speaking, raise-frame should only change the frame's Z
6509 order, leaving input focus unchanged. This is reasonable behavior
6510 on X where the usual policy is point-to-focus. However, this
6511 behavior would be very odd on Windows where the usual policy is
6512 click-to-focus.
6514 On X, if the mouse happens to be over the raised frame, it gets
6515 input focus anyway (so the window with focus will never be
6516 completely obscured) - if not, then just moving the mouse over it
6517 is sufficient to give it focus. On Windows, the user must actually
6518 click on the frame (preferably the title bar so as not to move
6519 point), which is more awkward. Also, no other Windows program
6520 raises a window to the top but leaves another window (possibly now
6521 completely obscured) with input focus.
6523 Because there is a system setting on Windows that allows the user
6524 to choose the point to focus policy, we make the strict semantics
6525 optional, but by default we grab focus when raising. */
6527 if (NILP (Vw32_grab_focus_on_raise))
6529 /* The obvious call to my_set_window_pos doesn't work if Emacs is
6530 not already the foreground application: the frame is raised
6531 above all other frames belonging to us, but not above the
6532 current top window. To achieve that, we have to resort to this
6533 more cumbersome method. */
6535 HDWP handle = BeginDeferWindowPos (2);
6536 if (handle)
6538 handle = DeferWindowPos (handle,
6539 FRAME_W32_WINDOW (f),
6540 HWND_TOP,
6541 0, 0, 0, 0,
6542 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
6543 if (handle)
6545 handle = DeferWindowPos (handle,
6546 GetForegroundWindow (),
6547 FRAME_W32_WINDOW (f),
6548 0, 0, 0, 0,
6549 SWP_NOSIZE | SWP_NOMOVE |
6550 SWP_NOACTIVATE);
6551 if (handle)
6552 EndDeferWindowPos (handle);
6556 else
6558 my_bring_window_to_top (FRAME_W32_WINDOW (f));
6561 unblock_input ();
6564 /* Lower frame F. */
6565 void
6566 x_lower_frame (struct frame *f)
6568 block_input ();
6569 my_set_window_pos (FRAME_W32_WINDOW (f),
6570 HWND_BOTTOM,
6571 0, 0, 0, 0,
6572 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
6573 unblock_input ();
6576 static void
6577 w32_frame_raise_lower (struct frame *f, bool raise_flag)
6579 if (! FRAME_W32_P (f))
6580 return;
6582 if (raise_flag)
6583 x_raise_frame (f);
6584 else
6585 x_lower_frame (f);
6588 /* Change of visibility. */
6590 /* This tries to wait until the frame is really visible.
6591 However, if the window manager asks the user where to position
6592 the frame, this will return before the user finishes doing that.
6593 The frame will not actually be visible at that time,
6594 but it will become visible later when the window manager
6595 finishes with it. */
6597 void
6598 x_make_frame_visible (struct frame *f)
6600 block_input ();
6602 x_set_bitmap_icon (f);
6604 if (! FRAME_VISIBLE_P (f))
6606 /* We test FRAME_GARBAGED_P here to make sure we don't
6607 call x_set_offset a second time
6608 if we get to x_make_frame_visible a second time
6609 before the window gets really visible. */
6610 if (! FRAME_ICONIFIED_P (f)
6611 && ! f->output_data.w32->asked_for_visible)
6613 if (!FRAME_PARENT_FRAME (f))
6615 RECT workarea_rect;
6616 RECT window_rect;
6618 /* Adjust vertical window position in order to avoid being
6619 covered by a taskbar placed at the bottom of the desktop. */
6620 SystemParametersInfo (SPI_GETWORKAREA, 0, &workarea_rect, 0);
6621 GetWindowRect (FRAME_W32_WINDOW (f), &window_rect);
6622 if (window_rect.bottom > workarea_rect.bottom
6623 && window_rect.top > workarea_rect.top)
6624 f->top_pos = max (window_rect.top
6625 - window_rect.bottom + workarea_rect.bottom,
6626 workarea_rect.top);
6629 x_set_offset (f, f->left_pos, f->top_pos, 0);
6632 f->output_data.w32->asked_for_visible = 1;
6634 /* According to a report in emacs-devel 2008-06-03, SW_SHOWNORMAL
6635 causes unexpected behavior when unminimizing frames that were
6636 previously maximized. But only SW_SHOWNORMAL works properly for
6637 frames that were truely hidden (using make-frame-invisible), so
6638 we need it to avoid Bug#5482. It seems that iconified is only
6639 set for minimized windows that are still visible, so use that to
6640 determine the appropriate flag to pass ShowWindow. */
6641 my_show_window (f, FRAME_W32_WINDOW (f),
6642 FRAME_ICONIFIED_P (f)
6643 ? SW_RESTORE
6644 : FRAME_NO_FOCUS_ON_MAP (f)
6645 ? SW_SHOWNOACTIVATE
6646 : SW_SHOWNORMAL);
6649 /* Synchronize to ensure Emacs knows the frame is visible
6650 before we do anything else. We do this loop with input not blocked
6651 so that incoming events are handled. */
6653 Lisp_Object frame;
6654 int count;
6656 /* This must come after we set COUNT. */
6657 unblock_input ();
6659 XSETFRAME (frame, f);
6661 /* Wait until the frame is visible. Process X events until a
6662 MapNotify event has been seen, or until we think we won't get a
6663 MapNotify at all.. */
6664 for (count = input_signal_count + 10;
6665 input_signal_count < count && !FRAME_VISIBLE_P (f);)
6667 /* Force processing of queued events. */
6668 /* TODO: x_sync equivalent? */
6670 /* Machines that do polling rather than SIGIO have been observed
6671 to go into a busy-wait here. So we'll fake an alarm signal
6672 to let the handler know that there's something to be read.
6673 We used to raise a real alarm, but it seems that the handler
6674 isn't always enabled here. This is probably a bug. */
6675 if (input_polling_used ())
6677 /* It could be confusing if a real alarm arrives while processing
6678 the fake one. Turn it off and let the handler reset it. */
6679 int old_poll_suppress_count = poll_suppress_count;
6680 poll_suppress_count = 1;
6681 poll_for_input_1 ();
6682 poll_suppress_count = old_poll_suppress_count;
6688 /* Change from mapped state to withdrawn state. */
6690 /* Make the frame visible (mapped and not iconified). */
6692 void
6693 x_make_frame_invisible (struct frame *f)
6695 /* Don't keep the highlight on an invisible frame. */
6696 if (FRAME_DISPLAY_INFO (f)->x_highlight_frame == f)
6697 FRAME_DISPLAY_INFO (f)->x_highlight_frame = 0;
6699 block_input ();
6701 my_show_window (f, FRAME_W32_WINDOW (f), SW_HIDE);
6703 /* We can't distinguish this from iconification
6704 just by the event that we get from the server.
6705 So we can't win using the usual strategy of letting
6706 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
6707 and synchronize with the server to make sure we agree. */
6708 SET_FRAME_VISIBLE (f, 0);
6709 SET_FRAME_ICONIFIED (f, false);
6711 unblock_input ();
6714 /* Change window state from mapped to iconified. */
6716 void
6717 x_iconify_frame (struct frame *f)
6719 /* Don't keep the highlight on an invisible frame. */
6720 if (FRAME_DISPLAY_INFO (f)->x_highlight_frame == f)
6721 FRAME_DISPLAY_INFO (f)->x_highlight_frame = 0;
6723 if (FRAME_ICONIFIED_P (f))
6724 return;
6726 block_input ();
6728 x_set_bitmap_icon (f);
6730 /* Simulate the user minimizing the frame. */
6731 SendMessageTimeout (FRAME_W32_WINDOW (f), WM_SYSCOMMAND, SC_MINIMIZE, 0,
6732 0, 6000, NULL);
6734 SET_FRAME_VISIBLE (f, 0);
6735 SET_FRAME_ICONIFIED (f, true);
6737 unblock_input ();
6741 /* Free X resources of frame F. */
6743 void
6744 x_free_frame_resources (struct frame *f)
6746 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
6747 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
6749 block_input ();
6751 /* We must free faces before destroying windows because some
6752 font-driver (e.g. xft) access a window while finishing a
6753 face. */
6754 free_frame_faces (f);
6756 if (FRAME_W32_WINDOW (f))
6757 my_destroy_window (f, FRAME_W32_WINDOW (f));
6759 free_frame_menubar (f);
6761 xfree (f->output_data.w32);
6762 f->output_data.w32 = NULL;
6764 if (f == dpyinfo->w32_focus_frame)
6765 dpyinfo->w32_focus_frame = 0;
6766 if (f == dpyinfo->w32_focus_event_frame)
6767 dpyinfo->w32_focus_event_frame = 0;
6768 if (f == dpyinfo->x_highlight_frame)
6769 dpyinfo->x_highlight_frame = 0;
6770 if (f == hlinfo->mouse_face_mouse_frame)
6771 reset_mouse_highlight (hlinfo);
6773 unblock_input ();
6777 /* Destroy the window of frame F. */
6778 static void
6779 x_destroy_window (struct frame *f)
6781 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
6783 x_free_frame_resources (f);
6784 dpyinfo->reference_count--;
6788 /* Setting window manager hints. */
6790 /* Set the normal size hints for the window manager, for frame F.
6791 FLAGS is the flags word to use--or 0 meaning preserve the flags
6792 that the window now has.
6793 If USER_POSITION, set the USPosition
6794 flag (this is useful when FLAGS is 0). */
6795 void
6796 x_wm_set_size_hint (struct frame *f, long flags, bool user_position)
6798 Window window = FRAME_W32_WINDOW (f);
6800 enter_crit ();
6802 SetWindowLong (window, WND_FONTWIDTH_INDEX, FRAME_COLUMN_WIDTH (f));
6803 SetWindowLong (window, WND_LINEHEIGHT_INDEX, FRAME_LINE_HEIGHT (f));
6804 SetWindowLong (window, WND_BORDER_INDEX, FRAME_INTERNAL_BORDER_WIDTH (f));
6805 SetWindowLong (window, WND_VSCROLLBAR_INDEX, FRAME_SCROLL_BAR_AREA_WIDTH (f));
6806 SetWindowLong (window, WND_HSCROLLBAR_INDEX, FRAME_SCROLL_BAR_AREA_HEIGHT (f));
6808 leave_crit ();
6811 /***********************************************************************
6812 Fonts
6813 ***********************************************************************/
6815 #ifdef GLYPH_DEBUG
6817 /* Check that FONT is valid on frame F. It is if it can be found in F's
6818 font table. */
6820 static void
6821 x_check_font (struct frame *f, struct font *font)
6823 eassert (font != NULL && ! NILP (font->props[FONT_TYPE_INDEX]));
6824 if (font->driver->check)
6825 eassert (font->driver->check (f, font) == 0);
6828 #endif /* GLYPH_DEBUG */
6830 /* Show hourglass cursor on frame F. */
6832 static void
6833 w32_show_hourglass (struct frame *f)
6835 if (!menubar_in_use && !current_popup_menu)
6837 struct w32_output *w32 = FRAME_X_OUTPUT (f);
6839 w32->hourglass_p = 1;
6840 SetCursor (w32->hourglass_cursor);
6844 /* Hide hourglass cursor on frame F. */
6846 static void
6847 w32_hide_hourglass (struct frame *f)
6849 struct w32_output *w32 = FRAME_X_OUTPUT (f);
6851 w32->hourglass_p = 0;
6852 if (f->pointer_invisible)
6853 SetCursor (NULL);
6854 else
6855 SetCursor (w32->current_cursor);
6858 /* FIXME: old code did that, but I don't know why. Anyway,
6859 this is used for non-GUI frames (see cancel_hourglass). */
6861 void
6862 w32_arrow_cursor (void)
6864 SetCursor (w32_load_cursor (IDC_ARROW));
6867 static void
6868 w32_toggle_invisible_pointer (struct frame *f, bool invisible)
6870 block_input ();
6872 if (f->pointer_invisible != invisible)
6874 f->pointer_invisible = invisible;
6875 w32_define_cursor (FRAME_W32_WINDOW (f),
6876 f->output_data.w32->current_cursor);
6879 unblock_input ();
6882 /***********************************************************************
6883 Initialization
6884 ***********************************************************************/
6886 static int w32_initialized = 0;
6888 void
6889 w32_initialize_display_info (Lisp_Object display_name)
6891 struct w32_display_info *dpyinfo = &one_w32_display_info;
6893 memset (dpyinfo, 0, sizeof (*dpyinfo));
6895 dpyinfo->name_list_element = Fcons (display_name, Qnil);
6896 dpyinfo->w32_id_name = xmalloc (SCHARS (Vinvocation_name)
6897 + SCHARS (Vsystem_name) + 2);
6898 sprintf (dpyinfo->w32_id_name, "%s@%s",
6899 SDATA (Vinvocation_name), SDATA (Vsystem_name));
6901 /* Default Console mode values - overridden when running in GUI mode
6902 with values obtained from system metrics. */
6903 dpyinfo->resx = 1;
6904 dpyinfo->resy = 1;
6905 dpyinfo->n_planes = 1;
6906 dpyinfo->n_cbits = 4;
6907 dpyinfo->n_fonts = 0;
6908 dpyinfo->smallest_font_height = 1;
6909 dpyinfo->smallest_char_width = 1;
6910 dpyinfo->vertical_scroll_bar_cursor = w32_load_cursor (IDC_ARROW);
6911 dpyinfo->horizontal_scroll_bar_cursor = w32_load_cursor (IDC_ARROW);
6912 /* TODO: dpyinfo->gray */
6914 reset_mouse_highlight (&dpyinfo->mouse_highlight);
6917 /* Create an xrdb-style database of resources to supersede registry settings.
6918 The database is just a concatenation of C strings, finished by an additional
6919 \0. The strings are submitted to some basic normalization, so
6921 [ *]option[ *]:[ *]value...
6923 becomes
6925 option:value...
6927 but any whitespace following value is not removed. */
6929 static char *
6930 w32_make_rdb (char *xrm_option)
6932 char *buffer = xmalloc (strlen (xrm_option) + 2);
6933 char *current = buffer;
6934 char ch;
6935 int in_option = 1;
6936 int before_value = 0;
6938 do {
6939 ch = *xrm_option++;
6941 if (ch == '\n')
6943 *current++ = '\0';
6944 in_option = 1;
6945 before_value = 0;
6947 else if (ch != ' ')
6949 *current++ = ch;
6950 if (in_option && (ch == ':'))
6952 in_option = 0;
6953 before_value = 1;
6955 else if (before_value)
6957 before_value = 0;
6960 else if (!(in_option || before_value))
6962 *current++ = ch;
6964 } while (ch);
6966 *current = '\0';
6968 return buffer;
6971 extern frame_parm_handler w32_frame_parm_handlers[];
6973 static struct redisplay_interface w32_redisplay_interface =
6975 w32_frame_parm_handlers,
6976 x_produce_glyphs,
6977 x_write_glyphs,
6978 x_insert_glyphs,
6979 x_clear_end_of_line,
6980 x_scroll_run,
6981 x_after_update_window_line,
6982 x_update_window_begin,
6983 x_update_window_end,
6984 0, /* flush_display */
6985 x_clear_window_mouse_face,
6986 x_get_glyph_overhangs,
6987 x_fix_overlapping_area,
6988 w32_draw_fringe_bitmap,
6989 w32_define_fringe_bitmap,
6990 w32_destroy_fringe_bitmap,
6991 w32_compute_glyph_string_overhangs,
6992 x_draw_glyph_string,
6993 w32_define_frame_cursor,
6994 w32_clear_frame_area,
6995 w32_draw_window_cursor,
6996 w32_draw_vertical_window_border,
6997 w32_draw_window_divider,
6998 w32_shift_glyphs_for_insert,
6999 w32_show_hourglass,
7000 w32_hide_hourglass
7003 static void x_delete_terminal (struct terminal *term);
7005 static struct terminal *
7006 w32_create_terminal (struct w32_display_info *dpyinfo)
7008 struct terminal *terminal;
7010 terminal = create_terminal (output_w32, &w32_redisplay_interface);
7012 terminal->display_info.w32 = dpyinfo;
7013 dpyinfo->terminal = terminal;
7015 /* MSVC does not type K&R functions with no arguments correctly, and
7016 so we must explicitly cast them. */
7017 terminal->clear_frame_hook = x_clear_frame;
7018 terminal->ins_del_lines_hook = x_ins_del_lines;
7019 terminal->delete_glyphs_hook = x_delete_glyphs;
7020 terminal->ring_bell_hook = w32_ring_bell;
7021 terminal->toggle_invisible_pointer_hook = w32_toggle_invisible_pointer;
7022 terminal->update_begin_hook = x_update_begin;
7023 terminal->update_end_hook = x_update_end;
7024 terminal->read_socket_hook = w32_read_socket;
7025 terminal->frame_up_to_date_hook = w32_frame_up_to_date;
7026 terminal->mouse_position_hook = w32_mouse_position;
7027 terminal->frame_rehighlight_hook = w32_frame_rehighlight;
7028 terminal->frame_raise_lower_hook = w32_frame_raise_lower;
7029 terminal->fullscreen_hook = w32fullscreen_hook;
7030 terminal->menu_show_hook = w32_menu_show;
7031 terminal->popup_dialog_hook = w32_popup_dialog;
7032 terminal->set_vertical_scroll_bar_hook = w32_set_vertical_scroll_bar;
7033 terminal->set_horizontal_scroll_bar_hook = w32_set_horizontal_scroll_bar;
7034 terminal->condemn_scroll_bars_hook = w32_condemn_scroll_bars;
7035 terminal->redeem_scroll_bar_hook = w32_redeem_scroll_bar;
7036 terminal->judge_scroll_bars_hook = w32_judge_scroll_bars;
7037 terminal->delete_frame_hook = x_destroy_window;
7038 terminal->delete_terminal_hook = x_delete_terminal;
7039 /* Other hooks are NULL by default. */
7041 /* We don't yet support separate terminals on W32, so don't try to share
7042 keyboards between virtual terminals that are on the same physical
7043 terminal like X does. */
7044 terminal->kboard = allocate_kboard (Qw32);
7045 /* Don't let the initial kboard remain current longer than necessary.
7046 That would cause problems if a file loaded on startup tries to
7047 prompt in the mini-buffer. */
7048 if (current_kboard == initial_kboard)
7049 current_kboard = terminal->kboard;
7050 terminal->kboard->reference_count++;
7052 return terminal;
7055 static void
7056 x_delete_terminal (struct terminal *terminal)
7058 struct w32_display_info *dpyinfo = terminal->display_info.w32;
7060 /* Protect against recursive calls. delete_frame in
7061 delete_terminal calls us back when it deletes our last frame. */
7062 if (!terminal->name)
7063 return;
7065 block_input ();
7067 x_delete_display (dpyinfo);
7068 unblock_input ();
7071 struct w32_display_info *
7072 w32_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name)
7074 struct w32_display_info *dpyinfo;
7075 struct terminal *terminal;
7076 HDC hdc;
7078 block_input ();
7080 if (!w32_initialized)
7082 w32_initialize ();
7083 w32_initialized = 1;
7086 w32_initialize_display_info (display_name);
7088 dpyinfo = &one_w32_display_info;
7089 terminal = w32_create_terminal (dpyinfo);
7091 /* Set the name of the terminal. */
7092 terminal->name = xlispstrdup (display_name);
7094 dpyinfo->xrdb = xrm_option ? w32_make_rdb (xrm_option) : NULL;
7096 /* Put this display on the chain. */
7097 dpyinfo->next = x_display_list;
7098 x_display_list = dpyinfo;
7100 hdc = GetDC (NULL);
7102 dpyinfo->root_window = GetDesktopWindow ();
7103 dpyinfo->n_planes = GetDeviceCaps (hdc, PLANES);
7104 dpyinfo->n_cbits = GetDeviceCaps (hdc, BITSPIXEL);
7105 dpyinfo->resx = GetDeviceCaps (hdc, LOGPIXELSX);
7106 dpyinfo->resy = GetDeviceCaps (hdc, LOGPIXELSY);
7107 dpyinfo->has_palette = GetDeviceCaps (hdc, RASTERCAPS) & RC_PALETTE;
7108 ReleaseDC (NULL, hdc);
7110 /* initialize palette with white and black */
7112 XColor color;
7113 w32_defined_color (0, "white", &color, 1);
7114 w32_defined_color (0, "black", &color, 1);
7117 #ifdef WINDOWSNT
7118 /* Add the default keyboard. When !WINDOWSNT, we're using the
7119 standard Emacs console handling machinery and don't need an
7120 explicit FD here. */
7121 add_keyboard_wait_descriptor (0);
7122 #elif CYGWIN
7123 /* /dev/windows wakes us up when we have a thread message pending. */
7124 add_keyboard_wait_descriptor (w32_message_fd);
7125 #endif
7127 /* Create Fringe Bitmaps and store them for later use.
7129 On W32, bitmaps are all unsigned short, as Windows requires
7130 bitmap data to be Word aligned. For some reason they are
7131 horizontally reflected compared to how they appear on X, so we
7132 need to bitswap and convert to unsigned shorts before creating
7133 the bitmaps. */
7134 w32_init_fringe (terminal->rif);
7136 unblock_input ();
7138 return dpyinfo;
7141 /* Get rid of display DPYINFO, assuming all frames are already gone. */
7142 void
7143 x_delete_display (struct w32_display_info *dpyinfo)
7145 /* FIXME: the only display info apparently can't be deleted. */
7146 /* free palette table */
7148 struct w32_palette_entry * plist;
7150 plist = dpyinfo->color_list;
7151 while (plist)
7153 struct w32_palette_entry * pentry = plist;
7154 plist = plist->next;
7155 xfree (pentry);
7157 dpyinfo->color_list = NULL;
7158 if (dpyinfo->palette)
7159 DeleteObject (dpyinfo->palette);
7161 w32_reset_fringes ();
7165 /* Set up use of W32. */
7167 void
7168 w32_init_main_thread (void)
7170 dwMainThreadId = GetCurrentThreadId ();
7171 DuplicateHandle (GetCurrentProcess (), GetCurrentThread (),
7172 GetCurrentProcess (), &hMainThread, 0, TRUE,
7173 DUPLICATE_SAME_ACCESS);
7178 DWORD WINAPI w32_msg_worker (void * arg);
7180 static void
7181 w32_initialize (void)
7183 HANDLE shell;
7184 HRESULT (WINAPI * set_user_model) (const wchar_t * id);
7186 baud_rate = 19200;
7188 w32_system_caret_hwnd = NULL;
7189 w32_system_caret_height = 0;
7190 w32_system_caret_x = 0;
7191 w32_system_caret_y = 0;
7193 /* On Windows 7 and later, we need to set the user model ID
7194 to associate emacsclient launched files with Emacs frames
7195 in the UI. */
7196 shell = GetModuleHandle ("shell32.dll");
7197 if (shell)
7199 set_user_model
7200 = (void *) GetProcAddress (shell,
7201 "SetCurrentProcessExplicitAppUserModelID");
7203 /* If the function is defined, then we are running on Windows 7
7204 or newer, and the UI uses this to group related windows
7205 together. Since emacs, runemacs, emacsclient are related, we
7206 want them grouped even though the executables are different,
7207 so we need to set a consistent ID between them. */
7208 if (set_user_model)
7209 set_user_model (L"GNU.Emacs");
7212 #ifdef CYGWIN
7213 if ((w32_message_fd = emacs_open ("/dev/windows", O_RDWR, 0)) == -1)
7214 fatal ("opening /dev/windows: %s", strerror (errno));
7215 #endif /* CYGWIN */
7217 /* Initialize w32_use_visible_system_caret based on whether a screen
7218 reader is in use. */
7219 if (!SystemParametersInfo (SPI_GETSCREENREADER, 0,
7220 &w32_use_visible_system_caret, 0))
7221 w32_use_visible_system_caret = 0;
7223 any_help_event_p = 0;
7225 /* Initialize input mode: interrupt_input off, no flow control, allow
7226 8 bit character input, standard quit char. */
7227 Fset_input_mode (Qnil, Qnil, make_number (2), Qnil);
7230 LCID input_locale_id = LOWORD (GetKeyboardLayout (0));
7231 w32_keyboard_codepage = codepage_for_locale (input_locale_id);
7234 /* Create the window thread - it will terminate itself when the app
7235 terminates */
7236 init_crit ();
7238 /* Wait for thread to start */
7240 MSG msg;
7242 PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE);
7244 hWindowsThread = CreateThread (NULL, 0,
7245 w32_msg_worker,
7246 0, 0, &dwWindowsThreadId);
7248 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
7251 /* It is desirable that mainThread should have the same notion of
7252 focus window and active window as windowsThread. Unfortunately, the
7253 following call to AttachThreadInput, which should do precisely what
7254 we need, causes major problems when Emacs is linked as a console
7255 program. Unfortunately, we have good reasons for doing that, so
7256 instead we need to send messages to windowsThread to make some API
7257 calls for us (ones that affect, or depend on, the active/focus
7258 window state.) */
7259 #ifdef ATTACH_THREADS
7260 AttachThreadInput (dwMainThreadId, dwWindowsThreadId, TRUE);
7261 #endif
7263 /* Dynamically link to optional system components. */
7265 HMODULE user_lib = GetModuleHandle ("user32.dll");
7267 #define LOAD_PROC(lib, fn) pfn##fn = (void *) GetProcAddress (lib, #fn)
7269 LOAD_PROC (user_lib, SetLayeredWindowAttributes);
7271 #undef LOAD_PROC
7273 /* Ensure scrollbar handles are at least 5 pixels. */
7274 vertical_scroll_bar_min_handle = 5;
7275 horizontal_scroll_bar_min_handle = 5;
7277 /* For either kind of scroll bar, take account of the arrows; these
7278 effectively form the border of the main scroll bar range. */
7279 vertical_scroll_bar_top_border = vertical_scroll_bar_bottom_border
7280 = GetSystemMetrics (SM_CYVSCROLL);
7281 horizontal_scroll_bar_left_border = horizontal_scroll_bar_right_border
7282 = GetSystemMetrics (SM_CYHSCROLL);
7286 void
7287 syms_of_w32term (void)
7289 DEFSYM (Qvendor_specific_keysyms, "vendor-specific-keysyms");
7291 DEFSYM (Qadded, "added");
7292 DEFSYM (Qremoved, "removed");
7293 DEFSYM (Qmodified, "modified");
7294 DEFSYM (Qrenamed_from, "renamed-from");
7295 DEFSYM (Qrenamed_to, "renamed-to");
7297 DEFVAR_INT ("w32-num-mouse-buttons",
7298 w32_num_mouse_buttons,
7299 doc: /* Number of physical mouse buttons. */);
7300 w32_num_mouse_buttons = 2;
7302 DEFVAR_LISP ("w32-swap-mouse-buttons",
7303 Vw32_swap_mouse_buttons,
7304 doc: /* Swap the mapping of middle and right mouse buttons.
7305 When nil, middle button is mouse-2 and right button is mouse-3. */);
7306 Vw32_swap_mouse_buttons = Qnil;
7308 DEFVAR_LISP ("w32-grab-focus-on-raise",
7309 Vw32_grab_focus_on_raise,
7310 doc: /* Raised frame grabs input focus.
7311 When t, `raise-frame' grabs input focus as well. This fits well
7312 with the normal Windows click-to-focus policy, but might not be
7313 desirable when using a point-to-focus policy. */);
7314 Vw32_grab_focus_on_raise = Qt;
7316 DEFVAR_LISP ("w32-capslock-is-shiftlock",
7317 Vw32_capslock_is_shiftlock,
7318 doc: /* Apply CapsLock state to non character input keys.
7319 When nil, CapsLock only affects normal character input keys. */);
7320 Vw32_capslock_is_shiftlock = Qnil;
7322 DEFVAR_LISP ("w32-recognize-altgr",
7323 Vw32_recognize_altgr,
7324 doc: /* Recognize right-alt and left-ctrl as AltGr.
7325 When nil, the right-alt and left-ctrl key combination is
7326 interpreted normally. */);
7327 Vw32_recognize_altgr = Qt;
7329 DEFVAR_BOOL ("w32-use-visible-system-caret",
7330 w32_use_visible_system_caret,
7331 doc: /* Flag to make the system caret visible.
7332 When this is non-nil, Emacs will indicate the position of point by
7333 using the system caret instead of drawing its own cursor. Some screen
7334 reader software does not track the system cursor properly when it is
7335 invisible, and gets confused by Emacs drawing its own cursor, so this
7336 variable is initialized to t when Emacs detects that screen reader
7337 software is running as it starts up.
7339 When this variable is set, other variables affecting the appearance of
7340 the cursor have no effect. */);
7342 w32_use_visible_system_caret = 0;
7344 /* We don't yet support this, but defining this here avoids whining
7345 from cus-start.el and other places, like "M-x set-variable". */
7346 DEFVAR_BOOL ("x-use-underline-position-properties",
7347 x_use_underline_position_properties,
7348 doc: /* Non-nil means make use of UNDERLINE_POSITION font properties.
7349 A value of nil means ignore them. If you encounter fonts with bogus
7350 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
7351 to 4.1, set this to nil. You can also use `underline-minimum-offset'
7352 to override the font's UNDERLINE_POSITION for small font display
7353 sizes. */);
7354 x_use_underline_position_properties = 0;
7356 DEFVAR_BOOL ("x-underline-at-descent-line",
7357 x_underline_at_descent_line,
7358 doc: /* Non-nil means to draw the underline at the same place as the descent line.
7359 A value of nil means to draw the underline according to the value of the
7360 variable `x-use-underline-position-properties', which is usually at the
7361 baseline level. The default value is nil. */);
7362 x_underline_at_descent_line = 0;
7364 DEFVAR_LISP ("x-toolkit-scroll-bars", Vx_toolkit_scroll_bars,
7365 doc: /* Which toolkit scroll bars Emacs uses, if any.
7366 A value of nil means Emacs doesn't use toolkit scroll bars.
7367 With the X Window system, the value is a symbol describing the
7368 X toolkit. Possible values are: gtk, motif, xaw, or xaw3d.
7369 With MS Windows or Nextstep, the value is t. */);
7370 Vx_toolkit_scroll_bars = Qt;
7372 DEFVAR_BOOL ("w32-unicode-filenames",
7373 w32_unicode_filenames,
7374 doc: /* Non-nil means use Unicode APIs when passing file names to the OS.
7375 A value of nil means file names passed to the OS APIs and returned
7376 from those APIs are encoded/decoded using the ANSI codepage
7377 specified by `file-name-coding-system'.
7379 This variable is set to non-nil by default when Emacs runs on Windows
7380 systems of the NT family, including W2K, XP, Vista, Windows 7 and
7381 Windows 8. It is set to nil on Windows 9X. */);
7382 if (os_subtype == OS_9X)
7383 w32_unicode_filenames = 0;
7384 else
7385 w32_unicode_filenames = 1;
7388 /* FIXME: The following variable will be (hopefully) removed
7389 before Emacs 25.1 gets released. */
7391 DEFVAR_BOOL ("w32-add-wrapped-menu-bar-lines",
7392 w32_add_wrapped_menu_bar_lines,
7393 doc: /* Non-nil means frame resizing accounts for wrapped menu bar lines.
7394 A value of nil means frame resizing does not add the height of wrapped
7395 menu bar lines when sending a frame resize request to the Windows API.
7396 This usually means that the resulting frame height is off by the number
7397 of wrapped menu bar lines. If this is non-nil, Emacs adds the height of
7398 wrapped menu bar lines when sending frame resize requests to the Windows
7399 API. */);
7400 w32_add_wrapped_menu_bar_lines = 1;
7402 /* Tell Emacs about this window system. */
7403 Fprovide (Qw32, Qnil);