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