Fix bug #16517 with display change on MS-Windows while in full-screen mode.
[bpt/emacs.git] / src / w32term.c
1 /* Implementation of GUI terminal on the Microsoft Windows API.
2
3 Copyright (C) 1989, 1993-2014 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20 #include <config.h>
21 #include <signal.h>
22 #include <stdio.h>
23 #include "lisp.h"
24 #include "blockinput.h"
25 #include "w32term.h"
26
27 #include "systty.h"
28 #include "systime.h"
29
30 #include <ctype.h>
31 #include <errno.h>
32 #include <sys/stat.h>
33 #include <imm.h>
34
35 #include "charset.h"
36 #include "character.h"
37 #include "coding.h"
38 #include "ccl.h"
39 #include "frame.h"
40 #include "dispextern.h"
41 #include "fontset.h"
42 #include "termhooks.h"
43 #include "termopts.h"
44 #include "termchar.h"
45 #include "disptab.h"
46 #include "buffer.h"
47 #include "window.h"
48 #include "keyboard.h"
49 #include "intervals.h"
50 #include "process.h"
51 #include "atimer.h"
52 #include "keymap.h"
53
54 #ifdef WINDOWSNT
55 #include "w32.h" /* for filename_from_utf16, filename_from_ansi */
56 #include "w32heap.h"
57 #endif
58
59 #ifndef WINDOWSNT
60 #include <io.h> /* for get_osfhandle */
61 #endif
62
63 #include <shellapi.h>
64
65 #include "font.h"
66 #include "w32font.h"
67 \f
68 /* Fringe bitmaps. */
69
70 static int max_fringe_bmp = 0;
71 static HBITMAP *fringe_bmp = 0;
72
73 /* Temporary variables for w32_read_socket. */
74
75 static int last_mousemove_x = 0;
76 static int last_mousemove_y = 0;
77
78 /* Define GET_WHEEL_DELTA_WPARAM macro if system headers don't. */
79 #ifndef GET_WHEEL_DELTA_WPARAM
80 #define GET_WHEEL_DELTA_WPARAM(wparam) ((short)HIWORD (wparam))
81 #endif
82
83 /* Non-zero means that a HELP_EVENT has been generated since Emacs
84 start. */
85
86 static int any_help_event_p;
87
88 extern unsigned int msh_mousewheel;
89
90 extern void free_frame_menubar (struct frame *);
91
92 extern int w32_codepage_for_font (char *fontname);
93 extern Cursor w32_load_cursor (LPCTSTR name);
94
95 #define x_any_window_to_frame x_window_to_frame
96 #define x_top_window_to_frame x_window_to_frame
97
98 \f
99 /* This is display since w32 does not support multiple ones. */
100 struct w32_display_info one_w32_display_info;
101 struct w32_display_info *x_display_list;
102
103 #if _WIN32_WINNT < 0x0500 && !defined(_W64)
104 /* Pre Windows 2000, this was not available, but define it here so
105 that Emacs compiled on such a platform will run on newer versions.
106 MinGW64 (_W64) defines these unconditionally, so avoid redefining. */
107
108 typedef struct tagWCRANGE
109 {
110 WCHAR wcLow;
111 USHORT cGlyphs;
112 } WCRANGE;
113
114 typedef struct tagGLYPHSET
115 {
116 DWORD cbThis;
117 DWORD flAccel;
118 DWORD cGlyphsSupported;
119 DWORD cRanges;
120 WCRANGE ranges[1];
121 } GLYPHSET;
122
123 #endif /* compiling for pre-Win2k */
124
125 /* Dynamic linking to SetLayeredWindowAttribute (only since 2000). */
126 BOOL (WINAPI *pfnSetLayeredWindowAttributes) (HWND, COLORREF, BYTE, DWORD);
127
128 #ifndef LWA_ALPHA
129 #define LWA_ALPHA 0x02
130 #endif
131 /* WS_EX_LAYERED is defined unconditionally by MingW, but only for W2K and
132 later targets by MSVC headers. */
133 #ifndef WS_EX_LAYERED
134 #define WS_EX_LAYERED 0x80000
135 #endif
136
137 /* SM_CXVIRTUALSCREEN and SM_CYVIRTUALSCREEN are not defined on 95 and
138 NT4. */
139 #ifndef SM_CXVIRTUALSCREEN
140 #define SM_CXVIRTUALSCREEN 78
141 #endif
142 #ifndef SM_CYVIRTUALSCREEN
143 #define SM_CYVIRTUALSCREEN 79
144 #endif
145
146 /* The handle of the frame that currently owns the system caret. */
147 HWND w32_system_caret_hwnd;
148 int w32_system_caret_height;
149 int w32_system_caret_x;
150 int w32_system_caret_y;
151 struct window *w32_system_caret_window;
152 int w32_system_caret_hdr_height;
153 int w32_system_caret_mode_height;
154 DWORD dwWindowsThreadId = 0;
155 HANDLE hWindowsThread = NULL;
156 DWORD dwMainThreadId = 0;
157 HANDLE hMainThread = NULL;
158
159 int vertical_scroll_bar_min_handle;
160 int vertical_scroll_bar_top_border;
161 int vertical_scroll_bar_bottom_border;
162
163 int last_scroll_bar_drag_pos;
164
165 /* Keyboard code page - may be changed by language-change events. */
166 int w32_keyboard_codepage;
167
168 /* Incremented by w32_read_socket whenever it really tries to read
169 events. */
170 static int volatile input_signal_count;
171
172 #ifdef CYGWIN
173 int w32_message_fd = -1;
174 #endif /* CYGWIN */
175
176 static void w32_handle_tool_bar_click (struct frame *,
177 struct input_event *);
178 static void w32_define_cursor (Window, Cursor);
179
180 void x_lower_frame (struct frame *);
181 void x_scroll_bar_clear (struct frame *);
182 void x_wm_set_size_hint (struct frame *, long, bool);
183 void x_raise_frame (struct frame *);
184 void x_set_window_size (struct frame *, int, int, int, bool);
185 void x_wm_set_window_state (struct frame *, int);
186 void x_wm_set_icon_pixmap (struct frame *, int);
187 static void w32_initialize (void);
188 static void x_update_end (struct frame *);
189 static void w32_frame_up_to_date (struct frame *);
190 static void x_clear_frame (struct frame *);
191 static void frame_highlight (struct frame *);
192 static void frame_unhighlight (struct frame *);
193 static void x_new_focus_frame (struct w32_display_info *,
194 struct frame *);
195 static void x_focus_changed (int, int, struct w32_display_info *,
196 struct frame *, struct input_event *);
197 static void w32_detect_focus_change (struct w32_display_info *,
198 W32Msg *, struct input_event *);
199 static void w32_frame_rehighlight (struct frame *);
200 static void x_frame_rehighlight (struct w32_display_info *);
201 static void x_draw_hollow_cursor (struct window *, struct glyph_row *);
202 static void x_draw_bar_cursor (struct window *, struct glyph_row *, int,
203 enum text_cursor_kinds);
204 static void w32_clip_to_row (struct window *, struct glyph_row *,
205 enum glyph_row_area, HDC);
206 static BOOL my_show_window (struct frame *, HWND, int);
207 static void my_set_window_pos (HWND, HWND, int, int, int, int, UINT);
208 #if 0
209 static void my_set_focus (struct frame *, HWND);
210 #endif
211 static void my_set_foreground_window (HWND);
212 static void my_destroy_window (struct frame *, HWND);
213 static void w32fullscreen_hook (struct frame *);
214
215 #ifdef GLYPH_DEBUG
216 static void x_check_font (struct frame *, struct font *);
217 #endif
218
219 static Lisp_Object Qvendor_specific_keysyms;
220 static Lisp_Object Qadded, Qremoved, Qmodified;
221 static Lisp_Object Qrenamed_from, Qrenamed_to;
222
223 \f
224 /***********************************************************************
225 Debugging
226 ***********************************************************************/
227
228 #if 0
229
230 /* This is a function useful for recording debugging information about
231 the sequence of occurrences in this file. */
232
233 struct record
234 {
235 char *locus;
236 int type;
237 };
238
239 struct record event_record[100];
240
241 int event_record_index;
242
243 record_event (char *locus, int type)
244 {
245 if (event_record_index == sizeof (event_record) / sizeof (struct record))
246 event_record_index = 0;
247
248 event_record[event_record_index].locus = locus;
249 event_record[event_record_index].type = type;
250 event_record_index++;
251 }
252
253 #endif /* 0 */
254 \f
255
256 void
257 XChangeGC (void *ignore, XGCValues *gc, unsigned long mask,
258 XGCValues *xgcv)
259 {
260 if (mask & GCForeground)
261 gc->foreground = xgcv->foreground;
262 if (mask & GCBackground)
263 gc->background = xgcv->background;
264 if (mask & GCFont)
265 gc->font = xgcv->font;
266 }
267
268 XGCValues *
269 XCreateGC (void *ignore, Window window, unsigned long mask, XGCValues *xgcv)
270 {
271 XGCValues *gc = xzalloc (sizeof (XGCValues));
272
273 XChangeGC (ignore, gc, mask, xgcv);
274
275 return gc;
276 }
277
278 void
279 XGetGCValues (void *ignore, XGCValues *gc,
280 unsigned long mask, XGCValues *xgcv)
281 {
282 XChangeGC (ignore, xgcv, mask, gc);
283 }
284
285 static void
286 w32_set_clip_rectangle (HDC hdc, RECT *rect)
287 {
288 if (rect)
289 {
290 HRGN clip_region = CreateRectRgnIndirect (rect);
291 SelectClipRgn (hdc, clip_region);
292 DeleteObject (clip_region);
293 }
294 else
295 SelectClipRgn (hdc, NULL);
296 }
297
298 /* Restore clipping rectangle in S */
299 static void
300 w32_restore_glyph_string_clip (struct glyph_string *s)
301 {
302 RECT *r = s->clip;
303 int n = s->num_clips;
304
305 if (n == 1)
306 w32_set_clip_rectangle (s->hdc, r);
307 else if (n > 1)
308 {
309 HRGN clip1 = CreateRectRgnIndirect (r);
310 HRGN clip2 = CreateRectRgnIndirect (r + 1);
311 if (CombineRgn (clip1, clip1, clip2, RGN_OR) != ERROR)
312 SelectClipRgn (s->hdc, clip1);
313 DeleteObject (clip1);
314 DeleteObject (clip2);
315 }
316 }
317
318 /*
319 Draw a wavy line under S. The wave fills wave_height pixels from y0.
320
321 x0 wave_length = 2
322 --
323 y0 * * * * *
324 |* * * * * * * * *
325 wave_height = 3 | * * * *
326
327 */
328
329 void
330 w32_draw_underwave (struct glyph_string *s, COLORREF color)
331 {
332 int wave_height = 3, wave_length = 2;
333 int dx, dy, x0, y0, width, x1, y1, x2, y2, odd, xmax;
334 XRectangle wave_clip, string_clip, final_clip;
335 RECT w32_final_clip, w32_string_clip;
336 HPEN hp, oldhp;
337
338 dx = wave_length;
339 dy = wave_height - 1;
340 x0 = s->x;
341 y0 = s->ybase - wave_height + 3;
342 width = s->width;
343 xmax = x0 + width;
344
345 /* Find and set clipping rectangle */
346
347 wave_clip.x = x0;
348 wave_clip.y = y0;
349 wave_clip.width = width;
350 wave_clip.height = wave_height;
351
352 get_glyph_string_clip_rect (s, &w32_string_clip);
353 CONVERT_TO_XRECT (string_clip, w32_string_clip);
354
355 if (!x_intersect_rectangles (&wave_clip, &string_clip, &final_clip))
356 return;
357
358 hp = CreatePen (PS_SOLID, 0, color);
359 oldhp = SelectObject (s->hdc, hp);
360 CONVERT_FROM_XRECT (final_clip, w32_final_clip);
361 w32_set_clip_rectangle (s->hdc, &w32_final_clip);
362
363 /* Draw the waves */
364
365 x1 = x0 - (x0 % dx);
366 x2 = x1 + dx;
367 odd = (x1/dx) % 2;
368 y1 = y2 = y0;
369
370 if (odd)
371 y1 += dy;
372 else
373 y2 += dy;
374
375 MoveToEx (s->hdc, x1, y1, NULL);
376
377 while (x1 <= xmax)
378 {
379 LineTo (s->hdc, x2, y2);
380 x1 = x2, y1 = y2;
381 x2 += dx, y2 = y0 + odd*dy;
382 odd = !odd;
383 }
384
385 /* Restore previous pen and clipping rectangle(s) */
386 w32_restore_glyph_string_clip (s);
387 SelectObject (s->hdc, oldhp);
388 DeleteObject (hp);
389 }
390
391 /* Draw a hollow rectangle at the specified position. */
392 void
393 w32_draw_rectangle (HDC hdc, XGCValues *gc, int x, int y,
394 int width, int height)
395 {
396 HBRUSH hb, oldhb;
397 HPEN hp, oldhp;
398
399 hb = CreateSolidBrush (gc->background);
400 hp = CreatePen (PS_SOLID, 0, gc->foreground);
401 oldhb = SelectObject (hdc, hb);
402 oldhp = SelectObject (hdc, hp);
403
404 Rectangle (hdc, x, y, x + width, y + height);
405
406 SelectObject (hdc, oldhb);
407 SelectObject (hdc, oldhp);
408 DeleteObject (hb);
409 DeleteObject (hp);
410 }
411
412 /* Draw a filled rectangle at the specified position. */
413 void
414 w32_fill_rect (struct frame *f, HDC hdc, COLORREF pix, RECT *lprect)
415 {
416 HBRUSH hb;
417
418 hb = CreateSolidBrush (pix);
419 FillRect (hdc, lprect, hb);
420 DeleteObject (hb);
421 }
422
423 void
424 w32_clear_window (struct frame *f)
425 {
426 RECT rect;
427 HDC hdc = get_frame_dc (f);
428
429 /* Under certain conditions, this can be called at startup with
430 a console frame pointer before the GUI frame is created. An HDC
431 of 0 indicates this. */
432 if (hdc)
433 {
434 GetClientRect (FRAME_W32_WINDOW (f), &rect);
435 w32_clear_rect (f, hdc, &rect);
436 }
437
438 release_frame_dc (f, hdc);
439 }
440
441 #define OPAQUE_FRAME 255
442
443 void
444 x_set_frame_alpha (struct frame *f)
445 {
446 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
447 double alpha = 1.0;
448 double alpha_min = 1.0;
449 BYTE opac;
450 LONG ex_style;
451 HWND window = FRAME_W32_WINDOW (f);
452
453 /* Older versions of Windows do not support transparency. */
454 if (!pfnSetLayeredWindowAttributes)
455 return;
456
457 if (dpyinfo->x_highlight_frame == f)
458 alpha = f->alpha[0];
459 else
460 alpha = f->alpha[1];
461
462 if (FLOATP (Vframe_alpha_lower_limit))
463 alpha_min = XFLOAT_DATA (Vframe_alpha_lower_limit);
464 else if (INTEGERP (Vframe_alpha_lower_limit))
465 alpha_min = (XINT (Vframe_alpha_lower_limit)) / 100.0;
466
467 if (alpha < 0.0)
468 return;
469 else if (alpha > 1.0)
470 alpha = 1.0;
471 else if (alpha < alpha_min && alpha_min <= 1.0)
472 alpha = alpha_min;
473
474 opac = alpha * OPAQUE_FRAME;
475
476 ex_style = GetWindowLong (window, GWL_EXSTYLE);
477
478 if (opac == OPAQUE_FRAME)
479 ex_style &= ~WS_EX_LAYERED;
480 else
481 ex_style |= WS_EX_LAYERED;
482
483 SetWindowLong (window, GWL_EXSTYLE, ex_style);
484
485 if (opac != OPAQUE_FRAME)
486 pfnSetLayeredWindowAttributes (window, 0, opac, LWA_ALPHA);
487 }
488
489 int
490 x_display_pixel_height (struct w32_display_info *dpyinfo)
491 {
492 int pixels = GetSystemMetrics (SM_CYVIRTUALSCREEN);
493
494 if (pixels == 0)
495 /* Fallback for Windows 95 or NT 4.0. */
496 pixels = GetSystemMetrics (SM_CYSCREEN);
497
498 return pixels;
499 }
500
501 int
502 x_display_pixel_width (struct w32_display_info *dpyinfo)
503 {
504 int pixels = GetSystemMetrics (SM_CXVIRTUALSCREEN);
505
506 if (pixels == 0)
507 /* Fallback for Windows 95 or NT 4.0. */
508 pixels = GetSystemMetrics (SM_CXSCREEN);
509
510 return pixels;
511 }
512
513 \f
514 /***********************************************************************
515 Starting and ending an update
516 ***********************************************************************/
517
518 /* Start an update of frame F. This function is installed as a hook
519 for update_begin, i.e. it is called when update_begin is called.
520 This function is called prior to calls to x_update_window_begin for
521 each window being updated. */
522
523 static void
524 x_update_begin (struct frame *f)
525 {
526 struct w32_display_info *display_info = FRAME_DISPLAY_INFO (f);
527
528 if (! FRAME_W32_P (f))
529 return;
530
531 /* Regenerate display palette before drawing if list of requested
532 colors has changed. */
533 if (display_info->regen_palette)
534 {
535 w32_regenerate_palette (f);
536 display_info->regen_palette = FALSE;
537 }
538 }
539
540
541 /* Start update of window W. */
542
543 static void
544 x_update_window_begin (struct window *w)
545 {
546 struct frame *f = XFRAME (WINDOW_FRAME (w));
547 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
548
549 /* Hide the system caret during an update. */
550 if (w32_use_visible_system_caret && w32_system_caret_hwnd)
551 {
552 SendMessage (w32_system_caret_hwnd, WM_EMACS_HIDE_CARET, 0, 0);
553 }
554
555 w->output_cursor = w->cursor;
556
557 block_input ();
558
559 if (f == hlinfo->mouse_face_mouse_frame)
560 {
561 /* Don't do highlighting for mouse motion during the update. */
562 hlinfo->mouse_face_defer = 1;
563
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;
568
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. */
575
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))
583 {
584 int i;
585
586 for (i = 0; i < w->desired_matrix->nrows; ++i)
587 if (MATRIX_ROW_ENABLED_P (w->desired_matrix, i))
588 break;
589
590 if (i < w->desired_matrix->nrows)
591 clear_mouse_face (hlinfo);
592 }
593 #endif /* 0 */
594 }
595
596 unblock_input ();
597 }
598
599 /* Draw a vertical window border from (x,y0) to (x,y1) */
600
601 static void
602 w32_draw_vertical_window_border (struct window *w, int x, int y0, int y1)
603 {
604 struct frame *f = XFRAME (WINDOW_FRAME (w));
605 RECT r;
606 HDC hdc;
607 struct face *face;
608
609 r.left = x;
610 r.right = x + 1;
611 r.top = y0;
612 r.bottom = y1;
613
614 hdc = get_frame_dc (f);
615 face = FACE_FROM_ID (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);
620
621 release_frame_dc (f, hdc);
622 }
623
624
625 /* Draw a window divider from (x0, y0) to (x1, y1) */
626
627 static void
628 w32_draw_window_divider (struct window *w, int x0, int x1, int y0, int y1)
629 {
630 struct frame *f = XFRAME (WINDOW_FRAME (w));
631 RECT r;
632 HDC hdc;
633 struct face *face;
634
635 r.left = x0;
636 r.right = x1;
637 r.top = y0;
638 r.bottom = y1;
639
640 hdc = get_frame_dc (f);
641 face = FACE_FROM_ID (f, WINDOW_DIVIDER_FACE_ID);
642 if (face)
643 w32_fill_rect (f, hdc, face->foreground, &r);
644 else
645 w32_fill_rect (f, hdc, FRAME_FOREGROUND_PIXEL (f), &r);
646
647 release_frame_dc (f, hdc);
648 }
649
650
651 /* End update of window W.
652
653 Draw vertical borders between horizontally adjacent windows, and
654 display W's cursor if CURSOR_ON_P is non-zero.
655
656 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
657 glyphs in mouse-face were overwritten. In that case we have to
658 make sure that the mouse-highlight is properly redrawn.
659
660 W may be a menu bar pseudo-window in case we don't have X toolkit
661 support. Such windows don't have a cursor, so don't display it
662 here. */
663
664 static void
665 x_update_window_end (struct window *w, bool cursor_on_p,
666 bool mouse_face_overwritten_p)
667 {
668 if (!w->pseudo_window_p)
669 {
670 block_input ();
671
672 if (cursor_on_p)
673 display_and_set_cursor (w, 1,
674 w->output_cursor.hpos, w->output_cursor.vpos,
675 w->output_cursor.x, w->output_cursor.y);
676
677 if (draw_window_fringes (w, 1))
678 {
679 if (WINDOW_RIGHT_DIVIDER_WIDTH (w))
680 x_draw_right_divider (w);
681 else
682 x_draw_vertical_border (w);
683 }
684
685 unblock_input ();
686 }
687
688 /* If a row with mouse-face was overwritten, arrange for
689 XTframe_up_to_date to redisplay the mouse highlight. */
690 if (mouse_face_overwritten_p)
691 {
692 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
693
694 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
695 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
696 hlinfo->mouse_face_window = Qnil;
697 }
698
699 /* Unhide the caret. This won't actually show the cursor, unless it
700 was visible before the corresponding call to HideCaret in
701 x_update_window_begin. */
702 if (w32_use_visible_system_caret && w32_system_caret_hwnd)
703 {
704 SendMessage (w32_system_caret_hwnd, WM_EMACS_SHOW_CARET, 0, 0);
705 }
706 }
707
708
709 /* End update of frame F. This function is installed as a hook in
710 update_end. */
711
712 static void
713 x_update_end (struct frame *f)
714 {
715 if (! FRAME_W32_P (f))
716 return;
717
718 /* Mouse highlight may be displayed again. */
719 MOUSE_HL_INFO (f)->mouse_face_defer = 0;
720 }
721
722
723 /* This function is called from various places in xdisp.c
724 whenever a complete update has been performed. */
725
726 static void
727 w32_frame_up_to_date (struct frame *f)
728 {
729 if (FRAME_W32_P (f))
730 FRAME_MOUSE_UPDATE (f);
731 }
732
733
734 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
735 arrow bitmaps, or clear the fringes if no bitmaps are required
736 before DESIRED_ROW is made current. This function is called from
737 update_window_line only if it is known that there are differences
738 between bitmaps to be drawn between current row and DESIRED_ROW. */
739
740 static void
741 x_after_update_window_line (struct window *w, struct glyph_row *desired_row)
742 {
743 struct frame *f;
744 int width, height;
745
746 eassert (w);
747
748 if (!desired_row->mode_line_p && !w->pseudo_window_p)
749 desired_row->redraw_fringe_bitmaps_p = 1;
750
751 /* When a window has disappeared, make sure that no rest of
752 full-width rows stays visible in the internal border. Could
753 check here if updated window is the leftmost/rightmost window,
754 but I guess it's not worth doing since vertically split windows
755 are almost never used, internal border is rarely set, and the
756 overhead is very small. */
757 if (windows_or_buffers_changed
758 && desired_row->full_width_p
759 && (f = XFRAME (w->frame),
760 width = FRAME_INTERNAL_BORDER_WIDTH (f),
761 width != 0)
762 && (height = desired_row->visible_height,
763 height > 0))
764 {
765 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
766
767 block_input ();
768 {
769 HDC hdc = get_frame_dc (f);
770 w32_clear_area (f, hdc, 0, y, width, height);
771 w32_clear_area (f, hdc, FRAME_PIXEL_WIDTH (f) - width,
772 y, width, height);
773 release_frame_dc (f, hdc);
774 }
775 unblock_input ();
776 }
777 }
778
779
780 /* Draw the bitmap WHICH in one of the left or right fringes of
781 window W. ROW is the glyph row for which to display the bitmap; it
782 determines the vertical position at which the bitmap has to be
783 drawn. */
784
785 static void
786 w32_draw_fringe_bitmap (struct window *w, struct glyph_row *row,
787 struct draw_fringe_bitmap_params *p)
788 {
789 struct frame *f = XFRAME (WINDOW_FRAME (w));
790 HDC hdc;
791 struct face *face = p->face;
792
793 hdc = get_frame_dc (f);
794
795 /* Must clip because of partially visible lines. */
796 w32_clip_to_row (w, row, ANY_AREA, hdc);
797
798 if (p->bx >= 0 && !p->overlay_p)
799 w32_fill_area (f, hdc, face->background,
800 p->bx, p->by, p->nx, p->ny);
801
802 if (p->which && p->which < max_fringe_bmp)
803 {
804 HBITMAP pixmap = fringe_bmp[p->which];
805 HDC compat_hdc;
806 HANDLE horig_obj;
807
808 compat_hdc = CreateCompatibleDC (hdc);
809
810 SaveDC (hdc);
811
812 horig_obj = SelectObject (compat_hdc, pixmap);
813
814 /* Paint overlays transparently. */
815 if (p->overlay_p)
816 {
817 HBRUSH h_brush, h_orig_brush;
818
819 SetTextColor (hdc, BLACK_PIX_DEFAULT (f));
820 SetBkColor (hdc, WHITE_PIX_DEFAULT (f));
821 h_brush = CreateSolidBrush (face->foreground);
822 h_orig_brush = SelectObject (hdc, h_brush);
823
824 BitBlt (hdc, p->x, p->y, p->wd, p->h,
825 compat_hdc, 0, p->dh,
826 DSTINVERT);
827 BitBlt (hdc, p->x, p->y, p->wd, p->h,
828 compat_hdc, 0, p->dh,
829 0x2E064A);
830 BitBlt (hdc, p->x, p->y, p->wd, p->h,
831 compat_hdc, 0, p->dh,
832 DSTINVERT);
833
834 SelectObject (hdc, h_orig_brush);
835 DeleteObject (h_brush);
836 }
837 else
838 {
839 SetTextColor (hdc, face->background);
840 SetBkColor (hdc, (p->cursor_p
841 ? f->output_data.w32->cursor_pixel
842 : face->foreground));
843
844 BitBlt (hdc, p->x, p->y, p->wd, p->h,
845 compat_hdc, 0, p->dh,
846 SRCCOPY);
847 }
848
849 SelectObject (compat_hdc, horig_obj);
850 DeleteDC (compat_hdc);
851 RestoreDC (hdc, -1);
852 }
853
854 w32_set_clip_rectangle (hdc, NULL);
855
856 release_frame_dc (f, hdc);
857 }
858
859 static void
860 w32_define_fringe_bitmap (int which, unsigned short *bits, int h, int wd)
861 {
862 if (which >= max_fringe_bmp)
863 {
864 int i = max_fringe_bmp;
865 max_fringe_bmp = which + 20;
866 fringe_bmp = (HBITMAP *) xrealloc (fringe_bmp, max_fringe_bmp * sizeof (HBITMAP));
867 while (i < max_fringe_bmp)
868 fringe_bmp[i++] = 0;
869 }
870
871 fringe_bmp[which] = CreateBitmap (wd, h, 1, 1, bits);
872 }
873
874 static void
875 w32_destroy_fringe_bitmap (int which)
876 {
877 if (which >= max_fringe_bmp)
878 return;
879
880 if (fringe_bmp[which])
881 DeleteObject (fringe_bmp[which]);
882 fringe_bmp[which] = 0;
883 }
884
885 /***********************************************************************
886 Display Iterator
887 ***********************************************************************/
888
889 /* Function prototypes of this page. */
890
891 static void x_set_glyph_string_clipping (struct glyph_string *);
892 static void x_set_glyph_string_gc (struct glyph_string *);
893 static void x_draw_glyph_string_background (struct glyph_string *,
894 int);
895 static void x_draw_glyph_string_foreground (struct glyph_string *);
896 static void x_draw_composite_glyph_string_foreground (struct glyph_string *);
897 static void x_draw_glyph_string_box (struct glyph_string *);
898 static void x_draw_glyph_string (struct glyph_string *);
899 static void x_set_cursor_gc (struct glyph_string *);
900 static void x_set_mode_line_face_gc (struct glyph_string *);
901 static void x_set_mouse_face_gc (struct glyph_string *);
902 static int w32_alloc_lighter_color (struct frame *, COLORREF *, double, int);
903 static void w32_setup_relief_color (struct frame *, struct relief *,
904 double, int, COLORREF);
905 static void x_setup_relief_colors (struct glyph_string *);
906 static void x_draw_image_glyph_string (struct glyph_string *);
907 static void x_draw_image_relief (struct glyph_string *);
908 static void x_draw_image_foreground (struct glyph_string *);
909 static void w32_draw_image_foreground_1 (struct glyph_string *, HBITMAP);
910 static void x_clear_glyph_string_rect (struct glyph_string *, int,
911 int, int, int);
912 static void w32_draw_relief_rect (struct frame *, int, int, int, int,
913 int, int, int, int, int, int,
914 RECT *);
915 static void w32_draw_box_rect (struct glyph_string *, int, int, int, int,
916 int, int, int, RECT *);
917
918
919 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
920 face. */
921
922 static void
923 x_set_cursor_gc (struct glyph_string *s)
924 {
925 if (s->font == FRAME_FONT (s->f)
926 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
927 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
928 && !s->cmp)
929 s->gc = s->f->output_data.w32->cursor_gc;
930 else
931 {
932 /* Cursor on non-default face: must merge. */
933 XGCValues xgcv;
934 unsigned long mask;
935
936 xgcv.background = s->f->output_data.w32->cursor_pixel;
937 xgcv.foreground = s->face->background;
938
939 /* If the glyph would be invisible, try a different foreground. */
940 if (xgcv.foreground == xgcv.background)
941 xgcv.foreground = s->face->foreground;
942 if (xgcv.foreground == xgcv.background)
943 xgcv.foreground = s->f->output_data.w32->cursor_foreground_pixel;
944 if (xgcv.foreground == xgcv.background)
945 xgcv.foreground = s->face->foreground;
946
947 /* Make sure the cursor is distinct from text in this face. */
948 if (xgcv.background == s->face->background
949 && xgcv.foreground == s->face->foreground)
950 {
951 xgcv.background = s->face->foreground;
952 xgcv.foreground = s->face->background;
953 }
954
955 IF_DEBUG (x_check_font (s->f, s->font));
956 xgcv.font = s->font;
957 mask = GCForeground | GCBackground | GCFont;
958
959 if (FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc)
960 XChangeGC (NULL, FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc,
961 mask, &xgcv);
962 else
963 FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc
964 = XCreateGC (NULL, s->window, mask, &xgcv);
965
966 s->gc = FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc;
967 }
968 }
969
970
971 /* Set up S->gc of glyph string S for drawing text in mouse face. */
972
973 static void
974 x_set_mouse_face_gc (struct glyph_string *s)
975 {
976 int face_id;
977 struct face *face;
978
979 /* What face has to be used last for the mouse face? */
980 face_id = MOUSE_HL_INFO (s->f)->mouse_face_face_id;
981 face = FACE_FROM_ID (s->f, face_id);
982 if (face == NULL)
983 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
984
985 if (s->first_glyph->type == CHAR_GLYPH)
986 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch, -1, Qnil);
987 else
988 face_id = FACE_FOR_CHAR (s->f, face, 0, -1, Qnil);
989 s->face = FACE_FROM_ID (s->f, face_id);
990 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
991
992 /* If font in this face is same as S->font, use it. */
993 if (s->font == s->face->font)
994 s->gc = s->face->gc;
995 else
996 {
997 /* Otherwise construct scratch_cursor_gc with values from FACE
998 but font FONT. */
999 XGCValues xgcv;
1000 unsigned long mask;
1001
1002 xgcv.background = s->face->background;
1003 xgcv.foreground = s->face->foreground;
1004 IF_DEBUG (x_check_font (s->f, s->font));
1005 xgcv.font = s->font;
1006 mask = GCForeground | GCBackground | GCFont;
1007
1008 if (FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc)
1009 XChangeGC (NULL, FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc,
1010 mask, &xgcv);
1011 else
1012 FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc
1013 = XCreateGC (NULL, s->window, mask, &xgcv);
1014
1015 s->gc = FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc;
1016 }
1017
1018 eassert (s->gc != 0);
1019 }
1020
1021
1022 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
1023 Faces to use in the mode line have already been computed when the
1024 matrix was built, so there isn't much to do, here. */
1025
1026 static inline void
1027 x_set_mode_line_face_gc (struct glyph_string *s)
1028 {
1029 s->gc = s->face->gc;
1030 }
1031
1032
1033 /* Set S->gc of glyph string S for drawing that glyph string. Set
1034 S->stippled_p to a non-zero value if the face of S has a stipple
1035 pattern. */
1036
1037 static inline void
1038 x_set_glyph_string_gc (struct glyph_string *s)
1039 {
1040 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
1041
1042 if (s->hl == DRAW_NORMAL_TEXT)
1043 {
1044 s->gc = s->face->gc;
1045 s->stippled_p = s->face->stipple != 0;
1046 }
1047 else if (s->hl == DRAW_INVERSE_VIDEO)
1048 {
1049 x_set_mode_line_face_gc (s);
1050 s->stippled_p = s->face->stipple != 0;
1051 }
1052 else if (s->hl == DRAW_CURSOR)
1053 {
1054 x_set_cursor_gc (s);
1055 s->stippled_p = 0;
1056 }
1057 else if (s->hl == DRAW_MOUSE_FACE)
1058 {
1059 x_set_mouse_face_gc (s);
1060 s->stippled_p = s->face->stipple != 0;
1061 }
1062 else if (s->hl == DRAW_IMAGE_RAISED
1063 || s->hl == DRAW_IMAGE_SUNKEN)
1064 {
1065 s->gc = s->face->gc;
1066 s->stippled_p = s->face->stipple != 0;
1067 }
1068 else
1069 {
1070 s->gc = s->face->gc;
1071 s->stippled_p = s->face->stipple != 0;
1072 }
1073
1074 /* GC must have been set. */
1075 eassert (s->gc != 0);
1076 }
1077
1078
1079 /* Set clipping for output of glyph string S. S may be part of a mode
1080 line or menu if we don't have X toolkit support. */
1081
1082 static inline void
1083 x_set_glyph_string_clipping (struct glyph_string *s)
1084 {
1085 RECT *r = s->clip;
1086 int n = get_glyph_string_clip_rects (s, r, 2);
1087
1088 if (n == 1)
1089 w32_set_clip_rectangle (s->hdc, r);
1090 else if (n > 1)
1091 {
1092 HRGN clip1 = CreateRectRgnIndirect (r);
1093 HRGN clip2 = CreateRectRgnIndirect (r + 1);
1094 if (CombineRgn (clip1, clip1, clip2, RGN_OR) != ERROR)
1095 SelectClipRgn (s->hdc, clip1);
1096 DeleteObject (clip1);
1097 DeleteObject (clip2);
1098 }
1099 s->num_clips = n;
1100 }
1101
1102 /* Set SRC's clipping for output of glyph string DST. This is called
1103 when we are drawing DST's left_overhang or right_overhang only in
1104 the area of SRC. */
1105
1106 static void
1107 x_set_glyph_string_clipping_exactly (struct glyph_string *src,
1108 struct glyph_string *dst)
1109 {
1110 RECT r;
1111
1112 r.left = src->x;
1113 r.right = r.left + src->width;
1114 r.top = src->y;
1115 r.bottom = r.top + src->height;
1116 dst->clip[0] = r;
1117 dst->num_clips = 1;
1118 w32_set_clip_rectangle (dst->hdc, &r);
1119 }
1120
1121 /* RIF:
1122 Compute left and right overhang of glyph string S. */
1123
1124 static void
1125 w32_compute_glyph_string_overhangs (struct glyph_string *s)
1126 {
1127 if (s->cmp == NULL
1128 && s->first_glyph->type == CHAR_GLYPH
1129 && !s->font_not_found_p)
1130 {
1131 unsigned *code = alloca (sizeof (unsigned) * s->nchars);
1132 struct font *font = s->font;
1133 struct font_metrics metrics;
1134 int i;
1135
1136 for (i = 0; i < s->nchars; i++)
1137 code[i] = s->char2b[i];
1138 font->driver->text_extents (font, code, s->nchars, &metrics);
1139 s->right_overhang = (metrics.rbearing > metrics.width
1140 ? metrics.rbearing - metrics.width : 0);
1141 s->left_overhang = metrics.lbearing < 0 ? -metrics.lbearing : 0;
1142 }
1143 else if (s->cmp)
1144 {
1145 s->right_overhang = s->cmp->rbearing - s->cmp->pixel_width;
1146 s->left_overhang = -s->cmp->lbearing;
1147 }
1148 }
1149
1150 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
1151
1152 static inline void
1153 x_clear_glyph_string_rect (struct glyph_string *s,
1154 int x, int y, int w, int h)
1155 {
1156 int real_x = x;
1157 int real_y = y;
1158 int real_w = w;
1159 int real_h = h;
1160 #if 0
1161 /* Take clipping into account. */
1162 if (s->gc->clip_mask == Rect)
1163 {
1164 real_x = max (real_x, s->gc->clip_rectangle.left);
1165 real_y = max (real_y, s->gc->clip_rectangle.top);
1166 real_w = min (real_w, s->gc->clip_rectangle.right
1167 - s->gc->clip_rectangle.left);
1168 real_h = min (real_h, s->gc->clip_rectangle.bottom
1169 - s->gc->clip_rectangle.top);
1170 }
1171 #endif
1172 w32_fill_area (s->f, s->hdc, s->gc->background, real_x, real_y,
1173 real_w, real_h);
1174 }
1175
1176
1177 /* Draw the background of glyph_string S. If S->background_filled_p
1178 is non-zero don't draw it. FORCE_P non-zero means draw the
1179 background even if it wouldn't be drawn normally. This is used
1180 when a string preceding S draws into the background of S, or S
1181 contains the first component of a composition. */
1182
1183 static void
1184 x_draw_glyph_string_background (struct glyph_string *s, int force_p)
1185 {
1186 /* Nothing to do if background has already been drawn or if it
1187 shouldn't be drawn in the first place. */
1188 if (!s->background_filled_p)
1189 {
1190 int box_line_width = max (s->face->box_line_width, 0);
1191
1192 #if 0 /* TODO: stipple */
1193 if (s->stippled_p)
1194 {
1195 /* Fill background with a stipple pattern. */
1196 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
1197 XFillRectangle (s->display, s->window, s->gc, s->x,
1198 s->y + box_line_width,
1199 s->background_width,
1200 s->height - 2 * box_line_width);
1201 XSetFillStyle (s->display, s->gc, FillSolid);
1202 s->background_filled_p = 1;
1203 }
1204 else
1205 #endif
1206 if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
1207 || s->font_not_found_p
1208 || s->extends_to_end_of_line_p
1209 || force_p)
1210 {
1211 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
1212 s->background_width,
1213 s->height - 2 * box_line_width);
1214 s->background_filled_p = 1;
1215 }
1216 }
1217 }
1218
1219
1220 /* Draw the foreground of glyph string S. */
1221
1222 static void
1223 x_draw_glyph_string_foreground (struct glyph_string *s)
1224 {
1225 int i, x;
1226
1227 /* If first glyph of S has a left box line, start drawing the text
1228 of S to the right of that box line. */
1229 if (s->face->box != FACE_NO_BOX
1230 && s->first_glyph->left_box_line_p)
1231 x = s->x + eabs (s->face->box_line_width);
1232 else
1233 x = s->x;
1234
1235 SetTextColor (s->hdc, s->gc->foreground);
1236 SetBkColor (s->hdc, s->gc->background);
1237 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
1238
1239 /* Draw characters of S as rectangles if S's font could not be
1240 loaded. */
1241 if (s->font_not_found_p)
1242 {
1243 for (i = 0; i < s->nchars; ++i)
1244 {
1245 struct glyph *g = s->first_glyph + i;
1246
1247 w32_draw_rectangle (s->hdc, s->gc, x, s->y, g->pixel_width - 1,
1248 s->height - 1);
1249 x += g->pixel_width;
1250 }
1251 }
1252 else
1253 {
1254 struct font *font = s->font;
1255 int boff = font->baseline_offset;
1256 int y;
1257 HFONT old_font;
1258
1259 old_font = SelectObject (s->hdc, FONT_HANDLE (font));
1260
1261 if (font->vertical_centering)
1262 boff = VCENTER_BASELINE_OFFSET (font, s->f) - boff;
1263
1264 y = s->ybase - boff;
1265 if (s->for_overlaps
1266 || (s->background_filled_p && s->hl != DRAW_CURSOR))
1267 font->driver->draw (s, 0, s->nchars, x, y, 0);
1268 else
1269 font->driver->draw (s, 0, s->nchars, x, y, 1);
1270 if (s->face->overstrike)
1271 font->driver->draw (s, 0, s->nchars, x + 1, y, 0);
1272
1273 SelectObject (s->hdc, old_font);
1274 }
1275 }
1276
1277 /* Draw the foreground of composite glyph string S. */
1278
1279 static void
1280 x_draw_composite_glyph_string_foreground (struct glyph_string *s)
1281 {
1282 int i, j, x;
1283 struct font *font = s->font;
1284
1285 /* If first glyph of S has a left box line, start drawing the text
1286 of S to the right of that box line. */
1287 if (s->face && s->face->box != FACE_NO_BOX
1288 && s->first_glyph->left_box_line_p)
1289 x = s->x + eabs (s->face->box_line_width);
1290 else
1291 x = s->x;
1292
1293 /* S is a glyph string for a composition. S->cmp_from is the index
1294 of the first character drawn for glyphs of this composition.
1295 S->cmp_from == 0 means we are drawing the very first character of
1296 this composition. */
1297
1298 SetTextColor (s->hdc, s->gc->foreground);
1299 SetBkColor (s->hdc, s->gc->background);
1300 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
1301
1302 /* Draw a rectangle for the composition if the font for the very
1303 first character of the composition could not be loaded. */
1304 if (s->font_not_found_p)
1305 {
1306 if (s->cmp_from == 0)
1307 w32_draw_rectangle (s->hdc, s->gc, x, s->y, s->width - 1,
1308 s->height - 1);
1309 }
1310 else if (! s->first_glyph->u.cmp.automatic)
1311 {
1312 int y = s->ybase;
1313 HFONT old_font;
1314
1315 old_font = SelectObject (s->hdc, FONT_HANDLE (font));
1316
1317 for (i = 0, j = s->cmp_from; i < s->nchars; i++, j++)
1318 /* TAB in a composition means display glyphs with padding
1319 space on the left or right. */
1320 if (COMPOSITION_GLYPH (s->cmp, j) != '\t')
1321 {
1322 int xx = x + s->cmp->offsets[j * 2];
1323 int yy = y - s->cmp->offsets[j * 2 + 1];
1324
1325 font->driver->draw (s, j, j + 1, xx, yy, 0);
1326 if (s->face->overstrike)
1327 font->driver->draw (s, j, j + 1, xx + 1, yy, 0);
1328 }
1329 SelectObject (s->hdc, old_font);
1330 }
1331 else
1332 {
1333 Lisp_Object gstring = composition_gstring_from_id (s->cmp_id);
1334 Lisp_Object glyph;
1335 int y = s->ybase;
1336 int width = 0;
1337 HFONT old_font;
1338
1339 old_font = SelectObject (s->hdc, FONT_HANDLE (font));
1340
1341 for (i = j = s->cmp_from; i < s->cmp_to; i++)
1342 {
1343 glyph = LGSTRING_GLYPH (gstring, i);
1344 if (NILP (LGLYPH_ADJUSTMENT (glyph)))
1345 width += LGLYPH_WIDTH (glyph);
1346 else
1347 {
1348 int xoff, yoff, wadjust;
1349
1350 if (j < i)
1351 {
1352 font->driver->draw (s, j, i, x, y, 0);
1353 x += width;
1354 }
1355 xoff = LGLYPH_XOFF (glyph);
1356 yoff = LGLYPH_YOFF (glyph);
1357 wadjust = LGLYPH_WADJUST (glyph);
1358 font->driver->draw (s, i, i + 1, x + xoff, y + yoff, 0);
1359 x += wadjust;
1360 j = i + 1;
1361 width = 0;
1362 }
1363 }
1364 if (j < i)
1365 font->driver->draw (s, j, i, x, y, 0);
1366
1367 SelectObject (s->hdc, old_font);
1368 }
1369 }
1370
1371
1372 /* Draw the foreground of glyph string S for glyphless characters. */
1373
1374 static void
1375 x_draw_glyphless_glyph_string_foreground (struct glyph_string *s)
1376 {
1377 struct glyph *glyph = s->first_glyph;
1378 XChar2b char2b[8];
1379 int x, i, j;
1380 int with_background;
1381
1382 /* If first glyph of S has a left box line, start drawing the text
1383 of S to the right of that box line. */
1384 if (s->face->box != FACE_NO_BOX
1385 && s->first_glyph->left_box_line_p)
1386 x = s->x + eabs (s->face->box_line_width);
1387 else
1388 x = s->x;
1389
1390 SetTextColor (s->hdc, s->gc->foreground);
1391 SetBkColor (s->hdc, s->gc->background);
1392 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
1393
1394 s->char2b = char2b;
1395 with_background = ! (s->for_overlaps
1396 || (s->background_filled_p && s->hl != DRAW_CURSOR));
1397 for (i = 0; i < s->nchars; i++, glyph++)
1398 {
1399 char buf[7], *str = NULL;
1400 int len = glyph->u.glyphless.len;
1401
1402 if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_ACRONYM)
1403 {
1404 if (len > 1
1405 && CHAR_TABLE_P (Vglyphless_char_display)
1406 && (CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (Vglyphless_char_display))
1407 >= 1))
1408 {
1409 Lisp_Object acronym
1410 = (! glyph->u.glyphless.for_no_font
1411 ? CHAR_TABLE_REF (Vglyphless_char_display,
1412 glyph->u.glyphless.ch)
1413 : XCHAR_TABLE (Vglyphless_char_display)->extras[0]);
1414 if (STRINGP (acronym))
1415 str = SSDATA (acronym);
1416 }
1417 }
1418 else if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_HEX_CODE)
1419 {
1420 sprintf ((char *) buf, "%0*X",
1421 glyph->u.glyphless.ch < 0x10000 ? 4 : 6,
1422 glyph->u.glyphless.ch);
1423 str = buf;
1424 }
1425
1426 if (glyph->u.glyphless.method != GLYPHLESS_DISPLAY_THIN_SPACE)
1427 w32_draw_rectangle (s->hdc, s->gc,
1428 x, s->ybase - glyph->ascent,
1429 glyph->pixel_width - 1,
1430 glyph->ascent + glyph->descent - 1);
1431 if (str)
1432 {
1433 struct font *font = s->font;
1434 int upper_len = (len + 1) / 2;
1435 unsigned code;
1436 HFONT old_font;
1437
1438 old_font = SelectObject (s->hdc, FONT_HANDLE (font));
1439 /* It is certain that all LEN characters in STR are ASCII. */
1440 for (j = 0; j < len; j++)
1441 {
1442 code = font->driver->encode_char (font, str[j]);
1443 STORE_XCHAR2B (char2b + j, code >> 8, code & 0xFF);
1444 }
1445 font->driver->draw (s, 0, upper_len,
1446 x + glyph->slice.glyphless.upper_xoff,
1447 s->ybase + glyph->slice.glyphless.upper_yoff,
1448 with_background);
1449 font->driver->draw (s, upper_len, len,
1450 x + glyph->slice.glyphless.lower_xoff,
1451 s->ybase + glyph->slice.glyphless.lower_yoff,
1452 with_background);
1453 SelectObject (s->hdc, old_font);
1454 }
1455 x += glyph->pixel_width;
1456 }
1457 }
1458
1459
1460 /* Brightness beyond which a color won't have its highlight brightness
1461 boosted.
1462
1463 Nominally, highlight colors for `3d' faces are calculated by
1464 brightening an object's color by a constant scale factor, but this
1465 doesn't yield good results for dark colors, so for colors whose
1466 brightness is less than this value (on a scale of 0-255) have to
1467 use an additional additive factor.
1468
1469 The value here is set so that the default menu-bar/mode-line color
1470 (grey75) will not have its highlights changed at all. */
1471 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 187
1472
1473
1474 /* Allocate a color which is lighter or darker than *COLOR by FACTOR
1475 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1476 If this produces the same color as COLOR, try a color where all RGB
1477 values have DELTA added. Return the allocated color in *COLOR.
1478 DISPLAY is the X display, CMAP is the colormap to operate on.
1479 Value is non-zero if successful. */
1480
1481 static int
1482 w32_alloc_lighter_color (struct frame *f, COLORREF *color,
1483 double factor, int delta)
1484 {
1485 COLORREF new;
1486 long bright;
1487
1488 /* On Windows, RGB values are 0-255, not 0-65535, so scale delta. */
1489 delta /= 256;
1490
1491 /* Change RGB values by specified FACTOR. Avoid overflow! */
1492 eassert (factor >= 0);
1493 new = PALETTERGB (min (0xff, factor * GetRValue (*color)),
1494 min (0xff, factor * GetGValue (*color)),
1495 min (0xff, factor * GetBValue (*color)));
1496
1497 /* Calculate brightness of COLOR. */
1498 bright = (2 * GetRValue (*color) + 3 * GetGValue (*color)
1499 + GetBValue (*color)) / 6;
1500
1501 /* We only boost colors that are darker than
1502 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
1503 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
1504 /* Make an additive adjustment to NEW, because it's dark enough so
1505 that scaling by FACTOR alone isn't enough. */
1506 {
1507 /* How far below the limit this color is (0 - 1, 1 being darker). */
1508 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
1509 /* The additive adjustment. */
1510 int min_delta = delta * dimness * factor / 2;
1511
1512 if (factor < 1)
1513 new = PALETTERGB (max (0, min (0xff, min_delta - GetRValue (*color))),
1514 max (0, min (0xff, min_delta - GetGValue (*color))),
1515 max (0, min (0xff, min_delta - GetBValue (*color))));
1516 else
1517 new = PALETTERGB (max (0, min (0xff, min_delta + GetRValue (*color))),
1518 max (0, min (0xff, min_delta + GetGValue (*color))),
1519 max (0, min (0xff, min_delta + GetBValue (*color))));
1520 }
1521
1522 if (new == *color)
1523 new = PALETTERGB (max (0, min (0xff, delta + GetRValue (*color))),
1524 max (0, min (0xff, delta + GetGValue (*color))),
1525 max (0, min (0xff, delta + GetBValue (*color))));
1526
1527 /* TODO: Map to palette and retry with delta if same? */
1528 /* TODO: Free colors (if using palette)? */
1529
1530 if (new == *color)
1531 return 0;
1532
1533 *color = new;
1534
1535 return 1;
1536 }
1537
1538 /* On frame F, translate pixel colors to RGB values for the NCOLORS
1539 colors in COLORS. On W32, we no longer try to map colors to
1540 a palette. */
1541 void
1542 x_query_colors (struct frame *f, XColor *colors, int ncolors)
1543 {
1544 int i;
1545
1546 for (i = 0; i < ncolors; i++)
1547 {
1548 DWORD pixel = colors[i].pixel;
1549 /* Convert to a 16 bit value in range 0 - 0xffff. */
1550 colors[i].red = GetRValue (pixel) * 257;
1551 colors[i].green = GetGValue (pixel) * 257;
1552 colors[i].blue = GetBValue (pixel) * 257;
1553 }
1554 }
1555
1556 void
1557 x_query_color (struct frame *f, XColor *color)
1558 {
1559 x_query_colors (f, color, 1);
1560 }
1561
1562
1563 /* Set up the foreground color for drawing relief lines of glyph
1564 string S. RELIEF is a pointer to a struct relief containing the GC
1565 with which lines will be drawn. Use a color that is FACTOR or
1566 DELTA lighter or darker than the relief's background which is found
1567 in S->f->output_data.x->relief_background. If such a color cannot
1568 be allocated, use DEFAULT_PIXEL, instead. */
1569
1570 static void
1571 w32_setup_relief_color (struct frame *f, struct relief *relief, double factor,
1572 int delta, COLORREF default_pixel)
1573 {
1574 XGCValues xgcv;
1575 struct w32_output *di = f->output_data.w32;
1576 unsigned long mask = GCForeground;
1577 COLORREF pixel;
1578 COLORREF background = di->relief_background;
1579 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
1580
1581 /* TODO: Free colors (if using palette)? */
1582
1583 /* Allocate new color. */
1584 xgcv.foreground = default_pixel;
1585 pixel = background;
1586 if (w32_alloc_lighter_color (f, &pixel, factor, delta))
1587 xgcv.foreground = relief->pixel = pixel;
1588
1589 if (relief->gc == 0)
1590 {
1591 #if 0 /* TODO: stipple */
1592 xgcv.stipple = dpyinfo->gray;
1593 mask |= GCStipple;
1594 #endif
1595 relief->gc = XCreateGC (NULL, FRAME_W32_WINDOW (f), mask, &xgcv);
1596 }
1597 else
1598 XChangeGC (NULL, relief->gc, mask, &xgcv);
1599 }
1600
1601
1602 /* Set up colors for the relief lines around glyph string S. */
1603
1604 static void
1605 x_setup_relief_colors (struct glyph_string *s)
1606 {
1607 struct w32_output *di = s->f->output_data.w32;
1608 COLORREF color;
1609
1610 if (s->face->use_box_color_for_shadows_p)
1611 color = s->face->box_color;
1612 else if (s->first_glyph->type == IMAGE_GLYPH
1613 && s->img->pixmap
1614 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
1615 color = IMAGE_BACKGROUND (s->img, s->f, 0);
1616 else
1617 color = s->gc->background;
1618
1619 if (di->white_relief.gc == 0
1620 || color != di->relief_background)
1621 {
1622 di->relief_background = color;
1623 w32_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
1624 WHITE_PIX_DEFAULT (s->f));
1625 w32_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
1626 BLACK_PIX_DEFAULT (s->f));
1627 }
1628 }
1629
1630
1631 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
1632 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
1633 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
1634 relief. LEFT_P non-zero means draw a relief on the left side of
1635 the rectangle. RIGHT_P non-zero means draw a relief on the right
1636 side of the rectangle. CLIP_RECT is the clipping rectangle to use
1637 when drawing. */
1638
1639 static void
1640 w32_draw_relief_rect (struct frame *f,
1641 int left_x, int top_y, int right_x, int bottom_y,
1642 int width, int raised_p,
1643 int top_p, int bot_p, int left_p, int right_p,
1644 RECT *clip_rect)
1645 {
1646 int i;
1647 XGCValues gc;
1648 HDC hdc = get_frame_dc (f);
1649
1650 if (raised_p)
1651 gc.foreground = f->output_data.w32->white_relief.gc->foreground;
1652 else
1653 gc.foreground = f->output_data.w32->black_relief.gc->foreground;
1654
1655 w32_set_clip_rectangle (hdc, clip_rect);
1656
1657 /* Top. */
1658 if (top_p)
1659 for (i = 0; i < width; ++i)
1660 w32_fill_area (f, hdc, gc.foreground,
1661 left_x + i * left_p, top_y + i,
1662 right_x - left_x - i * (left_p + right_p ) + 1, 1);
1663
1664 /* Left. */
1665 if (left_p)
1666 for (i = 0; i < width; ++i)
1667 w32_fill_area (f, hdc, gc.foreground,
1668 left_x + i, top_y + (i + 1) * top_p, 1,
1669 bottom_y - top_y - (i + 1) * (bot_p + top_p) + 1);
1670
1671 if (raised_p)
1672 gc.foreground = f->output_data.w32->black_relief.gc->foreground;
1673 else
1674 gc.foreground = f->output_data.w32->white_relief.gc->foreground;
1675
1676 /* Bottom. */
1677 if (bot_p)
1678 for (i = 0; i < width; ++i)
1679 w32_fill_area (f, hdc, gc.foreground,
1680 left_x + i * left_p, bottom_y - i,
1681 right_x - left_x - i * (left_p + right_p) + 1, 1);
1682
1683 /* Right. */
1684 if (right_p)
1685 for (i = 0; i < width; ++i)
1686 w32_fill_area (f, hdc, gc.foreground,
1687 right_x - i, top_y + (i + 1) * top_p, 1,
1688 bottom_y - top_y - (i + 1) * (bot_p + top_p) + 1);
1689
1690 w32_set_clip_rectangle (hdc, NULL);
1691
1692 release_frame_dc (f, hdc);
1693 }
1694
1695
1696 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
1697 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
1698 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
1699 left side of the rectangle. RIGHT_P non-zero means draw a line
1700 on the right side of the rectangle. CLIP_RECT is the clipping
1701 rectangle to use when drawing. */
1702
1703 static void
1704 w32_draw_box_rect (struct glyph_string *s,
1705 int left_x, int top_y, int right_x, int bottom_y, int width,
1706 int left_p, int right_p, RECT *clip_rect)
1707 {
1708 w32_set_clip_rectangle (s->hdc, clip_rect);
1709
1710 /* Top. */
1711 w32_fill_area (s->f, s->hdc, s->face->box_color,
1712 left_x, top_y, right_x - left_x + 1, width);
1713
1714 /* Left. */
1715 if (left_p)
1716 {
1717 w32_fill_area (s->f, s->hdc, s->face->box_color,
1718 left_x, top_y, width, bottom_y - top_y + 1);
1719 }
1720
1721 /* Bottom. */
1722 w32_fill_area (s->f, s->hdc, s->face->box_color,
1723 left_x, bottom_y - width + 1, right_x - left_x + 1, width);
1724
1725 /* Right. */
1726 if (right_p)
1727 {
1728 w32_fill_area (s->f, s->hdc, s->face->box_color,
1729 right_x - width + 1, top_y, width, bottom_y - top_y + 1);
1730 }
1731
1732 w32_set_clip_rectangle (s->hdc, NULL);
1733 }
1734
1735
1736 /* Draw a box around glyph string S. */
1737
1738 static void
1739 x_draw_glyph_string_box (struct glyph_string *s)
1740 {
1741 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
1742 int left_p, right_p;
1743 struct glyph *last_glyph;
1744 RECT clip_rect;
1745
1746 last_x = ((s->row->full_width_p && !s->w->pseudo_window_p)
1747 ? WINDOW_RIGHT_EDGE_X (s->w)
1748 : window_box_right (s->w, s->area));
1749
1750 /* The glyph that may have a right box line. */
1751 last_glyph = (s->cmp || s->img
1752 ? s->first_glyph
1753 : s->first_glyph + s->nchars - 1);
1754
1755 width = eabs (s->face->box_line_width);
1756 raised_p = s->face->box == FACE_RAISED_BOX;
1757 left_x = s->x;
1758 right_x = ((s->row->full_width_p && s->extends_to_end_of_line_p
1759 ? last_x - 1
1760 : min (last_x, s->x + s->background_width) - 1));
1761 top_y = s->y;
1762 bottom_y = top_y + s->height - 1;
1763
1764 left_p = (s->first_glyph->left_box_line_p
1765 || (s->hl == DRAW_MOUSE_FACE
1766 && (s->prev == NULL
1767 || s->prev->hl != s->hl)));
1768 right_p = (last_glyph->right_box_line_p
1769 || (s->hl == DRAW_MOUSE_FACE
1770 && (s->next == NULL
1771 || s->next->hl != s->hl)));
1772
1773 get_glyph_string_clip_rect (s, &clip_rect);
1774
1775 if (s->face->box == FACE_SIMPLE_BOX)
1776 w32_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
1777 left_p, right_p, &clip_rect);
1778 else
1779 {
1780 x_setup_relief_colors (s);
1781 w32_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
1782 width, raised_p, 1, 1, left_p, right_p, &clip_rect);
1783 }
1784 }
1785
1786
1787 /* Draw foreground of image glyph string S. */
1788
1789 static void
1790 x_draw_image_foreground (struct glyph_string *s)
1791 {
1792 int x = s->x;
1793 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
1794
1795 /* If first glyph of S has a left box line, start drawing it to the
1796 right of that line. */
1797 if (s->face->box != FACE_NO_BOX
1798 && s->first_glyph->left_box_line_p
1799 && s->slice.x == 0)
1800 x += eabs (s->face->box_line_width);
1801
1802 /* If there is a margin around the image, adjust x- and y-position
1803 by that margin. */
1804 if (s->slice.x == 0)
1805 x += s->img->hmargin;
1806 if (s->slice.y == 0)
1807 y += s->img->vmargin;
1808
1809 SaveDC (s->hdc);
1810
1811 if (s->img->pixmap)
1812 {
1813 HDC compat_hdc = CreateCompatibleDC (s->hdc);
1814 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
1815 HBRUSH orig_brush = SelectObject (s->hdc, fg_brush);
1816 HGDIOBJ orig_obj = SelectObject (compat_hdc, s->img->pixmap);
1817 SetBkColor (compat_hdc, RGB (255, 255, 255));
1818 SetTextColor (s->hdc, RGB (0, 0, 0));
1819 x_set_glyph_string_clipping (s);
1820
1821 if (s->img->mask)
1822 {
1823 HDC mask_dc = CreateCompatibleDC (s->hdc);
1824 HGDIOBJ mask_orig_obj = SelectObject (mask_dc, s->img->mask);
1825
1826 SetTextColor (s->hdc, RGB (255, 255, 255));
1827 SetBkColor (s->hdc, RGB (0, 0, 0));
1828
1829 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
1830 compat_hdc, s->slice.x, s->slice.y, SRCINVERT);
1831 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
1832 mask_dc, s->slice.x, s->slice.y, SRCAND);
1833 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
1834 compat_hdc, s->slice.x, s->slice.y, SRCINVERT);
1835
1836 SelectObject (mask_dc, mask_orig_obj);
1837 DeleteDC (mask_dc);
1838 }
1839 else
1840 {
1841 SetTextColor (s->hdc, s->gc->foreground);
1842 SetBkColor (s->hdc, s->gc->background);
1843
1844 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
1845 compat_hdc, s->slice.x, s->slice.y, SRCCOPY);
1846
1847 /* When the image has a mask, we can expect that at
1848 least part of a mouse highlight or a block cursor will
1849 be visible. If the image doesn't have a mask, make
1850 a block cursor visible by drawing a rectangle around
1851 the image. I believe it's looking better if we do
1852 nothing here for mouse-face. */
1853 if (s->hl == DRAW_CURSOR)
1854 {
1855 int r = s->img->relief;
1856 if (r < 0) r = -r;
1857 w32_draw_rectangle (s->hdc, s->gc, x - r, y - r ,
1858 s->slice.width + r*2 - 1,
1859 s->slice.height + r*2 - 1);
1860 }
1861 }
1862
1863 w32_set_clip_rectangle (s->hdc, NULL);
1864 SelectObject (s->hdc, orig_brush);
1865 DeleteObject (fg_brush);
1866 SelectObject (compat_hdc, orig_obj);
1867 DeleteDC (compat_hdc);
1868 }
1869 else
1870 w32_draw_rectangle (s->hdc, s->gc, x, y,
1871 s->slice.width - 1, s->slice.height - 1);
1872
1873 RestoreDC (s->hdc ,-1);
1874 }
1875
1876
1877 /* Draw a relief around the image glyph string S. */
1878
1879 static void
1880 x_draw_image_relief (struct glyph_string *s)
1881 {
1882 int x1, y1, thick, raised_p, top_p, bot_p, left_p, right_p;
1883 RECT r;
1884 int x = s->x;
1885 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
1886
1887 /* If first glyph of S has a left box line, start drawing it to the
1888 right of that line. */
1889 if (s->face->box != FACE_NO_BOX
1890 && s->first_glyph->left_box_line_p
1891 && s->slice.x == 0)
1892 x += eabs (s->face->box_line_width);
1893
1894 /* If there is a margin around the image, adjust x- and y-position
1895 by that margin. */
1896 if (s->slice.x == 0)
1897 x += s->img->hmargin;
1898 if (s->slice.y == 0)
1899 y += s->img->vmargin;
1900
1901 if (s->hl == DRAW_IMAGE_SUNKEN
1902 || s->hl == DRAW_IMAGE_RAISED)
1903 {
1904 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief
1905 : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
1906 raised_p = s->hl == DRAW_IMAGE_RAISED;
1907 }
1908 else
1909 {
1910 thick = eabs (s->img->relief);
1911 raised_p = s->img->relief > 0;
1912 }
1913
1914 x1 = x + s->slice.width - 1;
1915 y1 = y + s->slice.height - 1;
1916 top_p = bot_p = left_p = right_p = 0;
1917
1918 if (s->slice.x == 0)
1919 x -= thick, left_p = 1;
1920 if (s->slice.y == 0)
1921 y -= thick, top_p = 1;
1922 if (s->slice.x + s->slice.width == s->img->width)
1923 x1 += thick, right_p = 1;
1924 if (s->slice.y + s->slice.height == s->img->height)
1925 y1 += thick, bot_p = 1;
1926
1927 x_setup_relief_colors (s);
1928 get_glyph_string_clip_rect (s, &r);
1929 w32_draw_relief_rect (s->f, x, y, x1, y1, thick, raised_p,
1930 top_p, bot_p, left_p, right_p, &r);
1931 }
1932
1933
1934 /* Draw the foreground of image glyph string S to PIXMAP. */
1935
1936 static void
1937 w32_draw_image_foreground_1 (struct glyph_string *s, HBITMAP pixmap)
1938 {
1939 HDC hdc = CreateCompatibleDC (s->hdc);
1940 HGDIOBJ orig_hdc_obj = SelectObject (hdc, pixmap);
1941 int x = 0;
1942 int y = s->ybase - s->y - image_ascent (s->img, s->face, &s->slice);
1943
1944 /* If first glyph of S has a left box line, start drawing it to the
1945 right of that line. */
1946 if (s->face->box != FACE_NO_BOX
1947 && s->first_glyph->left_box_line_p
1948 && s->slice.x == 0)
1949 x += eabs (s->face->box_line_width);
1950
1951 /* If there is a margin around the image, adjust x- and y-position
1952 by that margin. */
1953 if (s->slice.x == 0)
1954 x += s->img->hmargin;
1955 if (s->slice.y == 0)
1956 y += s->img->vmargin;
1957
1958 if (s->img->pixmap)
1959 {
1960 HDC compat_hdc = CreateCompatibleDC (hdc);
1961 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
1962 HBRUSH orig_brush = SelectObject (hdc, fg_brush);
1963 HGDIOBJ orig_obj = SelectObject (compat_hdc, s->img->pixmap);
1964
1965 if (s->img->mask)
1966 {
1967 HDC mask_dc = CreateCompatibleDC (hdc);
1968 HGDIOBJ mask_orig_obj = SelectObject (mask_dc, s->img->mask);
1969
1970 SetTextColor (hdc, RGB (0, 0, 0));
1971 SetBkColor (hdc, RGB (255, 255, 255));
1972 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
1973 compat_hdc, s->slice.x, s->slice.y, SRCINVERT);
1974 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
1975 mask_dc, s->slice.x, s->slice.y, SRCAND);
1976 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
1977 compat_hdc, s->slice.x, s->slice.y, SRCINVERT);
1978
1979 SelectObject (mask_dc, mask_orig_obj);
1980 DeleteDC (mask_dc);
1981 }
1982 else
1983 {
1984 SetTextColor (hdc, s->gc->foreground);
1985 SetBkColor (hdc, s->gc->background);
1986
1987 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
1988 compat_hdc, s->slice.x, s->slice.y, SRCCOPY);
1989
1990 /* When the image has a mask, we can expect that at
1991 least part of a mouse highlight or a block cursor will
1992 be visible. If the image doesn't have a mask, make
1993 a block cursor visible by drawing a rectangle around
1994 the image. I believe it's looking better if we do
1995 nothing here for mouse-face. */
1996 if (s->hl == DRAW_CURSOR)
1997 {
1998 int r = s->img->relief;
1999 if (r < 0) r = -r;
2000 w32_draw_rectangle (hdc, s->gc, x - r, y - r,
2001 s->slice.width + r*2 - 1,
2002 s->slice.height + r*2 - 1);
2003 }
2004 }
2005
2006 SelectObject (hdc, orig_brush);
2007 DeleteObject (fg_brush);
2008 SelectObject (compat_hdc, orig_obj);
2009 DeleteDC (compat_hdc);
2010 }
2011 else
2012 w32_draw_rectangle (hdc, s->gc, x, y,
2013 s->slice.width - 1, s->slice.height - 1);
2014
2015 SelectObject (hdc, orig_hdc_obj);
2016 DeleteDC (hdc);
2017 }
2018
2019
2020 /* Draw part of the background of glyph string S. X, Y, W, and H
2021 give the rectangle to draw. */
2022
2023 static void
2024 x_draw_glyph_string_bg_rect (struct glyph_string *s, int x, int y, int w, int h)
2025 {
2026 #if 0 /* TODO: stipple */
2027 if (s->stippled_p)
2028 {
2029 /* Fill background with a stipple pattern. */
2030 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2031 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
2032 XSetFillStyle (s->display, s->gc, FillSolid);
2033 }
2034 else
2035 #endif
2036 x_clear_glyph_string_rect (s, x, y, w, h);
2037 }
2038
2039
2040 /* Draw image glyph string S.
2041
2042 s->y
2043 s->x +-------------------------
2044 | s->face->box
2045 |
2046 | +-------------------------
2047 | | s->img->vmargin
2048 | |
2049 | | +-------------------
2050 | | | the image
2051
2052 */
2053
2054 static void
2055 x_draw_image_glyph_string (struct glyph_string *s)
2056 {
2057 int x, y;
2058 int box_line_hwidth = eabs (s->face->box_line_width);
2059 int box_line_vwidth = max (s->face->box_line_width, 0);
2060 int height;
2061 HBITMAP pixmap = 0;
2062
2063 height = s->height - 2 * box_line_vwidth;
2064
2065 /* Fill background with face under the image. Do it only if row is
2066 taller than image or if image has a clip mask to reduce
2067 flickering. */
2068 s->stippled_p = s->face->stipple != 0;
2069 if (height > s->slice.height
2070 || s->img->hmargin
2071 || s->img->vmargin
2072 || s->img->mask
2073 || s->img->pixmap == 0
2074 || s->width != s->background_width)
2075 {
2076 x = s->x;
2077 if (s->first_glyph->left_box_line_p
2078 && s->slice.x == 0)
2079 x += box_line_hwidth;
2080
2081 y = s->y;
2082 if (s->slice.y == 0)
2083 y += box_line_vwidth;
2084
2085 #if 0 /* TODO: figure out if we need to do this on Windows. */
2086 if (s->img->mask)
2087 {
2088 /* Create a pixmap as large as the glyph string. Fill it
2089 with the background color. Copy the image to it, using
2090 its mask. Copy the temporary pixmap to the display. */
2091 Screen *screen = FRAME_X_SCREEN (s->f);
2092 int depth = DefaultDepthOfScreen (screen);
2093
2094 /* Create a pixmap as large as the glyph string. */
2095 pixmap = XCreatePixmap (s->display, s->window,
2096 s->background_width,
2097 s->height, depth);
2098
2099 /* Don't clip in the following because we're working on the
2100 pixmap. */
2101 XSetClipMask (s->display, s->gc, None);
2102
2103 /* Fill the pixmap with the background color/stipple. */
2104 if (s->stippled_p)
2105 {
2106 /* Fill background with a stipple pattern. */
2107 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2108 XFillRectangle (s->display, pixmap, s->gc,
2109 0, 0, s->background_width, s->height);
2110 XSetFillStyle (s->display, s->gc, FillSolid);
2111 }
2112 else
2113 {
2114 XGCValues xgcv;
2115 XGetGCValues (s->display, s->gc, GCForeground | GCBackground,
2116 &xgcv);
2117 XSetForeground (s->display, s->gc, xgcv.background);
2118 XFillRectangle (s->display, pixmap, s->gc,
2119 0, 0, s->background_width, s->height);
2120 XSetForeground (s->display, s->gc, xgcv.foreground);
2121 }
2122 }
2123 else
2124 #endif
2125 x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
2126
2127 s->background_filled_p = 1;
2128 }
2129
2130 /* Draw the foreground. */
2131 if (pixmap != 0)
2132 {
2133 w32_draw_image_foreground_1 (s, pixmap);
2134 x_set_glyph_string_clipping (s);
2135 {
2136 HDC compat_hdc = CreateCompatibleDC (s->hdc);
2137 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
2138 HBRUSH orig_brush = SelectObject (s->hdc, fg_brush);
2139 HGDIOBJ orig_obj = SelectObject (compat_hdc, pixmap);
2140
2141 SetTextColor (s->hdc, s->gc->foreground);
2142 SetBkColor (s->hdc, s->gc->background);
2143 BitBlt (s->hdc, s->x, s->y, s->background_width, s->height,
2144 compat_hdc, 0, 0, SRCCOPY);
2145
2146 SelectObject (s->hdc, orig_brush);
2147 DeleteObject (fg_brush);
2148 SelectObject (compat_hdc, orig_obj);
2149 DeleteDC (compat_hdc);
2150 }
2151 DeleteObject (pixmap);
2152 pixmap = 0;
2153 }
2154 else
2155 x_draw_image_foreground (s);
2156
2157 /* If we must draw a relief around the image, do it. */
2158 if (s->img->relief
2159 || s->hl == DRAW_IMAGE_RAISED
2160 || s->hl == DRAW_IMAGE_SUNKEN)
2161 x_draw_image_relief (s);
2162 }
2163
2164
2165 /* Draw stretch glyph string S. */
2166
2167 static void
2168 x_draw_stretch_glyph_string (struct glyph_string *s)
2169 {
2170 eassert (s->first_glyph->type == STRETCH_GLYPH);
2171
2172 if (s->hl == DRAW_CURSOR
2173 && !x_stretch_cursor_p)
2174 {
2175 /* If `x-stretch-cursor' is nil, don't draw a block cursor as
2176 wide as the stretch glyph. */
2177 int width, background_width = s->background_width;
2178 int x = s->x;
2179
2180 if (!s->row->reversed_p)
2181 {
2182 int left_x = window_box_left_offset (s->w, TEXT_AREA);
2183
2184 if (x < left_x)
2185 {
2186 background_width -= left_x - x;
2187 x = left_x;
2188 }
2189 }
2190 else
2191 {
2192 /* In R2L rows, draw the cursor on the right edge of the
2193 stretch glyph. */
2194 int right_x = window_box_right_offset (s->w, TEXT_AREA);
2195
2196 if (x + background_width > right_x)
2197 background_width -= x - right_x;
2198 x += background_width;
2199 }
2200 width = min (FRAME_COLUMN_WIDTH (s->f), background_width);
2201 if (s->row->reversed_p)
2202 x -= width;
2203
2204 /* Draw cursor. */
2205 x_draw_glyph_string_bg_rect (s, x, s->y, width, s->height);
2206
2207 /* Clear rest using the GC of the original non-cursor face. */
2208 if (width < background_width)
2209 {
2210 XGCValues *gc = s->face->gc;
2211 int y = s->y;
2212 int w = background_width - width, h = s->height;
2213 RECT r;
2214 HDC hdc = s->hdc;
2215
2216 if (!s->row->reversed_p)
2217 x += width;
2218 else
2219 x = s->x;
2220 if (s->row->mouse_face_p
2221 && cursor_in_mouse_face_p (s->w))
2222 {
2223 x_set_mouse_face_gc (s);
2224 gc = s->gc;
2225 }
2226 else
2227 gc = s->face->gc;
2228
2229 get_glyph_string_clip_rect (s, &r);
2230 w32_set_clip_rectangle (hdc, &r);
2231
2232 #if 0 /* TODO: stipple */
2233 if (s->face->stipple)
2234 {
2235 /* Fill background with a stipple pattern. */
2236 XSetFillStyle (s->display, gc, FillOpaqueStippled);
2237 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2238 XSetFillStyle (s->display, gc, FillSolid);
2239 }
2240 else
2241 #endif
2242 {
2243 w32_fill_area (s->f, s->hdc, gc->background, x, y, w, h);
2244 }
2245 }
2246 }
2247 else if (!s->background_filled_p)
2248 {
2249 int background_width = s->background_width;
2250 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
2251
2252 /* Don't draw into left margin, fringe or scrollbar area
2253 except for header line and mode line. */
2254 if (x < left_x && !s->row->mode_line_p)
2255 {
2256 background_width -= left_x - x;
2257 x = left_x;
2258 }
2259 if (background_width > 0)
2260 x_draw_glyph_string_bg_rect (s, x, s->y, background_width, s->height);
2261 }
2262
2263 s->background_filled_p = 1;
2264 }
2265
2266
2267 /* Draw glyph string S. */
2268
2269 static void
2270 x_draw_glyph_string (struct glyph_string *s)
2271 {
2272 bool relief_drawn_p = 0;
2273
2274 /* If S draws into the background of its successor, draw the
2275 background of the successor first so that S can draw into it.
2276 This makes S->next use XDrawString instead of XDrawImageString. */
2277 if (s->next && s->right_overhang && !s->for_overlaps)
2278 {
2279 int width;
2280 struct glyph_string *next;
2281 for (width = 0, next = s->next;
2282 next && width < s->right_overhang;
2283 width += next->width, next = next->next)
2284 if (next->first_glyph->type != IMAGE_GLYPH)
2285 {
2286 x_set_glyph_string_gc (next);
2287 x_set_glyph_string_clipping (next);
2288 if (next->first_glyph->type == STRETCH_GLYPH)
2289 x_draw_stretch_glyph_string (next);
2290 else
2291 x_draw_glyph_string_background (next, 1);
2292 next->num_clips = 0;
2293 }
2294 }
2295
2296 /* Set up S->gc, set clipping and draw S. */
2297 x_set_glyph_string_gc (s);
2298
2299 /* Draw relief (if any) in advance for char/composition so that the
2300 glyph string can be drawn over it. */
2301 if (!s->for_overlaps
2302 && s->face->box != FACE_NO_BOX
2303 && (s->first_glyph->type == CHAR_GLYPH
2304 || s->first_glyph->type == COMPOSITE_GLYPH))
2305
2306 {
2307 x_set_glyph_string_clipping (s);
2308 x_draw_glyph_string_background (s, 1);
2309 x_draw_glyph_string_box (s);
2310 x_set_glyph_string_clipping (s);
2311 relief_drawn_p = 1;
2312 }
2313 else if (!s->clip_head /* draw_glyphs didn't specify a clip mask. */
2314 && !s->clip_tail
2315 && ((s->prev && s->prev->hl != s->hl && s->left_overhang)
2316 || (s->next && s->next->hl != s->hl && s->right_overhang)))
2317 /* We must clip just this glyph. left_overhang part has already
2318 drawn when s->prev was drawn, and right_overhang part will be
2319 drawn later when s->next is drawn. */
2320 x_set_glyph_string_clipping_exactly (s, s);
2321 else
2322 x_set_glyph_string_clipping (s);
2323
2324 switch (s->first_glyph->type)
2325 {
2326 case IMAGE_GLYPH:
2327 x_draw_image_glyph_string (s);
2328 break;
2329
2330 case STRETCH_GLYPH:
2331 x_draw_stretch_glyph_string (s);
2332 break;
2333
2334 case CHAR_GLYPH:
2335 if (s->for_overlaps)
2336 s->background_filled_p = 1;
2337 else
2338 x_draw_glyph_string_background (s, 0);
2339 x_draw_glyph_string_foreground (s);
2340 break;
2341
2342 case COMPOSITE_GLYPH:
2343 if (s->for_overlaps || (s->cmp_from > 0
2344 && ! s->first_glyph->u.cmp.automatic))
2345 s->background_filled_p = 1;
2346 else
2347 x_draw_glyph_string_background (s, 1);
2348 x_draw_composite_glyph_string_foreground (s);
2349 break;
2350
2351 case GLYPHLESS_GLYPH:
2352 if (s->for_overlaps)
2353 s->background_filled_p = 1;
2354 else
2355 x_draw_glyph_string_background (s, 0);
2356 x_draw_glyphless_glyph_string_foreground (s);
2357 break;
2358
2359 default:
2360 emacs_abort ();
2361 }
2362
2363 if (!s->for_overlaps)
2364 {
2365 /* Draw underline. */
2366 if (s->face->underline_p)
2367 {
2368 if (s->face->underline_type == FACE_UNDER_WAVE)
2369 {
2370 COLORREF color;
2371
2372 if (s->face->underline_defaulted_p)
2373 color = s->gc->foreground;
2374 else
2375 color = s->face->underline_color;
2376
2377 w32_draw_underwave (s, color);
2378 }
2379 else if (s->face->underline_type == FACE_UNDER_LINE)
2380 {
2381 unsigned long thickness, position;
2382 int y;
2383
2384 if (s->prev && s->prev->face->underline_p
2385 && s->prev->face->underline_type == FACE_UNDER_LINE)
2386 {
2387 /* We use the same underline style as the previous one. */
2388 thickness = s->prev->underline_thickness;
2389 position = s->prev->underline_position;
2390 }
2391 else
2392 {
2393 /* Get the underline thickness. Default is 1 pixel. */
2394 if (s->font && s->font->underline_thickness > 0)
2395 thickness = s->font->underline_thickness;
2396 else
2397 thickness = 1;
2398 if (x_underline_at_descent_line)
2399 position = (s->height - thickness) - (s->ybase - s->y);
2400 else
2401 {
2402 /* Get the underline position. This is the recommended
2403 vertical offset in pixels from the baseline to the top of
2404 the underline. This is a signed value according to the
2405 specs, and its default is
2406
2407 ROUND ((maximum_descent) / 2), with
2408 ROUND (x) = floor (x + 0.5) */
2409
2410 if (x_use_underline_position_properties
2411 && s->font && s->font->underline_position >= 0)
2412 position = s->font->underline_position;
2413 else if (s->font)
2414 position = (s->font->descent + 1) / 2;
2415 }
2416 position = max (position, underline_minimum_offset);
2417 }
2418 /* Check the sanity of thickness and position. We should
2419 avoid drawing underline out of the current line area. */
2420 if (s->y + s->height <= s->ybase + position)
2421 position = (s->height - 1) - (s->ybase - s->y);
2422 if (s->y + s->height < s->ybase + position + thickness)
2423 thickness = (s->y + s->height) - (s->ybase + position);
2424 s->underline_thickness = thickness;
2425 s->underline_position =position;
2426 y = s->ybase + position;
2427 if (s->face->underline_defaulted_p)
2428 {
2429 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x,
2430 y, s->width, 1);
2431 }
2432 else
2433 {
2434 w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x,
2435 y, s->width, 1);
2436 }
2437 }
2438 }
2439 /* Draw overline. */
2440 if (s->face->overline_p)
2441 {
2442 unsigned long dy = 0, h = 1;
2443
2444 if (s->face->overline_color_defaulted_p)
2445 {
2446 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x,
2447 s->y + dy, s->width, h);
2448 }
2449 else
2450 {
2451 w32_fill_area (s->f, s->hdc, s->face->overline_color, s->x,
2452 s->y + dy, s->width, h);
2453 }
2454 }
2455
2456 /* Draw strike-through. */
2457 if (s->face->strike_through_p
2458 && !FONT_TEXTMETRIC (s->font).tmStruckOut)
2459 {
2460 unsigned long h = 1;
2461 unsigned long dy = (s->height - h) / 2;
2462
2463 if (s->face->strike_through_color_defaulted_p)
2464 {
2465 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x, s->y + dy,
2466 s->width, h);
2467 }
2468 else
2469 {
2470 w32_fill_area (s->f, s->hdc, s->face->strike_through_color, s->x,
2471 s->y + dy, s->width, h);
2472 }
2473 }
2474
2475 /* Draw relief if not yet drawn. */
2476 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
2477 x_draw_glyph_string_box (s);
2478
2479 if (s->prev)
2480 {
2481 struct glyph_string *prev;
2482
2483 for (prev = s->prev; prev; prev = prev->prev)
2484 if (prev->hl != s->hl
2485 && prev->x + prev->width + prev->right_overhang > s->x)
2486 {
2487 /* As prev was drawn while clipped to its own area, we
2488 must draw the right_overhang part using s->hl now. */
2489 enum draw_glyphs_face save = prev->hl;
2490
2491 prev->hl = s->hl;
2492 x_set_glyph_string_gc (prev);
2493 x_set_glyph_string_clipping_exactly (s, prev);
2494 if (prev->first_glyph->type == CHAR_GLYPH)
2495 x_draw_glyph_string_foreground (prev);
2496 else
2497 x_draw_composite_glyph_string_foreground (prev);
2498 w32_set_clip_rectangle (prev->hdc, NULL);
2499 prev->hl = save;
2500 prev->num_clips = 0;
2501 }
2502 }
2503
2504 if (s->next)
2505 {
2506 struct glyph_string *next;
2507
2508 for (next = s->next; next; next = next->next)
2509 if (next->hl != s->hl
2510 && next->x - next->left_overhang < s->x + s->width)
2511 {
2512 /* As next will be drawn while clipped to its own area,
2513 we must draw the left_overhang part using s->hl now. */
2514 enum draw_glyphs_face save = next->hl;
2515
2516 next->hl = s->hl;
2517 x_set_glyph_string_gc (next);
2518 x_set_glyph_string_clipping_exactly (s, next);
2519 if (next->first_glyph->type == CHAR_GLYPH)
2520 x_draw_glyph_string_foreground (next);
2521 else
2522 x_draw_composite_glyph_string_foreground (next);
2523 w32_set_clip_rectangle (next->hdc, NULL);
2524 next->hl = save;
2525 next->num_clips = 0;
2526 next->clip_head = s->next;
2527 }
2528 }
2529 }
2530
2531 /* Reset clipping. */
2532 w32_set_clip_rectangle (s->hdc, NULL);
2533 s->num_clips = 0;
2534 }
2535
2536
2537 /* Shift display to make room for inserted glyphs. */
2538
2539 void
2540 w32_shift_glyphs_for_insert (struct frame *f, int x, int y,
2541 int width, int height, int shift_by)
2542 {
2543 HDC hdc;
2544
2545 hdc = get_frame_dc (f);
2546 BitBlt (hdc, x + shift_by, y, width, height,
2547 hdc, x, y, SRCCOPY);
2548
2549 release_frame_dc (f, hdc);
2550 }
2551
2552
2553 /* Delete N glyphs at the nominal cursor position. Not implemented
2554 for X frames. */
2555
2556 static void
2557 x_delete_glyphs (struct frame *f, register int n)
2558 {
2559 if (! FRAME_W32_P (f))
2560 return;
2561
2562 emacs_abort ();
2563 }
2564
2565
2566 /* Clear entire frame. */
2567
2568 static void
2569 x_clear_frame (struct frame *f)
2570 {
2571 if (! FRAME_W32_P (f))
2572 return;
2573
2574 /* Clearing the frame will erase any cursor, so mark them all as no
2575 longer visible. */
2576 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
2577
2578 block_input ();
2579
2580 w32_clear_window (f);
2581
2582 /* We have to clear the scroll bars, too. If we have changed
2583 colors or something like that, then they should be notified. */
2584 x_scroll_bar_clear (f);
2585
2586 unblock_input ();
2587 }
2588
2589 \f
2590 /* Make audible bell. */
2591
2592 static void
2593 w32_ring_bell (struct frame *f)
2594 {
2595 block_input ();
2596
2597 if (FRAME_W32_P (f) && visible_bell)
2598 {
2599 int i;
2600 HWND hwnd = FRAME_W32_WINDOW (f);
2601
2602 for (i = 0; i < 5; i++)
2603 {
2604 FlashWindow (hwnd, TRUE);
2605 Sleep (10);
2606 }
2607 FlashWindow (hwnd, FALSE);
2608 }
2609 else
2610 w32_sys_ring_bell (f);
2611
2612 unblock_input ();
2613 }
2614
2615 /***********************************************************************
2616 Line Dance
2617 ***********************************************************************/
2618
2619 /* Perform an insert-lines or delete-lines operation, inserting N
2620 lines or deleting -N lines at vertical position VPOS. */
2621
2622 static void
2623 x_ins_del_lines (struct frame *f, int vpos, int n)
2624 {
2625 if (! FRAME_W32_P (f))
2626 return;
2627
2628 emacs_abort ();
2629 }
2630
2631
2632 /* Scroll part of the display as described by RUN. */
2633
2634 static void
2635 x_scroll_run (struct window *w, struct run *run)
2636 {
2637 struct frame *f = XFRAME (w->frame);
2638 int x, y, width, height, from_y, to_y, bottom_y;
2639 HWND hwnd = FRAME_W32_WINDOW (f);
2640 HRGN expect_dirty;
2641
2642 /* Get frame-relative bounding box of the text display area of W,
2643 without mode lines. Include in this box the left and right
2644 fringes of W. */
2645 window_box (w, ANY_AREA, &x, &y, &width, &height);
2646
2647 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
2648 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
2649 bottom_y = y + height;
2650
2651 if (to_y < from_y)
2652 {
2653 /* Scrolling up. Make sure we don't copy part of the mode
2654 line at the bottom. */
2655 if (from_y + run->height > bottom_y)
2656 height = bottom_y - from_y;
2657 else
2658 height = run->height;
2659 expect_dirty = CreateRectRgn (x, y + height, x + width, bottom_y);
2660 }
2661 else
2662 {
2663 /* Scrolling down. Make sure we don't copy over the mode line.
2664 at the bottom. */
2665 if (to_y + run->height > bottom_y)
2666 height = bottom_y - to_y;
2667 else
2668 height = run->height;
2669 expect_dirty = CreateRectRgn (x, y, x + width, to_y);
2670 }
2671
2672 block_input ();
2673
2674 /* Cursor off. Will be switched on again in x_update_window_end. */
2675 x_clear_cursor (w);
2676
2677 {
2678 RECT from;
2679 RECT to;
2680 HRGN dirty = CreateRectRgn (0, 0, 0, 0);
2681 HRGN combined = CreateRectRgn (0, 0, 0, 0);
2682
2683 from.left = to.left = x;
2684 from.right = to.right = x + width;
2685 from.top = from_y;
2686 from.bottom = from_y + height;
2687 to.top = y;
2688 to.bottom = bottom_y;
2689
2690 ScrollWindowEx (hwnd, 0, to_y - from_y, &from, &to, dirty,
2691 NULL, SW_INVALIDATE);
2692
2693 /* Combine this with what we expect to be dirty. This covers the
2694 case where not all of the region we expect is actually dirty. */
2695 CombineRgn (combined, dirty, expect_dirty, RGN_OR);
2696
2697 /* If the dirty region is not what we expected, redraw the entire frame. */
2698 if (!EqualRgn (combined, expect_dirty))
2699 SET_FRAME_GARBAGED (f);
2700
2701 DeleteObject (dirty);
2702 DeleteObject (combined);
2703 }
2704
2705 unblock_input ();
2706 DeleteObject (expect_dirty);
2707 }
2708
2709
2710 \f
2711 /***********************************************************************
2712 Exposure Events
2713 ***********************************************************************/
2714
2715 static void
2716 frame_highlight (struct frame *f)
2717 {
2718 x_update_cursor (f, 1);
2719 x_set_frame_alpha (f);
2720 }
2721
2722 static void
2723 frame_unhighlight (struct frame *f)
2724 {
2725 x_update_cursor (f, 1);
2726 x_set_frame_alpha (f);
2727 }
2728
2729 /* The focus has changed. Update the frames as necessary to reflect
2730 the new situation. Note that we can't change the selected frame
2731 here, because the Lisp code we are interrupting might become confused.
2732 Each event gets marked with the frame in which it occurred, so the
2733 Lisp code can tell when the switch took place by examining the events. */
2734
2735 static void
2736 x_new_focus_frame (struct w32_display_info *dpyinfo, struct frame *frame)
2737 {
2738 struct frame *old_focus = dpyinfo->w32_focus_frame;
2739
2740 if (frame != dpyinfo->w32_focus_frame)
2741 {
2742 /* Set this before calling other routines, so that they see
2743 the correct value of w32_focus_frame. */
2744 dpyinfo->w32_focus_frame = frame;
2745
2746 if (old_focus && old_focus->auto_lower)
2747 x_lower_frame (old_focus);
2748
2749 if (dpyinfo->w32_focus_frame && dpyinfo->w32_focus_frame->auto_raise)
2750 dpyinfo->w32_pending_autoraise_frame = dpyinfo->w32_focus_frame;
2751 else
2752 dpyinfo->w32_pending_autoraise_frame = NULL;
2753 }
2754
2755 x_frame_rehighlight (dpyinfo);
2756 }
2757
2758
2759 /* Handle FocusIn and FocusOut state changes for FRAME.
2760 If FRAME has focus and there exists more than one frame, puts
2761 a FOCUS_IN_EVENT into *BUFP. */
2762
2763 static void
2764 x_focus_changed (int type, int state, struct w32_display_info *dpyinfo,
2765 struct frame *frame, struct input_event *bufp)
2766 {
2767 if (type == WM_SETFOCUS)
2768 {
2769 if (dpyinfo->w32_focus_event_frame != frame)
2770 {
2771 x_new_focus_frame (dpyinfo, frame);
2772 dpyinfo->w32_focus_event_frame = frame;
2773
2774 /* Don't stop displaying the initial startup message
2775 for a switch-frame event we don't need. */
2776 if (NILP (Vterminal_frame)
2777 && CONSP (Vframe_list)
2778 && !NILP (XCDR (Vframe_list)))
2779 {
2780 bufp->arg = Qt;
2781 }
2782 else
2783 {
2784 bufp->arg = Qnil;
2785 }
2786
2787 bufp->kind = FOCUS_IN_EVENT;
2788 XSETFRAME (bufp->frame_or_window, frame);
2789 }
2790
2791 frame->output_data.x->focus_state |= state;
2792
2793 /* TODO: IME focus? */
2794 }
2795 else if (type == WM_KILLFOCUS)
2796 {
2797 frame->output_data.x->focus_state &= ~state;
2798
2799 if (dpyinfo->w32_focus_event_frame == frame)
2800 {
2801 dpyinfo->w32_focus_event_frame = 0;
2802 x_new_focus_frame (dpyinfo, 0);
2803
2804 bufp->kind = FOCUS_OUT_EVENT;
2805 XSETFRAME (bufp->frame_or_window, frame);
2806 }
2807
2808 /* TODO: IME focus? */
2809 }
2810 }
2811
2812
2813 /* The focus may have changed. Figure out if it is a real focus change,
2814 by checking both FocusIn/Out and Enter/LeaveNotify events.
2815
2816 Returns FOCUS_IN_EVENT event in *BUFP. */
2817
2818 static void
2819 w32_detect_focus_change (struct w32_display_info *dpyinfo, W32Msg *event,
2820 struct input_event *bufp)
2821 {
2822 struct frame *frame;
2823
2824 frame = x_any_window_to_frame (dpyinfo, event->msg.hwnd);
2825 if (! frame)
2826 return;
2827
2828 /* On w32, this is only called from focus events, so no switch needed. */
2829 x_focus_changed (event->msg.message,
2830 (event->msg.message == WM_KILLFOCUS ?
2831 FOCUS_IMPLICIT : FOCUS_EXPLICIT),
2832 dpyinfo, frame, bufp);
2833 }
2834
2835
2836 /* Handle an event saying the mouse has moved out of an Emacs frame. */
2837
2838 void
2839 x_mouse_leave (struct w32_display_info *dpyinfo)
2840 {
2841 x_new_focus_frame (dpyinfo, dpyinfo->w32_focus_event_frame);
2842 }
2843
2844 /* The focus has changed, or we have redirected a frame's focus to
2845 another frame (this happens when a frame uses a surrogate
2846 mini-buffer frame). Shift the highlight as appropriate.
2847
2848 The FRAME argument doesn't necessarily have anything to do with which
2849 frame is being highlighted or un-highlighted; we only use it to find
2850 the appropriate X display info. */
2851
2852 static void
2853 w32_frame_rehighlight (struct frame *frame)
2854 {
2855 if (! FRAME_W32_P (frame))
2856 return;
2857 x_frame_rehighlight (FRAME_DISPLAY_INFO (frame));
2858 }
2859
2860 static void
2861 x_frame_rehighlight (struct w32_display_info *dpyinfo)
2862 {
2863 struct frame *old_highlight = dpyinfo->x_highlight_frame;
2864
2865 if (dpyinfo->w32_focus_frame)
2866 {
2867 dpyinfo->x_highlight_frame
2868 = ((FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame)))
2869 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame))
2870 : dpyinfo->w32_focus_frame);
2871 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
2872 {
2873 fset_focus_frame (dpyinfo->w32_focus_frame, Qnil);
2874 dpyinfo->x_highlight_frame = dpyinfo->w32_focus_frame;
2875 }
2876 }
2877 else
2878 dpyinfo->x_highlight_frame = 0;
2879
2880 if (dpyinfo->x_highlight_frame != old_highlight)
2881 {
2882 if (old_highlight)
2883 frame_unhighlight (old_highlight);
2884 if (dpyinfo->x_highlight_frame)
2885 frame_highlight (dpyinfo->x_highlight_frame);
2886 }
2887 }
2888 \f
2889 /* Keyboard processing - modifier keys, etc. */
2890
2891 /* Convert a keysym to its name. */
2892
2893 char *
2894 x_get_keysym_name (int keysym)
2895 {
2896 /* Make static so we can always return it */
2897 static char value[100];
2898
2899 block_input ();
2900 GetKeyNameText (keysym, value, 100);
2901 unblock_input ();
2902
2903 return value;
2904 }
2905
2906 static int
2907 codepage_for_locale (LCID locale)
2908 {
2909 char cp[20];
2910
2911 if (GetLocaleInfo (locale, LOCALE_IDEFAULTANSICODEPAGE, cp, 20) > 0)
2912 return atoi (cp);
2913 else
2914 return CP_ACP;
2915 }
2916
2917 \f
2918 /* Mouse clicks and mouse movement. Rah. */
2919
2920 /* Parse a button MESSAGE. The button index is returned in PBUTTON, and
2921 the state in PUP. XBUTTON provides extra information for extended mouse
2922 button messages. Returns FALSE if unable to parse the message. */
2923 BOOL
2924 parse_button (int message, int xbutton, int * pbutton, int * pup)
2925 {
2926 int button = 0;
2927 int up = 0;
2928
2929 switch (message)
2930 {
2931 case WM_LBUTTONDOWN:
2932 button = 0;
2933 up = 0;
2934 break;
2935 case WM_LBUTTONUP:
2936 button = 0;
2937 up = 1;
2938 break;
2939 case WM_MBUTTONDOWN:
2940 if (NILP (Vw32_swap_mouse_buttons))
2941 button = 1;
2942 else
2943 button = 2;
2944 up = 0;
2945 break;
2946 case WM_MBUTTONUP:
2947 if (NILP (Vw32_swap_mouse_buttons))
2948 button = 1;
2949 else
2950 button = 2;
2951 up = 1;
2952 break;
2953 case WM_RBUTTONDOWN:
2954 if (NILP (Vw32_swap_mouse_buttons))
2955 button = 2;
2956 else
2957 button = 1;
2958 up = 0;
2959 break;
2960 case WM_RBUTTONUP:
2961 if (NILP (Vw32_swap_mouse_buttons))
2962 button = 2;
2963 else
2964 button = 1;
2965 up = 1;
2966 break;
2967 case WM_XBUTTONDOWN:
2968 button = xbutton + 2;
2969 up = 0;
2970 break;
2971 case WM_XBUTTONUP:
2972 button = xbutton + 2;
2973 up = 1;
2974 break;
2975 default:
2976 return (FALSE);
2977 }
2978
2979 if (pup) *pup = up;
2980 if (pbutton) *pbutton = button;
2981
2982 return (TRUE);
2983 }
2984
2985
2986 /* Prepare a mouse-event in *RESULT for placement in the input queue.
2987
2988 If the event is a button press, then note that we have grabbed
2989 the mouse. */
2990
2991 static Lisp_Object
2992 construct_mouse_click (struct input_event *result, W32Msg *msg, struct frame *f)
2993 {
2994 int button;
2995 int up;
2996
2997 parse_button (msg->msg.message, HIWORD (msg->msg.wParam),
2998 &button, &up);
2999
3000 /* Make the event type NO_EVENT; we'll change that when we decide
3001 otherwise. */
3002 result->kind = MOUSE_CLICK_EVENT;
3003 result->code = button;
3004 result->timestamp = msg->msg.time;
3005 result->modifiers = (msg->dwModifiers
3006 | (up
3007 ? up_modifier
3008 : down_modifier));
3009
3010 XSETINT (result->x, LOWORD (msg->msg.lParam));
3011 XSETINT (result->y, HIWORD (msg->msg.lParam));
3012 XSETFRAME (result->frame_or_window, f);
3013 result->arg = Qnil;
3014 return Qnil;
3015 }
3016
3017 static Lisp_Object
3018 construct_mouse_wheel (struct input_event *result, W32Msg *msg, struct frame *f)
3019 {
3020 POINT p;
3021 int delta;
3022
3023 result->kind = msg->msg.message == WM_MOUSEHWHEEL ? HORIZ_WHEEL_EVENT
3024 : WHEEL_EVENT;
3025 result->code = 0;
3026 result->timestamp = msg->msg.time;
3027
3028 /* A WHEEL_DELTA positive value indicates that the wheel was rotated
3029 forward, away from the user (up); a negative value indicates that
3030 the wheel was rotated backward, toward the user (down). */
3031 delta = GET_WHEEL_DELTA_WPARAM (msg->msg.wParam);
3032
3033 /* The up and down modifiers indicate if the wheel was rotated up or
3034 down based on WHEEL_DELTA value. */
3035 result->modifiers = (msg->dwModifiers
3036 | ((delta < 0 ) ? down_modifier : up_modifier));
3037
3038 /* With multiple monitors, we can legitimately get negative
3039 coordinates, so cast to short to interpret them correctly. */
3040 p.x = (short) LOWORD (msg->msg.lParam);
3041 p.y = (short) HIWORD (msg->msg.lParam);
3042 ScreenToClient (msg->msg.hwnd, &p);
3043 XSETINT (result->x, p.x);
3044 XSETINT (result->y, p.y);
3045 XSETFRAME (result->frame_or_window, f);
3046 result->arg = Qnil;
3047 return Qnil;
3048 }
3049
3050 static Lisp_Object
3051 construct_drag_n_drop (struct input_event *result, W32Msg *msg, struct frame *f)
3052 {
3053 Lisp_Object files;
3054 Lisp_Object frame;
3055 HDROP hdrop;
3056 POINT p;
3057 WORD num_files;
3058 wchar_t name_w[MAX_PATH];
3059 #ifdef NTGUI_UNICODE
3060 const int use_unicode = 1;
3061 #else
3062 int use_unicode = w32_unicode_filenames;
3063 char name_a[MAX_PATH];
3064 char file[MAX_UTF8_PATH];
3065 #endif
3066 int i;
3067
3068 result->kind = DRAG_N_DROP_EVENT;
3069 result->code = 0;
3070 result->timestamp = msg->msg.time;
3071 result->modifiers = msg->dwModifiers;
3072
3073 hdrop = (HDROP) msg->msg.wParam;
3074 DragQueryPoint (hdrop, &p);
3075
3076 #if 0
3077 p.x = LOWORD (msg->msg.lParam);
3078 p.y = HIWORD (msg->msg.lParam);
3079 ScreenToClient (msg->msg.hwnd, &p);
3080 #endif
3081
3082 XSETINT (result->x, p.x);
3083 XSETINT (result->y, p.y);
3084
3085 num_files = DragQueryFile (hdrop, 0xFFFFFFFF, NULL, 0);
3086 files = Qnil;
3087
3088 for (i = 0; i < num_files; i++)
3089 {
3090 if (use_unicode)
3091 {
3092 eassert (DragQueryFileW (hdrop, i, NULL, 0) < MAX_PATH);
3093 /* If DragQueryFile returns zero, it failed to fetch a file
3094 name. */
3095 if (DragQueryFileW (hdrop, i, name_w, MAX_PATH) == 0)
3096 continue;
3097 #ifdef NTGUI_UNICODE
3098 files = Fcons (from_unicode_buffer (name_w), files);
3099 #else
3100 filename_from_utf16 (name_w, file);
3101 files = Fcons (DECODE_FILE (build_unibyte_string (file)), files);
3102 #endif /* NTGUI_UNICODE */
3103 }
3104 #ifndef NTGUI_UNICODE
3105 else
3106 {
3107 eassert (DragQueryFileA (hdrop, i, NULL, 0) < MAX_PATH);
3108 if (DragQueryFileA (hdrop, i, name_a, MAX_PATH) == 0)
3109 continue;
3110 filename_from_ansi (name_a, file);
3111 files = Fcons (DECODE_FILE (build_unibyte_string (file)), files);
3112 }
3113 #endif
3114 }
3115
3116 DragFinish (hdrop);
3117
3118 XSETFRAME (frame, f);
3119 result->frame_or_window = frame;
3120 result->arg = files;
3121 return Qnil;
3122 }
3123
3124 \f
3125 #if HAVE_W32NOTIFY
3126
3127 /* File event notifications (see w32notify.c). */
3128
3129 Lisp_Object
3130 lispy_file_action (DWORD action)
3131 {
3132 static char unknown_fmt[] = "unknown-action(%d)";
3133 Lisp_Object retval;
3134
3135 switch (action)
3136 {
3137 case FILE_ACTION_ADDED:
3138 retval = Qadded;
3139 break;
3140 case FILE_ACTION_REMOVED:
3141 retval = Qremoved;
3142 break;
3143 case FILE_ACTION_MODIFIED:
3144 retval = Qmodified;
3145 break;
3146 case FILE_ACTION_RENAMED_OLD_NAME:
3147 retval = Qrenamed_from;
3148 break;
3149 case FILE_ACTION_RENAMED_NEW_NAME:
3150 retval = Qrenamed_to;
3151 break;
3152 default:
3153 {
3154 char buf[sizeof(unknown_fmt) - 1 + INT_STRLEN_BOUND (DWORD)];
3155
3156 sprintf (buf, unknown_fmt, action);
3157 retval = intern (buf);
3158 }
3159 break;
3160 }
3161
3162 return retval;
3163 }
3164
3165 #ifdef WINDOWSNT
3166 /* Put file notifications into the Emacs input event queue. This
3167 function runs when the WM_EMACS_FILENOTIFY message arrives from a
3168 watcher thread. */
3169 static void
3170 queue_notifications (struct input_event *event, W32Msg *msg, struct frame *f,
3171 int *evcount)
3172 {
3173 BYTE *p = file_notifications;
3174 FILE_NOTIFY_INFORMATION *fni = (PFILE_NOTIFY_INFORMATION)p;
3175 const DWORD min_size
3176 = offsetof (FILE_NOTIFY_INFORMATION, FileName) + sizeof(wchar_t);
3177 Lisp_Object frame;
3178
3179 /* We cannot process notification before Emacs is fully initialized,
3180 since we need the UTF-16LE coding-system to be set up. */
3181 if (!initialized)
3182 {
3183 notification_buffer_in_use = 0;
3184 return;
3185 }
3186
3187 XSETFRAME (frame, f);
3188
3189 enter_crit ();
3190 if (notification_buffer_in_use)
3191 {
3192 DWORD info_size = notifications_size;
3193 Lisp_Object cs = intern ("utf-16le");
3194 Lisp_Object obj = w32_get_watch_object (notifications_desc);
3195
3196 /* notifications_size could be zero when the buffer of
3197 notifications overflowed on the OS level, or when the
3198 directory being watched was itself deleted. Do nothing in
3199 that case. */
3200 if (info_size
3201 && !NILP (obj) && CONSP (obj))
3202 {
3203 Lisp_Object callback = XCDR (obj);
3204
3205 while (info_size >= min_size)
3206 {
3207 Lisp_Object utf_16_fn
3208 = make_unibyte_string ((char *)fni->FileName,
3209 fni->FileNameLength);
3210 /* Note: mule-conf is preloaded, so utf-16le must
3211 already be defined at this point. */
3212 Lisp_Object fname
3213 = code_convert_string_norecord (utf_16_fn, cs, 0);
3214 Lisp_Object action = lispy_file_action (fni->Action);
3215
3216 event->kind = FILE_NOTIFY_EVENT;
3217 event->code
3218 = (ptrdiff_t)XINT (XIL ((EMACS_INT)notifications_desc));
3219 event->timestamp = msg->msg.time;
3220 event->modifiers = 0;
3221 event->frame_or_window = callback;
3222 event->arg = Fcons (action, fname);
3223 kbd_buffer_store_event (event);
3224 (*evcount)++;
3225
3226 if (!fni->NextEntryOffset)
3227 break;
3228 p += fni->NextEntryOffset;
3229 fni = (PFILE_NOTIFY_INFORMATION)p;
3230 info_size -= fni->NextEntryOffset;
3231 }
3232 }
3233 notification_buffer_in_use = 0;
3234 }
3235 else
3236 DebPrint (("We were promised notifications, but in-use flag is zero!\n"));
3237 leave_crit ();
3238
3239 /* We've stuffed all the events ourselves, so w32_read_socket shouldn't. */
3240 event->kind = NO_EVENT;
3241 }
3242 #endif /* WINDOWSNT */
3243 #endif /* HAVE_W32NOTIFY */
3244
3245 \f
3246 /* Function to report a mouse movement to the mainstream Emacs code.
3247 The input handler calls this.
3248
3249 We have received a mouse movement event, which is given in *event.
3250 If the mouse is over a different glyph than it was last time, tell
3251 the mainstream emacs code by setting mouse_moved. If not, ask for
3252 another motion event, so we can check again the next time it moves. */
3253
3254 static int
3255 note_mouse_movement (struct frame *frame, MSG *msg)
3256 {
3257 struct w32_display_info *dpyinfo;
3258 int mouse_x = LOWORD (msg->lParam);
3259 int mouse_y = HIWORD (msg->lParam);
3260 RECT *r;
3261
3262 if (!FRAME_X_OUTPUT (frame))
3263 return 0;
3264
3265 dpyinfo = FRAME_DISPLAY_INFO (frame);
3266 dpyinfo->last_mouse_movement_time = msg->time;
3267 dpyinfo->last_mouse_motion_frame = frame;
3268 dpyinfo->last_mouse_motion_x = mouse_x;
3269 dpyinfo->last_mouse_motion_y = mouse_y;
3270
3271 if (msg->hwnd != FRAME_W32_WINDOW (frame))
3272 {
3273 frame->mouse_moved = 1;
3274 dpyinfo->last_mouse_scroll_bar = NULL;
3275 note_mouse_highlight (frame, -1, -1);
3276 dpyinfo->last_mouse_glyph_frame = NULL;
3277 return 1;
3278 }
3279
3280 /* Has the mouse moved off the glyph it was on at the last sighting? */
3281 r = &dpyinfo->last_mouse_glyph;
3282 if (frame != dpyinfo->last_mouse_glyph_frame
3283 || mouse_x < r->left || mouse_x >= r->right
3284 || mouse_y < r->top || mouse_y >= r->bottom)
3285 {
3286 frame->mouse_moved = 1;
3287 dpyinfo->last_mouse_scroll_bar = NULL;
3288 note_mouse_highlight (frame, mouse_x, mouse_y);
3289 /* Remember the mouse position here, as w32_mouse_position only
3290 gets called when mouse tracking is enabled but we also need
3291 to keep track of the mouse for help_echo and highlighting at
3292 other times. */
3293 remember_mouse_glyph (frame, mouse_x, mouse_y, r);
3294 dpyinfo->last_mouse_glyph_frame = frame;
3295 return 1;
3296 }
3297
3298 return 0;
3299 }
3300
3301 \f
3302 /************************************************************************
3303 Mouse Face
3304 ************************************************************************/
3305
3306 static struct scroll_bar *x_window_to_scroll_bar (Window);
3307 static void x_scroll_bar_report_motion (struct frame **, Lisp_Object *,
3308 enum scroll_bar_part *,
3309 Lisp_Object *, Lisp_Object *,
3310 unsigned long *);
3311 static void x_check_fullscreen (struct frame *);
3312
3313 static void
3314 w32_define_cursor (Window window, Cursor cursor)
3315 {
3316 PostMessage (window, WM_EMACS_SETCURSOR, (WPARAM) cursor, 0);
3317 }
3318 /* Return the current position of the mouse.
3319 *fp should be a frame which indicates which display to ask about.
3320
3321 If the mouse movement started in a scroll bar, set *fp, *bar_window,
3322 and *part to the frame, window, and scroll bar part that the mouse
3323 is over. Set *x and *y to the portion and whole of the mouse's
3324 position on the scroll bar.
3325
3326 If the mouse movement started elsewhere, set *fp to the frame the
3327 mouse is on, *bar_window to nil, and *x and *y to the character cell
3328 the mouse is over.
3329
3330 Set *time to the server time-stamp for the time at which the mouse
3331 was at this position.
3332
3333 Don't store anything if we don't have a valid set of values to report.
3334
3335 This clears the mouse_moved flag, so we can wait for the next mouse
3336 movement. */
3337
3338 static void
3339 w32_mouse_position (struct frame **fp, int insist, Lisp_Object *bar_window,
3340 enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y,
3341 unsigned long *time)
3342 {
3343 struct frame *f1;
3344 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (*fp);
3345
3346 block_input ();
3347
3348 if (dpyinfo->last_mouse_scroll_bar && insist == 0)
3349 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
3350 else
3351 {
3352 POINT pt;
3353
3354 Lisp_Object frame, tail;
3355
3356 /* Clear the mouse-moved flag for every frame on this display. */
3357 FOR_EACH_FRAME (tail, frame)
3358 XFRAME (frame)->mouse_moved = 0;
3359
3360 dpyinfo->last_mouse_scroll_bar = NULL;
3361
3362 GetCursorPos (&pt);
3363
3364 /* Now we have a position on the root; find the innermost window
3365 containing the pointer. */
3366 {
3367 /* If mouse was grabbed on a frame, give coords for that
3368 frame even if the mouse is now outside it. Otherwise
3369 check for window under mouse on one of our frames. */
3370 f1 = (x_mouse_grabbed (dpyinfo) ? dpyinfo->last_mouse_frame
3371 : x_any_window_to_frame (dpyinfo, WindowFromPoint (pt)));
3372
3373 /* If not, is it one of our scroll bars? */
3374 if (! f1)
3375 {
3376 struct scroll_bar *bar
3377 = x_window_to_scroll_bar (WindowFromPoint (pt));
3378
3379 if (bar)
3380 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3381 }
3382
3383 if (f1 == 0 && insist > 0)
3384 f1 = SELECTED_FRAME ();
3385
3386 if (f1)
3387 {
3388 /* Ok, we found a frame. Store all the values.
3389 last_mouse_glyph is a rectangle used to reduce the
3390 generation of mouse events. To not miss any motion
3391 events, we must divide the frame into rectangles of the
3392 size of the smallest character that could be displayed
3393 on it, i.e. into the same rectangles that matrices on
3394 the frame are divided into. */
3395
3396 dpyinfo = FRAME_DISPLAY_INFO (f1);
3397 ScreenToClient (FRAME_W32_WINDOW (f1), &pt);
3398 remember_mouse_glyph (f1, pt.x, pt.y, &dpyinfo->last_mouse_glyph);
3399 dpyinfo->last_mouse_glyph_frame = f1;
3400
3401 *bar_window = Qnil;
3402 *part = 0;
3403 *fp = f1;
3404 XSETINT (*x, pt.x);
3405 XSETINT (*y, pt.y);
3406 *time = dpyinfo->last_mouse_movement_time;
3407 }
3408 }
3409 }
3410
3411 unblock_input ();
3412 }
3413
3414 \f
3415 /***********************************************************************
3416 Tool-bars
3417 ***********************************************************************/
3418
3419 /* Handle mouse button event on the tool-bar of frame F, at
3420 frame-relative coordinates X/Y. EVENT_TYPE is either ButtonPress
3421 or ButtonRelease. */
3422
3423 static void
3424 w32_handle_tool_bar_click (struct frame *f, struct input_event *button_event)
3425 {
3426 int x = XFASTINT (button_event->x);
3427 int y = XFASTINT (button_event->y);
3428
3429 if (button_event->modifiers & down_modifier)
3430 handle_tool_bar_click (f, x, y, 1, 0);
3431 else
3432 handle_tool_bar_click (f, x, y, 0,
3433 button_event->modifiers & ~up_modifier);
3434 }
3435
3436
3437 \f
3438 /***********************************************************************
3439 Scroll bars
3440 ***********************************************************************/
3441
3442 /* Scroll bar support. */
3443
3444 /* Given a window ID, find the struct scroll_bar which manages it.
3445 This can be called in GC, so we have to make sure to strip off mark
3446 bits. */
3447
3448 static struct scroll_bar *
3449 x_window_to_scroll_bar (Window window_id)
3450 {
3451 Lisp_Object tail, frame;
3452
3453 FOR_EACH_FRAME (tail, frame)
3454 {
3455 Lisp_Object bar, condemned;
3456
3457 /* Scan this frame's scroll bar list for a scroll bar with the
3458 right window ID. */
3459 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
3460 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
3461 /* This trick allows us to search both the ordinary and
3462 condemned scroll bar lists with one loop. */
3463 ! NILP (bar) || (bar = condemned,
3464 condemned = Qnil,
3465 ! NILP (bar));
3466 bar = XSCROLL_BAR (bar)->next)
3467 if (SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar)) == window_id)
3468 return XSCROLL_BAR (bar);
3469 }
3470
3471 return 0;
3472 }
3473
3474
3475 \f
3476 /* Set the thumb size and position of scroll bar BAR. We are currently
3477 displaying PORTION out of a whole WHOLE, and our position POSITION. */
3478
3479 static void
3480 w32_set_scroll_bar_thumb (struct scroll_bar *bar,
3481 int portion, int position, int whole)
3482 {
3483 Window w = SCROLL_BAR_W32_WINDOW (bar);
3484 /* We use the whole scroll-bar height in the calculations below, to
3485 avoid strange effects like scrolling backwards when just clicking
3486 on the handle (without moving it). */
3487 double range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height)
3488 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3489 int sb_page, sb_pos;
3490 BOOL draggingp = bar->dragging ? TRUE : FALSE;
3491 SCROLLINFO si;
3492
3493 /* We used to change the nPage setting while dragging the handle,
3494 but that had very strange effects (such as scrolling backwards
3495 while dragging downwards).
3496
3497 Now, we don't change the nPage setting while dragging unless we
3498 get near to the end of the buffer, in which case we often have to
3499 resize the handle to "go all the way". */
3500
3501 if (draggingp)
3502 {
3503 int near_bottom_p;
3504 block_input ();
3505 si.cbSize = sizeof (si);
3506 si.fMask = SIF_POS | SIF_PAGE;
3507 GetScrollInfo (w, SB_CTL, &si);
3508 near_bottom_p = si.nPos + si.nPage >= range;
3509 unblock_input ();
3510 if (!near_bottom_p)
3511 return;
3512 }
3513
3514 if (whole)
3515 {
3516 /* Position scroll bar at rock bottom if the bottom of the
3517 buffer is visible. This avoids shrinking the thumb away
3518 to nothing if it is held at the bottom of the buffer. */
3519 if (position + portion >= whole && !draggingp)
3520 {
3521 sb_page = range * (whole - position) / whole;
3522 sb_pos = range;
3523 }
3524 else
3525 {
3526 sb_pos = position * range / whole;
3527 sb_page = (min (portion, (whole - position)) * range) / whole;
3528 }
3529 }
3530 else
3531 {
3532 sb_page = range;
3533 sb_pos = 0;
3534 }
3535
3536 sb_page = max (sb_page, VERTICAL_SCROLL_BAR_MIN_HANDLE);
3537
3538 block_input ();
3539
3540 si.cbSize = sizeof (si);
3541 si.fMask = SIF_PAGE | SIF_POS;
3542 si.nPage = sb_page;
3543 si.nPos = sb_pos;
3544
3545 SetScrollInfo (w, SB_CTL, &si, TRUE);
3546
3547 unblock_input ();
3548 }
3549
3550 \f
3551 /************************************************************************
3552 Scroll bars, general
3553 ************************************************************************/
3554
3555 static HWND
3556 my_create_scrollbar (struct frame * f, struct scroll_bar * bar)
3557 {
3558 return (HWND) SendMessage (FRAME_W32_WINDOW (f),
3559 WM_EMACS_CREATESCROLLBAR, (WPARAM) f,
3560 (LPARAM) bar);
3561 }
3562
3563 /*#define ATTACH_THREADS*/
3564
3565 static BOOL
3566 my_show_window (struct frame *f, HWND hwnd, int how)
3567 {
3568 #ifndef ATTACH_THREADS
3569 return SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_SHOWWINDOW,
3570 (WPARAM) hwnd, (LPARAM) how);
3571 #else
3572 return ShowWindow (hwnd, how);
3573 #endif
3574 }
3575
3576 static void
3577 my_set_window_pos (HWND hwnd, HWND hwndAfter,
3578 int x, int y, int cx, int cy, UINT flags)
3579 {
3580 #ifndef ATTACH_THREADS
3581 WINDOWPOS pos;
3582 pos.hwndInsertAfter = hwndAfter;
3583 pos.x = x;
3584 pos.y = y;
3585 pos.cx = cx;
3586 pos.cy = cy;
3587 pos.flags = flags;
3588 SendMessage (hwnd, WM_EMACS_SETWINDOWPOS, (WPARAM) &pos, 0);
3589 #else
3590 SetWindowPos (hwnd, hwndAfter, x, y, cx, cy, flags);
3591 #endif
3592 }
3593
3594 #if 0
3595 static void
3596 my_set_focus (struct frame * f, HWND hwnd)
3597 {
3598 SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_SETFOCUS,
3599 (WPARAM) hwnd, 0);
3600 }
3601 #endif
3602
3603 static void
3604 my_set_foreground_window (HWND hwnd)
3605 {
3606 SendMessage (hwnd, WM_EMACS_SETFOREGROUND, (WPARAM) hwnd, 0);
3607 }
3608
3609
3610 static void
3611 my_destroy_window (struct frame * f, HWND hwnd)
3612 {
3613 SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_DESTROYWINDOW,
3614 (WPARAM) hwnd, 0);
3615 }
3616
3617 static void
3618 my_bring_window_to_top (HWND hwnd)
3619 {
3620 SendMessage (hwnd, WM_EMACS_BRINGTOTOP, (WPARAM) hwnd, 0);
3621 }
3622
3623 /* Create a scroll bar and return the scroll bar vector for it. W is
3624 the Emacs window on which to create the scroll bar. TOP, LEFT,
3625 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
3626 scroll bar. */
3627
3628 static struct scroll_bar *
3629 x_scroll_bar_create (struct window *w, int top, int left, int width, int height)
3630 {
3631 struct frame *f = XFRAME (WINDOW_FRAME (w));
3632 HWND hwnd;
3633 SCROLLINFO si;
3634 struct scroll_bar *bar
3635 = ALLOCATE_PSEUDOVECTOR (struct scroll_bar, top, PVEC_OTHER);
3636 Lisp_Object barobj;
3637
3638 block_input ();
3639
3640 XSETWINDOW (bar->window, w);
3641 bar->top = top;
3642 bar->left = left;
3643 bar->width = width;
3644 bar->height = height;
3645 bar->start = 0;
3646 bar->end = 0;
3647 bar->dragging = 0;
3648
3649 /* Requires geometry to be set before call to create the real window */
3650
3651 hwnd = my_create_scrollbar (f, bar);
3652
3653 si.cbSize = sizeof (si);
3654 si.fMask = SIF_ALL;
3655 si.nMin = 0;
3656 si.nMax = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height)
3657 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3658 si.nPage = si.nMax;
3659 si.nPos = 0;
3660
3661 SetScrollInfo (hwnd, SB_CTL, &si, FALSE);
3662
3663 SET_SCROLL_BAR_W32_WINDOW (bar, hwnd);
3664
3665 /* Add bar to its frame's list of scroll bars. */
3666 bar->next = FRAME_SCROLL_BARS (f);
3667 bar->prev = Qnil;
3668 XSETVECTOR (barobj, bar);
3669 fset_scroll_bars (f, barobj);
3670 if (! NILP (bar->next))
3671 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
3672
3673 unblock_input ();
3674
3675 return bar;
3676 }
3677
3678
3679 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
3680 nil. */
3681
3682 static void
3683 x_scroll_bar_remove (struct scroll_bar *bar)
3684 {
3685 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3686
3687 block_input ();
3688
3689 /* Destroy the window. */
3690 my_destroy_window (f, SCROLL_BAR_W32_WINDOW (bar));
3691
3692 /* Dissociate this scroll bar from its window. */
3693 wset_vertical_scroll_bar (XWINDOW (bar->window), Qnil);
3694
3695 unblock_input ();
3696 }
3697
3698 /* Set the handle of the vertical scroll bar for WINDOW to indicate
3699 that we are displaying PORTION characters out of a total of WHOLE
3700 characters, starting at POSITION. If WINDOW has no scroll bar,
3701 create one. */
3702 static void
3703 w32_set_vertical_scroll_bar (struct window *w,
3704 int portion, int whole, int position)
3705 {
3706 struct frame *f = XFRAME (w->frame);
3707 Lisp_Object barobj;
3708 struct scroll_bar *bar;
3709 int top, height, left, width;
3710 int window_y, window_height;
3711
3712 /* Get window dimensions. */
3713 window_box (w, ANY_AREA, 0, &window_y, 0, &window_height);
3714 top = window_y;
3715 height = window_height;
3716
3717 /* Compute the left edge and the width of the scroll bar area. */
3718 left = WINDOW_SCROLL_BAR_AREA_X (w);
3719 width = WINDOW_SCROLL_BAR_AREA_WIDTH (w);
3720
3721 /* Does the scroll bar exist yet? */
3722 if (NILP (w->vertical_scroll_bar))
3723 {
3724 HDC hdc;
3725 block_input ();
3726 if (width > 0 && height > 0)
3727 {
3728 hdc = get_frame_dc (f);
3729 w32_clear_area (f, hdc, left, top, width, height);
3730 release_frame_dc (f, hdc);
3731 }
3732 unblock_input ();
3733
3734 bar = x_scroll_bar_create (w, top, left, width, height);
3735 }
3736 else
3737 {
3738 /* It may just need to be moved and resized. */
3739 HWND hwnd;
3740
3741 bar = XSCROLL_BAR (w->vertical_scroll_bar);
3742 hwnd = SCROLL_BAR_W32_WINDOW (bar);
3743
3744 /* If already correctly positioned, do nothing. */
3745 if (bar->left == left
3746 && bar->top == top
3747 && bar->width == width
3748 && bar->height == height)
3749 {
3750 /* Redraw after clear_frame. */
3751 if (!my_show_window (f, hwnd, SW_NORMAL))
3752 InvalidateRect (hwnd, NULL, FALSE);
3753 }
3754 else
3755 {
3756 HDC hdc;
3757 SCROLLINFO si;
3758
3759 block_input ();
3760 if (width && height)
3761 {
3762 hdc = get_frame_dc (f);
3763 /* Since Windows scroll bars are smaller than the space reserved
3764 for them on the frame, we have to clear "under" them. */
3765 w32_clear_area (f, hdc, left, top, width, height);
3766 release_frame_dc (f, hdc);
3767 }
3768 /* Make sure scroll bar is "visible" before moving, to ensure the
3769 area of the parent window now exposed will be refreshed. */
3770 my_show_window (f, hwnd, SW_HIDE);
3771 MoveWindow (hwnd, left, top, width, max (height, 1), TRUE);
3772
3773 si.cbSize = sizeof (si);
3774 si.fMask = SIF_RANGE;
3775 si.nMin = 0;
3776 si.nMax = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height)
3777 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3778
3779 SetScrollInfo (hwnd, SB_CTL, &si, FALSE);
3780
3781 my_show_window (f, hwnd, SW_NORMAL);
3782 /* InvalidateRect (w, NULL, FALSE); */
3783
3784 /* Remember new settings. */
3785 bar->left = left;
3786 bar->top = top;
3787 bar->width = width;
3788 bar->height = height;
3789
3790 unblock_input ();
3791 }
3792 }
3793 w32_set_scroll_bar_thumb (bar, portion, position, whole);
3794 XSETVECTOR (barobj, bar);
3795 wset_vertical_scroll_bar (w, barobj);
3796 }
3797
3798
3799 /* The following three hooks are used when we're doing a thorough
3800 redisplay of the frame. We don't explicitly know which scroll bars
3801 are going to be deleted, because keeping track of when windows go
3802 away is a real pain - "Can you say set-window-configuration, boys
3803 and girls?" Instead, we just assert at the beginning of redisplay
3804 that *all* scroll bars are to be removed, and then save a scroll bar
3805 from the fiery pit when we actually redisplay its window. */
3806
3807 /* Arrange for all scroll bars on FRAME to be removed at the next call
3808 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
3809 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
3810
3811 static void
3812 w32_condemn_scroll_bars (struct frame *frame)
3813 {
3814 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
3815 while (! NILP (FRAME_SCROLL_BARS (frame)))
3816 {
3817 Lisp_Object bar;
3818 bar = FRAME_SCROLL_BARS (frame);
3819 fset_scroll_bars (frame, XSCROLL_BAR (bar)->next);
3820 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
3821 XSCROLL_BAR (bar)->prev = Qnil;
3822 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
3823 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
3824 fset_condemned_scroll_bars (frame, bar);
3825 }
3826 }
3827
3828
3829 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
3830 Note that WINDOW isn't necessarily condemned at all. */
3831
3832 static void
3833 w32_redeem_scroll_bar (struct window *window)
3834 {
3835 struct scroll_bar *bar;
3836 Lisp_Object barobj;
3837 struct frame *f;
3838
3839 /* We can't redeem this window's scroll bar if it doesn't have one. */
3840 if (NILP (window->vertical_scroll_bar))
3841 emacs_abort ();
3842
3843 bar = XSCROLL_BAR (window->vertical_scroll_bar);
3844
3845 /* Unlink it from the condemned list. */
3846 f = XFRAME (WINDOW_FRAME (window));
3847 if (NILP (bar->prev))
3848 {
3849 /* If the prev pointer is nil, it must be the first in one of
3850 the lists. */
3851 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
3852 /* It's not condemned. Everything's fine. */
3853 return;
3854 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
3855 window->vertical_scroll_bar))
3856 fset_condemned_scroll_bars (f, bar->next);
3857 else
3858 /* If its prev pointer is nil, it must be at the front of
3859 one or the other! */
3860 emacs_abort ();
3861 }
3862 else
3863 XSCROLL_BAR (bar->prev)->next = bar->next;
3864
3865 if (! NILP (bar->next))
3866 XSCROLL_BAR (bar->next)->prev = bar->prev;
3867
3868 bar->next = FRAME_SCROLL_BARS (f);
3869 bar->prev = Qnil;
3870 XSETVECTOR (barobj, bar);
3871 fset_scroll_bars (f, barobj);
3872 if (! NILP (bar->next))
3873 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
3874 }
3875
3876 /* Remove all scroll bars on FRAME that haven't been saved since the
3877 last call to `*condemn_scroll_bars_hook'. */
3878
3879 static void
3880 w32_judge_scroll_bars (struct frame *f)
3881 {
3882 Lisp_Object bar, next;
3883
3884 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
3885
3886 /* Clear out the condemned list now so we won't try to process any
3887 more events on the hapless scroll bars. */
3888 fset_condemned_scroll_bars (f, Qnil);
3889
3890 for (; ! NILP (bar); bar = next)
3891 {
3892 struct scroll_bar *b = XSCROLL_BAR (bar);
3893
3894 x_scroll_bar_remove (b);
3895
3896 next = b->next;
3897 b->next = b->prev = Qnil;
3898 }
3899
3900 /* Now there should be no references to the condemned scroll bars,
3901 and they should get garbage-collected. */
3902 }
3903
3904 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
3905 is set to something other than NO_EVENT, it is enqueued.
3906
3907 This may be called from a signal handler, so we have to ignore GC
3908 mark bits. */
3909
3910 static int
3911 w32_scroll_bar_handle_click (struct scroll_bar *bar, W32Msg *msg,
3912 struct input_event *emacs_event)
3913 {
3914 if (! WINDOWP (bar->window))
3915 emacs_abort ();
3916
3917 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
3918 emacs_event->code = 0;
3919 /* not really meaningful to distinguish up/down */
3920 emacs_event->modifiers = msg->dwModifiers;
3921 emacs_event->frame_or_window = bar->window;
3922 emacs_event->arg = Qnil;
3923 emacs_event->timestamp = msg->msg.time;
3924
3925 {
3926 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
3927 int y;
3928 int dragging = bar->dragging;
3929 SCROLLINFO si;
3930
3931 si.cbSize = sizeof (si);
3932 si.fMask = SIF_POS;
3933
3934 GetScrollInfo ((HWND) msg->msg.lParam, SB_CTL, &si);
3935 y = si.nPos;
3936
3937 bar->dragging = 0;
3938 FRAME_DISPLAY_INFO (f)->last_mouse_scroll_bar_pos = msg->msg.wParam;
3939
3940 switch (LOWORD (msg->msg.wParam))
3941 {
3942 case SB_LINEDOWN:
3943 emacs_event->part = scroll_bar_down_arrow;
3944 break;
3945 case SB_LINEUP:
3946 emacs_event->part = scroll_bar_up_arrow;
3947 break;
3948 case SB_PAGEUP:
3949 emacs_event->part = scroll_bar_above_handle;
3950 break;
3951 case SB_PAGEDOWN:
3952 emacs_event->part = scroll_bar_below_handle;
3953 break;
3954 case SB_TOP:
3955 emacs_event->part = scroll_bar_handle;
3956 y = 0;
3957 break;
3958 case SB_BOTTOM:
3959 emacs_event->part = scroll_bar_handle;
3960 y = top_range;
3961 break;
3962 case SB_THUMBTRACK:
3963 case SB_THUMBPOSITION:
3964 if (VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height) <= 0xffff)
3965 y = HIWORD (msg->msg.wParam);
3966 bar->dragging = 1; /* ??????? */
3967 emacs_event->part = scroll_bar_handle;
3968
3969 /* "Silently" update current position. */
3970 {
3971 SCROLLINFO si;
3972
3973 si.cbSize = sizeof (si);
3974 si.fMask = SIF_POS;
3975 si.nPos = y;
3976 /* Remember apparent position (we actually lag behind the real
3977 position, so don't set that directly). */
3978 last_scroll_bar_drag_pos = y;
3979
3980 SetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, FALSE);
3981 }
3982 break;
3983 case SB_ENDSCROLL:
3984 /* If this is the end of a drag sequence, then reset the scroll
3985 handle size to normal and do a final redraw. Otherwise do
3986 nothing. */
3987 if (dragging)
3988 {
3989 SCROLLINFO si;
3990 int start = bar->start;
3991 int end = bar->end;
3992
3993 si.cbSize = sizeof (si);
3994 si.fMask = SIF_PAGE | SIF_POS;
3995 si.nPage = end - start + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3996 si.nPos = last_scroll_bar_drag_pos;
3997 SetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, TRUE);
3998 }
3999 /* fall through */
4000 default:
4001 emacs_event->kind = NO_EVENT;
4002 return FALSE;
4003 }
4004
4005 XSETINT (emacs_event->x, y);
4006 XSETINT (emacs_event->y, top_range);
4007
4008 return TRUE;
4009 }
4010 }
4011
4012 /* Return information to the user about the current position of the mouse
4013 on the scroll bar. */
4014
4015 static void
4016 x_scroll_bar_report_motion (struct frame **fp, Lisp_Object *bar_window,
4017 enum scroll_bar_part *part,
4018 Lisp_Object *x, Lisp_Object *y,
4019 unsigned long *time)
4020 {
4021 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (*fp);
4022 struct scroll_bar *bar = dpyinfo->last_mouse_scroll_bar;
4023 Window w = SCROLL_BAR_W32_WINDOW (bar);
4024 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4025 int pos;
4026 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height);
4027 SCROLLINFO si;
4028
4029 block_input ();
4030
4031 *fp = f;
4032 *bar_window = bar->window;
4033
4034 si.cbSize = sizeof (si);
4035 si.fMask = SIF_POS | SIF_PAGE | SIF_RANGE;
4036
4037 GetScrollInfo (w, SB_CTL, &si);
4038 pos = si.nPos;
4039 top_range = si.nMax - si.nPage + 1;
4040
4041 switch (LOWORD (dpyinfo->last_mouse_scroll_bar_pos))
4042 {
4043 case SB_THUMBPOSITION:
4044 case SB_THUMBTRACK:
4045 *part = scroll_bar_handle;
4046 if (VERTICAL_SCROLL_BAR_TOP_RANGE (f, bar->height) <= 0xffff)
4047 pos = HIWORD (dpyinfo->last_mouse_scroll_bar_pos);
4048 break;
4049 case SB_LINEDOWN:
4050 *part = scroll_bar_handle;
4051 pos++;
4052 break;
4053 default:
4054 *part = scroll_bar_handle;
4055 break;
4056 }
4057
4058 XSETINT (*x, pos);
4059 XSETINT (*y, top_range);
4060
4061 f->mouse_moved = 0;
4062 dpyinfo->last_mouse_scroll_bar = NULL;
4063
4064 *time = dpyinfo->last_mouse_movement_time;
4065
4066 unblock_input ();
4067 }
4068
4069
4070 /* The screen has been cleared so we may have changed foreground or
4071 background colors, and the scroll bars may need to be redrawn.
4072 Clear out the scroll bars, and ask for expose events, so we can
4073 redraw them. */
4074
4075 void
4076 x_scroll_bar_clear (struct frame *f)
4077 {
4078 Lisp_Object bar;
4079
4080 /* We can have scroll bars even if this is 0,
4081 if we just turned off scroll bar mode.
4082 But in that case we should not clear them. */
4083 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
4084 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
4085 bar = XSCROLL_BAR (bar)->next)
4086 {
4087 HWND window = SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar));
4088 HDC hdc = GetDC (window);
4089 RECT rect;
4090
4091 /* Hide scroll bar until ready to repaint. x_scroll_bar_move
4092 arranges to refresh the scroll bar if hidden. */
4093 my_show_window (f, window, SW_HIDE);
4094
4095 GetClientRect (window, &rect);
4096 select_palette (f, hdc);
4097 w32_clear_rect (f, hdc, &rect);
4098 deselect_palette (f, hdc);
4099
4100 ReleaseDC (window, hdc);
4101 }
4102 }
4103
4104 \f
4105 /* The main W32 event-reading loop - w32_read_socket. */
4106
4107 /* Record the last 100 characters stored
4108 to help debug the loss-of-chars-during-GC problem. */
4109
4110 static int temp_index;
4111 static short temp_buffer[100];
4112
4113 /* Temporarily store lead byte of DBCS input sequences. */
4114 static char dbcs_lead = 0;
4115
4116 /* Read events coming from the W32 shell.
4117 This routine is called by the SIGIO handler.
4118 We return as soon as there are no more events to be read.
4119
4120 For an overview of how Emacs input works on MS-Windows, see the
4121 commentary before w32_msg_pump in w32fns.c.
4122
4123 We return the number of characters stored into the buffer,
4124 thus pretending to be `read'.
4125
4126 Some of these messages are reposted back to the message queue since the
4127 system calls the windows proc directly in a context where we cannot return
4128 the data nor can we guarantee the state we are in. So if we dispatch them
4129 we will get into an infinite loop. To prevent this from ever happening we
4130 will set a variable to indicate we are in the read_socket call and indicate
4131 which message we are processing since the windows proc gets called
4132 recursively with different messages by the system.
4133 */
4134
4135 static int
4136 w32_read_socket (struct terminal *terminal,
4137 struct input_event *hold_quit)
4138 {
4139 int count = 0;
4140 int check_visibility = 0;
4141 W32Msg msg;
4142 struct frame *f;
4143 struct w32_display_info *dpyinfo = &one_w32_display_info;
4144 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
4145
4146 block_input ();
4147
4148 /* So people can tell when we have read the available input. */
4149 input_signal_count++;
4150
4151 /* Process any incoming thread messages. */
4152 drain_message_queue ();
4153
4154 /* TODO: ghostscript integration. */
4155 while (get_next_msg (&msg, FALSE))
4156 {
4157 struct input_event inev;
4158 int do_help = 0;
4159
4160 /* DebPrint (("w32_read_socket: %s time:%u\n", */
4161 /* w32_name_of_message (msg.msg.message), */
4162 /* msg.msg.time)); */
4163
4164 EVENT_INIT (inev);
4165 inev.kind = NO_EVENT;
4166 inev.arg = Qnil;
4167
4168 switch (msg.msg.message)
4169 {
4170 case WM_EMACS_PAINT:
4171 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4172
4173 if (f)
4174 {
4175 if (msg.rect.right == msg.rect.left ||
4176 msg.rect.bottom == msg.rect.top)
4177 {
4178 /* We may get paint messages even though the client
4179 area is clipped - these are not expose events. */
4180 DebPrint (("clipped frame %p (%s) got WM_PAINT - ignored\n", f,
4181 SDATA (f->name)));
4182 }
4183 else if (FRAME_VISIBLE_P (f) != 1)
4184 {
4185 bool iconified = FRAME_ICONIFIED_P (f);
4186
4187 /* Definitely not obscured, so mark as visible. */
4188 SET_FRAME_VISIBLE (f, 1);
4189 SET_FRAME_ICONIFIED (f, 0);
4190 SET_FRAME_GARBAGED (f);
4191 if (!f->output_data.w32->asked_for_visible)
4192 DebPrint (("frame %p (%s) reexposed by WM_PAINT\n", f,
4193 SDATA (f->name)));
4194
4195 /* WM_PAINT serves as MapNotify as well, so report
4196 visibility changes properly. */
4197 if (iconified)
4198 {
4199 inev.kind = DEICONIFY_EVENT;
4200 XSETFRAME (inev.frame_or_window, f);
4201 }
4202 else if (!NILP (Vframe_list) && !NILP (XCDR (Vframe_list)))
4203 /* Force a redisplay sooner or later to update the
4204 frame titles in case this is the second frame. */
4205 record_asynch_buffer_change ();
4206 }
4207 else
4208 {
4209 HDC hdc = get_frame_dc (f);
4210
4211 /* Erase background again for safety. */
4212 w32_clear_rect (f, hdc, &msg.rect);
4213 release_frame_dc (f, hdc);
4214 expose_frame (f,
4215 msg.rect.left,
4216 msg.rect.top,
4217 msg.rect.right - msg.rect.left,
4218 msg.rect.bottom - msg.rect.top);
4219 }
4220 }
4221 break;
4222
4223 case WM_INPUTLANGCHANGE:
4224 /* Generate a language change event. */
4225 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4226
4227 /* lParam contains the input language ID in its low 16 bits.
4228 Use it to update our record of the keyboard codepage. */
4229 w32_keyboard_codepage = codepage_for_locale ((LCID)(msg.msg.lParam
4230 & 0xffff));
4231
4232 if (f)
4233 {
4234 inev.kind = LANGUAGE_CHANGE_EVENT;
4235 XSETFRAME (inev.frame_or_window, f);
4236 inev.code = w32_keyboard_codepage;
4237 inev.modifiers = msg.msg.lParam & 0xffff;
4238 }
4239 break;
4240
4241 case WM_KEYDOWN:
4242 case WM_SYSKEYDOWN:
4243 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4244
4245 if (f && !FRAME_ICONIFIED_P (f))
4246 {
4247 if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
4248 && !EQ (f->tool_bar_window, hlinfo->mouse_face_window))
4249 {
4250 clear_mouse_face (hlinfo);
4251 hlinfo->mouse_face_hidden = 1;
4252 }
4253
4254 if (temp_index == sizeof temp_buffer / sizeof (short))
4255 temp_index = 0;
4256 temp_buffer[temp_index++] = msg.msg.wParam;
4257 inev.kind = NON_ASCII_KEYSTROKE_EVENT;
4258 inev.code = msg.msg.wParam;
4259 inev.modifiers = msg.dwModifiers;
4260 XSETFRAME (inev.frame_or_window, f);
4261 inev.timestamp = msg.msg.time;
4262 }
4263 break;
4264
4265 case WM_UNICHAR:
4266 case WM_SYSCHAR:
4267 case WM_CHAR:
4268 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4269
4270 if (f && !FRAME_ICONIFIED_P (f))
4271 {
4272 if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
4273 && !EQ (f->tool_bar_window, hlinfo->mouse_face_window))
4274 {
4275 clear_mouse_face (hlinfo);
4276 hlinfo->mouse_face_hidden = 1;
4277 }
4278
4279 if (temp_index == sizeof temp_buffer / sizeof (short))
4280 temp_index = 0;
4281 temp_buffer[temp_index++] = msg.msg.wParam;
4282
4283 inev.modifiers = msg.dwModifiers;
4284 XSETFRAME (inev.frame_or_window, f);
4285 inev.timestamp = msg.msg.time;
4286
4287 if (msg.msg.message == WM_UNICHAR)
4288 {
4289 inev.code = msg.msg.wParam;
4290 }
4291 else if (msg.msg.wParam < 256)
4292 {
4293 wchar_t code;
4294 char dbcs[2];
4295 dbcs[0] = 0;
4296 dbcs[1] = (char) msg.msg.wParam;
4297
4298 if (dbcs_lead)
4299 {
4300 dbcs[0] = dbcs_lead;
4301 dbcs_lead = 0;
4302 if (!MultiByteToWideChar (w32_keyboard_codepage, 0,
4303 dbcs, 2, &code, 1))
4304 {
4305 /* Garbage */
4306 DebPrint (("Invalid DBCS sequence: %d %d\n",
4307 dbcs[0], dbcs[1]));
4308 inev.kind = NO_EVENT;
4309 break;
4310 }
4311 }
4312 else if (IsDBCSLeadByteEx (w32_keyboard_codepage,
4313 (BYTE) msg.msg.wParam))
4314 {
4315 dbcs_lead = (char) msg.msg.wParam;
4316 inev.kind = NO_EVENT;
4317 break;
4318 }
4319 else
4320 {
4321 if (!MultiByteToWideChar (w32_keyboard_codepage, 0,
4322 &dbcs[1], 1, &code, 1))
4323 {
4324 /* What to do with garbage? */
4325 DebPrint (("Invalid character: %d\n", dbcs[1]));
4326 inev.kind = NO_EVENT;
4327 break;
4328 }
4329 }
4330 inev.code = code;
4331 }
4332 else
4333 {
4334 /* Windows shouldn't generate WM_CHAR events above 0xFF
4335 in non-Unicode message handlers. */
4336 DebPrint (("Non-byte WM_CHAR: %d\n", msg.msg.wParam));
4337 inev.kind = NO_EVENT;
4338 break;
4339 }
4340 inev.kind = inev.code < 128 ? ASCII_KEYSTROKE_EVENT
4341 : MULTIBYTE_CHAR_KEYSTROKE_EVENT;
4342 }
4343 break;
4344
4345 case WM_APPCOMMAND:
4346 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4347
4348 if (f && !FRAME_ICONIFIED_P (f))
4349 {
4350 if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
4351 && !EQ (f->tool_bar_window, hlinfo->mouse_face_window))
4352 {
4353 clear_mouse_face (hlinfo);
4354 hlinfo->mouse_face_hidden = 1;
4355 }
4356
4357 if (temp_index == sizeof temp_buffer / sizeof (short))
4358 temp_index = 0;
4359 temp_buffer[temp_index++] = msg.msg.wParam;
4360 inev.kind = MULTIMEDIA_KEY_EVENT;
4361 inev.code = GET_APPCOMMAND_LPARAM (msg.msg.lParam);
4362 inev.modifiers = msg.dwModifiers;
4363 XSETFRAME (inev.frame_or_window, f);
4364 inev.timestamp = msg.msg.time;
4365 }
4366 break;
4367
4368 case WM_MOUSEMOVE:
4369 /* Ignore non-movement. */
4370 {
4371 int x = LOWORD (msg.msg.lParam);
4372 int y = HIWORD (msg.msg.lParam);
4373 if (x == last_mousemove_x && y == last_mousemove_y)
4374 break;
4375 last_mousemove_x = x;
4376 last_mousemove_y = y;
4377 }
4378
4379 previous_help_echo_string = help_echo_string;
4380 help_echo_string = Qnil;
4381
4382 f = (x_mouse_grabbed (dpyinfo) ? dpyinfo->last_mouse_frame
4383 : x_window_to_frame (dpyinfo, msg.msg.hwnd));
4384
4385 if (hlinfo->mouse_face_hidden)
4386 {
4387 hlinfo->mouse_face_hidden = 0;
4388 clear_mouse_face (hlinfo);
4389 }
4390
4391 if (f)
4392 {
4393 /* Generate SELECT_WINDOW_EVENTs when needed. */
4394 if (!NILP (Vmouse_autoselect_window))
4395 {
4396 static Lisp_Object last_mouse_window;
4397 Lisp_Object window = window_from_coordinates
4398 (f, LOWORD (msg.msg.lParam), HIWORD (msg.msg.lParam), 0, 0);
4399
4400 /* Window will be selected only when it is not
4401 selected now and last mouse movement event was
4402 not in it. Minibuffer window will be selected
4403 only when it is active. */
4404 if (WINDOWP (window)
4405 && !EQ (window, last_mouse_window)
4406 && !EQ (window, selected_window)
4407 /* For click-to-focus window managers
4408 create event iff we don't leave the
4409 selected frame. */
4410 && (focus_follows_mouse
4411 || (EQ (XWINDOW (window)->frame,
4412 XWINDOW (selected_window)->frame))))
4413 {
4414 inev.kind = SELECT_WINDOW_EVENT;
4415 inev.frame_or_window = window;
4416 }
4417 /* Remember the last window where we saw the mouse. */
4418 last_mouse_window = window;
4419 }
4420 if (!note_mouse_movement (f, &msg.msg))
4421 help_echo_string = previous_help_echo_string;
4422 }
4423 else
4424 {
4425 /* If we move outside the frame, then we're
4426 certainly no longer on any text in the frame. */
4427 clear_mouse_face (hlinfo);
4428 }
4429
4430 /* If the contents of the global variable help_echo_string
4431 has changed, generate a HELP_EVENT. */
4432 #if 0 /* The below is an invalid comparison when CHECK_LISP_OBJECT_TYPE.
4433 But it was originally changed to this to fix a bug, so I have
4434 not removed it completely in case the bug is still there. */
4435 if (help_echo_string != previous_help_echo_string ||
4436 (!NILP (help_echo_string) && !STRINGP (help_echo_string) && f->mouse_moved))
4437 #else /* This is what xterm.c does. */
4438 if (!NILP (help_echo_string)
4439 || !NILP (previous_help_echo_string))
4440 do_help = 1;
4441 #endif
4442 break;
4443
4444 case WM_LBUTTONDOWN:
4445 case WM_LBUTTONUP:
4446 case WM_MBUTTONDOWN:
4447 case WM_MBUTTONUP:
4448 case WM_RBUTTONDOWN:
4449 case WM_RBUTTONUP:
4450 case WM_XBUTTONDOWN:
4451 case WM_XBUTTONUP:
4452 {
4453 /* If we decide we want to generate an event to be seen
4454 by the rest of Emacs, we put it here. */
4455 bool tool_bar_p = 0;
4456 int button;
4457 int up;
4458
4459 f = (x_mouse_grabbed (dpyinfo) ? dpyinfo->last_mouse_frame
4460 : x_window_to_frame (dpyinfo, msg.msg.hwnd));
4461
4462 if (f)
4463 {
4464 construct_mouse_click (&inev, &msg, f);
4465
4466 /* Is this in the tool-bar? */
4467 if (WINDOWP (f->tool_bar_window)
4468 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)))
4469 {
4470 Lisp_Object window;
4471 int x = XFASTINT (inev.x);
4472 int y = XFASTINT (inev.y);
4473
4474 window = window_from_coordinates (f, x, y, 0, 1);
4475
4476 if (EQ (window, f->tool_bar_window))
4477 {
4478 w32_handle_tool_bar_click (f, &inev);
4479 tool_bar_p = 1;
4480 }
4481 }
4482
4483 if (tool_bar_p
4484 || (dpyinfo->w32_focus_frame
4485 && f != dpyinfo->w32_focus_frame))
4486 inev.kind = NO_EVENT;
4487 }
4488
4489 parse_button (msg.msg.message, HIWORD (msg.msg.wParam),
4490 &button, &up);
4491
4492 if (up)
4493 {
4494 dpyinfo->grabbed &= ~ (1 << button);
4495 }
4496 else
4497 {
4498 dpyinfo->grabbed |= (1 << button);
4499 dpyinfo->last_mouse_frame = f;
4500 /* Ignore any mouse motion that happened
4501 before this event; any subsequent mouse-movement
4502 Emacs events should reflect only motion after
4503 the ButtonPress. */
4504 if (f != 0)
4505 f->mouse_moved = 0;
4506
4507 if (!tool_bar_p)
4508 last_tool_bar_item = -1;
4509 }
4510 break;
4511 }
4512
4513 case WM_MOUSEWHEEL:
4514 case WM_MOUSEHWHEEL:
4515 {
4516 f = (x_mouse_grabbed (dpyinfo) ? dpyinfo->last_mouse_frame
4517 : x_window_to_frame (dpyinfo, msg.msg.hwnd));
4518
4519 if (f)
4520 {
4521
4522 if (!dpyinfo->w32_focus_frame
4523 || f == dpyinfo->w32_focus_frame)
4524 {
4525 /* Emit an Emacs wheel-up/down event. */
4526 construct_mouse_wheel (&inev, &msg, f);
4527 }
4528 /* Ignore any mouse motion that happened before this
4529 event; any subsequent mouse-movement Emacs events
4530 should reflect only motion after the
4531 ButtonPress. */
4532 f->mouse_moved = 0;
4533 }
4534 dpyinfo->last_mouse_frame = f;
4535 last_tool_bar_item = -1;
4536 }
4537 break;
4538
4539 case WM_DROPFILES:
4540 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4541
4542 if (f)
4543 construct_drag_n_drop (&inev, &msg, f);
4544 break;
4545
4546 case WM_VSCROLL:
4547 {
4548 struct scroll_bar *bar =
4549 x_window_to_scroll_bar ((HWND)msg.msg.lParam);
4550
4551 if (bar)
4552 w32_scroll_bar_handle_click (bar, &msg, &inev);
4553 break;
4554 }
4555
4556 case WM_WINDOWPOSCHANGED:
4557 case WM_ACTIVATE:
4558 case WM_ACTIVATEAPP:
4559 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4560 if (f)
4561 {
4562 /* Run the full-screen hook function also when we are
4563 being activated, to actually install the required
4564 size in effect, if the WAIT flag is set. This is
4565 because when the hook is run from x_set_fullscreen,
4566 the frame might not yet be visible, if that call is a
4567 result of make-frame, and in that case the hook just
4568 sets the WAIT flag. */
4569 if ((msg.msg.message == WM_WINDOWPOSCHANGED || msg.msg.wParam)
4570 && (f->want_fullscreen & FULLSCREEN_WAIT))
4571 w32fullscreen_hook (f);
4572 x_check_fullscreen (f);
4573 }
4574 check_visibility = 1;
4575 break;
4576
4577 case WM_MOVE:
4578 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4579
4580 if (f && !FRAME_ICONIFIED_P (f))
4581 x_real_positions (f, &f->left_pos, &f->top_pos);
4582
4583 check_visibility = 1;
4584 break;
4585
4586 case WM_SHOWWINDOW:
4587 /* wParam non-zero means Window is about to be shown, 0 means
4588 about to be hidden. */
4589 /* Redo the mouse-highlight after the tooltip has gone. */
4590 if (!msg.msg.wParam && msg.msg.hwnd == tip_window)
4591 {
4592 tip_window = NULL;
4593 x_redo_mouse_highlight (dpyinfo);
4594 }
4595
4596 /* If window has been obscured or exposed by another window
4597 being maximized or minimized/restored, then recheck
4598 visibility of all frames. Direct changes to our own
4599 windows get handled by WM_SIZE. */
4600 #if 0
4601 if (msg.msg.lParam != 0)
4602 check_visibility = 1;
4603 else
4604 {
4605 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4606 f->async_visible = msg.msg.wParam;
4607 }
4608 #endif
4609
4610 check_visibility = 1;
4611 break;
4612
4613 case WM_SIZE:
4614 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4615
4616 /* Inform lisp of whether frame has been iconified etc. */
4617 if (f)
4618 {
4619 switch (msg.msg.wParam)
4620 {
4621 case SIZE_MINIMIZED:
4622 SET_FRAME_VISIBLE (f, 0);
4623 SET_FRAME_ICONIFIED (f, 1);
4624
4625 inev.kind = ICONIFY_EVENT;
4626 XSETFRAME (inev.frame_or_window, f);
4627 break;
4628
4629 case SIZE_MAXIMIZED:
4630 {
4631 bool iconified = FRAME_ICONIFIED_P (f);
4632
4633 SET_FRAME_VISIBLE (f, 1);
4634 SET_FRAME_ICONIFIED (f, 0);
4635
4636 /* wait_reading_process_output will notice this
4637 and update the frame's display structures. */
4638 SET_FRAME_GARBAGED (f);
4639
4640 if (iconified)
4641 {
4642 int x, y;
4643
4644 /* Reset top and left positions of the Window
4645 here since Windows sends a WM_MOVE message
4646 BEFORE telling us the Window is minimized
4647 when the Window is iconified, with 3000,3000
4648 as the co-ords. */
4649 x_real_positions (f, &x, &y);
4650 f->left_pos = x;
4651 f->top_pos = y;
4652
4653 inev.kind = DEICONIFY_EVENT;
4654 XSETFRAME (inev.frame_or_window, f);
4655 }
4656 else if (! NILP (Vframe_list)
4657 && ! NILP (XCDR (Vframe_list)))
4658 /* Force a redisplay sooner or later
4659 to update the frame titles
4660 in case this is the second frame. */
4661 record_asynch_buffer_change ();
4662 }
4663
4664 if (EQ (get_frame_param (f, Qfullscreen), Qnil))
4665 set_frame_param (f, Qfullscreen, Qmaximized);
4666 else if (! EQ (get_frame_param (f, Qfullscreen), Qmaximized))
4667 set_frame_param (f, Qmaximized, Qmaximized);
4668
4669 break;
4670
4671 case SIZE_RESTORED:
4672 {
4673 bool iconified = FRAME_ICONIFIED_P (f);
4674
4675 if (iconified)
4676 SET_FRAME_VISIBLE (f, 1);
4677 SET_FRAME_ICONIFIED (f, 0);
4678
4679 /* wait_reading_process_output will notice this
4680 and update the frame's display structures. */
4681 SET_FRAME_GARBAGED (f);
4682
4683 if (iconified)
4684 {
4685 /* Reset top and left positions of the Window
4686 here since Windows sends a WM_MOVE message
4687 BEFORE telling us the Window is minimized
4688 when the Window is iconified, with 3000,3000
4689 as the co-ords. */
4690 x_real_positions (f, &f->left_pos, &f->top_pos);
4691
4692 inev.kind = DEICONIFY_EVENT;
4693 XSETFRAME (inev.frame_or_window, f);
4694 }
4695 else if (! NILP (Vframe_list)
4696 && ! NILP (XCDR (Vframe_list)))
4697 /* Force a redisplay sooner or later
4698 to update the frame titles
4699 in case this is the second frame. */
4700 record_asynch_buffer_change ();
4701 }
4702
4703 if (EQ (get_frame_param (f, Qfullscreen), Qmaximized))
4704 set_frame_param (f, Qfullscreen, Qnil);
4705 else if (! EQ (get_frame_param (f, Qmaximized), Qnil))
4706 set_frame_param (f, Qmaximized, Qnil);
4707
4708 break;
4709 }
4710 }
4711
4712 if (f && !FRAME_ICONIFIED_P (f) && msg.msg.wParam != SIZE_MINIMIZED)
4713 {
4714 RECT rect;
4715 int rows, columns, width, height, text_width, text_height;
4716
4717 GetClientRect (msg.msg.hwnd, &rect);
4718
4719 height = rect.bottom - rect.top;
4720 width = rect.right - rect.left;
4721 text_width = FRAME_PIXEL_TO_TEXT_WIDTH (f, width);
4722 text_height = FRAME_PIXEL_TO_TEXT_HEIGHT (f, height);
4723 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, height);
4724 columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, width);
4725
4726 /* TODO: Clip size to the screen dimensions. */
4727
4728 /* Even if the number of character rows and columns has
4729 not changed, the font size may have changed, so we need
4730 to check the pixel dimensions as well. */
4731
4732 if (width != FRAME_PIXEL_WIDTH (f)
4733 || height != FRAME_PIXEL_HEIGHT (f)
4734 || text_width != FRAME_TEXT_WIDTH (f)
4735 || text_height != FRAME_TEXT_HEIGHT (f))
4736 {
4737 change_frame_size (f, text_width, text_height, 0, 1, 0, 1);
4738 SET_FRAME_GARBAGED (f);
4739 cancel_mouse_face (f);
4740 /* Do we want to set these here ???? */
4741 /** FRAME_PIXEL_WIDTH (f) = width; **/
4742 /** FRAME_TEXT_WIDTH (f) = text_width; **/
4743 /** FRAME_PIXEL_HEIGHT (f) = height; **/
4744 f->win_gravity = NorthWestGravity;
4745 }
4746 }
4747
4748 check_visibility = 1;
4749 break;
4750
4751 case WM_MOUSELEAVE:
4752 f = x_any_window_to_frame (dpyinfo, msg.msg.hwnd);
4753 if (f)
4754 {
4755 if (f == hlinfo->mouse_face_mouse_frame)
4756 {
4757 /* If we move outside the frame, then we're
4758 certainly no longer on any text in the frame. */
4759 clear_mouse_face (hlinfo);
4760 hlinfo->mouse_face_mouse_frame = 0;
4761 }
4762
4763 /* Generate a nil HELP_EVENT to cancel a help-echo.
4764 Do it only if there's something to cancel.
4765 Otherwise, the startup message is cleared when
4766 the mouse leaves the frame. */
4767 if (any_help_event_p)
4768 do_help = -1;
4769 }
4770 break;
4771
4772 case WM_SETFOCUS:
4773 w32_detect_focus_change (dpyinfo, &msg, &inev);
4774
4775 dpyinfo->grabbed = 0;
4776 check_visibility = 1;
4777 break;
4778
4779 case WM_KILLFOCUS:
4780 w32_detect_focus_change (dpyinfo, &msg, &inev);
4781 f = x_top_window_to_frame (dpyinfo, msg.msg.hwnd);
4782
4783 if (f)
4784 {
4785 if (f == hlinfo->mouse_face_mouse_frame)
4786 {
4787 /* If we move outside the frame, then we're
4788 certainly no longer on any text in the frame. */
4789 clear_mouse_face (hlinfo);
4790 hlinfo->mouse_face_mouse_frame = 0;
4791 }
4792
4793 /* Generate a nil HELP_EVENT to cancel a help-echo.
4794 Do it only if there's something to cancel.
4795 Otherwise, the startup message is cleared when
4796 the mouse leaves the frame. */
4797 if (any_help_event_p)
4798 do_help = -1;
4799 }
4800
4801 dpyinfo->grabbed = 0;
4802 check_visibility = 1;
4803 break;
4804
4805 case WM_CLOSE:
4806 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4807
4808 if (f)
4809 {
4810 inev.kind = DELETE_WINDOW_EVENT;
4811 XSETFRAME (inev.frame_or_window, f);
4812 }
4813 break;
4814
4815 case WM_INITMENU:
4816 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4817
4818 if (f)
4819 {
4820 inev.kind = MENU_BAR_ACTIVATE_EVENT;
4821 XSETFRAME (inev.frame_or_window, f);
4822 }
4823 break;
4824
4825 case WM_COMMAND:
4826 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4827
4828 if (f)
4829 {
4830 extern void menubar_selection_callback
4831 (struct frame *f, void * client_data);
4832 menubar_selection_callback (f, (void *)msg.msg.wParam);
4833 }
4834
4835 check_visibility = 1;
4836 break;
4837
4838 case WM_DISPLAYCHANGE:
4839 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4840
4841 if (f)
4842 {
4843 dpyinfo->n_cbits = msg.msg.wParam;
4844 /* The new display could have a different resolution, in
4845 which case we must reconsider what fullscreen
4846 means. */
4847 x_check_fullscreen (f);
4848 DebPrint (("display change: %d %d\n",
4849 (short) LOWORD (msg.msg.lParam),
4850 (short) HIWORD (msg.msg.lParam)));
4851 }
4852
4853 check_visibility = 1;
4854 break;
4855
4856 #if HAVE_W32NOTIFY
4857 case WM_EMACS_FILENOTIFY:
4858 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4859 if (f)
4860 queue_notifications (&inev, &msg, f, &count);
4861 break;
4862 #endif
4863
4864 default:
4865 /* Check for messages registered at runtime. */
4866 if (msg.msg.message == msh_mousewheel)
4867 {
4868 /* Forward MSH_MOUSEWHEEL as WM_MOUSEWHEEL. */
4869 msg.msg.message = WM_MOUSEWHEEL;
4870 prepend_msg (&msg);
4871 }
4872 break;
4873 }
4874
4875 if (inev.kind != NO_EVENT)
4876 {
4877 kbd_buffer_store_event_hold (&inev, hold_quit);
4878 count++;
4879 }
4880
4881 if (do_help
4882 && !(hold_quit && hold_quit->kind != NO_EVENT))
4883 {
4884 Lisp_Object frame;
4885
4886 if (f)
4887 XSETFRAME (frame, f);
4888 else
4889 frame = Qnil;
4890
4891 if (do_help > 0)
4892 {
4893 if (NILP (help_echo_string))
4894 {
4895 help_echo_object = help_echo_window = Qnil;
4896 help_echo_pos = -1;
4897 }
4898
4899 any_help_event_p = 1;
4900 gen_help_event (help_echo_string, frame, help_echo_window,
4901 help_echo_object, help_echo_pos);
4902 }
4903 else
4904 {
4905 help_echo_string = Qnil;
4906 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
4907 }
4908 count++;
4909 }
4910 }
4911
4912 /* If the focus was just given to an autoraising frame,
4913 raise it now. FIXME: handle more than one such frame. */
4914 if (dpyinfo->w32_pending_autoraise_frame)
4915 {
4916 x_raise_frame (dpyinfo->w32_pending_autoraise_frame);
4917 dpyinfo->w32_pending_autoraise_frame = NULL;
4918 }
4919
4920 /* Check which frames are still visible, if we have enqueued any user
4921 events or been notified of events that may affect visibility. We
4922 do this here because there doesn't seem to be any direct
4923 notification from Windows that the visibility of a window has
4924 changed (at least, not in all cases). */
4925 if (count > 0 || check_visibility)
4926 {
4927 Lisp_Object tail, frame;
4928
4929 FOR_EACH_FRAME (tail, frame)
4930 {
4931 struct frame *f = XFRAME (frame);
4932 /* The tooltip has been drawn already. Avoid the
4933 SET_FRAME_GARBAGED below. */
4934 if (EQ (frame, tip_frame))
4935 continue;
4936
4937 /* Check "visible" frames and mark each as obscured or not.
4938 Note that visible is nonzero for unobscured and obscured
4939 frames, but zero for hidden and iconified frames. */
4940 if (FRAME_W32_P (f) && FRAME_VISIBLE_P (f))
4941 {
4942 RECT clipbox;
4943 HDC hdc;
4944 bool obscured;
4945
4946 enter_crit ();
4947 /* Query clipping rectangle for the entire window area
4948 (GetWindowDC), not just the client portion (GetDC).
4949 Otherwise, the scrollbars and menubar aren't counted as
4950 part of the visible area of the frame, and we may think
4951 the frame is obscured when really a scrollbar is still
4952 visible and gets WM_PAINT messages above. */
4953 hdc = GetWindowDC (FRAME_W32_WINDOW (f));
4954 GetClipBox (hdc, &clipbox);
4955 ReleaseDC (FRAME_W32_WINDOW (f), hdc);
4956 leave_crit ();
4957
4958 obscured = FRAME_OBSCURED_P (f);
4959
4960 if (clipbox.right == clipbox.left || clipbox.bottom == clipbox.top)
4961 {
4962 /* Frame has become completely obscured so mark as such (we
4963 do this by setting visible to 2 so that FRAME_VISIBLE_P
4964 is still true, but redisplay will skip it). */
4965 SET_FRAME_VISIBLE (f, 2);
4966
4967 if (!obscured)
4968 DebPrint (("frame %p (%s) obscured\n", f, SDATA (f->name)));
4969 }
4970 else
4971 {
4972 /* Frame is not obscured, so mark it as such. */
4973 SET_FRAME_VISIBLE (f, 1);
4974
4975 if (obscured)
4976 {
4977 SET_FRAME_GARBAGED (f);
4978 DebPrint (("obscured frame %p (%s) found to be visible\n",
4979 f, SDATA (f->name)));
4980
4981 /* Force a redisplay sooner or later. */
4982 record_asynch_buffer_change ();
4983 }
4984 }
4985 }
4986 }
4987 }
4988
4989 unblock_input ();
4990 return count;
4991 }
4992
4993
4994 \f
4995 /***********************************************************************
4996 Text Cursor
4997 ***********************************************************************/
4998
4999 /* Set clipping for output in glyph row ROW. W is the window in which
5000 we operate. GC is the graphics context to set clipping in.
5001
5002 ROW may be a text row or, e.g., a mode line. Text rows must be
5003 clipped to the interior of the window dedicated to text display,
5004 mode lines must be clipped to the whole window. */
5005
5006 static void
5007 w32_clip_to_row (struct window *w, struct glyph_row *row,
5008 enum glyph_row_area area, HDC hdc)
5009 {
5010 RECT clip_rect;
5011 int window_x, window_y, window_width;
5012
5013 window_box (w, area, &window_x, &window_y, &window_width, 0);
5014
5015 clip_rect.left = window_x;
5016 clip_rect.top = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
5017 clip_rect.top = max (clip_rect.top, window_y);
5018 clip_rect.right = clip_rect.left + window_width;
5019 clip_rect.bottom = clip_rect.top + row->visible_height;
5020
5021 w32_set_clip_rectangle (hdc, &clip_rect);
5022 }
5023
5024
5025 /* Draw a hollow box cursor on window W in glyph row ROW. */
5026
5027 static void
5028 x_draw_hollow_cursor (struct window *w, struct glyph_row *row)
5029 {
5030 struct frame *f = XFRAME (WINDOW_FRAME (w));
5031 HDC hdc;
5032 RECT rect;
5033 int left, top, h;
5034 struct glyph *cursor_glyph;
5035 HBRUSH hb = CreateSolidBrush (f->output_data.w32->cursor_pixel);
5036
5037 /* Get the glyph the cursor is on. If we can't tell because
5038 the current matrix is invalid or such, give up. */
5039 cursor_glyph = get_phys_cursor_glyph (w);
5040 if (cursor_glyph == NULL)
5041 {
5042 DeleteObject (hb);
5043 return;
5044 }
5045
5046 /* Compute frame-relative coordinates for phys cursor. */
5047 get_phys_cursor_geometry (w, row, cursor_glyph, &left, &top, &h);
5048 rect.left = left;
5049 rect.top = top;
5050 rect.bottom = rect.top + h;
5051 rect.right = rect.left + w->phys_cursor_width;
5052
5053 hdc = get_frame_dc (f);
5054 /* Set clipping, draw the rectangle, and reset clipping again. */
5055 w32_clip_to_row (w, row, TEXT_AREA, hdc);
5056 FrameRect (hdc, &rect, hb);
5057 DeleteObject (hb);
5058 w32_set_clip_rectangle (hdc, NULL);
5059 release_frame_dc (f, hdc);
5060 }
5061
5062
5063 /* Draw a bar cursor on window W in glyph row ROW.
5064
5065 Implementation note: One would like to draw a bar cursor with an
5066 angle equal to the one given by the font property XA_ITALIC_ANGLE.
5067 Unfortunately, I didn't find a font yet that has this property set.
5068 --gerd. */
5069
5070 static void
5071 x_draw_bar_cursor (struct window *w, struct glyph_row *row,
5072 int width, enum text_cursor_kinds kind)
5073 {
5074 struct frame *f = XFRAME (w->frame);
5075 struct glyph *cursor_glyph;
5076
5077 /* If cursor is out of bounds, don't draw garbage. This can happen
5078 in mini-buffer windows when switching between echo area glyphs
5079 and mini-buffer. */
5080 cursor_glyph = get_phys_cursor_glyph (w);
5081 if (cursor_glyph == NULL)
5082 return;
5083
5084 /* If on an image, draw like a normal cursor. That's usually better
5085 visible than drawing a bar, esp. if the image is large so that
5086 the bar might not be in the window. */
5087 if (cursor_glyph->type == IMAGE_GLYPH)
5088 {
5089 struct glyph_row *row;
5090 row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
5091 draw_phys_cursor_glyph (w, row, DRAW_CURSOR);
5092 }
5093 else
5094 {
5095 COLORREF cursor_color = f->output_data.w32->cursor_pixel;
5096 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
5097 int x;
5098 HDC hdc;
5099
5100 /* If the glyph's background equals the color we normally draw
5101 the bar cursor in, the bar cursor in its normal color is
5102 invisible. Use the glyph's foreground color instead in this
5103 case, on the assumption that the glyph's colors are chosen so
5104 that the glyph is legible. */
5105 if (face->background == cursor_color)
5106 cursor_color = face->foreground;
5107
5108 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
5109
5110 hdc = get_frame_dc (f);
5111 w32_clip_to_row (w, row, TEXT_AREA, hdc);
5112
5113 if (kind == BAR_CURSOR)
5114 {
5115 if (width < 0)
5116 width = FRAME_CURSOR_WIDTH (f);
5117 width = min (cursor_glyph->pixel_width, width);
5118
5119 w->phys_cursor_width = width;
5120
5121 /* If the character under cursor is R2L, draw the bar cursor
5122 on the right of its glyph, rather than on the left. */
5123 if ((cursor_glyph->resolved_level & 1) != 0)
5124 x += cursor_glyph->pixel_width - width;
5125
5126 w32_fill_area (f, hdc, cursor_color, x,
5127 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
5128 width, row->height);
5129 }
5130 else
5131 {
5132 int dummy_x, dummy_y, dummy_h;
5133
5134 if (width < 0)
5135 width = row->height;
5136
5137 width = min (row->height, width);
5138
5139 get_phys_cursor_geometry (w, row, cursor_glyph, &dummy_x,
5140 &dummy_y, &dummy_h);
5141 w32_fill_area (f, hdc, cursor_color, x,
5142 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
5143 row->height - width),
5144 w->phys_cursor_width, width);
5145 }
5146
5147 w32_set_clip_rectangle (hdc, NULL);
5148 release_frame_dc (f, hdc);
5149 }
5150 }
5151
5152
5153 /* RIF: Define cursor CURSOR on frame F. */
5154
5155 static void
5156 w32_define_frame_cursor (struct frame *f, Cursor cursor)
5157 {
5158 w32_define_cursor (FRAME_W32_WINDOW (f), cursor);
5159 }
5160
5161
5162 /* RIF: Clear area on frame F. */
5163
5164 static void
5165 w32_clear_frame_area (struct frame *f, int x, int y, int width, int height)
5166 {
5167 HDC hdc;
5168
5169 hdc = get_frame_dc (f);
5170 w32_clear_area (f, hdc, x, y, width, height);
5171 release_frame_dc (f, hdc);
5172 }
5173
5174 /* RIF: Draw or clear cursor on window W. */
5175
5176 static void
5177 w32_draw_window_cursor (struct window *w, struct glyph_row *glyph_row,
5178 int x, int y, enum text_cursor_kinds cursor_type,
5179 int cursor_width, bool on_p, bool active_p)
5180 {
5181 if (on_p)
5182 {
5183 /* If the user wants to use the system caret, make sure our own
5184 cursor remains invisible. */
5185 if (w32_use_visible_system_caret)
5186 {
5187 /* Call to erase_phys_cursor here seems to use the
5188 wrong values of w->phys_cursor, as they have been
5189 overwritten before this function was called. */
5190 if (w->phys_cursor_type != NO_CURSOR)
5191 erase_phys_cursor (w);
5192
5193 cursor_type = w->phys_cursor_type = NO_CURSOR;
5194 w->phys_cursor_width = -1;
5195 }
5196 else
5197 {
5198 w->phys_cursor_type = cursor_type;
5199 }
5200
5201 w->phys_cursor_on_p = 1;
5202
5203 /* If this is the active cursor, we need to track it with the
5204 system caret, so third party software like screen magnifiers
5205 and speech synthesizers can follow the cursor. */
5206 if (active_p)
5207 {
5208 struct frame *f = XFRAME (WINDOW_FRAME (w));
5209 HWND hwnd = FRAME_W32_WINDOW (f);
5210
5211 w32_system_caret_x
5212 = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
5213 w32_system_caret_y
5214 = (WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y)
5215 + glyph_row->ascent - w->phys_cursor_ascent);
5216 w32_system_caret_window = w;
5217 w32_system_caret_hdr_height = WINDOW_HEADER_LINE_HEIGHT (w);
5218 w32_system_caret_mode_height = WINDOW_MODE_LINE_HEIGHT (w);
5219
5220 PostMessage (hwnd, WM_IME_STARTCOMPOSITION, 0, 0);
5221
5222 /* If the size of the active cursor changed, destroy the old
5223 system caret. */
5224 if (w32_system_caret_hwnd
5225 && (w32_system_caret_height != w->phys_cursor_height))
5226 PostMessage (hwnd, WM_EMACS_DESTROY_CARET, 0, 0);
5227
5228 w32_system_caret_height = w->phys_cursor_height;
5229
5230 /* Move the system caret. */
5231 PostMessage (hwnd, WM_EMACS_TRACK_CARET, 0, 0);
5232 }
5233
5234 if (glyph_row->exact_window_width_line_p
5235 && (glyph_row->reversed_p
5236 ? (w->phys_cursor.hpos < 0)
5237 : (w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])))
5238 {
5239 glyph_row->cursor_in_fringe_p = 1;
5240 draw_fringe_bitmap (w, glyph_row, glyph_row->reversed_p);
5241 return;
5242 }
5243
5244 switch (cursor_type)
5245 {
5246 case HOLLOW_BOX_CURSOR:
5247 x_draw_hollow_cursor (w, glyph_row);
5248 break;
5249
5250 case FILLED_BOX_CURSOR:
5251 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
5252 break;
5253
5254 case BAR_CURSOR:
5255 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
5256 break;
5257
5258 case HBAR_CURSOR:
5259 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
5260 break;
5261
5262 case NO_CURSOR:
5263 w->phys_cursor_width = 0;
5264 break;
5265
5266 default:
5267 emacs_abort ();
5268 }
5269 }
5270 }
5271
5272
5273 \f
5274 /* Icons. */
5275
5276 int
5277 x_bitmap_icon (struct frame *f, Lisp_Object icon)
5278 {
5279 HANDLE main_icon;
5280 HANDLE small_icon = NULL;
5281
5282 if (FRAME_W32_WINDOW (f) == 0)
5283 return 1;
5284
5285 if (NILP (icon))
5286 main_icon = LoadIcon (hinst, EMACS_CLASS);
5287 else if (STRINGP (icon))
5288 {
5289 /* Load the main icon from the named file. */
5290 main_icon = LoadImage (NULL, (LPCTSTR) SDATA (icon), IMAGE_ICON, 0, 0,
5291 LR_DEFAULTSIZE | LR_LOADFROMFILE);
5292 /* Try to load a small icon to go with it. */
5293 small_icon = LoadImage (NULL, (LPCSTR) SDATA (icon), IMAGE_ICON,
5294 GetSystemMetrics (SM_CXSMICON),
5295 GetSystemMetrics (SM_CYSMICON),
5296 LR_LOADFROMFILE);
5297 }
5298 else if (SYMBOLP (icon))
5299 {
5300 LPCTSTR name;
5301
5302 if (EQ (icon, intern ("application")))
5303 name = (LPCTSTR) IDI_APPLICATION;
5304 else if (EQ (icon, intern ("hand")))
5305 name = (LPCTSTR) IDI_HAND;
5306 else if (EQ (icon, intern ("question")))
5307 name = (LPCTSTR) IDI_QUESTION;
5308 else if (EQ (icon, intern ("exclamation")))
5309 name = (LPCTSTR) IDI_EXCLAMATION;
5310 else if (EQ (icon, intern ("asterisk")))
5311 name = (LPCTSTR) IDI_ASTERISK;
5312 else if (EQ (icon, intern ("winlogo")))
5313 name = (LPCTSTR) IDI_WINLOGO;
5314 else
5315 return 1;
5316
5317 main_icon = LoadIcon (NULL, name);
5318 }
5319 else
5320 return 1;
5321
5322 if (main_icon == NULL)
5323 return 1;
5324
5325 PostMessage (FRAME_W32_WINDOW (f), WM_SETICON, (WPARAM) ICON_BIG,
5326 (LPARAM) main_icon);
5327
5328 /* If there is a small icon that goes with it, set that too. */
5329 if (small_icon)
5330 PostMessage (FRAME_W32_WINDOW (f), WM_SETICON, (WPARAM) ICON_SMALL,
5331 (LPARAM) small_icon);
5332
5333 return 0;
5334 }
5335
5336 \f
5337 /************************************************************************
5338 Handling X errors
5339 ************************************************************************/
5340
5341 /* Display Error Handling functions not used on W32. Listing them here
5342 helps diff stay in step when comparing w32term.c with xterm.c.
5343
5344 x_error_catcher (display, error)
5345 x_catch_errors (dpy)
5346 x_catch_errors_unwind (old_val)
5347 x_check_errors (dpy, format)
5348 x_fully_uncatch_errors ()
5349 x_had_errors_p (dpy)
5350 x_clear_errors (dpy)
5351 x_uncatch_errors (dpy, count)
5352 x_trace_wire ()
5353 x_connection_signal (signalnum)
5354 x_connection_closed (dpy, error_message)
5355 x_error_quitter (display, error)
5356 x_error_handler (display, error)
5357 x_io_error_quitter (display)
5358
5359 */
5360
5361 \f
5362 /* Changing the font of the frame. */
5363
5364 Lisp_Object
5365 x_new_font (struct frame *f, Lisp_Object font_object, int fontset)
5366 {
5367 struct font *font = XFONT_OBJECT (font_object);
5368 int unit;
5369
5370 if (fontset < 0)
5371 fontset = fontset_from_font (font_object);
5372 FRAME_FONTSET (f) = fontset;
5373 if (FRAME_FONT (f) == font)
5374 /* This font is already set in frame F. There's nothing more to
5375 do. */
5376 return font_object;
5377
5378 FRAME_FONT (f) = font;
5379 FRAME_BASELINE_OFFSET (f) = font->baseline_offset;
5380 FRAME_COLUMN_WIDTH (f) = unit = font->average_width;
5381 FRAME_LINE_HEIGHT (f) = font->height;
5382
5383 compute_fringe_widths (f, 1);
5384
5385 /* Compute number of scrollbar columns. */
5386 unit = FRAME_COLUMN_WIDTH (f);
5387 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
5388 FRAME_CONFIG_SCROLL_BAR_COLS (f)
5389 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + unit - 1) / unit;
5390 else
5391 {
5392 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + unit - 1) / unit;
5393 FRAME_CONFIG_SCROLL_BAR_WIDTH (f) =
5394 FRAME_CONFIG_SCROLL_BAR_COLS (f) * unit;
5395 }
5396
5397 /* Now make the frame display the given font. */
5398 if (FRAME_X_WINDOW (f) != 0)
5399 {
5400 /* Don't change the size of a tip frame; there's no point in
5401 doing it because it's done in Fx_show_tip, and it leads to
5402 problems because the tip frame has no widget. */
5403 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
5404 x_set_window_size (f, 0, FRAME_COLS (f) * FRAME_COLUMN_WIDTH (f),
5405 FRAME_LINES (f) * FRAME_LINE_HEIGHT (f), 1);
5406 }
5407
5408 /* X version sets font of input methods here also. */
5409
5410 return font_object;
5411 }
5412
5413 \f
5414 /***********************************************************************
5415 TODO: W32 Input Methods
5416 ***********************************************************************/
5417 /* Listing missing functions from xterm.c helps diff stay in step.
5418
5419 xim_destroy_callback (xim, client_data, call_data)
5420 xim_open_dpy (dpyinfo, resource_name)
5421 struct xim_inst_t
5422 xim_instantiate_callback (display, client_data, call_data)
5423 xim_initialize (dpyinfo, resource_name)
5424 xim_close_dpy (dpyinfo)
5425
5426 */
5427
5428 \f
5429 /* Calculate the absolute position in frame F
5430 from its current recorded position values and gravity. */
5431
5432 void
5433 x_calc_absolute_position (struct frame *f)
5434 {
5435 int flags = f->size_hint_flags;
5436
5437 /* The sum of the widths of the frame's left and right borders, and
5438 the sum of the heights of the frame's top and bottom borders (in
5439 pixels) drawn by Windows. */
5440 unsigned int left_right_borders_width, top_bottom_borders_height;
5441
5442 /* Try to get the actual values of these two variables. We compute
5443 the border width (height) by subtracting the width (height) of
5444 the frame's client area from the width (height) of the frame's
5445 entire window. */
5446 WINDOWPLACEMENT wp = { 0 };
5447 RECT client_rect = { 0 };
5448
5449 if (GetWindowPlacement (FRAME_W32_WINDOW (f), &wp)
5450 && GetClientRect (FRAME_W32_WINDOW (f), &client_rect))
5451 {
5452 left_right_borders_width =
5453 (wp.rcNormalPosition.right - wp.rcNormalPosition.left) -
5454 (client_rect.right - client_rect.left);
5455
5456 top_bottom_borders_height =
5457 (wp.rcNormalPosition.bottom - wp.rcNormalPosition.top) -
5458 (client_rect.bottom - client_rect.top);
5459 }
5460 else
5461 {
5462 /* Use sensible default values. */
5463 left_right_borders_width = 8;
5464 top_bottom_borders_height = 32;
5465 }
5466
5467 /* Treat negative positions as relative to the rightmost bottommost
5468 position that fits on the screen. */
5469 if (flags & XNegative)
5470 f->left_pos = (x_display_pixel_width (FRAME_DISPLAY_INFO (f))
5471 - FRAME_PIXEL_WIDTH (f)
5472 + f->left_pos
5473 - (left_right_borders_width - 1));
5474
5475 if (flags & YNegative)
5476 f->top_pos = (x_display_pixel_height (FRAME_DISPLAY_INFO (f))
5477 - FRAME_PIXEL_HEIGHT (f)
5478 + f->top_pos
5479 - (top_bottom_borders_height - 1));
5480
5481 /* The left_pos and top_pos are now relative to the top and left
5482 screen edges, so the flags should correspond. */
5483 f->size_hint_flags &= ~ (XNegative | YNegative);
5484 }
5485
5486 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
5487 to really change the position, and 0 when calling from
5488 x_make_frame_visible (in that case, XOFF and YOFF are the current
5489 position values). It is -1 when calling from x_set_frame_parameters,
5490 which means, do adjust for borders but don't change the gravity. */
5491
5492 void
5493 x_set_offset (struct frame *f, register int xoff, register int yoff,
5494 int change_gravity)
5495 {
5496 int modified_top, modified_left;
5497
5498 if (change_gravity > 0)
5499 {
5500 f->top_pos = yoff;
5501 f->left_pos = xoff;
5502 f->size_hint_flags &= ~ (XNegative | YNegative);
5503 if (xoff < 0)
5504 f->size_hint_flags |= XNegative;
5505 if (yoff < 0)
5506 f->size_hint_flags |= YNegative;
5507 f->win_gravity = NorthWestGravity;
5508 }
5509 x_calc_absolute_position (f);
5510
5511 block_input ();
5512 x_wm_set_size_hint (f, (long) 0, 0);
5513
5514 modified_left = f->left_pos;
5515 modified_top = f->top_pos;
5516
5517 my_set_window_pos (FRAME_W32_WINDOW (f),
5518 NULL,
5519 modified_left, modified_top,
5520 0, 0,
5521 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
5522 unblock_input ();
5523 }
5524
5525
5526 /* Check if we need to resize the frame due to a fullscreen request.
5527 If so needed, resize the frame. */
5528 static void
5529 x_check_fullscreen (struct frame *f)
5530 {
5531 if (f->want_fullscreen & FULLSCREEN_BOTH)
5532 {
5533 int width, height, ign;
5534
5535 x_real_positions (f, &f->left_pos, &f->top_pos);
5536
5537 x_fullscreen_adjust (f, &width, &height, &ign, &ign);
5538
5539 /* We do not need to move the window, it shall be taken care of
5540 when setting WM manager hints. */
5541 if (FRAME_COLS (f) != width || FRAME_LINES (f) != height)
5542 {
5543 change_frame_size (f, width, height, 0, 1, 0, 0);
5544 SET_FRAME_GARBAGED (f);
5545 cancel_mouse_face (f);
5546
5547 /* Wait for the change of frame size to occur. */
5548 f->want_fullscreen |= FULLSCREEN_WAIT;
5549 }
5550 }
5551 }
5552
5553 static void
5554 w32fullscreen_hook (struct frame *f)
5555 {
5556 if (FRAME_VISIBLE_P (f))
5557 {
5558 HWND hwnd = FRAME_W32_WINDOW(f);
5559 DWORD dwStyle = GetWindowLong (hwnd, GWL_STYLE);
5560 RECT rect;
5561
5562 block_input();
5563 f->want_fullscreen &= ~FULLSCREEN_WAIT;
5564
5565 if (FRAME_PREV_FSMODE (f) == FULLSCREEN_NONE)
5566 GetWindowPlacement (hwnd, &FRAME_NORMAL_PLACEMENT (f));
5567
5568 if (FRAME_PREV_FSMODE (f) == FULLSCREEN_BOTH)
5569 {
5570 SetWindowLong (hwnd, GWL_STYLE, dwStyle | WS_OVERLAPPEDWINDOW);
5571 SetWindowPlacement (hwnd, &FRAME_NORMAL_PLACEMENT (f));
5572 }
5573 else if (FRAME_PREV_FSMODE (f) == FULLSCREEN_HEIGHT
5574 || FRAME_PREV_FSMODE (f) == FULLSCREEN_WIDTH)
5575 SetWindowPlacement (hwnd, &FRAME_NORMAL_PLACEMENT (f));
5576
5577 FRAME_PREV_FSMODE (f) = f->want_fullscreen;
5578
5579 if (f->want_fullscreen == FULLSCREEN_NONE)
5580 ShowWindow (hwnd, SW_SHOWNORMAL);
5581 else if (f->want_fullscreen == FULLSCREEN_MAXIMIZED)
5582 ShowWindow (hwnd, SW_MAXIMIZE);
5583 else if (f->want_fullscreen == FULLSCREEN_BOTH)
5584 {
5585 w32_fullscreen_rect (hwnd, f->want_fullscreen,
5586 FRAME_NORMAL_PLACEMENT (f).rcNormalPosition, &rect);
5587 SetWindowLong (hwnd, GWL_STYLE, dwStyle & ~WS_OVERLAPPEDWINDOW);
5588 SetWindowPos (hwnd, HWND_TOP, rect.left, rect.top,
5589 rect.right - rect.left, rect.bottom - rect.top,
5590 SWP_NOOWNERZORDER | SWP_FRAMECHANGED);
5591 }
5592 else
5593 {
5594 ShowWindow (hwnd, SW_SHOWNORMAL);
5595 w32_fullscreen_rect (hwnd, f->want_fullscreen,
5596 FRAME_NORMAL_PLACEMENT (f).rcNormalPosition, &rect);
5597 SetWindowPos (hwnd, HWND_TOP, rect.left, rect.top,
5598 rect.right - rect.left, rect.bottom - rect.top, 0);
5599 }
5600
5601 f->want_fullscreen = FULLSCREEN_NONE;
5602 unblock_input ();
5603 }
5604 else
5605 f->want_fullscreen |= FULLSCREEN_WAIT;
5606 }
5607
5608 /* Call this to change the size of frame F's x-window.
5609 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
5610 for this size change and subsequent size changes.
5611 Otherwise we leave the window gravity unchanged. */
5612
5613 void
5614 x_set_window_size (struct frame *f, int change_gravity, int width, int height, bool pixelwise)
5615 {
5616 int pixelwidth, pixelheight;
5617
5618 block_input ();
5619
5620 check_frame_size (f, &width, &height, pixelwise);
5621
5622 compute_fringe_widths (f, 0);
5623
5624 if (pixelwise)
5625 {
5626 pixelwidth = FRAME_TEXT_TO_PIXEL_WIDTH (f, width);
5627 pixelheight = FRAME_TEXT_TO_PIXEL_HEIGHT (f, height);
5628 }
5629 else
5630 {
5631 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, width);
5632 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, height);
5633 }
5634
5635 f->win_gravity = NorthWestGravity;
5636 x_wm_set_size_hint (f, (long) 0, 0);
5637
5638 {
5639 RECT rect;
5640
5641 rect.left = rect.top = 0;
5642 rect.right = pixelwidth;
5643 rect.bottom = pixelheight;
5644
5645 AdjustWindowRect (&rect, f->output_data.w32->dwStyle,
5646 FRAME_EXTERNAL_MENU_BAR (f));
5647
5648 my_set_window_pos (FRAME_W32_WINDOW (f),
5649 NULL,
5650 0, 0,
5651 rect.right - rect.left,
5652 rect.bottom - rect.top,
5653 SWP_NOZORDER | SWP_NOMOVE | SWP_NOACTIVATE);
5654 }
5655
5656 /* If w32_enable_frame_resize_hack is non-nil, immediately apply the
5657 new pixel sizes to the frame and its subwindows. See discussion
5658 of Bug#16028 for why we need this. */
5659
5660 if (w32_enable_frame_resize_hack)
5661 /* The following mirrors what is done in xterm.c. It appears to be
5662 for informing lisp of the new size immediately, while the actual
5663 resize will happen asynchronously. But on Windows, the menu bar
5664 automatically wraps when the frame is too narrow to contain it,
5665 and that causes any calculations made here to come out wrong. The
5666 end is some nasty buggy behavior, including the potential loss
5667 of the minibuffer.
5668
5669 Disabling this code is either not sufficient to fix the problems
5670 completely, or it causes fresh problems, but at least it removes
5671 the most problematic symptom of the minibuffer becoming unusable.
5672
5673 -----------------------------------------------------------------
5674
5675 Now, strictly speaking, we can't be sure that this is accurate,
5676 but the window manager will get around to dealing with the size
5677 change request eventually, and we'll hear how it went when the
5678 ConfigureNotify event gets here.
5679
5680 We could just not bother storing any of this information here,
5681 and let the ConfigureNotify event set everything up, but that
5682 might be kind of confusing to the Lisp code, since size changes
5683 wouldn't be reported in the frame parameters until some random
5684 point in the future when the ConfigureNotify event arrives.
5685
5686 We pass 1 for DELAY since we can't run Lisp code inside of
5687 a BLOCK_INPUT. */
5688 {
5689 change_frame_size (f, width, height, 0, 1, 0, pixelwise);
5690 SET_FRAME_GARBAGED (f);
5691
5692 /* If cursor was outside the new size, mark it as off. */
5693 mark_window_cursors_off (XWINDOW (f->root_window));
5694
5695 /* Clear out any recollection of where the mouse highlighting was,
5696 since it might be in a place that's outside the new frame size.
5697 Actually checking whether it is outside is a pain in the neck,
5698 so don't try--just let the highlighting be done afresh with new size. */
5699 cancel_mouse_face (f);
5700 }
5701
5702 unblock_input ();
5703 }
5704 \f
5705 /* Mouse warping. */
5706
5707 void x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y);
5708
5709 void
5710 x_set_mouse_position (struct frame *f, int x, int y)
5711 {
5712 int pix_x, pix_y;
5713
5714 pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2;
5715 pix_y = FRAME_LINE_TO_PIXEL_Y (f, y) + FRAME_LINE_HEIGHT (f) / 2;
5716
5717 if (pix_x < 0) pix_x = 0;
5718 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
5719
5720 if (pix_y < 0) pix_y = 0;
5721 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
5722
5723 x_set_mouse_pixel_position (f, pix_x, pix_y);
5724 }
5725
5726 void
5727 x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y)
5728 {
5729 RECT rect;
5730 POINT pt;
5731
5732 block_input ();
5733
5734 GetClientRect (FRAME_W32_WINDOW (f), &rect);
5735 pt.x = rect.left + pix_x;
5736 pt.y = rect.top + pix_y;
5737 ClientToScreen (FRAME_W32_WINDOW (f), &pt);
5738
5739 SetCursorPos (pt.x, pt.y);
5740
5741 unblock_input ();
5742 }
5743
5744 \f
5745 /* focus shifting, raising and lowering. */
5746
5747 void
5748 x_focus_frame (struct frame *f)
5749 {
5750 struct w32_display_info *dpyinfo = &one_w32_display_info;
5751
5752 /* Give input focus to frame. */
5753 block_input ();
5754 #if 0
5755 /* Try not to change its Z-order if possible. */
5756 if (x_window_to_frame (dpyinfo, GetForegroundWindow ()))
5757 my_set_focus (f, FRAME_W32_WINDOW (f));
5758 else
5759 #endif
5760 my_set_foreground_window (FRAME_W32_WINDOW (f));
5761 unblock_input ();
5762 }
5763
5764 /* Raise frame F. */
5765 void
5766 x_raise_frame (struct frame *f)
5767 {
5768 block_input ();
5769
5770 /* Strictly speaking, raise-frame should only change the frame's Z
5771 order, leaving input focus unchanged. This is reasonable behavior
5772 on X where the usual policy is point-to-focus. However, this
5773 behavior would be very odd on Windows where the usual policy is
5774 click-to-focus.
5775
5776 On X, if the mouse happens to be over the raised frame, it gets
5777 input focus anyway (so the window with focus will never be
5778 completely obscured) - if not, then just moving the mouse over it
5779 is sufficient to give it focus. On Windows, the user must actually
5780 click on the frame (preferably the title bar so as not to move
5781 point), which is more awkward. Also, no other Windows program
5782 raises a window to the top but leaves another window (possibly now
5783 completely obscured) with input focus.
5784
5785 Because there is a system setting on Windows that allows the user
5786 to choose the point to focus policy, we make the strict semantics
5787 optional, but by default we grab focus when raising. */
5788
5789 if (NILP (Vw32_grab_focus_on_raise))
5790 {
5791 /* The obvious call to my_set_window_pos doesn't work if Emacs is
5792 not already the foreground application: the frame is raised
5793 above all other frames belonging to us, but not above the
5794 current top window. To achieve that, we have to resort to this
5795 more cumbersome method. */
5796
5797 HDWP handle = BeginDeferWindowPos (2);
5798 if (handle)
5799 {
5800 handle = DeferWindowPos (handle,
5801 FRAME_W32_WINDOW (f),
5802 HWND_TOP,
5803 0, 0, 0, 0,
5804 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
5805 if (handle)
5806 {
5807 handle = DeferWindowPos (handle,
5808 GetForegroundWindow (),
5809 FRAME_W32_WINDOW (f),
5810 0, 0, 0, 0,
5811 SWP_NOSIZE | SWP_NOMOVE |
5812 SWP_NOACTIVATE);
5813 if (handle)
5814 EndDeferWindowPos (handle);
5815 }
5816 }
5817 }
5818 else
5819 {
5820 my_bring_window_to_top (FRAME_W32_WINDOW (f));
5821 }
5822
5823 unblock_input ();
5824 }
5825
5826 /* Lower frame F. */
5827 void
5828 x_lower_frame (struct frame *f)
5829 {
5830 block_input ();
5831 my_set_window_pos (FRAME_W32_WINDOW (f),
5832 HWND_BOTTOM,
5833 0, 0, 0, 0,
5834 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
5835 unblock_input ();
5836 }
5837
5838 static void
5839 w32_frame_raise_lower (struct frame *f, int raise_flag)
5840 {
5841 if (! FRAME_W32_P (f))
5842 return;
5843
5844 if (raise_flag)
5845 x_raise_frame (f);
5846 else
5847 x_lower_frame (f);
5848 }
5849 \f
5850 /* Change of visibility. */
5851
5852 /* This tries to wait until the frame is really visible.
5853 However, if the window manager asks the user where to position
5854 the frame, this will return before the user finishes doing that.
5855 The frame will not actually be visible at that time,
5856 but it will become visible later when the window manager
5857 finishes with it. */
5858
5859 void
5860 x_make_frame_visible (struct frame *f)
5861 {
5862 block_input ();
5863
5864 x_set_bitmap_icon (f);
5865
5866 if (! FRAME_VISIBLE_P (f))
5867 {
5868 /* We test FRAME_GARBAGED_P here to make sure we don't
5869 call x_set_offset a second time
5870 if we get to x_make_frame_visible a second time
5871 before the window gets really visible. */
5872 if (! FRAME_ICONIFIED_P (f)
5873 && ! f->output_data.w32->asked_for_visible)
5874 {
5875 RECT workarea_rect;
5876 RECT window_rect;
5877
5878 /* Adjust vertical window position in order to avoid being
5879 covered by a task bar placed at the bottom of the desktop. */
5880 SystemParametersInfo (SPI_GETWORKAREA, 0, &workarea_rect, 0);
5881 GetWindowRect (FRAME_W32_WINDOW (f), &window_rect);
5882 if (window_rect.bottom > workarea_rect.bottom
5883 && window_rect.top > workarea_rect.top)
5884 f->top_pos = max (window_rect.top
5885 - window_rect.bottom + workarea_rect.bottom,
5886 workarea_rect.top);
5887
5888 x_set_offset (f, f->left_pos, f->top_pos, 0);
5889 }
5890
5891 f->output_data.w32->asked_for_visible = 1;
5892
5893 /* According to a report in emacs-devel 2008-06-03, SW_SHOWNORMAL
5894 causes unexpected behavior when unminimizing frames that were
5895 previously maximized. But only SW_SHOWNORMAL works properly for
5896 frames that were truely hidden (using make-frame-invisible), so
5897 we need it to avoid Bug#5482. It seems that iconified is only
5898 set for minimized windows that are still visible, so use that to
5899 determine the appropriate flag to pass ShowWindow. */
5900 my_show_window (f, FRAME_W32_WINDOW (f),
5901 FRAME_ICONIFIED_P (f) ? SW_RESTORE : SW_SHOWNORMAL);
5902 }
5903
5904 /* Synchronize to ensure Emacs knows the frame is visible
5905 before we do anything else. We do this loop with input not blocked
5906 so that incoming events are handled. */
5907 {
5908 Lisp_Object frame;
5909 int count;
5910
5911 /* This must come after we set COUNT. */
5912 unblock_input ();
5913
5914 XSETFRAME (frame, f);
5915
5916 /* Wait until the frame is visible. Process X events until a
5917 MapNotify event has been seen, or until we think we won't get a
5918 MapNotify at all.. */
5919 for (count = input_signal_count + 10;
5920 input_signal_count < count && !FRAME_VISIBLE_P (f);)
5921 {
5922 /* Force processing of queued events. */
5923 /* TODO: x_sync equivalent? */
5924
5925 /* Machines that do polling rather than SIGIO have been observed
5926 to go into a busy-wait here. So we'll fake an alarm signal
5927 to let the handler know that there's something to be read.
5928 We used to raise a real alarm, but it seems that the handler
5929 isn't always enabled here. This is probably a bug. */
5930 if (input_polling_used ())
5931 {
5932 /* It could be confusing if a real alarm arrives while processing
5933 the fake one. Turn it off and let the handler reset it. */
5934 int old_poll_suppress_count = poll_suppress_count;
5935 poll_suppress_count = 1;
5936 poll_for_input_1 ();
5937 poll_suppress_count = old_poll_suppress_count;
5938 }
5939 }
5940 }
5941 }
5942
5943 /* Change from mapped state to withdrawn state. */
5944
5945 /* Make the frame visible (mapped and not iconified). */
5946
5947 void
5948 x_make_frame_invisible (struct frame *f)
5949 {
5950 /* Don't keep the highlight on an invisible frame. */
5951 if (FRAME_DISPLAY_INFO (f)->x_highlight_frame == f)
5952 FRAME_DISPLAY_INFO (f)->x_highlight_frame = 0;
5953
5954 block_input ();
5955
5956 my_show_window (f, FRAME_W32_WINDOW (f), SW_HIDE);
5957
5958 /* We can't distinguish this from iconification
5959 just by the event that we get from the server.
5960 So we can't win using the usual strategy of letting
5961 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
5962 and synchronize with the server to make sure we agree. */
5963 SET_FRAME_VISIBLE (f, 0);
5964 SET_FRAME_ICONIFIED (f, 0);
5965
5966 unblock_input ();
5967 }
5968
5969 /* Change window state from mapped to iconified. */
5970
5971 void
5972 x_iconify_frame (struct frame *f)
5973 {
5974 /* Don't keep the highlight on an invisible frame. */
5975 if (FRAME_DISPLAY_INFO (f)->x_highlight_frame == f)
5976 FRAME_DISPLAY_INFO (f)->x_highlight_frame = 0;
5977
5978 if (FRAME_ICONIFIED_P (f))
5979 return;
5980
5981 block_input ();
5982
5983 x_set_bitmap_icon (f);
5984
5985 /* Simulate the user minimizing the frame. */
5986 SendMessage (FRAME_W32_WINDOW (f), WM_SYSCOMMAND, SC_MINIMIZE, 0);
5987
5988 SET_FRAME_VISIBLE (f, 0);
5989 SET_FRAME_ICONIFIED (f, 1);
5990
5991 unblock_input ();
5992 }
5993
5994 \f
5995 /* Free X resources of frame F. */
5996
5997 void
5998 x_free_frame_resources (struct frame *f)
5999 {
6000 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
6001 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
6002
6003 block_input ();
6004
6005 /* We must free faces before destroying windows because some
6006 font-driver (e.g. xft) access a window while finishing a
6007 face. */
6008 free_frame_faces (f);
6009
6010 if (FRAME_W32_WINDOW (f))
6011 my_destroy_window (f, FRAME_W32_WINDOW (f));
6012
6013 free_frame_menubar (f);
6014
6015 xfree (f->output_data.w32);
6016 f->output_data.w32 = NULL;
6017
6018 if (f == dpyinfo->w32_focus_frame)
6019 dpyinfo->w32_focus_frame = 0;
6020 if (f == dpyinfo->w32_focus_event_frame)
6021 dpyinfo->w32_focus_event_frame = 0;
6022 if (f == dpyinfo->x_highlight_frame)
6023 dpyinfo->x_highlight_frame = 0;
6024 if (f == hlinfo->mouse_face_mouse_frame)
6025 reset_mouse_highlight (hlinfo);
6026
6027 unblock_input ();
6028 }
6029
6030
6031 /* Destroy the window of frame F. */
6032 void
6033 x_destroy_window (struct frame *f)
6034 {
6035 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
6036
6037 x_free_frame_resources (f);
6038 dpyinfo->reference_count--;
6039 }
6040
6041 \f
6042 /* Setting window manager hints. */
6043
6044 /* Set the normal size hints for the window manager, for frame F.
6045 FLAGS is the flags word to use--or 0 meaning preserve the flags
6046 that the window now has.
6047 If USER_POSITION, set the USPosition
6048 flag (this is useful when FLAGS is 0). */
6049 void
6050 x_wm_set_size_hint (struct frame *f, long flags, bool user_position)
6051 {
6052 Window window = FRAME_W32_WINDOW (f);
6053
6054 enter_crit ();
6055
6056 SetWindowLong (window, WND_FONTWIDTH_INDEX, FRAME_COLUMN_WIDTH (f));
6057 SetWindowLong (window, WND_LINEHEIGHT_INDEX, FRAME_LINE_HEIGHT (f));
6058 SetWindowLong (window, WND_BORDER_INDEX, FRAME_INTERNAL_BORDER_WIDTH (f));
6059 SetWindowLong (window, WND_SCROLLBAR_INDEX, FRAME_SCROLL_BAR_AREA_WIDTH (f));
6060
6061 leave_crit ();
6062 }
6063
6064 /***********************************************************************
6065 Fonts
6066 ***********************************************************************/
6067
6068 #ifdef GLYPH_DEBUG
6069
6070 /* Check that FONT is valid on frame F. It is if it can be found in F's
6071 font table. */
6072
6073 static void
6074 x_check_font (struct frame *f, struct font *font)
6075 {
6076 eassert (font != NULL && ! NILP (font->props[FONT_TYPE_INDEX]));
6077 if (font->driver->check)
6078 eassert (font->driver->check (f, font) == 0);
6079 }
6080
6081 #endif /* GLYPH_DEBUG */
6082
6083
6084 \f
6085 /***********************************************************************
6086 Initialization
6087 ***********************************************************************/
6088
6089 static int w32_initialized = 0;
6090
6091 void
6092 w32_initialize_display_info (Lisp_Object display_name)
6093 {
6094 struct w32_display_info *dpyinfo = &one_w32_display_info;
6095
6096 memset (dpyinfo, 0, sizeof (*dpyinfo));
6097
6098 dpyinfo->name_list_element = Fcons (display_name, Qnil);
6099 dpyinfo->w32_id_name = xmalloc (SCHARS (Vinvocation_name)
6100 + SCHARS (Vsystem_name) + 2);
6101 sprintf (dpyinfo->w32_id_name, "%s@%s",
6102 SDATA (Vinvocation_name), SDATA (Vsystem_name));
6103
6104 /* Default Console mode values - overridden when running in GUI mode
6105 with values obtained from system metrics. */
6106 dpyinfo->resx = 1;
6107 dpyinfo->resy = 1;
6108 dpyinfo->n_planes = 1;
6109 dpyinfo->n_cbits = 4;
6110 dpyinfo->n_fonts = 0;
6111 dpyinfo->smallest_font_height = 1;
6112 dpyinfo->smallest_char_width = 1;
6113 dpyinfo->vertical_scroll_bar_cursor = w32_load_cursor (IDC_ARROW);
6114 /* TODO: dpyinfo->gray */
6115
6116 reset_mouse_highlight (&dpyinfo->mouse_highlight);
6117 }
6118
6119 /* Create an xrdb-style database of resources to supersede registry settings.
6120 The database is just a concatenation of C strings, finished by an additional
6121 \0. The strings are submitted to some basic normalization, so
6122
6123 [ *]option[ *]:[ *]value...
6124
6125 becomes
6126
6127 option:value...
6128
6129 but any whitespace following value is not removed. */
6130
6131 static char *
6132 w32_make_rdb (char *xrm_option)
6133 {
6134 char *buffer = xmalloc (strlen (xrm_option) + 2);
6135 char *current = buffer;
6136 char ch;
6137 int in_option = 1;
6138 int before_value = 0;
6139
6140 do {
6141 ch = *xrm_option++;
6142
6143 if (ch == '\n')
6144 {
6145 *current++ = '\0';
6146 in_option = 1;
6147 before_value = 0;
6148 }
6149 else if (ch != ' ')
6150 {
6151 *current++ = ch;
6152 if (in_option && (ch == ':'))
6153 {
6154 in_option = 0;
6155 before_value = 1;
6156 }
6157 else if (before_value)
6158 {
6159 before_value = 0;
6160 }
6161 }
6162 else if (!(in_option || before_value))
6163 {
6164 *current++ = ch;
6165 }
6166 } while (ch);
6167
6168 *current = '\0';
6169
6170 return buffer;
6171 }
6172
6173 extern frame_parm_handler w32_frame_parm_handlers[];
6174
6175 static struct redisplay_interface w32_redisplay_interface =
6176 {
6177 w32_frame_parm_handlers,
6178 x_produce_glyphs,
6179 x_write_glyphs,
6180 x_insert_glyphs,
6181 x_clear_end_of_line,
6182 x_scroll_run,
6183 x_after_update_window_line,
6184 x_update_window_begin,
6185 x_update_window_end,
6186 0, /* flush_display */
6187 x_clear_window_mouse_face,
6188 x_get_glyph_overhangs,
6189 x_fix_overlapping_area,
6190 w32_draw_fringe_bitmap,
6191 w32_define_fringe_bitmap,
6192 w32_destroy_fringe_bitmap,
6193 w32_compute_glyph_string_overhangs,
6194 x_draw_glyph_string,
6195 w32_define_frame_cursor,
6196 w32_clear_frame_area,
6197 w32_draw_window_cursor,
6198 w32_draw_vertical_window_border,
6199 w32_draw_window_divider,
6200 w32_shift_glyphs_for_insert
6201 };
6202
6203 static void x_delete_terminal (struct terminal *term);
6204
6205 static struct terminal *
6206 w32_create_terminal (struct w32_display_info *dpyinfo)
6207 {
6208 struct terminal *terminal;
6209
6210 terminal = create_terminal ();
6211
6212 terminal->type = output_w32;
6213 terminal->display_info.w32 = dpyinfo;
6214 dpyinfo->terminal = terminal;
6215
6216 /* MSVC does not type K&R functions with no arguments correctly, and
6217 so we must explicitly cast them. */
6218 terminal->clear_frame_hook = x_clear_frame;
6219 terminal->ins_del_lines_hook = x_ins_del_lines;
6220 terminal->delete_glyphs_hook = x_delete_glyphs;
6221 terminal->ring_bell_hook = w32_ring_bell;
6222 terminal->reset_terminal_modes_hook = NULL;
6223 terminal->set_terminal_modes_hook = NULL;
6224 terminal->update_begin_hook = x_update_begin;
6225 terminal->update_end_hook = x_update_end;
6226 terminal->set_terminal_window_hook = NULL;
6227 terminal->read_socket_hook = w32_read_socket;
6228 terminal->frame_up_to_date_hook = w32_frame_up_to_date;
6229 terminal->mouse_position_hook = w32_mouse_position;
6230 terminal->frame_rehighlight_hook = w32_frame_rehighlight;
6231 terminal->frame_raise_lower_hook = w32_frame_raise_lower;
6232 terminal->fullscreen_hook = w32fullscreen_hook;
6233 terminal->set_vertical_scroll_bar_hook = w32_set_vertical_scroll_bar;
6234 terminal->condemn_scroll_bars_hook = w32_condemn_scroll_bars;
6235 terminal->redeem_scroll_bar_hook = w32_redeem_scroll_bar;
6236 terminal->judge_scroll_bars_hook = w32_judge_scroll_bars;
6237
6238 terminal->delete_frame_hook = x_destroy_window;
6239 terminal->delete_terminal_hook = x_delete_terminal;
6240
6241 terminal->rif = &w32_redisplay_interface;
6242
6243 /* We don't yet support separate terminals on W32, so don't try to share
6244 keyboards between virtual terminals that are on the same physical
6245 terminal like X does. */
6246 terminal->kboard = allocate_kboard (Qw32);
6247 /* Don't let the initial kboard remain current longer than necessary.
6248 That would cause problems if a file loaded on startup tries to
6249 prompt in the mini-buffer. */
6250 if (current_kboard == initial_kboard)
6251 current_kboard = terminal->kboard;
6252 terminal->kboard->reference_count++;
6253
6254 return terminal;
6255 }
6256
6257 static void
6258 x_delete_terminal (struct terminal *terminal)
6259 {
6260 struct w32_display_info *dpyinfo = terminal->display_info.w32;
6261
6262 /* Protect against recursive calls. delete_frame in
6263 delete_terminal calls us back when it deletes our last frame. */
6264 if (!terminal->name)
6265 return;
6266
6267 block_input ();
6268
6269 x_delete_display (dpyinfo);
6270 unblock_input ();
6271 }
6272
6273 struct w32_display_info *
6274 w32_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name)
6275 {
6276 struct w32_display_info *dpyinfo;
6277 struct terminal *terminal;
6278 HDC hdc;
6279
6280 block_input ();
6281
6282 if (!w32_initialized)
6283 {
6284 w32_initialize ();
6285 w32_initialized = 1;
6286 }
6287
6288 w32_initialize_display_info (display_name);
6289
6290 dpyinfo = &one_w32_display_info;
6291 terminal = w32_create_terminal (dpyinfo);
6292
6293 /* Set the name of the terminal. */
6294 terminal->name = xlispstrdup (display_name);
6295
6296 dpyinfo->xrdb = xrm_option ? w32_make_rdb (xrm_option) : NULL;
6297
6298 /* Put this display on the chain. */
6299 dpyinfo->next = x_display_list;
6300 x_display_list = dpyinfo;
6301
6302 hdc = GetDC (NULL);
6303
6304 dpyinfo->root_window = GetDesktopWindow ();
6305 dpyinfo->n_planes = GetDeviceCaps (hdc, PLANES);
6306 dpyinfo->n_cbits = GetDeviceCaps (hdc, BITSPIXEL);
6307 dpyinfo->resx = GetDeviceCaps (hdc, LOGPIXELSX);
6308 dpyinfo->resy = GetDeviceCaps (hdc, LOGPIXELSY);
6309 dpyinfo->has_palette = GetDeviceCaps (hdc, RASTERCAPS) & RC_PALETTE;
6310 ReleaseDC (NULL, hdc);
6311
6312 /* initialize palette with white and black */
6313 {
6314 XColor color;
6315 w32_defined_color (0, "white", &color, 1);
6316 w32_defined_color (0, "black", &color, 1);
6317 }
6318
6319 #ifdef WINDOWSNT
6320 /* Add the default keyboard. When !WINDOWSNT, we're using the
6321 standard Emacs console handling machinery and don't need an
6322 explicit FD here. */
6323 add_keyboard_wait_descriptor (0);
6324 #elif CYGWIN
6325 /* /dev/windows wakes us up when we have a thread message pending. */
6326 add_keyboard_wait_descriptor (w32_message_fd);
6327 #endif
6328
6329 /* Create Fringe Bitmaps and store them for later use.
6330
6331 On W32, bitmaps are all unsigned short, as Windows requires
6332 bitmap data to be Word aligned. For some reason they are
6333 horizontally reflected compared to how they appear on X, so we
6334 need to bitswap and convert to unsigned shorts before creating
6335 the bitmaps. */
6336 w32_init_fringe (terminal->rif);
6337
6338 unblock_input ();
6339
6340 return dpyinfo;
6341 }
6342 \f
6343 /* Get rid of display DPYINFO, assuming all frames are already gone. */
6344 void
6345 x_delete_display (struct w32_display_info *dpyinfo)
6346 {
6347 /* FIXME: the only display info apparently can't be deleted. */
6348 /* free palette table */
6349 {
6350 struct w32_palette_entry * plist;
6351
6352 plist = dpyinfo->color_list;
6353 while (plist)
6354 {
6355 struct w32_palette_entry * pentry = plist;
6356 plist = plist->next;
6357 xfree (pentry);
6358 }
6359 dpyinfo->color_list = NULL;
6360 if (dpyinfo->palette)
6361 DeleteObject (dpyinfo->palette);
6362 }
6363 xfree (dpyinfo->w32_id_name);
6364
6365 w32_reset_fringes ();
6366 }
6367
6368 \f
6369 /* Set up use of W32. */
6370
6371 DWORD WINAPI w32_msg_worker (void * arg);
6372
6373 static void
6374 w32_initialize (void)
6375 {
6376 HANDLE shell;
6377 HRESULT (WINAPI * set_user_model) (const wchar_t * id);
6378
6379 baud_rate = 19200;
6380
6381 w32_system_caret_hwnd = NULL;
6382 w32_system_caret_height = 0;
6383 w32_system_caret_x = 0;
6384 w32_system_caret_y = 0;
6385
6386 /* On Windows 7 and later, we need to set the user model ID
6387 to associate emacsclient launched files with Emacs frames
6388 in the UI. */
6389 shell = GetModuleHandle ("shell32.dll");
6390 if (shell)
6391 {
6392 set_user_model
6393 = (void *) GetProcAddress (shell,
6394 "SetCurrentProcessExplicitAppUserModelID");
6395
6396 /* If the function is defined, then we are running on Windows 7
6397 or newer, and the UI uses this to group related windows
6398 together. Since emacs, runemacs, emacsclient are related, we
6399 want them grouped even though the executables are different,
6400 so we need to set a consistent ID between them. */
6401 if (set_user_model)
6402 set_user_model (L"GNU.Emacs");
6403 }
6404
6405 #ifdef CYGWIN
6406 if ((w32_message_fd = emacs_open ("/dev/windows", O_RDWR, 0)) == -1)
6407 fatal ("opening /dev/windows: %s", strerror (errno));
6408 #endif /* CYGWIN */
6409
6410 /* Initialize w32_use_visible_system_caret based on whether a screen
6411 reader is in use. */
6412 if (!SystemParametersInfo (SPI_GETSCREENREADER, 0,
6413 &w32_use_visible_system_caret, 0))
6414 w32_use_visible_system_caret = 0;
6415
6416 last_tool_bar_item = -1;
6417 any_help_event_p = 0;
6418
6419 /* Initialize input mode: interrupt_input off, no flow control, allow
6420 8 bit character input, standard quit char. */
6421 Fset_input_mode (Qnil, Qnil, make_number (2), Qnil);
6422
6423 {
6424 LCID input_locale_id = LOWORD (GetKeyboardLayout (0));
6425 w32_keyboard_codepage = codepage_for_locale (input_locale_id);
6426 }
6427
6428 /* Create the window thread - it will terminate itself when the app
6429 terminates */
6430 init_crit ();
6431
6432 dwMainThreadId = GetCurrentThreadId ();
6433 DuplicateHandle (GetCurrentProcess (), GetCurrentThread (),
6434 GetCurrentProcess (), &hMainThread, 0, TRUE, DUPLICATE_SAME_ACCESS);
6435
6436 /* Wait for thread to start */
6437 {
6438 MSG msg;
6439
6440 PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE);
6441
6442 hWindowsThread = CreateThread (NULL, 0,
6443 w32_msg_worker,
6444 0, 0, &dwWindowsThreadId);
6445
6446 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
6447 }
6448
6449 /* It is desirable that mainThread should have the same notion of
6450 focus window and active window as windowsThread. Unfortunately, the
6451 following call to AttachThreadInput, which should do precisely what
6452 we need, causes major problems when Emacs is linked as a console
6453 program. Unfortunately, we have good reasons for doing that, so
6454 instead we need to send messages to windowsThread to make some API
6455 calls for us (ones that affect, or depend on, the active/focus
6456 window state.) */
6457 #ifdef ATTACH_THREADS
6458 AttachThreadInput (dwMainThreadId, dwWindowsThreadId, TRUE);
6459 #endif
6460
6461 /* Dynamically link to optional system components. */
6462 {
6463 HMODULE user_lib = GetModuleHandle ("user32.dll");
6464
6465 #define LOAD_PROC(lib, fn) pfn##fn = (void *) GetProcAddress (lib, #fn)
6466
6467 LOAD_PROC (user_lib, SetLayeredWindowAttributes);
6468
6469 #undef LOAD_PROC
6470
6471 /* Ensure scrollbar handle is at least 5 pixels. */
6472 vertical_scroll_bar_min_handle = 5;
6473
6474 /* For either kind of scroll bar, take account of the arrows; these
6475 effectively form the border of the main scroll bar range. */
6476 vertical_scroll_bar_top_border = vertical_scroll_bar_bottom_border
6477 = GetSystemMetrics (SM_CYVSCROLL);
6478 }
6479 }
6480
6481 void
6482 syms_of_w32term (void)
6483 {
6484 DEFSYM (Qvendor_specific_keysyms, "vendor-specific-keysyms");
6485
6486 DEFSYM (Qadded, "added");
6487 DEFSYM (Qremoved, "removed");
6488 DEFSYM (Qmodified, "modified");
6489 DEFSYM (Qrenamed_from, "renamed-from");
6490 DEFSYM (Qrenamed_to, "renamed-to");
6491
6492 DEFVAR_INT ("w32-num-mouse-buttons",
6493 w32_num_mouse_buttons,
6494 doc: /* Number of physical mouse buttons. */);
6495 w32_num_mouse_buttons = 2;
6496
6497 DEFVAR_LISP ("w32-swap-mouse-buttons",
6498 Vw32_swap_mouse_buttons,
6499 doc: /* Swap the mapping of middle and right mouse buttons.
6500 When nil, middle button is mouse-2 and right button is mouse-3. */);
6501 Vw32_swap_mouse_buttons = Qnil;
6502
6503 DEFVAR_LISP ("w32-grab-focus-on-raise",
6504 Vw32_grab_focus_on_raise,
6505 doc: /* Raised frame grabs input focus.
6506 When t, `raise-frame' grabs input focus as well. This fits well
6507 with the normal Windows click-to-focus policy, but might not be
6508 desirable when using a point-to-focus policy. */);
6509 Vw32_grab_focus_on_raise = Qt;
6510
6511 DEFVAR_LISP ("w32-capslock-is-shiftlock",
6512 Vw32_capslock_is_shiftlock,
6513 doc: /* Apply CapsLock state to non character input keys.
6514 When nil, CapsLock only affects normal character input keys. */);
6515 Vw32_capslock_is_shiftlock = Qnil;
6516
6517 DEFVAR_LISP ("w32-recognize-altgr",
6518 Vw32_recognize_altgr,
6519 doc: /* Recognize right-alt and left-ctrl as AltGr.
6520 When nil, the right-alt and left-ctrl key combination is
6521 interpreted normally. */);
6522 Vw32_recognize_altgr = Qt;
6523
6524 DEFVAR_BOOL ("w32-use-visible-system-caret",
6525 w32_use_visible_system_caret,
6526 doc: /* Flag to make the system caret visible.
6527 When this is non-nil, Emacs will indicate the position of point by
6528 using the system caret instead of drawing its own cursor. Some screen
6529 reader software does not track the system cursor properly when it is
6530 invisible, and gets confused by Emacs drawing its own cursor, so this
6531 variable is initialized to t when Emacs detects that screen reader
6532 software is running as it starts up.
6533
6534 When this variable is set, other variables affecting the appearance of
6535 the cursor have no effect. */);
6536
6537 w32_use_visible_system_caret = 0;
6538
6539 /* We don't yet support this, but defining this here avoids whining
6540 from cus-start.el and other places, like "M-x set-variable". */
6541 DEFVAR_BOOL ("x-use-underline-position-properties",
6542 x_use_underline_position_properties,
6543 doc: /* Non-nil means make use of UNDERLINE_POSITION font properties.
6544 A value of nil means ignore them. If you encounter fonts with bogus
6545 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
6546 to 4.1, set this to nil. You can also use `underline-minimum-offset'
6547 to override the font's UNDERLINE_POSITION for small font display
6548 sizes. */);
6549 x_use_underline_position_properties = 0;
6550
6551 DEFVAR_BOOL ("x-underline-at-descent-line",
6552 x_underline_at_descent_line,
6553 doc: /* Non-nil means to draw the underline at the same place as the descent line.
6554 A value of nil means to draw the underline according to the value of the
6555 variable `x-use-underline-position-properties', which is usually at the
6556 baseline level. The default value is nil. */);
6557 x_underline_at_descent_line = 0;
6558
6559 DEFVAR_LISP ("x-toolkit-scroll-bars", Vx_toolkit_scroll_bars,
6560 doc: /* Which toolkit scroll bars Emacs uses, if any.
6561 A value of nil means Emacs doesn't use toolkit scroll bars.
6562 With the X Window system, the value is a symbol describing the
6563 X toolkit. Possible values are: gtk, motif, xaw, or xaw3d.
6564 With MS Windows or Nextstep, the value is t. */);
6565 Vx_toolkit_scroll_bars = Qt;
6566
6567 DEFVAR_BOOL ("w32-unicode-filenames",
6568 w32_unicode_filenames,
6569 doc: /* Non-nil means use Unicode APIs when passing file names to the OS.
6570 A value of nil means file names passed to the OS APIs and returned
6571 from those APIs are encoded/decoded using the ANSI codepage
6572 specified by `file-name-coding-system'.
6573
6574 This variable is set to non-nil by default when Emacs runs on Windows
6575 systems of the NT family, including W2K, XP, Vista, Windows 7 and
6576 Windows 8. It is set to nil on Windows 9X. */);
6577 w32_unicode_filenames = 0;
6578
6579 DEFVAR_BOOL ("w32-enable-frame-resize-hack",
6580 w32_enable_frame_resize_hack,
6581 doc: /* Non-nil means enable hack for frame resizing on Windows.
6582 A value of nil means to resize frames by sending a corresponding request
6583 to the Windows API and changing the pixel sizes of the frame and its
6584 windows after the latter calls back. If this is non-nil, Emacs changes
6585 the pixel sizes of the frame and its windows at the time it sends the
6586 resize request to the API. */);
6587 w32_enable_frame_resize_hack = 1;
6588
6589 /* Tell Emacs about this window system. */
6590 Fprovide (Qw32, Qnil);
6591 }