Make the `interactive-only' bytecomp warning like the `obsolete' one
[bpt/emacs.git] / src / w32term.c
CommitLineData
b46a6a83 1/* Implementation of GUI terminal on the Microsoft Windows API.
e9bffc61 2
ab422c4d 3Copyright (C) 1989, 1993-2013 Free Software Foundation, Inc.
ee78dc32
GV
4
5This file is part of GNU Emacs.
6
9ec0b715 7GNU Emacs is free software: you can redistribute it and/or modify
ee78dc32 8it under the terms of the GNU General Public License as published by
9ec0b715
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
ee78dc32
GV
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
9ec0b715 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
ee78dc32 19
ee78dc32 20#include <config.h>
68c45bf0 21#include <signal.h>
ee78dc32
GV
22#include <stdio.h>
23#include "lisp.h"
24#include "blockinput.h"
689004fa 25#include "w32term.h"
ee78dc32
GV
26
27#include "systty.h"
28#include "systime.h"
29
30#include <ctype.h>
31#include <errno.h>
ee78dc32 32#include <sys/stat.h>
c902b920 33#include <imm.h>
ee78dc32 34
66f30e44
JR
35#include "charset.h"
36#include "character.h"
37#include "coding.h"
38#include "ccl.h"
ee78dc32
GV
39#include "frame.h"
40#include "dispextern.h"
93ff4395 41#include "fontset.h"
ee78dc32
GV
42#include "termhooks.h"
43#include "termopts.h"
44#include "termchar.h"
ee78dc32
GV
45#include "disptab.h"
46#include "buffer.h"
47#include "window.h"
66f30e44 48#include "keyboard.h"
ee78dc32 49#include "intervals.h"
66f30e44
JR
50#include "process.h"
51#include "atimer.h"
52#include "keymap.h"
53
0fda9b75 54#ifdef WINDOWSNT
66f30e44 55#include "w32heap.h"
0fda9b75
DC
56#endif
57
58#ifndef WINDOWSNT
59#include <io.h> /* for get_osfhandle */
60#endif
61
66f30e44 62#include <shellapi.h>
ee78dc32 63
027f6f90 64#include "font.h"
ef39ccbb 65#include "w32font.h"
791f420f 66\f
33c34bea 67/* Fringe bitmaps. */
791f420f 68
0e9e9a2c
KS
69static int max_fringe_bmp = 0;
70static HBITMAP *fringe_bmp = 0;
791f420f 71
706ddb8f 72/* Temporary variables for w32_read_socket. */
791f420f 73
706ddb8f
JR
74static int last_mousemove_x = 0;
75static int last_mousemove_y = 0;
791f420f 76
af3a05ed
JR
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
791f420f
JR
82/* Non-zero means that a HELP_EVENT has been generated since Emacs
83 start. */
84
85static int any_help_event_p;
86
e7efd97e
GV
87extern unsigned int msh_mousewheel;
88
b56ceb92 89extern void free_frame_menubar (struct frame *);
ee78dc32 90
9ef2e2cf 91extern int w32_codepage_for_font (char *fontname);
2bf04b9d 92extern Cursor w32_load_cursor (LPCTSTR name);
9ef2e2cf 93
ee78dc32
GV
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
fbd6baed
GV
98/* This is display since w32 does not support multiple ones. */
99struct w32_display_info one_w32_display_info;
8c3b00cb 100struct w32_display_info *x_display_list;
ee78dc32 101
b88b62de 102#if _WIN32_WINNT < 0x0500 && !defined(_W64)
41375f89 103/* Pre Windows 2000, this was not available, but define it here so
b88b62de
EZ
104 that Emacs compiled on such a platform will run on newer versions.
105 MinGW64 (_W64) defines these unconditionally, so avoid redefining. */
41375f89
JR
106
107typedef struct tagWCRANGE
108{
109 WCHAR wcLow;
110 USHORT cGlyphs;
111} WCRANGE;
112
65a6ff8f 113typedef struct tagGLYPHSET
41375f89
JR
114{
115 DWORD cbThis;
116 DWORD flAccel;
117 DWORD cGlyphsSupported;
118 DWORD cRanges;
119 WCRANGE ranges[1];
65a6ff8f 120} GLYPHSET;
41375f89 121
0fda9b75 122#endif /* compiling for pre-Win2k */
41375f89 123
8b61a891 124/* Dynamic linking to SetLayeredWindowAttribute (only since 2000). */
ff90fbde 125BOOL (WINAPI *pfnSetLayeredWindowAttributes) (HWND, COLORREF, BYTE, DWORD);
8b61a891
JR
126
127#ifndef LWA_ALPHA
128#define LWA_ALPHA 0x02
129#endif
ec7e221c
JR
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
41375f89 135
cf13177e
YM
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
abb15ebd
JR
145/* The handle of the frame that currently owns the system caret. */
146HWND w32_system_caret_hwnd;
abb15ebd
JR
147int w32_system_caret_height;
148int w32_system_caret_x;
149int w32_system_caret_y;
b932cad7
EZ
150struct window *w32_system_caret_window;
151int w32_system_caret_hdr_height;
152int w32_system_caret_mode_height;
e9e23e23
GV
153DWORD dwWindowsThreadId = 0;
154HANDLE hWindowsThread = NULL;
ee78dc32
GV
155DWORD dwMainThreadId = 0;
156HANDLE hMainThread = NULL;
157
689004fa
GV
158int vertical_scroll_bar_min_handle;
159int vertical_scroll_bar_top_border;
160int vertical_scroll_bar_bottom_border;
161
162int last_scroll_bar_drag_pos;
163
302fc036
EZ
164/* Keyboard code page - may be changed by language-change events. */
165int w32_keyboard_codepage;
166
9ef2e2cf
JR
167/* Incremented by w32_read_socket whenever it really tries to read
168 events. */
ee78dc32 169static int volatile input_signal_count;
ee78dc32 170
0fda9b75
DC
171#ifdef CYGWIN
172int w32_message_fd = -1;
173#endif /* CYGWIN */
174
f57e2426
J
175static void w32_handle_tool_bar_click (struct frame *,
176 struct input_event *);
177static void w32_define_cursor (Window, Cursor);
178
179void x_lower_frame (struct frame *);
180void x_scroll_bar_clear (struct frame *);
18e27ea8 181void x_wm_set_size_hint (struct frame *, long, bool);
f57e2426
J
182void x_raise_frame (struct frame *);
183void x_set_window_size (struct frame *, int, int, int);
184void x_wm_set_window_state (struct frame *, int);
185void x_wm_set_icon_pixmap (struct frame *, int);
186static void w32_initialize (void);
187static void x_update_end (struct frame *);
188static void w32_frame_up_to_date (struct frame *);
f57e2426
J
189static void x_clear_frame (struct frame *);
190static void frame_highlight (struct frame *);
191static void frame_unhighlight (struct frame *);
192static void x_new_focus_frame (struct w32_display_info *,
193 struct frame *);
194static void x_focus_changed (int, int, struct w32_display_info *,
195 struct frame *, struct input_event *);
196static void w32_detect_focus_change (struct w32_display_info *,
197 W32Msg *, struct input_event *);
198static void w32_frame_rehighlight (struct frame *);
199static void x_frame_rehighlight (struct w32_display_info *);
200static void x_draw_hollow_cursor (struct window *, struct glyph_row *);
201static void x_draw_bar_cursor (struct window *, struct glyph_row *, int,
202 enum text_cursor_kinds);
c3c4768d
DA
203static void w32_clip_to_row (struct window *, struct glyph_row *,
204 enum glyph_row_area, HDC);
f57e2426
J
205static BOOL my_show_window (struct frame *, HWND, int);
206static void my_set_window_pos (HWND, HWND, int, int, int, int, UINT);
361358ea 207#if 0
f57e2426 208static void my_set_focus (struct frame *, HWND);
361358ea 209#endif
f57e2426
J
210static void my_set_foreground_window (HWND);
211static void my_destroy_window (struct frame *, HWND);
a10c8269 212static void w32fullscreen_hook (struct frame *);
791f420f 213
e509cfa6 214#ifdef GLYPH_DEBUG
784b56e2
EZ
215static void x_check_font (struct frame *, struct font *);
216#endif
217
ee78dc32 218static Lisp_Object Qvendor_specific_keysyms;
477f1e50
EZ
219static Lisp_Object Qadded, Qremoved, Qmodified;
220static Lisp_Object Qrenamed_from, Qrenamed_to;
ee78dc32 221
ee78dc32 222\f
9ef2e2cf
JR
223/***********************************************************************
224 Debugging
225 ***********************************************************************/
226
ee78dc32 227#if 0
9ef2e2cf
JR
228
229/* This is a function useful for recording debugging information about
230 the sequence of occurrences in this file. */
ee78dc32 231
d67d1627 232struct record
ee78dc32
GV
233{
234 char *locus;
235 int type;
236};
237
238struct record event_record[100];
239
240int event_record_index;
241
b56ceb92 242record_event (char *locus, int type)
ee78dc32
GV
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
791f420f 254
c65fd370 255void
b56ceb92 256XChangeGC (void *ignore, XGCValues *gc, unsigned long mask,
c65fd370 257 XGCValues *xgcv)
791f420f
JR
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
b56ceb92
JB
267XGCValues *
268XCreateGC (void *ignore, Window window, unsigned long mask, XGCValues *xgcv)
791f420f 269{
23f86fce 270 XGCValues *gc = xzalloc (sizeof (XGCValues));
791f420f
JR
271
272 XChangeGC (ignore, gc, mask, xgcv);
273
274 return gc;
275}
276
c65fd370 277void
b56ceb92
JB
278XGetGCValues (void *ignore, XGCValues *gc,
279 unsigned long mask, XGCValues *xgcv)
791f420f
JR
280{
281 XChangeGC (ignore, xgcv, mask, gc);
282}
283
791f420f
JR
284static void
285w32_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
9b0e3eba
AA
297/* Restore clipping rectangle in S */
298static void
299w32_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
328void
329w32_draw_underwave (struct glyph_string *s, COLORREF color)
330{
f032a318 331 int wave_height = 3, wave_length = 2;
9b0e3eba
AA
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;
f032a318 340 y0 = s->ybase - wave_height + 3;
9b0e3eba
AA
341 width = s->width;
342 xmax = x0 + width;
343
344 /* Find and set clipping rectangle */
345
62aba0d4
FP
346 wave_clip.x = x0;
347 wave_clip.y = y0;
348 wave_clip.width = width;
349 wave_clip.height = wave_height;
350
9b0e3eba
AA
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}
791f420f
JR
389
390/* Draw a hollow rectangle at the specified position. */
391void
392w32_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. */
d67d1627 412void
a10c8269 413w32_fill_rect (struct frame *f, HDC hdc, COLORREF pix, RECT *lprect)
ee78dc32 414{
ee78dc32 415 HBRUSH hb;
791f420f 416
ee78dc32 417 hb = CreateSolidBrush (pix);
ee78dc32 418 FillRect (hdc, lprect, hb);
ee78dc32 419 DeleteObject (hb);
ee78dc32
GV
420}
421
d67d1627 422void
a10c8269 423w32_clear_window (struct frame *f)
ee78dc32
GV
424{
425 RECT rect;
00fe468b 426 HDC hdc = get_frame_dc (f);
52cf03a1 427
e4a52412
JR
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
00fe468b 437 release_frame_dc (f, hdc);
ee78dc32
GV
438}
439
8b61a891
JR
440#define OPAQUE_FRAME 255
441
442void
b56ceb92 443x_set_frame_alpha (struct frame *f)
8b61a891 444{
aad3612f 445 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
8b61a891
JR
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
2f8e69cc
CY
466 if (alpha < 0.0)
467 return;
468 else if (alpha > 1.0)
8b61a891
JR
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)
4e179b19 478 ex_style &= ~WS_EX_LAYERED;
8b61a891
JR
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
b89c78a5 488int
b56ceb92 489x_display_pixel_height (struct w32_display_info *dpyinfo)
b89c78a5 490{
cf13177e
YM
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
cb4a3e42 497 return pixels;
b89c78a5
CY
498}
499
500int
b56ceb92 501x_display_pixel_width (struct w32_display_info *dpyinfo)
b89c78a5 502{
cf13177e
YM
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
cb4a3e42 509 return pixels;
b89c78a5
CY
510}
511
ee78dc32 512\f
791f420f
JR
513/***********************************************************************
514 Starting and ending an update
515 ***********************************************************************/
d67d1627 516
791f420f
JR
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
99012074 520 each window being updated. */
ee78dc32 521
96214669 522static void
b56ceb92 523x_update_begin (struct frame *f)
ee78dc32 524{
aad3612f 525 struct w32_display_info *display_info = FRAME_DISPLAY_INFO (f);
99012074 526
7e6ac5b9
AI
527 if (! FRAME_W32_P (f))
528 return;
529
99012074
AI
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 }
791f420f 537}
ee78dc32 538
791f420f 539
f60e429a 540/* Start update of window W. */
791f420f
JR
541
542static void
b56ceb92 543x_update_window_begin (struct window *w)
791f420f
JR
544{
545 struct frame *f = XFRAME (WINDOW_FRAME (w));
bbf534ce 546 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
791f420f 547
99558ce8 548 /* Hide the system caret during an update. */
9785d95b
BK
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 }
99558ce8 553
f60e429a 554 w->output_cursor = w->cursor;
ee78dc32 555
4d7e6e51 556 block_input ();
ee78dc32 557
bbf534ce 558 if (f == hlinfo->mouse_face_mouse_frame)
ee78dc32
GV
559 {
560 /* Don't do highlighting for mouse motion during the update. */
bbf534ce 561 hlinfo->mouse_face_defer = 1;
ee78dc32 562
9ef2e2cf
JR
563 /* If F needs to be redrawn, simply forget about any prior mouse
564 highlighting. */
ee78dc32 565 if (FRAME_GARBAGED_P (f))
bbf534ce 566 hlinfo->mouse_face_window = Qnil;
791f420f 567
ec48c3a7
JR
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. */
d67d1627 574
791f420f
JR
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. */
bbf534ce
EZ
580 if (!NILP (hlinfo->mouse_face_window)
581 && w == XWINDOW (hlinfo->mouse_face_window))
ee78dc32 582 {
791f420f 583 int i;
ee78dc32 584
791f420f
JR
585 for (i = 0; i < w->desired_matrix->nrows; ++i)
586 if (MATRIX_ROW_ENABLED_P (w->desired_matrix, i))
ee78dc32
GV
587 break;
588
791f420f 589 if (i < w->desired_matrix->nrows)
bbf534ce 590 clear_mouse_face (hlinfo);
ee78dc32 591 }
ec48c3a7 592#endif /* 0 */
ee78dc32
GV
593 }
594
4d7e6e51 595 unblock_input ();
ee78dc32
GV
596}
597
89271099 598/* Draw a vertical window border from (x,y0) to (x,y1) */
791f420f 599
96214669 600static void
b56ceb92 601w32_draw_vertical_window_border (struct window *w, int x, int y0, int y1)
ee78dc32 602{
791f420f 603 struct frame *f = XFRAME (WINDOW_FRAME (w));
89271099
KS
604 RECT r;
605 HDC hdc;
cf2c08ca 606 struct face *face;
1c64a4a2 607
89271099
KS
608 r.left = x;
609 r.right = x + 1;
610 r.top = y0;
611 r.bottom = y1;
d67d1627 612
89271099 613 hdc = get_frame_dc (f);
cf2c08ca
EZ
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
89271099 620 release_frame_dc (f, hdc);
791f420f 621}
ee78dc32 622
d67d1627 623
65620264 624/* End update of window W.
ec48c3a7
JR
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. */
791f420f
JR
636
637static void
9997ec56
DA
638x_update_window_end (struct window *w, bool cursor_on_p,
639 bool mouse_face_overwritten_p)
791f420f
JR
640{
641 if (!w->pseudo_window_p)
642 {
4d7e6e51 643 block_input ();
ec48c3a7 644
791f420f 645 if (cursor_on_p)
f60e429a
DA
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);
d67d1627 649
f94a2622
KS
650 if (draw_window_fringes (w, 1))
651 x_draw_vertical_border (w);
6b61353c 652
4d7e6e51 653 unblock_input ();
791f420f 654 }
9f5a911b
JR
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)
96e78d1f
EZ
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 }
9f5a911b 666
99558ce8
JR
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. */
9785d95b
BK
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 }
791f420f
JR
674}
675
9ef2e2cf
JR
676
677/* End update of frame F. This function is installed as a hook in
678 update_end. */
679
791f420f 680static void
b56ceb92 681x_update_end (struct frame *f)
791f420f 682{
7e6ac5b9
AI
683 if (! FRAME_W32_P (f))
684 return;
685
791f420f 686 /* Mouse highlight may be displayed again. */
bbf534ce 687 MOUSE_HL_INFO (f)->mouse_face_defer = 0;
ee78dc32
GV
688}
689
9ef2e2cf 690
65620264
DA
691/* This function is called from various places in xdisp.c
692 whenever a complete update has been performed. */
ee78dc32 693
96214669 694static void
b56ceb92 695w32_frame_up_to_date (struct frame *f)
ee78dc32 696{
791f420f 697 if (FRAME_W32_P (f))
5c747675 698 FRAME_MOUSE_UPDATE (f);
ee78dc32 699}
791f420f
JR
700
701
702/* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
33c34bea 703 arrow bitmaps, or clear the fringes if no bitmaps are required
65620264 704 before DESIRED_ROW is made current. This function is called from
791f420f
JR
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
708static void
65620264 709x_after_update_window_line (struct window *w, struct glyph_row *desired_row)
791f420f 710{
6ff3e5e3
JR
711 struct frame *f;
712 int width, height;
713
a54e2c05 714 eassert (w);
d67d1627 715
791f420f 716 if (!desired_row->mode_line_p && !w->pseudo_window_p)
6b61353c 717 desired_row->redraw_fringe_bitmaps_p = 1;
791f420f 718
6ff3e5e3
JR
719 /* When a window has disappeared, make sure that no rest of
720 full-width rows stays visible in the internal border. Could
65620264 721 check here if updated window is the leftmost/rightmost window,
6ff3e5e3
JR
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
d3d50620 727 && (f = XFRAME (w->frame),
6ff3e5e3
JR
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));
89271099 734
4d7e6e51 735 block_input ();
6ff3e5e3
JR
736 {
737 HDC hdc = get_frame_dc (f);
738 w32_clear_area (f, hdc, 0, y, width, height);
62e50ec6 739 w32_clear_area (f, hdc, FRAME_PIXEL_WIDTH (f) - width,
6ff3e5e3
JR
740 y, width, height);
741 release_frame_dc (f, hdc);
742 }
4d7e6e51 743 unblock_input ();
791f420f
JR
744 }
745}
746
747
33c34bea 748/* Draw the bitmap WHICH in one of the left or right fringes of
791f420f
JR
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
753static void
b56ceb92
JB
754w32_draw_fringe_bitmap (struct window *w, struct glyph_row *row,
755 struct draw_fringe_bitmap_params *p)
791f420f
JR
756{
757 struct frame *f = XFRAME (WINDOW_FRAME (w));
b6ae1532
KS
758 HDC hdc;
759 struct face *face = p->face;
760
761 hdc = get_frame_dc (f);
791f420f 762
06929222
YM
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 {
7db47798
YM
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));
06929222
YM
782
783 if (bx < 0)
784 {
785 /* Bitmap fills the fringe. */
7db47798
YM
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;
06929222
YM
790 if (bx >= 0)
791 {
792 int header_line_height = WINDOW_HEADER_LINE_HEIGHT (w);
793
7db47798 794 nx = bar_area_width - sb_width;
06929222
YM
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 {
7db47798 802 if (bar_area_x + bar_area_width == bx)
06929222 803 {
7db47798
YM
804 bx = bar_area_x + sb_width;
805 nx += bar_area_width - sb_width;
06929222 806 }
7db47798
YM
807 else if (bx + nx == bar_area_x)
808 nx += bar_area_width - sb_width;
06929222
YM
809 }
810 }
811 }
812
813 if (bx >= 0 && nx > 0)
814 w32_fill_area (f, hdc, face->background, bx, by, nx, ny);
815 }
816
791f420f 817 /* Must clip because of partially visible lines. */
c3c4768d 818 w32_clip_to_row (w, row, ANY_AREA, hdc);
791f420f 819
0e9e9a2c 820 if (p->which && p->which < max_fringe_bmp)
b6ae1532
KS
821 {
822 HBITMAP pixmap = fringe_bmp[p->which];
823 HDC compat_hdc;
824 HANDLE horig_obj;
791f420f 825
b6ae1532 826 compat_hdc = CreateCompatibleDC (hdc);
6b61353c 827
b6ae1532 828 SaveDC (hdc);
791f420f 829
b6ae1532 830 horig_obj = SelectObject (compat_hdc, pixmap);
fccb8288 831
6b61353c
KH
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 }
791f420f 866
b6ae1532
KS
867 SelectObject (compat_hdc, horig_obj);
868 DeleteDC (compat_hdc);
869 RestoreDC (hdc, -1);
d33c49e8 870 }
791f420f 871
b6ae1532 872 w32_set_clip_rectangle (hdc, NULL);
791f420f 873
791f420f
JR
874 release_frame_dc (f, hdc);
875}
876
6b61353c 877static void
b56ceb92 878w32_define_fringe_bitmap (int which, unsigned short *bits, int h, int wd)
6b61353c 879{
0e9e9a2c
KS
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
6b61353c
KH
889 fringe_bmp[which] = CreateBitmap (wd, h, 1, 1, bits);
890}
891
892static void
b56ceb92 893w32_destroy_fringe_bitmap (int which)
6b61353c 894{
0e9e9a2c
KS
895 if (which >= max_fringe_bmp)
896 return;
897
6b61353c
KH
898 if (fringe_bmp[which])
899 DeleteObject (fringe_bmp[which]);
900 fringe_bmp[which] = 0;
901}
902
791f420f
JR
903/***********************************************************************
904 Display Iterator
905 ***********************************************************************/
906
907/* Function prototypes of this page. */
908
f57e2426
J
909static void x_set_glyph_string_clipping (struct glyph_string *);
910static void x_set_glyph_string_gc (struct glyph_string *);
911static void x_draw_glyph_string_background (struct glyph_string *,
912 int);
913static void x_draw_glyph_string_foreground (struct glyph_string *);
914static void x_draw_composite_glyph_string_foreground (struct glyph_string *);
915static void x_draw_glyph_string_box (struct glyph_string *);
916static void x_draw_glyph_string (struct glyph_string *);
917static void x_set_cursor_gc (struct glyph_string *);
918static void x_set_mode_line_face_gc (struct glyph_string *);
919static void x_set_mouse_face_gc (struct glyph_string *);
791f420f 920static int w32_alloc_lighter_color (struct frame *, COLORREF *, double, int);
f57e2426
J
921static void w32_setup_relief_color (struct frame *, struct relief *,
922 double, int, COLORREF);
923static void x_setup_relief_colors (struct glyph_string *);
924static void x_draw_image_glyph_string (struct glyph_string *);
925static void x_draw_image_relief (struct glyph_string *);
926static void x_draw_image_foreground (struct glyph_string *);
927static void w32_draw_image_foreground_1 (struct glyph_string *, HBITMAP);
928static void x_clear_glyph_string_rect (struct glyph_string *, int,
929 int, int, int);
930static void w32_draw_relief_rect (struct frame *, int, int, int, int,
931 int, int, int, int, int, int,
932 RECT *);
933static void w32_draw_box_rect (struct glyph_string *, int, int, int, int,
934 int, int, int, RECT *);
c2cc16fa 935
d67d1627 936
791f420f
JR
937/* Set S->gc to a suitable GC for drawing glyph string S in cursor
938 face. */
939
940static void
b56ceb92 941x_set_cursor_gc (struct glyph_string *s)
791f420f
JR
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
aad3612f
DA
977 if (FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc)
978 XChangeGC (NULL, FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc,
791f420f
JR
979 mask, &xgcv);
980 else
aad3612f 981 FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc
791f420f
JR
982 = XCreateGC (NULL, s->window, mask, &xgcv);
983
aad3612f 984 s->gc = FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc;
791f420f
JR
985 }
986}
987
988
989/* Set up S->gc of glyph string S for drawing text in mouse face. */
d67d1627 990
791f420f 991static void
b56ceb92 992x_set_mouse_face_gc (struct glyph_string *s)
d67d1627 993{
791f420f 994 int face_id;
93ff4395 995 struct face *face;
791f420f 996
c2cc16fa 997 /* What face has to be used last for the mouse face? */
bbf534ce 998 face_id = MOUSE_HL_INFO (s->f)->mouse_face_face_id;
93ff4395 999 face = FACE_FROM_ID (s->f, face_id);
c2cc16fa
JR
1000 if (face == NULL)
1001 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
d67d1627 1002
c2cc16fa 1003 if (s->first_glyph->type == CHAR_GLYPH)
14ee5d4c 1004 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch, -1, Qnil);
c2cc16fa 1005 else
14ee5d4c 1006 face_id = FACE_FOR_CHAR (s->f, face, 0, -1, Qnil);
791f420f
JR
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;
d67d1627 1019
791f420f
JR
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;
d67d1627 1025
aad3612f
DA
1026 if (FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc)
1027 XChangeGC (NULL, FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc,
791f420f
JR
1028 mask, &xgcv);
1029 else
aad3612f 1030 FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc
791f420f 1031 = XCreateGC (NULL, s->window, mask, &xgcv);
d67d1627 1032
aad3612f 1033 s->gc = FRAME_DISPLAY_INFO (s->f)->scratch_cursor_gc;
791f420f
JR
1034 }
1035
a54e2c05 1036 eassert (s->gc != 0);
791f420f
JR
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
55d4c1b2 1044static inline void
b56ceb92 1045x_set_mode_line_face_gc (struct glyph_string *s)
d67d1627 1046{
791f420f 1047 s->gc = s->face->gc;
791f420f
JR
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
55d4c1b2 1055static inline void
b56ceb92 1056x_set_glyph_string_gc (struct glyph_string *s)
791f420f 1057{
ec48c3a7 1058 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
d67d1627 1059
791f420f
JR
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. */
a54e2c05 1093 eassert (s->gc != 0);
791f420f
JR
1094}
1095
1096
791f420f
JR
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
55d4c1b2 1100static inline void
b56ceb92 1101x_set_glyph_string_clipping (struct glyph_string *s)
791f420f 1102{
3ca3504a 1103 RECT *r = s->clip;
3ca3504a
JR
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 {
1149507c
JB
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);
3ca3504a
JR
1114 DeleteObject (clip1);
1115 DeleteObject (clip2);
3ca3504a 1116 }
3ca3504a 1117 s->num_clips = n;
791f420f
JR
1118}
1119
027f6f90
JR
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
1124static void
b56ceb92
JB
1125x_set_glyph_string_clipping_exactly (struct glyph_string *src,
1126 struct glyph_string *dst)
027f6f90
JR
1127{
1128 RECT r;
1129
ef39ccbb
KH
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;
027f6f90
JR
1136 w32_set_clip_rectangle (dst->hdc, &r);
1137}
791f420f 1138
6b6bd726 1139/* RIF:
ef39ccbb 1140 Compute left and right overhang of glyph string S. */
791f420f 1141
6b6bd726 1142static void
b56ceb92 1143w32_compute_glyph_string_overhangs (struct glyph_string *s)
791f420f 1144{
cf907d69 1145 if (s->cmp == NULL
ef39ccbb
KH
1146 && s->first_glyph->type == CHAR_GLYPH
1147 && !s->font_not_found_p)
cf907d69 1148 {
ef39ccbb
KH
1149 unsigned *code = alloca (sizeof (unsigned) * s->nchars);
1150 struct font *font = s->font;
1151 struct font_metrics metrics;
1152 int i;
cf907d69 1153
ef39ccbb
KH
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;
cf907d69
JR
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 }
791f420f
JR
1166}
1167
791f420f
JR
1168/* Fill rectangle X, Y, W, H with background color of glyph string S. */
1169
55d4c1b2 1170static inline void
b56ceb92
JB
1171x_clear_glyph_string_rect (struct glyph_string *s,
1172 int x, int y, int w, int h)
791f420f
JR
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
1201static void
b56ceb92 1202x_draw_glyph_string_background (struct glyph_string *s, int force_p)
791f420f
JR
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 {
60222d69
AI
1208 int box_line_width = max (s->face->box_line_width, 0);
1209
01b220b6 1210#if 0 /* TODO: stipple */
791f420f
JR
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,
60222d69 1216 s->y + box_line_width,
791f420f 1217 s->background_width,
60222d69 1218 s->height - 2 * box_line_width);
791f420f
JR
1219 XSetFillStyle (s->display, s->gc, FillSolid);
1220 s->background_filled_p = 1;
1221 }
1222 else
1223#endif
60222d69 1224 if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
791f420f
JR
1225 || s->font_not_found_p
1226 || s->extends_to_end_of_line_p
1227 || force_p)
1228 {
60222d69 1229 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
791f420f 1230 s->background_width,
60222d69 1231 s->height - 2 * box_line_width);
791f420f
JR
1232 s->background_filled_p = 1;
1233 }
1234 }
1235}
1236
1237
1238/* Draw the foreground of glyph string S. */
1239
1240static void
b56ceb92 1241x_draw_glyph_string_foreground (struct glyph_string *s)
791f420f
JR
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)
1ea40aa2 1249 x = s->x + eabs (s->face->box_line_width);
791f420f
JR
1250 else
1251 x = s->x;
1252
791f420f
JR
1253 SetTextColor (s->hdc, s->gc->foreground);
1254 SetBkColor (s->hdc, s->gc->background);
1255 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
1256
791f420f
JR
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 }
ef39ccbb 1270 else
027f6f90 1271 {
c35f9821
JR
1272 struct font *font = s->font;
1273 int boff = font->baseline_offset;
027f6f90 1274 int y;
c35f9821
JR
1275 HFONT old_font;
1276
1277 old_font = SelectObject (s->hdc, FONT_HANDLE (font));
027f6f90 1278
c35f9821
JR
1279 if (font->vertical_centering)
1280 boff = VCENTER_BASELINE_OFFSET (font, s->f) - boff;
027f6f90
JR
1281
1282 y = s->ybase - boff;
1283 if (s->for_overlaps
1284 || (s->background_filled_p && s->hl != DRAW_CURSOR))
c35f9821 1285 font->driver->draw (s, 0, s->nchars, x, y, 0);
027f6f90 1286 else
c35f9821 1287 font->driver->draw (s, 0, s->nchars, x, y, 1);
027f6f90 1288 if (s->face->overstrike)
c35f9821 1289 font->driver->draw (s, 0, s->nchars, x + 1, y, 0);
791f420f 1290
c35f9821
JR
1291 SelectObject (s->hdc, old_font);
1292 }
791f420f
JR
1293}
1294
1295/* Draw the foreground of composite glyph string S. */
1296
1297static void
b56ceb92 1298x_draw_composite_glyph_string_foreground (struct glyph_string *s)
791f420f 1299{
027f6f90 1300 int i, j, x;
2b107652 1301 struct font *font = s->font;
791f420f
JR
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. */
027f6f90 1305 if (s->face && s->face->box != FACE_NO_BOX
791f420f 1306 && s->first_glyph->left_box_line_p)
1ea40aa2 1307 x = s->x + eabs (s->face->box_line_width);
791f420f
JR
1308 else
1309 x = s->x;
1310
2b107652
KH
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
791f420f
JR
1314 this composition. */
1315
1316 SetTextColor (s->hdc, s->gc->foreground);
1317 SetBkColor (s->hdc, s->gc->background);
791f420f
JR
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 {
2b107652 1324 if (s->cmp_from == 0)
791f420f
JR
1325 w32_draw_rectangle (s->hdc, s->gc, x, s->y, s->width - 1,
1326 s->height - 1);
1327 }
2b107652
KH
1328 else if (! s->first_glyph->u.cmp.automatic)
1329 {
1330 int y = s->ybase;
2b107652
KH
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++)
bd01620e
EZ
1336 /* TAB in a composition means display glyphs with padding
1337 space on the left or right. */
2b107652
KH
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 }
c35f9821 1349 else
791f420f 1350 {
2b107652
KH
1351 Lisp_Object gstring = composition_gstring_from_id (s->cmp_id);
1352 Lisp_Object glyph;
027f6f90
JR
1353 int y = s->ybase;
1354 int width = 0;
c35f9821
JR
1355 HFONT old_font;
1356
1357 old_font = SelectObject (s->hdc, FONT_HANDLE (font));
027f6f90 1358
2b107652 1359 for (i = j = s->cmp_from; i < s->cmp_to; i++)
a18bb28d 1360 {
2b107652
KH
1361 glyph = LGSTRING_GLYPH (gstring, i);
1362 if (NILP (LGLYPH_ADJUSTMENT (glyph)))
1363 width += LGLYPH_WIDTH (glyph);
1364 else
027f6f90 1365 {
027f6f90
JR
1366 int xoff, yoff, wadjust;
1367
2b107652 1368 if (j < i)
027f6f90 1369 {
2b107652 1370 font->driver->draw (s, j, i, x, y, 0);
027f6f90
JR
1371 x += width;
1372 }
2b107652
KH
1373 xoff = LGLYPH_XOFF (glyph);
1374 yoff = LGLYPH_YOFF (glyph);
1375 wadjust = LGLYPH_WADJUST (glyph);
027f6f90 1376 font->driver->draw (s, i, i + 1, x + xoff, y + yoff, 0);
0c16681f 1377 x += wadjust;
2b107652 1378 j = i + 1;
027f6f90
JR
1379 width = 0;
1380 }
a18bb28d 1381 }
2b107652
KH
1382 if (j < i)
1383 font->driver->draw (s, j, i, x, y, 0);
1384
c35f9821 1385 SelectObject (s->hdc, old_font);
791f420f
JR
1386 }
1387}
1388
e5fa381b 1389
b2cca856
KH
1390/* Draw the foreground of glyph string S for glyphless characters. */
1391
1392static void
1393x_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;
65b6b59a 1398 int with_background;
b2cca856
KH
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;
65b6b59a
KH
1413 with_background = ! (s->for_overlaps
1414 || (s->background_filled_p && s->hl != DRAW_CURSOR));
b2cca856
KH
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))
51b59d79 1433 str = SSDATA (acronym);
b2cca856
KH
1434 }
1435 }
0eb025fb 1436 else if (glyph->u.glyphless.method == GLYPHLESS_DISPLAY_HEX_CODE)
b2cca856
KH
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
0eb025fb
EZ
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);
b2cca856
KH
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
65b6b59a 1456 old_font = SelectObject (s->hdc, FONT_HANDLE (font));
0eb025fb 1457 /* It is certain that all LEN characters in STR are ASCII. */
b2cca856
KH
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,
65b6b59a 1466 with_background);
b2cca856
KH
1467 font->driver->draw (s, upper_len, len,
1468 x + glyph->slice.glyphless.lower_xoff,
1469 s->ybase + glyph->slice.glyphless.lower_yoff,
65b6b59a 1470 with_background);
b2cca856
KH
1471 SelectObject (s->hdc, old_font);
1472 }
b2cca856
KH
1473 x += glyph->pixel_width;
1474 }
1475}
1476
1477
e5fa381b
JR
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
e8500ff4 1483 doesn't yield good results for dark colors, so for colors whose
e5fa381b
JR
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
791f420f
JR
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
1499static int
b56ceb92
JB
1500w32_alloc_lighter_color (struct frame *f, COLORREF *color,
1501 double factor, int delta)
791f420f
JR
1502{
1503 COLORREF new;
e5fa381b
JR
1504 long bright;
1505
1506 /* On Windows, RGB values are 0-255, not 0-65535, so scale delta. */
1507 delta /= 256;
791f420f
JR
1508
1509 /* Change RGB values by specified FACTOR. Avoid overflow! */
a54e2c05 1510 eassert (factor >= 0);
791f420f
JR
1511 new = PALETTERGB (min (0xff, factor * GetRValue (*color)),
1512 min (0xff, factor * GetGValue (*color)),
1513 min (0xff, factor * GetBValue (*color)));
e5fa381b
JR
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;
d67d1627 1529
e5fa381b
JR
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 }
d67d1627 1539
791f420f
JR
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
01b220b6
JR
1545 /* TODO: Map to palette and retry with delta if same? */
1546 /* TODO: Free colors (if using palette)? */
93ff4395 1547
791f420f
JR
1548 if (new == *color)
1549 return 0;
1550
1551 *color = new;
1552
1553 return 1;
1554}
1555
8b7d0a16
JR
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. */
1559void
b56ceb92 1560x_query_colors (struct frame *f, XColor *colors, int ncolors)
8b7d0a16
JR
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
1574void
b56ceb92 1575x_query_color (struct frame *f, XColor *color)
8b7d0a16
JR
1576{
1577 x_query_colors (f, color, 1);
1578}
1579
791f420f
JR
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. */
d67d1627 1587
791f420f 1588static void
b56ceb92
JB
1589w32_setup_relief_color (struct frame *f, struct relief *relief, double factor,
1590 int delta, COLORREF default_pixel)
791f420f
JR
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;
aad3612f 1597 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
791f420f 1598
01b220b6 1599 /* TODO: Free colors (if using palette)? */
93ff4395 1600
791f420f
JR
1601 /* Allocate new color. */
1602 xgcv.foreground = default_pixel;
1603 pixel = background;
1604 if (w32_alloc_lighter_color (f, &pixel, factor, delta))
0085b9be 1605 xgcv.foreground = relief->pixel = pixel;
d67d1627 1606
791f420f
JR
1607 if (relief->gc == 0)
1608 {
01b220b6 1609#if 0 /* TODO: stipple */
791f420f
JR
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
1622static void
b56ceb92 1623x_setup_relief_colors (struct glyph_string *s)
791f420f
JR
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;
6ff3e5e3 1630 else if (s->first_glyph->type == IMAGE_GLYPH
6637c996 1631 && s->img->pixmap
6ff3e5e3
JR
1632 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
1633 color = IMAGE_BACKGROUND (s->img, s->f, 0);
791f420f
JR
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
1657static void
b56ceb92 1658w32_draw_relief_rect (struct frame *f,
e8500ff4
JB
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,
b56ceb92 1662 RECT *clip_rect)
791f420f
JR
1663{
1664 int i;
1665 XGCValues gc;
1666 HDC hdc = get_frame_dc (f);
1667
1668 if (raised_p)
e5fa381b 1669 gc.foreground = f->output_data.w32->white_relief.gc->foreground;
791f420f 1670 else
e5fa381b 1671 gc.foreground = f->output_data.w32->black_relief.gc->foreground;
791f420f
JR
1672
1673 w32_set_clip_rectangle (hdc, clip_rect);
1674
1675 /* Top. */
cb0b194a
KS
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);
791f420f
JR
1681
1682 /* Left. */
1683 if (left_p)
1684 for (i = 0; i < width; ++i)
9f5a911b 1685 w32_fill_area (f, hdc, gc.foreground,
75b4f59c
YM
1686 left_x + i, top_y + (i + 1) * top_p, 1,
1687 bottom_y - top_y - (i + 1) * (bot_p + top_p) + 1);
791f420f
JR
1688
1689 if (raised_p)
e5fa381b 1690 gc.foreground = f->output_data.w32->black_relief.gc->foreground;
791f420f 1691 else
e5fa381b 1692 gc.foreground = f->output_data.w32->white_relief.gc->foreground;
d67d1627 1693
791f420f 1694 /* Bottom. */
cb0b194a
KS
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);
791f420f
JR
1700
1701 /* Right. */
1702 if (right_p)
1703 for (i = 0; i < width; ++i)
9f5a911b 1704 w32_fill_area (f, hdc, gc.foreground,
75b4f59c
YM
1705 right_x - i, top_y + (i + 1) * top_p, 1,
1706 bottom_y - top_y - (i + 1) * (bot_p + top_p) + 1);
791f420f
JR
1707
1708 w32_set_clip_rectangle (hdc, NULL);
d67d1627 1709
791f420f
JR
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
1721static void
b56ceb92
JB
1722w32_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)
791f420f 1725{
00fe468b 1726 w32_set_clip_rectangle (s->hdc, clip_rect);
d67d1627 1727
791f420f 1728 /* Top. */
00fe468b 1729 w32_fill_area (s->f, s->hdc, s->face->box_color,
2d0c0bd7 1730 left_x, top_y, right_x - left_x + 1, width);
791f420f
JR
1731
1732 /* Left. */
1733 if (left_p)
1734 {
00fe468b 1735 w32_fill_area (s->f, s->hdc, s->face->box_color,
2d0c0bd7 1736 left_x, top_y, width, bottom_y - top_y + 1);
791f420f 1737 }
d67d1627 1738
791f420f 1739 /* Bottom. */
00fe468b 1740 w32_fill_area (s->f, s->hdc, s->face->box_color,
2d0c0bd7 1741 left_x, bottom_y - width + 1, right_x - left_x + 1, width);
d67d1627 1742
791f420f
JR
1743 /* Right. */
1744 if (right_p)
1745 {
00fe468b 1746 w32_fill_area (s->f, s->hdc, s->face->box_color,
2d0c0bd7 1747 right_x - width + 1, top_y, width, bottom_y - top_y + 1);
791f420f
JR
1748 }
1749
00fe468b 1750 w32_set_clip_rectangle (s->hdc, NULL);
791f420f
JR
1751}
1752
1753
1754/* Draw a box around glyph string S. */
1755
1756static void
b56ceb92 1757x_draw_glyph_string_box (struct glyph_string *s)
791f420f
JR
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
82ead4b1
KS
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));
d67d1627 1767
791f420f
JR
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
1ea40aa2 1773 width = eabs (s->face->box_line_width);
791f420f
JR
1774 raised_p = s->face->box == FACE_RAISED_BOX;
1775 left_x = s->x;
9f5a911b 1776 right_x = ((s->row->full_width_p && s->extends_to_end_of_line_p
791f420f
JR
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)));
d67d1627 1790
89271099 1791 get_glyph_string_clip_rect (s, &clip_rect);
791f420f
JR
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,
cb0b194a 1800 width, raised_p, 1, 1, left_p, right_p, &clip_rect);
791f420f
JR
1801 }
1802}
1803
1804
1805/* Draw foreground of image glyph string S. */
1806
1807static void
b56ceb92 1808x_draw_image_foreground (struct glyph_string *s)
791f420f 1809{
cb0b194a
KS
1810 int x = s->x;
1811 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
791f420f
JR
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
cb0b194a
KS
1816 && s->first_glyph->left_box_line_p
1817 && s->slice.x == 0)
1ea40aa2 1818 x += eabs (s->face->box_line_width);
791f420f
JR
1819
1820 /* If there is a margin around the image, adjust x- and y-position
1821 by that margin. */
cb0b194a
KS
1822 if (s->slice.x == 0)
1823 x += s->img->hmargin;
1824 if (s->slice.y == 0)
1825 y += s->img->vmargin;
791f420f
JR
1826
1827 SaveDC (s->hdc);
1828
1829 if (s->img->pixmap)
1830 {
d30591dc
JR
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
791f420f
JR
1839 if (s->img->mask)
1840 {
d30591dc
JR
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
cb0b194a
KS
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);
d30591dc
JR
1853
1854 SelectObject (mask_dc, mask_orig_obj);
1855 DeleteDC (mask_dc);
791f420f
JR
1856 }
1857 else
791f420f 1858 {
d30591dc
JR
1859 SetTextColor (s->hdc, s->gc->foreground);
1860 SetBkColor (s->hdc, s->gc->background);
1861
cb0b194a
KS
1862 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
1863 compat_hdc, s->slice.x, s->slice.y, SRCCOPY);
791f420f
JR
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)
c65eff23
KS
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 ,
cb0b194a
KS
1876 s->slice.width + r*2 - 1,
1877 s->slice.height + r*2 - 1);
c65eff23 1878 }
791f420f 1879 }
d30591dc
JR
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);
791f420f
JR
1886 }
1887 else
cb0b194a
KS
1888 w32_draw_rectangle (s->hdc, s->gc, x, y,
1889 s->slice.width - 1, s->slice.height - 1);
ee78dc32 1890
791f420f
JR
1891 RestoreDC (s->hdc ,-1);
1892}
ee78dc32 1893
791f420f 1894
791f420f
JR
1895/* Draw a relief around the image glyph string S. */
1896
1897static void
b56ceb92 1898x_draw_image_relief (struct glyph_string *s)
791f420f 1899{
75b4f59c 1900 int x1, y1, thick, raised_p, top_p, bot_p, left_p, right_p;
791f420f 1901 RECT r;
cb0b194a
KS
1902 int x = s->x;
1903 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
d67d1627 1904
791f420f
JR
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
cb0b194a
KS
1908 && s->first_glyph->left_box_line_p
1909 && s->slice.x == 0)
1ea40aa2 1910 x += eabs (s->face->box_line_width);
d67d1627 1911
791f420f
JR
1912 /* If there is a margin around the image, adjust x- and y-position
1913 by that margin. */
cb0b194a
KS
1914 if (s->slice.x == 0)
1915 x += s->img->hmargin;
1916 if (s->slice.y == 0)
1917 y += s->img->vmargin;
d67d1627 1918
791f420f
JR
1919 if (s->hl == DRAW_IMAGE_SUNKEN
1920 || s->hl == DRAW_IMAGE_RAISED)
1921 {
e8500ff4
JB
1922 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief
1923 : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
791f420f
JR
1924 raised_p = s->hl == DRAW_IMAGE_RAISED;
1925 }
1926 else
ee78dc32 1927 {
1ea40aa2 1928 thick = eabs (s->img->relief);
791f420f
JR
1929 raised_p = s->img->relief > 0;
1930 }
d67d1627 1931
75b4f59c
YM
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;
d67d1627 1944
791f420f 1945 x_setup_relief_colors (s);
89271099 1946 get_glyph_string_clip_rect (s, &r);
75b4f59c
YM
1947 w32_draw_relief_rect (s->f, x, y, x1, y1, thick, raised_p,
1948 top_p, bot_p, left_p, right_p, &r);
791f420f 1949}
ee78dc32 1950
791f420f
JR
1951
1952/* Draw the foreground of image glyph string S to PIXMAP. */
1953
1954static void
b56ceb92 1955w32_draw_image_foreground_1 (struct glyph_string *s, HBITMAP pixmap)
791f420f
JR
1956{
1957 HDC hdc = CreateCompatibleDC (s->hdc);
1958 HGDIOBJ orig_hdc_obj = SelectObject (hdc, pixmap);
cb0b194a
KS
1959 int x = 0;
1960 int y = s->ybase - s->y - image_ascent (s->img, s->face, &s->slice);
791f420f
JR
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
cb0b194a
KS
1965 && s->first_glyph->left_box_line_p
1966 && s->slice.x == 0)
1ea40aa2 1967 x += eabs (s->face->box_line_width);
791f420f
JR
1968
1969 /* If there is a margin around the image, adjust x- and y-position
1970 by that margin. */
cb0b194a
KS
1971 if (s->slice.x == 0)
1972 x += s->img->hmargin;
1973 if (s->slice.y == 0)
1974 y += s->img->vmargin;
791f420f
JR
1975
1976 if (s->img->pixmap)
1977 {
d30591dc
JR
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
791f420f
JR
1983 if (s->img->mask)
1984 {
d30591dc
JR
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));
cb0b194a
KS
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);
d30591dc
JR
1996
1997 SelectObject (mask_dc, mask_orig_obj);
1998 DeleteDC (mask_dc);
791f420f
JR
1999 }
2000 else
ef0e360f 2001 {
d30591dc
JR
2002 SetTextColor (hdc, s->gc->foreground);
2003 SetBkColor (hdc, s->gc->background);
2004
cb0b194a
KS
2005 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
2006 compat_hdc, s->slice.x, s->slice.y, SRCCOPY);
791f420f
JR
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)
c65eff23
KS
2015 {
2016 int r = s->img->relief;
2017 if (r < 0) r = -r;
cb0b194a
KS
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);
c65eff23 2021 }
ef0e360f 2022 }
d30591dc
JR
2023
2024 SelectObject (hdc, orig_brush);
2025 DeleteObject (fg_brush);
2026 SelectObject (compat_hdc, orig_obj);
2027 DeleteDC (compat_hdc);
791f420f
JR
2028 }
2029 else
cb0b194a
KS
2030 w32_draw_rectangle (hdc, s->gc, x, y,
2031 s->slice.width - 1, s->slice.height - 1);
791f420f
JR
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
2041static void
b56ceb92 2042x_draw_glyph_string_bg_rect (struct glyph_string *s, int x, int y, int w, int h)
791f420f 2043{
01b220b6 2044#if 0 /* TODO: stipple */
791f420f
JR
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
d67d1627 2058/* Draw image glyph string S.
791f420f
JR
2059
2060 s->y
2061 s->x +-------------------------
2062 | s->face->box
2063 |
2064 | +-------------------------
d6ff54d5 2065 | | s->img->vmargin
791f420f
JR
2066 | |
2067 | | +-------------------
2068 | | | the image
cabb23bc 2069
791f420f
JR
2070 */
2071
2072static void
b56ceb92 2073x_draw_image_glyph_string (struct glyph_string *s)
791f420f
JR
2074{
2075 int x, y;
1ea40aa2 2076 int box_line_hwidth = eabs (s->face->box_line_width);
60222d69 2077 int box_line_vwidth = max (s->face->box_line_width, 0);
791f420f
JR
2078 int height;
2079 HBITMAP pixmap = 0;
2080
60222d69 2081 height = s->height - 2 * box_line_vwidth;
791f420f
JR
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;
cb0b194a 2087 if (height > s->slice.height
d6ff54d5 2088 || s->img->hmargin
c2cc16fa 2089 || s->img->vmargin
791f420f 2090 || s->img->mask
791f420f
JR
2091 || s->img->pixmap == 0
2092 || s->width != s->background_width)
2093 {
cb0b194a
KS
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;
d67d1627 2102
d30591dc 2103#if 0 /* TODO: figure out if we need to do this on Windows. */
791f420f 2104 if (s->img->mask)
ee78dc32 2105 {
c2cc16fa
JR
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. */
791f420f
JR
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);
d67d1627 2116
791f420f
JR
2117 /* Don't clip in the following because we're working on the
2118 pixmap. */
2119 XSetClipMask (s->display, s->gc, None);
ee78dc32 2120
791f420f
JR
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 }
ef0e360f 2130 else
791f420f
JR
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 }
ee78dc32 2140 }
791f420f
JR
2141 else
2142#endif
791f420f 2143 x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
d67d1627 2144
791f420f
JR
2145 s->background_filled_p = 1;
2146 }
ee78dc32 2147
791f420f
JR
2148 /* Draw the foreground. */
2149 if (pixmap != 0)
2150 {
2151 w32_draw_image_foreground_1 (s, pixmap);
2152 x_set_glyph_string_clipping (s);
ee78dc32 2153 {
791f420f
JR
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);
791f420f
JR
2161 BitBlt (s->hdc, s->x, s->y, s->background_width, s->height,
2162 compat_hdc, 0, 0, SRCCOPY);
d30591dc 2163
791f420f
JR
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);
ee78dc32 2174
791f420f
JR
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}
ee78dc32 2181
cabb23bc 2182
791f420f 2183/* Draw stretch glyph string S. */
cabb23bc 2184
791f420f 2185static void
b56ceb92 2186x_draw_stretch_glyph_string (struct glyph_string *s)
791f420f 2187{
a54e2c05 2188 eassert (s->first_glyph->type == STRETCH_GLYPH);
65c4903c 2189
791f420f
JR
2190 if (s->hl == DRAW_CURSOR
2191 && !x_stretch_cursor_p)
2192 {
b236615c
EZ
2193 /* If `x-stretch-cursor' is nil, don't draw a block cursor as
2194 wide as the stretch glyph. */
e8f6b0db 2195 int width, background_width = s->background_width;
b236615c 2196 int x = s->x;
e8f6b0db 2197
b236615c 2198 if (!s->row->reversed_p)
e8f6b0db 2199 {
b236615c
EZ
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;
e8f6b0db
KS
2217 }
2218 width = min (FRAME_COLUMN_WIDTH (s->f), background_width);
b236615c
EZ
2219 if (s->row->reversed_p)
2220 x -= width;
cabb23bc 2221
791f420f 2222 /* Draw cursor. */
e8f6b0db 2223 x_draw_glyph_string_bg_rect (s, x, s->y, width, s->height);
cabb23bc 2224
791f420f 2225 /* Clear rest using the GC of the original non-cursor face. */
e8f6b0db 2226 if (width < background_width)
791f420f
JR
2227 {
2228 XGCValues *gc = s->face->gc;
e8f6b0db
KS
2229 int y = s->y;
2230 int w = background_width - width, h = s->height;
791f420f
JR
2231 RECT r;
2232 HDC hdc = s->hdc;
9f5a911b 2233
b236615c
EZ
2234 if (!s->row->reversed_p)
2235 x += width;
2236 else
2237 x = s->x;
9f5a911b
JR
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;
d67d1627 2246
89271099 2247 get_glyph_string_clip_rect (s, &r);
791f420f
JR
2248 w32_set_clip_rectangle (hdc, &r);
2249
01b220b6 2250#if 0 /* TODO: stipple */
791f420f
JR
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 }
9f5a911b 2265 else if (!s->background_filled_p)
e8f6b0db
KS
2266 {
2267 int background_width = s->background_width;
2268 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
2269
6c693929
KS
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)
e8f6b0db
KS
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);
5e6b6dcd 2279 }
d67d1627 2280
791f420f
JR
2281 s->background_filled_p = 1;
2282}
cabb23bc 2283
cabb23bc 2284
791f420f
JR
2285/* Draw glyph string S. */
2286
2287static void
b56ceb92 2288x_draw_glyph_string (struct glyph_string *s)
791f420f 2289{
d7e6881a 2290 bool relief_drawn_p = 0;
858a55c1 2291
791f420f
JR
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. */
c2ded1b7 2295 if (s->next && s->right_overhang && !s->for_overlaps)
791f420f 2296 {
027f6f90
JR
2297 int width;
2298 struct glyph_string *next;
e3f81cd5
CY
2299 for (width = 0, next = s->next;
2300 next && width < s->right_overhang;
027f6f90
JR
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);
85bdc6d2
CY
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);
3ca3504a 2310 next->num_clips = 0;
027f6f90 2311 }
791f420f
JR
2312 }
2313
2314 /* Set up S->gc, set clipping and draw S. */
2315 x_set_glyph_string_gc (s);
791f420f 2316
858a55c1
AI
2317 /* Draw relief (if any) in advance for char/composition so that the
2318 glyph string can be drawn over it. */
c2ded1b7 2319 if (!s->for_overlaps
858a55c1
AI
2320 && s->face->box != FACE_NO_BOX
2321 && (s->first_glyph->type == CHAR_GLYPH
2322 || s->first_glyph->type == COMPOSITE_GLYPH))
2323
2324 {
9f5a911b 2325 x_set_glyph_string_clipping (s);
858a55c1
AI
2326 x_draw_glyph_string_background (s, 1);
2327 x_draw_glyph_string_box (s);
9f5a911b 2328 x_set_glyph_string_clipping (s);
858a55c1
AI
2329 relief_drawn_p = 1;
2330 }
a6e0b7e5
JR
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)))
027f6f90
JR
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);
9f5a911b
JR
2339 else
2340 x_set_glyph_string_clipping (s);
858a55c1 2341
791f420f
JR
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:
c2ded1b7 2353 if (s->for_overlaps)
791f420f
JR
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:
2b107652
KH
2361 if (s->for_overlaps || (s->cmp_from > 0
2362 && ! s->first_glyph->u.cmp.automatic))
791f420f
JR
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
b2cca856 2369 case GLYPHLESS_GLYPH:
65b6b59a 2370 if (s->for_overlaps)
b2cca856
KH
2371 s->background_filled_p = 1;
2372 else
65b6b59a 2373 x_draw_glyph_string_background (s, 0);
b2cca856
KH
2374 x_draw_glyphless_glyph_string_foreground (s);
2375 break;
2376
791f420f 2377 default:
1088b922 2378 emacs_abort ();
791f420f
JR
2379 }
2380
c2ded1b7 2381 if (!s->for_overlaps)
791f420f
JR
2382 {
2383 /* Draw underline. */
ef39ccbb 2384 if (s->face->underline_p)
791f420f 2385 {
9b0e3eba 2386 if (s->face->underline_type == FACE_UNDER_WAVE)
30f27523 2387 {
9b0e3eba
AA
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);
ef39ccbb 2396 }
9b0e3eba 2397 else if (s->face->underline_type == FACE_UNDER_LINE)
ef39ccbb 2398 {
9b0e3eba
AA
2399 unsigned long thickness, position;
2400 int y;
2401
4240dd3c
YM
2402 if (s->prev && s->prev->face->underline_p
2403 && s->prev->face->underline_type == FACE_UNDER_LINE)
9b0e3eba
AA
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 }
ef39ccbb 2409 else
9b0e3eba
AA
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 }
ef39ccbb 2450 else
027f6f90 2451 {
9b0e3eba
AA
2452 w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x,
2453 y, s->width, 1);
027f6f90 2454 }
791f420f
JR
2455 }
2456 }
791f420f
JR
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)
027f6f90
JR
2463 {
2464 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x,
9a01ee33 2465 s->y + dy, s->width, h);
027f6f90 2466 }
791f420f
JR
2467 else
2468 {
59508699 2469 w32_fill_area (s->f, s->hdc, s->face->overline_color, s->x,
9a01ee33 2470 s->y + dy, s->width, h);
791f420f
JR
2471 }
2472 }
2473
2474 /* Draw strike-through. */
9ef2e2cf 2475 if (s->face->strike_through_p
ed3751c8 2476 && !FONT_TEXTMETRIC (s->font).tmStruckOut)
791f420f
JR
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 {
def7fa34 2488 w32_fill_area (s->f, s->hdc, s->face->strike_through_color, s->x,
791f420f
JR
2489 s->y + dy, s->width, h);
2490 }
2491 }
2492
027f6f90 2493 /* Draw relief if not yet drawn. */
858a55c1 2494 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
791f420f 2495 x_draw_glyph_string_box (s);
027f6f90
JR
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;
3ca3504a 2518 prev->num_clips = 0;
027f6f90
JR
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;
3ca3504a 2543 next->num_clips = 0;
3057e615 2544 next->clip_head = s->next;
027f6f90
JR
2545 }
2546 }
791f420f
JR
2547 }
2548
2549 /* Reset clipping. */
2550 w32_set_clip_rectangle (s->hdc, NULL);
3ca3504a 2551 s->num_clips = 0;
791f420f
JR
2552}
2553
2554
89271099 2555/* Shift display to make room for inserted glyphs. */
ee78dc32 2556
89271099 2557void
b56ceb92
JB
2558w32_shift_glyphs_for_insert (struct frame *f, int x, int y,
2559 int width, int height, int shift_by)
791f420f 2560{
791f420f
JR
2561 HDC hdc;
2562
791f420f 2563 hdc = get_frame_dc (f);
89271099
KS
2564 BitBlt (hdc, x + shift_by, y, width, height,
2565 hdc, x, y, SRCCOPY);
791f420f 2566
791f420f 2567 release_frame_dc (f, hdc);
ee78dc32 2568}
791f420f
JR
2569
2570
2571/* Delete N glyphs at the nominal cursor position. Not implemented
2572 for X frames. */
ee78dc32 2573
96214669 2574static void
b56ceb92 2575x_delete_glyphs (struct frame *f, register int n)
ee78dc32 2576{
7e6ac5b9
AI
2577 if (! FRAME_W32_P (f))
2578 return;
2579
1088b922 2580 emacs_abort ();
791f420f 2581}
ee78dc32 2582
ee78dc32 2583
7684e57b 2584/* Clear entire frame. */
791f420f 2585
96214669 2586static void
4a418b10 2587x_clear_frame (struct frame *f)
ee78dc32 2588{
7e6ac5b9
AI
2589 if (! FRAME_W32_P (f))
2590 return;
2591
791f420f
JR
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)));
ee78dc32 2595
4d7e6e51 2596 block_input ();
ee78dc32 2597
fbd6baed 2598 w32_clear_window (f);
ee78dc32
GV
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
4d7e6e51 2604 unblock_input ();
ee78dc32 2605}
791f420f 2606
ee78dc32
GV
2607\f
2608/* Make audible bell. */
2609
96214669 2610static void
4a418b10 2611w32_ring_bell (struct frame *f)
ee78dc32 2612{
4d7e6e51 2613 block_input ();
ee78dc32 2614
0f32f023 2615 if (FRAME_W32_P (f) && visible_bell)
8331e676
GV
2616 {
2617 int i;
4a418b10 2618 HWND hwnd = FRAME_W32_WINDOW (f);
8331e676 2619
d67d1627 2620 for (i = 0; i < 5; i++)
8331e676
GV
2621 {
2622 FlashWindow (hwnd, TRUE);
2623 Sleep (10);
2624 }
2625 FlashWindow (hwnd, FALSE);
2626 }
ee78dc32 2627 else
4a418b10 2628 w32_sys_ring_bell (f);
ee78dc32 2629
4d7e6e51 2630 unblock_input ();
ee78dc32 2631}
791f420f 2632
791f420f
JR
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. */
ee78dc32 2639
96214669 2640static void
b56ceb92 2641x_ins_del_lines (struct frame *f, int vpos, int n)
ee78dc32 2642{
7e6ac5b9
AI
2643 if (! FRAME_W32_P (f))
2644 return;
2645
1088b922 2646 emacs_abort ();
ee78dc32 2647}
791f420f
JR
2648
2649
2650/* Scroll part of the display as described by RUN. */
2651
2652static void
b56ceb92 2653x_scroll_run (struct window *w, struct run *run)
791f420f 2654{
d3d50620 2655 struct frame *f = XFRAME (w->frame);
791f420f 2656 int x, y, width, height, from_y, to_y, bottom_y;
4d6e8199
JR
2657 HWND hwnd = FRAME_W32_WINDOW (f);
2658 HRGN expect_dirty;
791f420f
JR
2659
2660 /* Get frame-relative bounding box of the text display area of W,
33c34bea
KS
2661 without mode lines. Include in this box the left and right
2662 fringes of W. */
c3c4768d 2663 window_box (w, ANY_AREA, &x, &y, &width, &height);
791f420f 2664
7db47798
YM
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
791f420f
JR
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;
4d6e8199 2703 expect_dirty = CreateRectRgn (x, y + height, x + width, bottom_y);
791f420f
JR
2704 }
2705 else
2706 {
fa463103 2707 /* Scrolling down. Make sure we don't copy over the mode line.
791f420f
JR
2708 at the bottom. */
2709 if (to_y + run->height > bottom_y)
2710 height = bottom_y - to_y;
2711 else
2712 height = run->height;
4d6e8199 2713 expect_dirty = CreateRectRgn (x, y, x + width, to_y);
791f420f
JR
2714 }
2715
4d7e6e51 2716 block_input ();
d67d1627 2717
791f420f 2718 /* Cursor off. Will be switched on again in x_update_window_end. */
791f420f
JR
2719 x_clear_cursor (w);
2720
4d6e8199
JR
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);
e8ac5d88
JR
2744
2745 DeleteObject (dirty);
2746 DeleteObject (combined);
4d6e8199
JR
2747 }
2748
4d7e6e51 2749 unblock_input ();
e8ac5d88 2750 DeleteObject (expect_dirty);
791f420f
JR
2751}
2752
9ef2e2cf 2753
ee78dc32 2754\f
791f420f
JR
2755/***********************************************************************
2756 Exposure Events
2757 ***********************************************************************/
d67d1627 2758
96214669 2759static void
b56ceb92 2760frame_highlight (struct frame *f)
ee78dc32 2761{
89271099 2762 x_update_cursor (f, 1);
8b61a891 2763 x_set_frame_alpha (f);
89271099 2764}
791f420f 2765
89271099 2766static void
b56ceb92 2767frame_unhighlight (struct frame *f)
89271099
KS
2768{
2769 x_update_cursor (f, 1);
8b61a891 2770 x_set_frame_alpha (f);
89271099 2771}
791f420f 2772
89271099
KS
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. */
791f420f 2778
89271099 2779static void
b56ceb92 2780x_new_focus_frame (struct w32_display_info *dpyinfo, struct frame *frame)
89271099
KS
2781{
2782 struct frame *old_focus = dpyinfo->w32_focus_frame;
791f420f 2783
89271099 2784 if (frame != dpyinfo->w32_focus_frame)
791f420f 2785 {
89271099
KS
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;
791f420f 2789
89271099
KS
2790 if (old_focus && old_focus->auto_lower)
2791 x_lower_frame (old_focus);
791f420f 2792
89271099 2793 if (dpyinfo->w32_focus_frame && dpyinfo->w32_focus_frame->auto_raise)
baed3603 2794 dpyinfo->w32_pending_autoraise_frame = dpyinfo->w32_focus_frame;
2df85294 2795 else
baed3603 2796 dpyinfo->w32_pending_autoraise_frame = NULL;
791f420f 2797 }
89271099
KS
2798
2799 x_frame_rehighlight (dpyinfo);
791f420f
JR
2800}
2801
55131bef
JR
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
2807static void
b56ceb92
JB
2808x_focus_changed (int type, int state, struct w32_display_info *dpyinfo,
2809 struct frame *frame, struct input_event *bufp)
55131bef
JR
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. */
8e50cc2d
SM
2820 if (NILP (Vterminal_frame)
2821 && CONSP (Vframe_list)
2822 && !NILP (XCDR (Vframe_list)))
55131bef 2823 {
945c5bb1 2824 bufp->arg = Qt;
55131bef 2825 }
945c5bb1
JB
2826 else
2827 {
2828 bufp->arg = Qnil;
2829 }
2830
2831 bufp->kind = FOCUS_IN_EVENT;
2832 XSETFRAME (bufp->frame_or_window, frame);
55131bef
JR
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);
945c5bb1
JB
2847
2848 bufp->kind = FOCUS_OUT_EVENT;
2849 XSETFRAME (bufp->frame_or_window, frame);
2850 }
55131bef
JR
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
2862static void
b56ceb92
JB
2863w32_detect_focus_change (struct w32_display_info *dpyinfo, W32Msg *event,
2864 struct input_event *bufp)
55131bef
JR
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
89271099 2880/* Handle an event saying the mouse has moved out of an Emacs frame. */
ee78dc32
GV
2881
2882void
b56ceb92 2883x_mouse_leave (struct w32_display_info *dpyinfo)
ee78dc32 2884{
fbd6baed 2885 x_new_focus_frame (dpyinfo, dpyinfo->w32_focus_event_frame);
ee78dc32
GV
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
9ef2e2cf 2890 mini-buffer frame). Shift the highlight as appropriate.
ee78dc32
GV
2891
2892 The FRAME argument doesn't necessarily have anything to do with which
9ef2e2cf
JR
2893 frame is being highlighted or un-highlighted; we only use it to find
2894 the appropriate X display info. */
2895
ee78dc32 2896static void
b56ceb92 2897w32_frame_rehighlight (struct frame *frame)
ee78dc32 2898{
7e6ac5b9
AI
2899 if (! FRAME_W32_P (frame))
2900 return;
aad3612f 2901 x_frame_rehighlight (FRAME_DISPLAY_INFO (frame));
ee78dc32
GV
2902}
2903
2904static void
b56ceb92 2905x_frame_rehighlight (struct w32_display_info *dpyinfo)
ee78dc32 2906{
4baaed0f 2907 struct frame *old_highlight = dpyinfo->x_highlight_frame;
ee78dc32 2908
fbd6baed 2909 if (dpyinfo->w32_focus_frame)
ee78dc32 2910 {
4baaed0f 2911 dpyinfo->x_highlight_frame
8e50cc2d 2912 = ((FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame)))
fbd6baed
GV
2913 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame))
2914 : dpyinfo->w32_focus_frame);
4baaed0f 2915 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
ee78dc32 2916 {
f00af5b1 2917 fset_focus_frame (dpyinfo->w32_focus_frame, Qnil);
4baaed0f 2918 dpyinfo->x_highlight_frame = dpyinfo->w32_focus_frame;
ee78dc32
GV
2919 }
2920 }
2921 else
4baaed0f 2922 dpyinfo->x_highlight_frame = 0;
ee78dc32 2923
4baaed0f 2924 if (dpyinfo->x_highlight_frame != old_highlight)
ee78dc32
GV
2925 {
2926 if (old_highlight)
2927 frame_unhighlight (old_highlight);
4baaed0f
KS
2928 if (dpyinfo->x_highlight_frame)
2929 frame_highlight (dpyinfo->x_highlight_frame);
ee78dc32
GV
2930 }
2931}
2932\f
2933/* Keyboard processing - modifier keys, etc. */
2934
2935/* Convert a keysym to its name. */
2936
2937char *
b56ceb92 2938x_get_keysym_name (int keysym)
ee78dc32
GV
2939{
2940 /* Make static so we can always return it */
2941 static char value[100];
2942
4d7e6e51 2943 block_input ();
9127e20e 2944 GetKeyNameText (keysym, value, 100);
4d7e6e51 2945 unblock_input ();
ee78dc32
GV
2946
2947 return value;
2948}
9ef2e2cf 2949
b56ceb92
JB
2950static int
2951codepage_for_locale (LCID locale)
13087e59
JR
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}
9ef2e2cf 2960
ee78dc32
GV
2961\f
2962/* Mouse clicks and mouse movement. Rah. */
2963
53823ab9
JR
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. */
d67d1627 2967BOOL
b56ceb92 2968parse_button (int message, int xbutton, int * pbutton, int * pup)
ee78dc32
GV
2969{
2970 int button = 0;
2971 int up = 0;
d67d1627 2972
ee78dc32
GV
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:
fbd6baed 2984 if (NILP (Vw32_swap_mouse_buttons))
52cf03a1
GV
2985 button = 1;
2986 else
2987 button = 2;
ee78dc32
GV
2988 up = 0;
2989 break;
2990 case WM_MBUTTONUP:
fbd6baed 2991 if (NILP (Vw32_swap_mouse_buttons))
52cf03a1
GV
2992 button = 1;
2993 else
2994 button = 2;
ee78dc32
GV
2995 up = 1;
2996 break;
2997 case WM_RBUTTONDOWN:
fbd6baed 2998 if (NILP (Vw32_swap_mouse_buttons))
52cf03a1
GV
2999 button = 2;
3000 else
3001 button = 1;
ee78dc32
GV
3002 up = 0;
3003 break;
3004 case WM_RBUTTONUP:
fbd6baed 3005 if (NILP (Vw32_swap_mouse_buttons))
52cf03a1
GV
3006 button = 2;
3007 else
3008 button = 1;
ee78dc32
GV
3009 up = 1;
3010 break;
53823ab9
JR
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;
ee78dc32
GV
3019 default:
3020 return (FALSE);
3021 }
d67d1627 3022
ee78dc32
GV
3023 if (pup) *pup = up;
3024 if (pbutton) *pbutton = button;
d67d1627 3025
ee78dc32
GV
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
ec48c3a7 3035static Lisp_Object
b56ceb92 3036construct_mouse_click (struct input_event *result, W32Msg *msg, struct frame *f)
ee78dc32
GV
3037{
3038 int button;
3039 int up;
3040
53823ab9
JR
3041 parse_button (msg->msg.message, HIWORD (msg->msg.wParam),
3042 &button, &up);
ee78dc32 3043
3b8f9651 3044 /* Make the event type NO_EVENT; we'll change that when we decide
ee78dc32 3045 otherwise. */
3b8f9651 3046 result->kind = MOUSE_CLICK_EVENT;
ee78dc32
GV
3047 result->code = button;
3048 result->timestamp = msg->msg.time;
3049 result->modifiers = (msg->dwModifiers
3050 | (up
3051 ? up_modifier
3052 : down_modifier));
3053
ec48c3a7
JR
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;
ee78dc32
GV
3059}
3060
ec48c3a7 3061static Lisp_Object
b56ceb92 3062construct_mouse_wheel (struct input_event *result, W32Msg *msg, struct frame *f)
689004fa
GV
3063{
3064 POINT p;
637ad49d
JR
3065 int delta;
3066
1526bc23
JR
3067 result->kind = msg->msg.message == WM_MOUSEHWHEEL ? HORIZ_WHEEL_EVENT
3068 : WHEEL_EVENT;
637ad49d 3069 result->code = 0;
689004fa 3070 result->timestamp = msg->msg.time;
637ad49d
JR
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
8b03732e
JR
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);
9127e20e 3086 ScreenToClient (msg->msg.hwnd, &p);
689004fa
GV
3087 XSETINT (result->x, p.x);
3088 XSETINT (result->y, p.y);
3089 XSETFRAME (result->frame_or_window, f);
7e889510 3090 result->arg = Qnil;
ec48c3a7 3091 return Qnil;
689004fa
GV
3092}
3093
ec48c3a7 3094static Lisp_Object
b56ceb92 3095construct_drag_n_drop (struct input_event *result, W32Msg *msg, struct frame *f)
12857dfd
RS
3096{
3097 Lisp_Object files;
3098 Lisp_Object frame;
3099 HDROP hdrop;
3100 POINT p;
3101 WORD num_files;
819e2da9 3102 guichar_t *name;
89271099 3103 int i, len;
d67d1627 3104
89271099
KS
3105 result->kind = DRAG_N_DROP_EVENT;
3106 result->code = 0;
3107 result->timestamp = msg->msg.time;
3108 result->modifiers = msg->dwModifiers;
791f420f 3109
89271099
KS
3110 hdrop = (HDROP) msg->msg.wParam;
3111 DragQueryPoint (hdrop, &p);
791f420f 3112
89271099
KS
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
791f420f 3118
89271099
KS
3119 XSETINT (result->x, p.x);
3120 XSETINT (result->y, p.y);
791f420f 3121
89271099
KS
3122 num_files = DragQueryFile (hdrop, 0xFFFFFFFF, NULL, 0);
3123 files = Qnil;
ee78dc32 3124
89271099
KS
3125 for (i = 0; i < num_files; i++)
3126 {
819e2da9 3127 len = GUI_FN (DragQueryFile) (hdrop, i, NULL, 0);
89271099
KS
3128 if (len <= 0)
3129 continue;
819e2da9
DC
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
89271099 3136 files = Fcons (DECODE_FILE (build_string (name)), files);
819e2da9 3137#endif /* NTGUI_UNICODE */
ee78dc32
GV
3138 }
3139
89271099 3140 DragFinish (hdrop);
2bf04b9d 3141
89271099 3142 XSETFRAME (frame, f);
00cff0a1
YM
3143 result->frame_or_window = frame;
3144 result->arg = files;
89271099 3145 return Qnil;
ee78dc32
GV
3146}
3147
c5c91b84 3148\f
7f203aa1
EZ
3149#if HAVE_W32NOTIFY
3150
c5c91b84
EZ
3151/* File event notifications (see w32notify.c). */
3152
182b170f 3153Lisp_Object
477f1e50
EZ
3154lispy_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
8db4b52f 3189#ifdef WINDOWSNT
477f1e50
EZ
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. */
3193static void
3194queue_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;
4f0800ec 3217 Lisp_Object cs = intern ("utf-16le");
0b86d359 3218 Lisp_Object obj = w32_get_watch_object (notifications_desc);
477f1e50
EZ
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. */
4f0800ec
EZ
3224 if (info_size
3225 && !NILP (obj) && CONSP (obj))
477f1e50 3226 {
4f0800ec
EZ
3227 Lisp_Object callback = XCDR (obj);
3228
477f1e50
EZ
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
4f0800ec 3237 = code_convert_string_norecord (utf_16_fn, cs, 0);
477f1e50 3238 Lisp_Object action = lispy_file_action (fni->Action);
477f1e50 3239
4f0800ec 3240 event->kind = FILE_NOTIFY_EVENT;
d884121b
EZ
3241 event->code
3242 = (ptrdiff_t)XINT (XIL ((EMACS_INT)notifications_desc));
4f0800ec
EZ
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)++;
477f1e50
EZ
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}
7f203aa1
EZ
3266#endif /* WINDOWSNT */
3267#endif /* HAVE_W32NOTIFY */
477f1e50 3268
89271099
KS
3269\f
3270/* Function to report a mouse movement to the mainstream Emacs code.
3271 The input handler calls this.
ee78dc32 3272
89271099
KS
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. */
31d4844a 3277
fc5c7550 3278static int
a10c8269 3279note_mouse_movement (struct frame *frame, MSG *msg)
ec48c3a7 3280{
18da0d8a 3281 struct w32_display_info *dpyinfo;
89271099
KS
3282 int mouse_x = LOWORD (msg->lParam);
3283 int mouse_y = HIWORD (msg->lParam);
ced135eb 3284 RECT *r;
ec48c3a7 3285
abd49271 3286 if (!FRAME_X_OUTPUT (frame))
027f6f90
JR
3287 return 0;
3288
18da0d8a 3289 dpyinfo = FRAME_DISPLAY_INFO (frame);
ced135eb 3290 dpyinfo->last_mouse_movement_time = msg->time;
18da0d8a
DA
3291 dpyinfo->last_mouse_motion_frame = frame;
3292 dpyinfo->last_mouse_motion_x = mouse_x;
3293 dpyinfo->last_mouse_motion_y = mouse_y;
3294
89271099
KS
3295 if (msg->hwnd != FRAME_W32_WINDOW (frame))
3296 {
3297 frame->mouse_moved = 1;
ced135eb 3298 dpyinfo->last_mouse_scroll_bar = NULL;
89271099 3299 note_mouse_highlight (frame, -1, -1);
ced135eb 3300 dpyinfo->last_mouse_glyph_frame = NULL;
fc5c7550 3301 return 1;
89271099 3302 }
31d4844a 3303
89271099 3304 /* Has the mouse moved off the glyph it was on at the last sighting? */
ced135eb
DA
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)
31d4844a 3309 {
89271099 3310 frame->mouse_moved = 1;
ced135eb 3311 dpyinfo->last_mouse_scroll_bar = NULL;
89271099
KS
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. */
ced135eb
DA
3317 remember_mouse_glyph (frame, mouse_x, mouse_y, r);
3318 dpyinfo->last_mouse_glyph_frame = frame;
fc5c7550 3319 return 1;
31d4844a 3320 }
fc5c7550
YM
3321
3322 return 0;
31d4844a 3323}
89271099 3324
ee78dc32 3325\f
89271099
KS
3326/************************************************************************
3327 Mouse Face
3328 ************************************************************************/
3329
b56ceb92 3330static struct scroll_bar *x_window_to_scroll_bar (Window);
a10c8269 3331static void x_scroll_bar_report_motion (struct frame **, Lisp_Object *,
b56ceb92
JB
3332 enum scroll_bar_part *,
3333 Lisp_Object *, Lisp_Object *,
3334 unsigned long *);
f57e2426 3335static void x_check_fullscreen (struct frame *);
9f5a911b 3336
1bb8a291 3337static void
b56ceb92 3338w32_define_cursor (Window window, Cursor cursor)
89271099
KS
3339{
3340 PostMessage (window, WM_EMACS_SETCURSOR, (WPARAM) cursor, 0);
3341}
ee78dc32
GV
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
9ef2e2cf 3354 Set *time to the server time-stamp for the time at which the mouse
ee78dc32
GV
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
9ef2e2cf 3360 movement. */
ee78dc32
GV
3361
3362static void
a10c8269 3363w32_mouse_position (struct frame **fp, int insist, Lisp_Object *bar_window,
b56ceb92
JB
3364 enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y,
3365 unsigned long *time)
ee78dc32 3366{
a10c8269 3367 struct frame *f1;
7a0c745a 3368 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (*fp);
ee78dc32 3369
4d7e6e51 3370 block_input ();
ee78dc32 3371
ced135eb 3372 if (dpyinfo->last_mouse_scroll_bar && insist == 0)
ee78dc32
GV
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
ced135eb 3384 dpyinfo->last_mouse_scroll_bar = NULL;
d67d1627 3385
ee78dc32
GV
3386 GetCursorPos (&pt);
3387
3388 /* Now we have a position on the root; find the innermost window
3389 containing the pointer. */
3390 {
7a0c745a
DA
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)));
ee78dc32
GV
3396
3397 /* If not, is it one of our scroll bars? */
3398 if (! f1)
3399 {
9127e20e
JR
3400 struct scroll_bar *bar
3401 = x_window_to_scroll_bar (WindowFromPoint (pt));
ee78dc32
GV
3402
3403 if (bar)
3404 {
3405 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3406 }
3407 }
3408
95fa970d 3409 if (f1 == 0 && insist > 0)
791f420f 3410 f1 = SELECTED_FRAME ();
ee78dc32
GV
3411
3412 if (f1)
3413 {
791f420f
JR
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
ced135eb 3422 dpyinfo = FRAME_DISPLAY_INFO (f1);
791f420f 3423 ScreenToClient (FRAME_W32_WINDOW (f1), &pt);
ced135eb
DA
3424 remember_mouse_glyph (f1, pt.x, pt.y, &dpyinfo->last_mouse_glyph);
3425 dpyinfo->last_mouse_glyph_frame = f1;
ee78dc32
GV
3426
3427 *bar_window = Qnil;
3428 *part = 0;
3429 *fp = f1;
3430 XSETINT (*x, pt.x);
3431 XSETINT (*y, pt.y);
ced135eb 3432 *time = dpyinfo->last_mouse_movement_time;
ee78dc32
GV
3433 }
3434 }
3435 }
3436
4d7e6e51 3437 unblock_input ();
ee78dc32 3438}
791f420f 3439
ee78dc32 3440\f
89271099
KS
3441/***********************************************************************
3442 Tool-bars
3443 ***********************************************************************/
3444
3445/* Handle mouse button event on the tool-bar of frame F, at
301b181a 3446 frame-relative coordinates X/Y. EVENT_TYPE is either ButtonPress
09e80d9f 3447 or ButtonRelease. */
89271099
KS
3448
3449static void
b56ceb92 3450w32_handle_tool_bar_click (struct frame *f, struct input_event *button_event)
89271099
KS
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
ee78dc32
GV
3468/* Scroll bar support. */
3469
ec48c3a7 3470/* Given a window ID, find the struct scroll_bar which manages it.
ee78dc32
GV
3471 This can be called in GC, so we have to make sure to strip off mark
3472 bits. */
9ef2e2cf
JR
3473
3474static struct scroll_bar *
b56ceb92 3475x_window_to_scroll_bar (Window window_id)
ee78dc32 3476{
5b04e9f9 3477 Lisp_Object tail, frame;
ee78dc32 3478
5b04e9f9 3479 FOR_EACH_FRAME (tail, frame)
ee78dc32 3480 {
5b04e9f9 3481 Lisp_Object bar, condemned;
ee78dc32
GV
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. */
8e50cc2d 3489 ! NILP (bar) || (bar = condemned,
ee78dc32 3490 condemned = Qnil,
8e50cc2d 3491 ! NILP (bar));
ee78dc32 3492 bar = XSCROLL_BAR (bar)->next)
fbd6baed 3493 if (SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar)) == window_id)
ee78dc32
GV
3494 return XSCROLL_BAR (bar);
3495 }
3496
3497 return 0;
3498}
3499
791f420f
JR
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
3505static void
b56ceb92
JB
3506w32_set_scroll_bar_thumb (struct scroll_bar *bar,
3507 int portion, int position, int whole)
791f420f
JR
3508{
3509 Window w = SCROLL_BAR_W32_WINDOW (bar);
feade168
KS
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;
791f420f
JR
3515 int sb_page, sb_pos;
3516 BOOL draggingp = !NILP (bar->dragging) ? TRUE : FALSE;
818a1a5d 3517 SCROLLINFO si;
791f420f 3518
feade168
KS
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)
791f420f 3528 {
feade168 3529 int near_bottom_p;
4d7e6e51 3530 block_input ();
feade168
KS
3531 si.cbSize = sizeof (si);
3532 si.fMask = SIF_POS | SIF_PAGE;
ed3751c8 3533 GetScrollInfo (w, SB_CTL, &si);
feade168 3534 near_bottom_p = si.nPos + si.nPage >= range;
4d7e6e51 3535 unblock_input ();
feade168
KS
3536 if (!near_bottom_p)
3537 return;
3538 }
f65aa365 3539
791f420f
JR
3540 if (whole)
3541 {
3542 /* Position scroll bar at rock bottom if the bottom of the
9858f6c3 3543 buffer is visible. This avoids shrinking the thumb away
791f420f 3544 to nothing if it is held at the bottom of the buffer. */
feade168
KS
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 }
791f420f
JR
3555 }
3556 else
3557 {
3558 sb_page = range;
3559 sb_pos = 0;
3560 }
3561
feade168
KS
3562 sb_page = max (sb_page, VERTICAL_SCROLL_BAR_MIN_HANDLE);
3563
4d7e6e51 3564 block_input ();
791f420f 3565
818a1a5d 3566 si.cbSize = sizeof (si);
feade168 3567 si.fMask = SIF_PAGE | SIF_POS;
818a1a5d
JR
3568 si.nPage = sb_page;
3569 si.nPos = sb_pos;
3570
feade168 3571 SetScrollInfo (w, SB_CTL, &si, TRUE);
791f420f 3572
4d7e6e51 3573 unblock_input ();
791f420f
JR
3574}
3575
3576\f
3577/************************************************************************
3578 Scroll bars, general
3579 ************************************************************************/
d67d1627 3580
decb374a 3581static HWND
b56ceb92 3582my_create_scrollbar (struct frame * f, struct scroll_bar * bar)
ee78dc32 3583{
689004fa 3584 return (HWND) SendMessage (FRAME_W32_WINDOW (f),
d67d1627 3585 WM_EMACS_CREATESCROLLBAR, (WPARAM) f,
689004fa 3586 (LPARAM) bar);
ee78dc32
GV
3587}
3588
ab76d376 3589/*#define ATTACH_THREADS*/
52cf03a1 3590
14d050df 3591static BOOL
a10c8269 3592my_show_window (struct frame *f, HWND hwnd, int how)
52cf03a1
GV
3593{
3594#ifndef ATTACH_THREADS
689004fa
GV
3595 return SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_SHOWWINDOW,
3596 (WPARAM) hwnd, (LPARAM) how);
52cf03a1 3597#else
689004fa 3598 return ShowWindow (hwnd, how);
52cf03a1
GV
3599#endif
3600}
3601
14d050df 3602static void
52cf03a1 3603my_set_window_pos (HWND hwnd, HWND hwndAfter,
689004fa 3604 int x, int y, int cx, int cy, UINT flags)
52cf03a1
GV
3605{
3606#ifndef ATTACH_THREADS
689004fa
GV
3607 WINDOWPOS pos;
3608 pos.hwndInsertAfter = hwndAfter;
52cf03a1
GV
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
2e6c8532 3620#if 0
14d050df 3621static void
b56ceb92 3622my_set_focus (struct frame * f, HWND hwnd)
689004fa 3623{
d67d1627 3624 SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_SETFOCUS,
689004fa
GV
3625 (WPARAM) hwnd, 0);
3626}
2e6c8532 3627#endif
689004fa 3628
14d050df 3629static void
b56ceb92 3630my_set_foreground_window (HWND hwnd)
ef0e360f
GV
3631{
3632 SendMessage (hwnd, WM_EMACS_SETFOREGROUND, (WPARAM) hwnd, 0);
3633}
3634
14d050df
JB
3635
3636static void
b56ceb92 3637my_destroy_window (struct frame * f, HWND hwnd)
ee78dc32 3638{
d67d1627 3639 SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_DESTROYWINDOW,
ee78dc32
GV
3640 (WPARAM) hwnd, 0);
3641}
3642
85d0efd1
EZ
3643static void
3644my_bring_window_to_top (HWND hwnd)
3645{
3646 SendMessage (hwnd, WM_EMACS_BRINGTOTOP, (WPARAM) hwnd, 0);
3647}
3648
791f420f
JR
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,
e8500ff4 3651 WIDTH and HEIGHT are the pixel coordinates and dimensions of the
791f420f
JR
3652 scroll bar. */
3653
ee78dc32 3654static struct scroll_bar *
b56ceb92 3655x_scroll_bar_create (struct window *w, int top, int left, int width, int height)
ee78dc32 3656{
791f420f
JR
3657 struct frame *f = XFRAME (WINDOW_FRAME (w));
3658 HWND hwnd;
818a1a5d 3659 SCROLLINFO si;
ee78dc32 3660 struct scroll_bar *bar
2fa611b7 3661 = ALLOCATE_PSEUDOVECTOR (struct scroll_bar, fringe_extended_p, PVEC_OTHER);
71688bd7 3662 Lisp_Object barobj;
ee78dc32 3663
4d7e6e51 3664 block_input ();
ee78dc32 3665
791f420f 3666 XSETWINDOW (bar->window, w);
ee78dc32
GV
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;
c8ae93b0 3674 bar->fringe_extended_p = 0;
ee78dc32
GV
3675
3676 /* Requires geometry to be set before call to create the real window */
3677
3678 hwnd = my_create_scrollbar (f, bar);
3679
818a1a5d
JR
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;
689004fa 3687
818a1a5d 3688 SetScrollInfo (hwnd, SB_CTL, &si, FALSE);
ee78dc32 3689
fbd6baed 3690 SET_SCROLL_BAR_W32_WINDOW (bar, hwnd);
ee78dc32
GV
3691
3692 /* Add bar to its frame's list of scroll bars. */
3693 bar->next = FRAME_SCROLL_BARS (f);
3694 bar->prev = Qnil;
71688bd7 3695 XSETVECTOR (barobj, bar);
f00af5b1 3696 fset_scroll_bars (f, barobj);
ee78dc32
GV
3697 if (! NILP (bar->next))
3698 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
3699
4d7e6e51 3700 unblock_input ();
ee78dc32
GV
3701
3702 return bar;
3703}
3704
ee78dc32 3705
791f420f
JR
3706/* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
3707 nil. */
ee78dc32 3708
ee78dc32 3709static void
b56ceb92 3710x_scroll_bar_remove (struct scroll_bar *bar)
ee78dc32 3711{
a10c8269 3712 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
ee78dc32 3713
4d7e6e51 3714 block_input ();
ee78dc32
GV
3715
3716 /* Destroy the window. */
fbd6baed 3717 my_destroy_window (f, SCROLL_BAR_W32_WINDOW (bar));
ee78dc32 3718
99d99081 3719 /* Dissociate this scroll bar from its window. */
e8c17b81 3720 wset_vertical_scroll_bar (XWINDOW (bar->window), Qnil);
ee78dc32 3721
4d7e6e51 3722 unblock_input ();
ee78dc32
GV
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. */
3729static void
b56ceb92
JB
3730w32_set_vertical_scroll_bar (struct window *w,
3731 int portion, int whole, int position)
ee78dc32 3732{
d3d50620 3733 struct frame *f = XFRAME (w->frame);
dd86bd82 3734 Lisp_Object barobj;
ee78dc32 3735 struct scroll_bar *bar;
9ef2e2cf 3736 int top, height, left, sb_left, width, sb_width;
62e50ec6 3737 int window_y, window_height;
c8ae93b0 3738 bool fringe_extended_p;
791f420f
JR
3739
3740 /* Get window dimensions. */
c3c4768d 3741 window_box (w, ANY_AREA, 0, &window_y, 0, &window_height);
791f420f 3742 top = window_y;
62e50ec6 3743 width = WINDOW_CONFIG_SCROLL_BAR_COLS (w) * FRAME_COLUMN_WIDTH (f);
791f420f
JR
3744 height = window_height;
3745
3746 /* Compute the left edge of the scroll bar area. */
62e50ec6 3747 left = WINDOW_SCROLL_BAR_AREA_X (w);
791f420f
JR
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. */
62e50ec6
KS
3751 if (WINDOW_CONFIG_SCROLL_BAR_WIDTH (w) > 0)
3752 sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
791f420f
JR
3753 else
3754 sb_width = width;
ee78dc32 3755
791f420f 3756 /* Compute the left edge of the scroll bar. */
62e50ec6 3757 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
06929222 3758 sb_left = left + (WINDOW_RIGHTMOST_P (w) ? width - sb_width : 0);
ee78dc32 3759 else
06929222
YM
3760 sb_left = left + (WINDOW_LEFTMOST_P (w) ? 0 : width - sb_width);
3761
c8ae93b0 3762 fringe_extended_p = WINDOW_FRINGE_EXTENDED_P (w);
791f420f
JR
3763
3764 /* Does the scroll bar exist yet? */
d3d50620 3765 if (NILP (w->vertical_scroll_bar))
ee78dc32 3766 {
00fe468b 3767 HDC hdc;
4d7e6e51 3768 block_input ();
6ff3e5e3 3769 if (width > 0 && height > 0)
9f5a911b
JR
3770 {
3771 hdc = get_frame_dc (f);
06929222
YM
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);
9f5a911b
JR
3776 release_frame_dc (f, hdc);
3777 }
4d7e6e51 3778 unblock_input ();
00fe468b 3779
791f420f 3780 bar = x_scroll_bar_create (w, top, sb_left, sb_width, height);
ee78dc32 3781 }
791f420f
JR
3782 else
3783 {
d67d1627 3784 /* It may just need to be moved and resized. */
791f420f
JR
3785 HWND hwnd;
3786
d3d50620 3787 bar = XSCROLL_BAR (w->vertical_scroll_bar);
791f420f
JR
3788 hwnd = SCROLL_BAR_W32_WINDOW (bar);
3789
3790 /* If already correctly positioned, do nothing. */
c8ae93b0
DA
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)
791f420f
JR
3796 {
3797 /* Redraw after clear_frame. */
3798 if (!my_show_window (f, hwnd, SW_NORMAL))
3799 InvalidateRect (hwnd, NULL, FALSE);
3800 }
3801 else
3802 {
00fe468b 3803 HDC hdc;
818a1a5d
JR
3804 SCROLLINFO si;
3805
4d7e6e51 3806 block_input ();
9f5a911b
JR
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. */
06929222
YM
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);
9f5a911b
JR
3816 release_frame_dc (f, hdc);
3817 }
791f420f
JR
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);
0eed0355 3821 MoveWindow (hwnd, sb_left, top, sb_width,
9f5a911b 3822 max (height, 1), TRUE);
ee78dc32 3823
818a1a5d
JR
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);
ee78dc32 3831
791f420f 3832 my_show_window (f, hwnd, SW_NORMAL);
ab76d376 3833 /* InvalidateRect (w, NULL, FALSE); */
791f420f
JR
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
4d7e6e51 3841 unblock_input ();
791f420f
JR
3842 }
3843 }
c8ae93b0 3844 bar->fringe_extended_p = fringe_extended_p;
06929222 3845
791f420f 3846 w32_set_scroll_bar_thumb (bar, portion, position, whole);
dd86bd82 3847 XSETVECTOR (barobj, bar);
e8c17b81 3848 wset_vertical_scroll_bar (w, barobj);
ee78dc32
GV
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
9ef2e2cf
JR
3862 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
3863
ee78dc32 3864static void
a10c8269 3865w32_condemn_scroll_bars (struct frame *frame)
ee78dc32 3866{
ef0e360f
GV
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);
f00af5b1 3872 fset_scroll_bars (frame, XSCROLL_BAR (bar)->next);
ef0e360f
GV
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;
f00af5b1 3877 fset_condemned_scroll_bars (frame, bar);
ef0e360f 3878 }
ee78dc32
GV
3879}
3880
c2cc16fa 3881
9ef2e2cf 3882/* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
ee78dc32 3883 Note that WINDOW isn't necessarily condemned at all. */
c2cc16fa 3884
ee78dc32 3885static void
b56ceb92 3886w32_redeem_scroll_bar (struct window *window)
ee78dc32
GV
3887{
3888 struct scroll_bar *bar;
71688bd7 3889 Lisp_Object barobj;
c2cc16fa 3890 struct frame *f;
ee78dc32
GV
3891
3892 /* We can't redeem this window's scroll bar if it doesn't have one. */
d3d50620 3893 if (NILP (window->vertical_scroll_bar))
1088b922 3894 emacs_abort ();
ee78dc32 3895
d3d50620 3896 bar = XSCROLL_BAR (window->vertical_scroll_bar);
ee78dc32 3897
ef0e360f 3898 /* Unlink it from the condemned list. */
c2cc16fa
JR
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. */
d3d50620 3904 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
c2cc16fa
JR
3905 /* It's not condemned. Everything's fine. */
3906 return;
3907 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
d3d50620 3908 window->vertical_scroll_bar))
f00af5b1 3909 fset_condemned_scroll_bars (f, bar->next);
c2cc16fa
JR
3910 else
3911 /* If its prev pointer is nil, it must be at the front of
3912 one or the other! */
1088b922 3913 emacs_abort ();
c2cc16fa
JR
3914 }
3915 else
3916 XSCROLL_BAR (bar->prev)->next = bar->next;
ef0e360f 3917
c2cc16fa
JR
3918 if (! NILP (bar->next))
3919 XSCROLL_BAR (bar->next)->prev = bar->prev;
ef0e360f 3920
c2cc16fa
JR
3921 bar->next = FRAME_SCROLL_BARS (f);
3922 bar->prev = Qnil;
71688bd7 3923 XSETVECTOR (barobj, bar);
f00af5b1 3924 fset_scroll_bars (f, barobj);
c2cc16fa
JR
3925 if (! NILP (bar->next))
3926 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
ee78dc32
GV
3927}
3928
3929/* Remove all scroll bars on FRAME that haven't been saved since the
3930 last call to `*condemn_scroll_bars_hook'. */
9ef2e2cf 3931
ee78dc32 3932static void
a10c8269 3933w32_judge_scroll_bars (struct frame *f)
ee78dc32
GV
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. */
f00af5b1 3941 fset_condemned_scroll_bars (f, Qnil);
ee78dc32
GV
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
3b8f9651 3958 is set to something other than NO_EVENT, it is enqueued.
ee78dc32
GV
3959
3960 This may be called from a signal handler, so we have to ignore GC
3961 mark bits. */
2c28562d 3962
52cf03a1 3963static int
b56ceb92
JB
3964w32_scroll_bar_handle_click (struct scroll_bar *bar, W32Msg *msg,
3965 struct input_event *emacs_event)
ee78dc32 3966{
8e50cc2d 3967 if (! WINDOWP (bar->window))
1088b922 3968 emacs_abort ();
ee78dc32 3969
4b219faa 3970 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
ee78dc32 3971 emacs_event->code = 0;
52cf03a1
GV
3972 /* not really meaningful to distinguish up/down */
3973 emacs_event->modifiers = msg->dwModifiers;
ee78dc32 3974 emacs_event->frame_or_window = bar->window;
7e889510 3975 emacs_event->arg = Qnil;
ee78dc32
GV
3976 emacs_event->timestamp = msg->msg.time;
3977
3978 {
791f420f 3979 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
689004fa
GV
3980 int y;
3981 int dragging = !NILP (bar->dragging);
818a1a5d 3982 SCROLLINFO si;
689004fa 3983
818a1a5d
JR
3984 si.cbSize = sizeof (si);
3985 si.fMask = SIF_POS;
689004fa 3986
818a1a5d
JR
3987 GetScrollInfo ((HWND) msg->msg.lParam, SB_CTL, &si);
3988 y = si.nPos;
689004fa
GV
3989
3990 bar->dragging = Qnil;
ced135eb 3991 FRAME_DISPLAY_INFO (f)->last_mouse_scroll_bar_pos = msg->msg.wParam;
d67d1627 3992
ee78dc32 3993 switch (LOWORD (msg->msg.wParam))
2c28562d 3994 {
2c28562d 3995 case SB_LINEDOWN:
52cf03a1 3996 emacs_event->part = scroll_bar_down_arrow;
ee78dc32 3997 break;
2c28562d 3998 case SB_LINEUP:
52cf03a1 3999 emacs_event->part = scroll_bar_up_arrow;
ee78dc32 4000 break;
2c28562d 4001 case SB_PAGEUP:
ee78dc32
GV
4002 emacs_event->part = scroll_bar_above_handle;
4003 break;
2c28562d 4004 case SB_PAGEDOWN:
ee78dc32
GV
4005 emacs_event->part = scroll_bar_below_handle;
4006 break;
2c28562d 4007 case SB_TOP:
ee78dc32
GV
4008 emacs_event->part = scroll_bar_handle;
4009 y = 0;
4010 break;
2c28562d 4011 case SB_BOTTOM:
ee78dc32
GV
4012 emacs_event->part = scroll_bar_handle;
4013 y = top_range;
4014 break;
689004fa 4015 case SB_THUMBTRACK:
2c28562d 4016 case SB_THUMBPOSITION:
791f420f
JR
4017 if (VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height)) <= 0xffff)
4018 y = HIWORD (msg->msg.wParam);
689004fa 4019 bar->dragging = Qt;
ee78dc32 4020 emacs_event->part = scroll_bar_handle;
689004fa
GV
4021
4022 /* "Silently" update current position. */
818a1a5d
JR
4023 {
4024 SCROLLINFO si;
689004fa 4025
818a1a5d
JR
4026 si.cbSize = sizeof (si);
4027 si.fMask = SIF_POS;
4028 si.nPos = y;
4029 /* Remember apparent position (we actually lag behind the real
e8500ff4 4030 position, so don't set that directly). */
818a1a5d 4031 last_scroll_bar_drag_pos = y;
689004fa 4032
818a1a5d
JR
4033 SetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, FALSE);
4034 }
ee78dc32 4035 break;
2c28562d 4036 case SB_ENDSCROLL:
689004fa
GV
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 {
818a1a5d
JR
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);
689004fa
GV
4051 }
4052 /* fall through */
2c28562d 4053 default:
3b8f9651 4054 emacs_event->kind = NO_EVENT;
52cf03a1 4055 return FALSE;
2c28562d 4056 }
52cf03a1 4057
ee78dc32
GV
4058 XSETINT (emacs_event->x, y);
4059 XSETINT (emacs_event->y, top_range);
52cf03a1
GV
4060
4061 return TRUE;
ee78dc32
GV
4062 }
4063}
4064
4065/* Return information to the user about the current position of the mouse
4066 on the scroll bar. */
9ef2e2cf 4067
ee78dc32 4068static void
a10c8269 4069x_scroll_bar_report_motion (struct frame **fp, Lisp_Object *bar_window,
b56ceb92
JB
4070 enum scroll_bar_part *part,
4071 Lisp_Object *x, Lisp_Object *y,
4072 unsigned long *time)
ee78dc32 4073{
ced135eb
DA
4074 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (*fp);
4075 struct scroll_bar *bar = dpyinfo->last_mouse_scroll_bar;
fbd6baed 4076 Window w = SCROLL_BAR_W32_WINDOW (bar);
a10c8269 4077 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
ee78dc32 4078 int pos;
791f420f 4079 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
818a1a5d 4080 SCROLLINFO si;
ee78dc32 4081
4d7e6e51 4082 block_input ();
ee78dc32
GV
4083
4084 *fp = f;
4085 *bar_window = bar->window;
4086
818a1a5d
JR
4087 si.cbSize = sizeof (si);
4088 si.fMask = SIF_POS | SIF_PAGE | SIF_RANGE;
689004fa 4089
818a1a5d
JR
4090 GetScrollInfo (w, SB_CTL, &si);
4091 pos = si.nPos;
4092 top_range = si.nMax - si.nPage + 1;
ee78dc32 4093
ced135eb 4094 switch (LOWORD (dpyinfo->last_mouse_scroll_bar_pos))
ee78dc32
GV
4095 {
4096 case SB_THUMBPOSITION:
4097 case SB_THUMBTRACK:
4098 *part = scroll_bar_handle;
791f420f 4099 if (VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height)) <= 0xffff)
ced135eb 4100 pos = HIWORD (dpyinfo->last_mouse_scroll_bar_pos);
ee78dc32
GV
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
9127e20e
JR
4111 XSETINT (*x, pos);
4112 XSETINT (*y, top_range);
ee78dc32
GV
4113
4114 f->mouse_moved = 0;
ced135eb 4115 dpyinfo->last_mouse_scroll_bar = NULL;
ee78dc32 4116
ced135eb 4117 *time = dpyinfo->last_mouse_movement_time;
ee78dc32 4118
4d7e6e51 4119 unblock_input ();
ee78dc32
GV
4120}
4121
9ef2e2cf 4122
ee78dc32
GV
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. */
9ef2e2cf 4127
791f420f 4128void
a10c8269 4129x_scroll_bar_clear (struct frame *f)
ee78dc32 4130{
ee78dc32
GV
4131 Lisp_Object bar;
4132
9ef2e2cf
JR
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;
52cf03a1 4143
9ef2e2cf
JR
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);
689004fa 4147
9ef2e2cf
JR
4148 GetClientRect (window, &rect);
4149 select_palette (f, hdc);
4150 w32_clear_rect (f, hdc, &rect);
4151 deselect_palette (f, hdc);
689004fa 4152
9ef2e2cf
JR
4153 ReleaseDC (window, hdc);
4154 }
52cf03a1
GV
4155}
4156
ee78dc32 4157\f
fbd6baed 4158/* The main W32 event-reading loop - w32_read_socket. */
ee78dc32
GV
4159
4160/* Record the last 100 characters stored
4161 to help debug the loss-of-chars-during-GC problem. */
9ef2e2cf
JR
4162
4163static int temp_index;
4164static short temp_buffer[100];
ee78dc32 4165
2e3566d8
JR
4166/* Temporarily store lead byte of DBCS input sequences. */
4167static char dbcs_lead = 0;
afd153f0 4168
fbd6baed 4169/* Read events coming from the W32 shell.
ee78dc32
GV
4170 This routine is called by the SIGIO handler.
4171 We return as soon as there are no more events to be read.
4172
d263a633
EZ
4173 For an overview of how Emacs input works on MS-Windows, see the
4174 commentary before w32_msg_pump in w32fns.c.
4175
ee78dc32
GV
4176 We return the number of characters stored into the buffer,
4177 thus pretending to be `read'.
4178
ee78dc32 4179 Some of these messages are reposted back to the message queue since the
d67d1627 4180 system calls the windows proc directly in a context where we cannot return
decb374a 4181 the data nor can we guarantee the state we are in. So if we dispatch them
ee78dc32
GV
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
d67d1627 4184 which message we are processing since the windows proc gets called
e9e23e23 4185 recursively with different messages by the system.
ee78dc32
GV
4186*/
4187
24f981c9 4188static int
f75beb47 4189w32_read_socket (struct terminal *terminal,
b56ceb92 4190 struct input_event *hold_quit)
ee78dc32
GV
4191{
4192 int count = 0;
689004fa 4193 int check_visibility = 0;
fbd6baed 4194 W32Msg msg;
ee78dc32 4195 struct frame *f;
fbd6baed 4196 struct w32_display_info *dpyinfo = &one_w32_display_info;
bbf534ce 4197 Mouse_HLInfo *hlinfo = &dpyinfo->mouse_highlight;
0fda9b75 4198 static char buf[1];
ee78dc32 4199
4d7e6e51 4200 block_input ();
ee78dc32
GV
4201
4202 /* So people can tell when we have read the available input. */
4203 input_signal_count++;
4204
0fda9b75
DC
4205 /* Process any incoming thread messages. */
4206 drain_message_queue ();
4207
07c07cfe 4208 /* TODO: ghostscript integration. */
52cf03a1 4209 while (get_next_msg (&msg, FALSE))
ee78dc32 4210 {
6b61353c
KH
4211 struct input_event inev;
4212 int do_help = 0;
4213
0fda9b75
DC
4214 /* DebPrint (("w32_read_socket: %s time:%u\n", */
4215 /* w32_name_of_message (msg.msg.message), */
4216 /* msg.msg.time)); */
4217
6b61353c
KH
4218 EVENT_INIT (inev);
4219 inev.kind = NO_EVENT;
4220 inev.arg = Qnil;
4221
ee78dc32
GV
4222 switch (msg.msg.message)
4223 {
f7b146dc 4224 case WM_EMACS_PAINT:
9f5a911b 4225 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
ee78dc32 4226
d67d1627 4227 if (f)
9f5a911b
JR
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,
e69b0960 4235 SDATA (f->name)));
9f5a911b 4236 }
edfa7fa0 4237 else if (FRAME_VISIBLE_P (f) != 1)
9f5a911b 4238 {
edfa7fa0
DA
4239 bool iconified = FRAME_ICONIFIED_P (f);
4240
9f5a911b 4241 /* Definitely not obscured, so mark as visible. */
edfa7fa0
DA
4242 SET_FRAME_VISIBLE (f, 1);
4243 SET_FRAME_ICONIFIED (f, 0);
9f5a911b 4244 SET_FRAME_GARBAGED (f);
a8f93651
EZ
4245 if (!f->output_data.w32->asked_for_visible)
4246 DebPrint (("frame %p (%s) reexposed by WM_PAINT\n", f,
4247 SDATA (f->name)));
9f5a911b
JR
4248
4249 /* WM_PAINT serves as MapNotify as well, so report
4250 visibility changes properly. */
edfa7fa0 4251 if (iconified)
9f5a911b 4252 {
6b61353c
KH
4253 inev.kind = DEICONIFY_EVENT;
4254 XSETFRAME (inev.frame_or_window, f);
9f5a911b 4255 }
edfa7fa0 4256 else if (!NILP (Vframe_list) && !NILP (XCDR (Vframe_list)))
9f5a911b
JR
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 }
52cf03a1 4275 break;
689004fa 4276
f98169a0
GV
4277 case WM_INPUTLANGCHANGE:
4278 /* Generate a language change event. */
4279 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4280
0bd8297f
EZ
4281 /* lParam contains the input language ID in its low 16 bits.
4282 Use it to update our record of the keyboard codepage. */
302fc036
EZ
4283 w32_keyboard_codepage = codepage_for_locale ((LCID)(msg.msg.lParam
4284 & 0xffff));
13087e59 4285
f98169a0
GV
4286 if (f)
4287 {
6b61353c
KH
4288 inev.kind = LANGUAGE_CHANGE_EVENT;
4289 XSETFRAME (inev.frame_or_window, f);
302fc036 4290 inev.code = w32_keyboard_codepage;
6b61353c 4291 inev.modifiers = msg.msg.lParam & 0xffff;
f98169a0
GV
4292 }
4293 break;
4294
ee78dc32
GV
4295 case WM_KEYDOWN:
4296 case WM_SYSKEYDOWN:
4297 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
d67d1627 4298
edfa7fa0 4299 if (f && !FRAME_ICONIFIED_P (f))
ee78dc32 4300 {
bbf534ce 4301 if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
e69b0960 4302 && !EQ (f->tool_bar_window, hlinfo->mouse_face_window))
3d26a7c2 4303 {
bbf534ce
EZ
4304 clear_mouse_face (hlinfo);
4305 hlinfo->mouse_face_hidden = 1;
3d26a7c2
KS
4306 }
4307
ee78dc32
GV
4308 if (temp_index == sizeof temp_buffer / sizeof (short))
4309 temp_index = 0;
4310 temp_buffer[temp_index++] = msg.msg.wParam;
6b61353c
KH
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;
ee78dc32
GV
4316 }
4317 break;
689004fa 4318
a60b0333 4319 case WM_UNICHAR:
ee78dc32
GV
4320 case WM_SYSCHAR:
4321 case WM_CHAR:
4322 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
d67d1627 4323
edfa7fa0 4324 if (f && !FRAME_ICONIFIED_P (f))
ee78dc32 4325 {
bbf534ce 4326 if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
e69b0960 4327 && !EQ (f->tool_bar_window, hlinfo->mouse_face_window))
3d26a7c2 4328 {
bbf534ce
EZ
4329 clear_mouse_face (hlinfo);
4330 hlinfo->mouse_face_hidden = 1;
3d26a7c2
KS
4331 }
4332
f98169a0
GV
4333 if (temp_index == sizeof temp_buffer / sizeof (short))
4334 temp_index = 0;
4335 temp_buffer[temp_index++] = msg.msg.wParam;
480cb5d2
JR
4336
4337 inev.modifiers = msg.dwModifiers;
4338 XSETFRAME (inev.frame_or_window, f);
4339 inev.timestamp = msg.msg.time;
4340
a60b0333
JR
4341 if (msg.msg.message == WM_UNICHAR)
4342 {
a60b0333
JR
4343 inev.code = msg.msg.wParam;
4344 }
480cb5d2
JR
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;
302fc036 4356 if (!MultiByteToWideChar (w32_keyboard_codepage, 0,
13087e59 4357 dbcs, 2, &code, 1))
480cb5d2
JR
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 }
302fc036 4366 else if (IsDBCSLeadByteEx (w32_keyboard_codepage,
13087e59 4367 (BYTE) msg.msg.wParam))
480cb5d2
JR
4368 {
4369 dbcs_lead = (char) msg.msg.wParam;
4370 inev.kind = NO_EVENT;
4371 break;
4372 }
4373 else
4374 {
302fc036 4375 if (!MultiByteToWideChar (w32_keyboard_codepage, 0,
13087e59 4376 &dbcs[1], 1, &code, 1))
480cb5d2
JR
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 }
a60b0333
JR
4386 else
4387 {
480cb5d2
JR
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;
a60b0333 4393 }
480cb5d2
JR
4394 inev.kind = inev.code < 128 ? ASCII_KEYSTROKE_EVENT
4395 : MULTIBYTE_CHAR_KEYSTROKE_EVENT;
ee78dc32
GV
4396 }
4397 break;
689004fa 4398
4b219faa
JR
4399 case WM_APPCOMMAND:
4400 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4401
edfa7fa0 4402 if (f && !FRAME_ICONIFIED_P (f))
4b219faa 4403 {
bbf534ce 4404 if (!hlinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
e69b0960 4405 && !EQ (f->tool_bar_window, hlinfo->mouse_face_window))
4b219faa 4406 {
bbf534ce
EZ
4407 clear_mouse_face (hlinfo);
4408 hlinfo->mouse_face_hidden = 1;
4b219faa
JR
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;
ed3751c8 4415 inev.code = GET_APPCOMMAND_LPARAM (msg.msg.lParam);
4b219faa
JR
4416 inev.modifiers = msg.dwModifiers;
4417 XSETFRAME (inev.frame_or_window, f);
4418 inev.timestamp = msg.msg.time;
4419 }
4420 break;
65a6ff8f 4421
ee78dc32 4422 case WM_MOUSEMOVE:
706ddb8f
JR
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
89271099 4433 previous_help_echo_string = help_echo_string;
fc5c7550 4434 help_echo_string = Qnil;
791f420f 4435
7a0c745a
DA
4436 f = (x_mouse_grabbed (dpyinfo) ? dpyinfo->last_mouse_frame
4437 : x_window_to_frame (dpyinfo, msg.msg.hwnd));
d67d1627 4438
bbf534ce 4439 if (hlinfo->mouse_face_hidden)
3d26a7c2 4440 {
bbf534ce
EZ
4441 hlinfo->mouse_face_hidden = 0;
4442 clear_mouse_face (hlinfo);
3d26a7c2
KS
4443 }
4444
ee78dc32 4445 if (f)
a18bb28d
JR
4446 {
4447 /* Generate SELECT_WINDOW_EVENTs when needed. */
92b23323 4448 if (!NILP (Vmouse_autoselect_window))
a18bb28d 4449 {
1fccc530
DA
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);
a18bb28d
JR
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
e0f24100 4457 only when it is active. */
ed3751c8 4458 if (WINDOWP (window)
1fccc530 4459 && !EQ (window, last_mouse_window)
74a9b36f
MR
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
d3d50620
DA
4465 || (EQ (XWINDOW (window)->frame,
4466 XWINDOW (selected_window)->frame))))
a18bb28d 4467 {
6b61353c
KH
4468 inev.kind = SELECT_WINDOW_EVENT;
4469 inev.frame_or_window = window;
a18bb28d 4470 }
1fccc530
DA
4471 /* Remember the last window where we saw the mouse. */
4472 last_mouse_window = window;
a18bb28d 4473 }
fc5c7550
YM
4474 if (!note_mouse_movement (f, &msg.msg))
4475 help_echo_string = previous_help_echo_string;
a18bb28d 4476 }
ee78dc32 4477 else
791f420f
JR
4478 {
4479 /* If we move outside the frame, then we're
4480 certainly no longer on any text in the frame. */
bbf534ce 4481 clear_mouse_face (hlinfo);
791f420f
JR
4482 }
4483
89271099 4484 /* If the contents of the global variable help_echo_string
791f420f 4485 has changed, generate a HELP_EVENT. */
646b5f55 4486#if 0 /* The below is an invalid comparison when CHECK_LISP_OBJECT_TYPE.
e597eb7d
JR
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. */
89271099
KS
4489 if (help_echo_string != previous_help_echo_string ||
4490 (!NILP (help_echo_string) && !STRINGP (help_echo_string) && f->mouse_moved))
e597eb7d
JR
4491#else /* This is what xterm.c does. */
4492 if (!NILP (help_echo_string)
4493 || !NILP (previous_help_echo_string))
6b61353c 4494 do_help = 1;
e597eb7d 4495#endif
791f420f 4496 break;
689004fa 4497
ee78dc32
GV
4498 case WM_LBUTTONDOWN:
4499 case WM_LBUTTONUP:
4500 case WM_MBUTTONDOWN:
4501 case WM_MBUTTONUP:
4502 case WM_RBUTTONDOWN:
4503 case WM_RBUTTONUP:
53823ab9
JR
4504 case WM_XBUTTONDOWN:
4505 case WM_XBUTTONUP:
ee78dc32 4506 {
791f420f
JR
4507 /* If we decide we want to generate an event to be seen
4508 by the rest of Emacs, we put it here. */
d7e6881a 4509 bool tool_bar_p = 0;
ee78dc32
GV
4510 int button;
4511 int up;
791f420f 4512
7a0c745a
DA
4513 f = (x_mouse_grabbed (dpyinfo) ? dpyinfo->last_mouse_frame
4514 : x_window_to_frame (dpyinfo, msg.msg.hwnd));
d67d1627 4515
ee78dc32
GV
4516 if (f)
4517 {
6b61353c 4518 construct_mouse_click (&inev, &msg, f);
d67d1627 4519
791f420f 4520 /* Is this in the tool-bar? */
e69b0960
DA
4521 if (WINDOWP (f->tool_bar_window)
4522 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)))
791f420f
JR
4523 {
4524 Lisp_Object window;
6b61353c
KH
4525 int x = XFASTINT (inev.x);
4526 int y = XFASTINT (inev.y);
791f420f 4527
9173a8fb 4528 window = window_from_coordinates (f, x, y, 0, 1);
b8b47c19 4529
e69b0960 4530 if (EQ (window, f->tool_bar_window))
791f420f 4531 {
6b61353c 4532 w32_handle_tool_bar_click (f, &inev);
791f420f
JR
4533 tool_bar_p = 1;
4534 }
4535 }
4536
6b61353c
KH
4537 if (tool_bar_p
4538 || (dpyinfo->w32_focus_frame
4539 && f != dpyinfo->w32_focus_frame))
4540 inev.kind = NO_EVENT;
ee78dc32 4541 }
d67d1627 4542
53823ab9
JR
4543 parse_button (msg.msg.message, HIWORD (msg.msg.wParam),
4544 &button, &up);
4545
ee78dc32
GV
4546 if (up)
4547 {
4548 dpyinfo->grabbed &= ~ (1 << button);
4549 }
4550 else
4551 {
4552 dpyinfo->grabbed |= (1 << button);
7a0c745a 4553 dpyinfo->last_mouse_frame = f;
791f420f
JR
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;
ee78dc32 4563 }
689004fa 4564 break;
ee78dc32 4565 }
d67d1627 4566
1c64a4a2 4567 case WM_MOUSEWHEEL:
1526bc23 4568 case WM_MOUSEHWHEEL:
1c64a4a2 4569 {
7a0c745a
DA
4570 f = (x_mouse_grabbed (dpyinfo) ? dpyinfo->last_mouse_frame
4571 : x_window_to_frame (dpyinfo, msg.msg.hwnd));
1c64a4a2
JB
4572
4573 if (f)
4574 {
1c64a4a2 4575
6b61353c
KH
4576 if (!dpyinfo->w32_focus_frame
4577 || f == dpyinfo->w32_focus_frame)
1c64a4a2 4578 {
637ad49d 4579 /* Emit an Emacs wheel-up/down event. */
6b61353c 4580 construct_mouse_wheel (&inev, &msg, f);
1c64a4a2 4581 }
637ad49d
JR
4582 /* Ignore any mouse motion that happened before this
4583 event; any subsequent mouse-movement Emacs events
4584 should reflect only motion after the
db9cd97a 4585 ButtonPress. */
637ad49d 4586 f->mouse_moved = 0;
1c64a4a2 4587 }
7a0c745a 4588 dpyinfo->last_mouse_frame = f;
637ad49d 4589 last_tool_bar_item = -1;
1c64a4a2 4590 }
ee78dc32 4591 break;
689004fa 4592
12857dfd
RS
4593 case WM_DROPFILES:
4594 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4595
4596 if (f)
6b61353c 4597 construct_drag_n_drop (&inev, &msg, f);
12857dfd
RS
4598 break;
4599
ee78dc32
GV
4600 case WM_VSCROLL:
4601 {
689004fa
GV
4602 struct scroll_bar *bar =
4603 x_window_to_scroll_bar ((HWND)msg.msg.lParam);
d67d1627 4604
6b61353c
KH
4605 if (bar)
4606 w32_scroll_bar_handle_click (bar, &msg, &inev);
689004fa 4607 break;
ee78dc32 4608 }
d67d1627 4609
689004fa
GV
4610 case WM_WINDOWPOSCHANGED:
4611 case WM_ACTIVATE:
4612 case WM_ACTIVATEAPP:
549808db
JR
4613 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4614 if (f)
c7ffccaf 4615 {
a5cc4dde
EZ
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))
c7ffccaf
EZ
4625 w32fullscreen_hook (f);
4626 x_check_fullscreen (f);
4627 }
689004fa 4628 check_visibility = 1;
ee78dc32 4629 break;
689004fa 4630
ee78dc32
GV
4631 case WM_MOVE:
4632 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
d67d1627 4633
edfa7fa0 4634 if (f && !FRAME_ICONIFIED_P (f))
0791d107 4635 x_real_positions (f, &f->left_pos, &f->top_pos);
689004fa
GV
4636
4637 check_visibility = 1;
4638 break;
4639
4640 case WM_SHOWWINDOW:
b71b8111
JR
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;
18da0d8a 4647 x_redo_mouse_highlight (dpyinfo);
b71b8111
JR
4648 }
4649
689004fa 4650 /* If window has been obscured or exposed by another window
53964682 4651 being maximized or minimized/restored, then recheck
689004fa
GV
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;
ee78dc32 4665 break;
689004fa 4666
ee78dc32
GV
4667 case WM_SIZE:
4668 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
d67d1627 4669
689004fa
GV
4670 /* Inform lisp of whether frame has been iconified etc. */
4671 if (f)
ee78dc32 4672 {
689004fa 4673 switch (msg.msg.wParam)
ee78dc32 4674 {
689004fa 4675 case SIZE_MINIMIZED:
edfa7fa0
DA
4676 SET_FRAME_VISIBLE (f, 0);
4677 SET_FRAME_ICONIFIED (f, 1);
d67d1627 4678
6b61353c
KH
4679 inev.kind = ICONIFY_EVENT;
4680 XSETFRAME (inev.frame_or_window, f);
689004fa
GV
4681 break;
4682
4683 case SIZE_MAXIMIZED:
4684 case SIZE_RESTORED:
edfa7fa0
DA
4685 {
4686 bool iconified = FRAME_ICONIFIED_P (f);
d67d1627 4687
a8f93651
EZ
4688 if (iconified)
4689 SET_FRAME_VISIBLE (f, 1);
edfa7fa0 4690 SET_FRAME_ICONIFIED (f, 0);
d67d1627 4691
edfa7fa0
DA
4692 /* wait_reading_process_output will notice this
4693 and update the frame's display structures. */
4694 SET_FRAME_GARBAGED (f);
31d4844a 4695
edfa7fa0
DA
4696 if (iconified)
4697 {
edfa7fa0
DA
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. */
0791d107 4703 x_real_positions (f, &f->left_pos, &f->top_pos);
edfa7fa0
DA
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 }
689004fa 4715 break;
ee78dc32 4716 }
ee78dc32 4717 }
689004fa 4718
edfa7fa0 4719 if (f && !FRAME_ICONIFIED_P (f) && msg.msg.wParam != SIZE_MINIMIZED)
ef0e360f
GV
4720 {
4721 RECT rect;
4722 int rows;
4723 int columns;
4724 int width;
4725 int height;
d67d1627 4726
9127e20e 4727 GetClientRect (msg.msg.hwnd, &rect);
d67d1627 4728
ef0e360f
GV
4729 height = rect.bottom - rect.top;
4730 width = rect.right - rect.left;
d67d1627 4731
62e50ec6
KS
4732 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, height);
4733 columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, width);
d67d1627 4734
ef0e360f 4735 /* TODO: Clip size to the screen dimensions. */
d67d1627 4736
ef0e360f
GV
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. */
d67d1627 4740
62e50ec6
KS
4741 if (columns != FRAME_COLS (f)
4742 || rows != FRAME_LINES (f)
4743 || width != FRAME_PIXEL_WIDTH (f)
4744 || height != FRAME_PIXEL_HEIGHT (f))
ef0e360f 4745 {
791f420f 4746 change_frame_size (f, rows, columns, 0, 1, 0);
ef0e360f 4747 SET_FRAME_GARBAGED (f);
31d4844a 4748 cancel_mouse_face (f);
62e50ec6
KS
4749 FRAME_PIXEL_WIDTH (f) = width;
4750 FRAME_PIXEL_HEIGHT (f) = height;
4751 f->win_gravity = NorthWestGravity;
ef0e360f
GV
4752 }
4753 }
4754
689004fa
GV
4755 check_visibility = 1;
4756 break;
4757
1576fbfa
JR
4758 case WM_MOUSELEAVE:
4759 f = x_any_window_to_frame (dpyinfo, msg.msg.hwnd);
4760 if (f)
4761 {
bbf534ce 4762 if (f == hlinfo->mouse_face_mouse_frame)
1576fbfa
JR
4763 {
4764 /* If we move outside the frame, then we're
4765 certainly no longer on any text in the frame. */
bbf534ce
EZ
4766 clear_mouse_face (hlinfo);
4767 hlinfo->mouse_face_mouse_frame = 0;
1576fbfa
JR
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)
6b61353c 4775 do_help = -1;
1576fbfa
JR
4776 }
4777 break;
d67d1627 4778
689004fa 4779 case WM_SETFOCUS:
55131bef 4780 w32_detect_focus_change (dpyinfo, &msg, &inev);
791f420f 4781
791f420f
JR
4782 dpyinfo->grabbed = 0;
4783 check_visibility = 1;
4784 break;
4785
689004fa 4786 case WM_KILLFOCUS:
e95da6d3 4787 w32_detect_focus_change (dpyinfo, &msg, &inev);
791f420f 4788 f = x_top_window_to_frame (dpyinfo, msg.msg.hwnd);
08712a41 4789
791f420f
JR
4790 if (f)
4791 {
bbf534ce 4792 if (f == hlinfo->mouse_face_mouse_frame)
791f420f
JR
4793 {
4794 /* If we move outside the frame, then we're
4795 certainly no longer on any text in the frame. */
bbf534ce
EZ
4796 clear_mouse_face (hlinfo);
4797 hlinfo->mouse_face_mouse_frame = 0;
791f420f 4798 }
9ef2e2cf 4799
791f420f
JR
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)
6b61353c 4805 do_help = -1;
791f420f 4806 }
689004fa 4807
08712a41 4808 dpyinfo->grabbed = 0;
689004fa 4809 check_visibility = 1;
ee78dc32 4810 break;
689004fa 4811
ee78dc32
GV
4812 case WM_CLOSE:
4813 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
d67d1627 4814
ee78dc32
GV
4815 if (f)
4816 {
6b61353c
KH
4817 inev.kind = DELETE_WINDOW_EVENT;
4818 XSETFRAME (inev.frame_or_window, f);
ee78dc32 4819 }
689004fa
GV
4820 break;
4821
4822 case WM_INITMENU:
4823 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
d67d1627 4824
689004fa
GV
4825 if (f)
4826 {
6b61353c
KH
4827 inev.kind = MENU_BAR_ACTIVATE_EVENT;
4828 XSETFRAME (inev.frame_or_window, f);
689004fa 4829 }
ee78dc32 4830 break;
689004fa 4831
ee78dc32
GV
4832 case WM_COMMAND:
4833 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
014b6ea1 4834
ee78dc32
GV
4835 if (f)
4836 {
f98169a0 4837 extern void menubar_selection_callback
a10c8269 4838 (struct frame *f, void * client_data);
014b6ea1 4839 menubar_selection_callback (f, (void *)msg.msg.wParam);
ee78dc32 4840 }
689004fa
GV
4841
4842 check_visibility = 1;
4843 break;
4844
4845 case WM_DISPLAYCHANGE:
4846 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4847
d67d1627 4848 if (f)
689004fa 4849 {
689004fa 4850 dpyinfo->n_cbits = msg.msg.wParam;
b89c78a5
CY
4851 DebPrint (("display change: %d %d\n",
4852 (short) LOWORD (msg.msg.lParam),
4853 (short) HIWORD (msg.msg.lParam)));
689004fa 4854 }
d67d1627 4855
689004fa 4856 check_visibility = 1;
ee78dc32 4857 break;
e7efd97e 4858
7f203aa1 4859#if HAVE_W32NOTIFY
477f1e50
EZ
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;
8db4b52f 4865#endif
477f1e50 4866
e7efd97e 4867 default:
e471b241 4868 /* Check for messages registered at runtime. */
e7efd97e
GV
4869 if (msg.msg.message == msh_mousewheel)
4870 {
e471b241 4871 /* Forward MSH_MOUSEWHEEL as WM_MOUSEWHEEL. */
66f30e44 4872 msg.msg.message = WM_MOUSEWHEEL;
e471b241 4873 prepend_msg (&msg);
e7efd97e
GV
4874 }
4875 break;
ee78dc32 4876 }
6b61353c
KH
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 {
e597eb7d 4896 if (NILP (help_echo_string))
6b61353c
KH
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 }
ee78dc32
GV
4913 }
4914
4915 /* If the focus was just given to an autoraising frame,
baed3603
DA
4916 raise it now. FIXME: handle more than one such frame. */
4917 if (dpyinfo->w32_pending_autoraise_frame)
ee78dc32 4918 {
baed3603
DA
4919 x_raise_frame (dpyinfo->w32_pending_autoraise_frame);
4920 dpyinfo->w32_pending_autoraise_frame = NULL;
ee78dc32
GV
4921 }
4922
e8500ff4 4923 /* Check which frames are still visible, if we have enqueued any user
689004fa
GV
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)
1c64a4a2 4933 {
a10c8269 4934 struct frame *f = XFRAME (frame);
1c64a4a2
JB
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.
edfa7fa0
DA
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))
1c64a4a2
JB
4944 {
4945 RECT clipbox;
4946 HDC hdc;
edfa7fa0 4947 bool obscured;
1c64a4a2
JB
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
edfa7fa0
DA
4961 obscured = FRAME_OBSCURED_P (f);
4962
4963 if (clipbox.right == clipbox.left || clipbox.bottom == clipbox.top)
1c64a4a2 4964 {
edfa7fa0
DA
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);
689004fa 4969
edfa7fa0
DA
4970 if (!obscured)
4971 DebPrint (("frame %p (%s) obscured\n", f, SDATA (f->name)));
1c64a4a2
JB
4972 }
4973 else
4974 {
4975 /* Frame is not obscured, so mark it as such. */
edfa7fa0 4976 SET_FRAME_VISIBLE (f, 1);
689004fa 4977
edfa7fa0 4978 if (obscured)
1c64a4a2
JB
4979 {
4980 SET_FRAME_GARBAGED (f);
edfa7fa0
DA
4981 DebPrint (("obscured frame %p (%s) found to be visible\n",
4982 f, SDATA (f->name)));
689004fa 4983
1c64a4a2
JB
4984 /* Force a redisplay sooner or later. */
4985 record_asynch_buffer_change ();
4986 }
4987 }
4988 }
4989 }
689004fa
GV
4990 }
4991
4d7e6e51 4992 unblock_input ();
ee78dc32
GV
4993 return count;
4994}
791f420f 4995
9ef2e2cf 4996
ee78dc32 4997\f
791f420f
JR
4998/***********************************************************************
4999 Text Cursor
5000 ***********************************************************************/
5001
791f420f
JR
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.
ee78dc32 5004
791f420f
JR
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. */
ee78dc32
GV
5008
5009static void
c3c4768d
DA
5010w32_clip_to_row (struct window *w, struct glyph_row *row,
5011 enum glyph_row_area area, HDC hdc)
ee78dc32 5012{
791f420f 5013 RECT clip_rect;
b5a2e277 5014 int window_x, window_y, window_width;
52cf03a1 5015
b5a2e277 5016 window_box (w, area, &window_x, &window_y, &window_width, 0);
52cf03a1 5017
b5a2e277 5018 clip_rect.left = window_x;
791f420f
JR
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
791f420f 5024 w32_set_clip_rectangle (hdc, &clip_rect);
ee78dc32
GV
5025}
5026
791f420f
JR
5027
5028/* Draw a hollow box cursor on window W in glyph row ROW. */
ee78dc32
GV
5029
5030static void
b56ceb92 5031x_draw_hollow_cursor (struct window *w, struct glyph_row *row)
ee78dc32 5032{
791f420f 5033 struct frame *f = XFRAME (WINDOW_FRAME (w));
988646fc 5034 HDC hdc;
791f420f 5035 RECT rect;
b756209d 5036 int left, top, h;
791f420f
JR
5037 struct glyph *cursor_glyph;
5038 HBRUSH hb = CreateSolidBrush (f->output_data.w32->cursor_pixel);
5039
07c07cfe
JR
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)
922ae7ee
EZ
5044 {
5045 DeleteObject (hb);
5046 return;
5047 }
07c07cfe 5048
4d91ce74 5049 /* Compute frame-relative coordinates for phys cursor. */
b756209d
EZ
5050 get_phys_cursor_geometry (w, row, cursor_glyph, &left, &top, &h);
5051 rect.left = left;
5052 rect.top = top;
07c07cfe 5053 rect.bottom = rect.top + h;
4d91ce74 5054 rect.right = rect.left + w->phys_cursor_width;
ee78dc32 5055
988646fc 5056 hdc = get_frame_dc (f);
a18bb28d 5057 /* Set clipping, draw the rectangle, and reset clipping again. */
b5a2e277 5058 w32_clip_to_row (w, row, TEXT_AREA, hdc);
791f420f
JR
5059 FrameRect (hdc, &rect, hb);
5060 DeleteObject (hb);
a18bb28d 5061 w32_set_clip_rectangle (hdc, NULL);
791f420f 5062 release_frame_dc (f, hdc);
ee78dc32
GV
5063}
5064
791f420f
JR
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. */
ee78dc32
GV
5072
5073static void
b56ceb92
JB
5074x_draw_bar_cursor (struct window *w, struct glyph_row *row,
5075 int width, enum text_cursor_kinds kind)
ee78dc32 5076{
d3d50620 5077 struct frame *f = XFRAME (w->frame);
c2cc16fa 5078 struct glyph *cursor_glyph;
791f420f 5079
c2cc16fa
JR
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;
9ef2e2cf 5086
c2cc16fa
JR
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);
89271099 5094 draw_phys_cursor_glyph (w, row, DRAW_CURSOR);
c2cc16fa
JR
5095 }
5096 else
5097 {
6ff3e5e3
JR
5098 COLORREF cursor_color = f->output_data.w32->cursor_pixel;
5099 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
705af33f
JR
5100 int x;
5101 HDC hdc;
6ff3e5e3 5102
6ff3e5e3
JR
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
c2cc16fa 5111 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
a18bb28d 5112
c2cc16fa 5113 hdc = get_frame_dc (f);
b5a2e277 5114 w32_clip_to_row (w, row, TEXT_AREA, hdc);
17456df1
JR
5115
5116 if (kind == BAR_CURSOR)
5117 {
705af33f
JR
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
93352106
EZ
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
17456df1
JR
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 {
705af33f
JR
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);
17456df1
JR
5144 w32_fill_area (f, hdc, cursor_color, x,
5145 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
5146 row->height - width),
705af33f 5147 w->phys_cursor_width, width);
17456df1 5148 }
a18bb28d
JR
5149
5150 w32_set_clip_rectangle (hdc, NULL);
c2cc16fa 5151 release_frame_dc (f, hdc);
791f420f 5152 }
ee78dc32
GV
5153}
5154
791f420f 5155
89271099 5156/* RIF: Define cursor CURSOR on frame F. */
791f420f 5157
ee78dc32 5158static void
b56ceb92 5159w32_define_frame_cursor (struct frame *f, Cursor cursor)
ee78dc32 5160{
89271099 5161 w32_define_cursor (FRAME_W32_WINDOW (f), cursor);
791f420f 5162}
ee78dc32 5163
ee78dc32 5164
89271099 5165/* RIF: Clear area on frame F. */
ee78dc32 5166
791f420f 5167static void
b56ceb92 5168w32_clear_frame_area (struct frame *f, int x, int y, int width, int height)
791f420f 5169{
89271099 5170 HDC hdc;
791f420f 5171
89271099
KS
5172 hdc = get_frame_dc (f);
5173 w32_clear_area (f, hdc, x, y, width, height);
5174 release_frame_dc (f, hdc);
791f420f 5175}
ee78dc32 5176
89271099 5177/* RIF: Draw or clear cursor on window W. */
791f420f
JR
5178
5179static void
b56ceb92 5180w32_draw_window_cursor (struct window *w, struct glyph_row *glyph_row,
9997ec56
DA
5181 int x, int y, enum text_cursor_kinds cursor_type,
5182 int cursor_width, bool on_p, bool active_p)
ee78dc32 5183{
e5a3b7d9 5184 if (on_p)
791f420f 5185 {
99558ce8
JR
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 {
6b61353c
KH
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. */
99558ce8 5193 if (w->phys_cursor_type != NO_CURSOR)
89271099 5194 erase_phys_cursor (w);
99558ce8 5195
e5a3b7d9 5196 cursor_type = w->phys_cursor_type = NO_CURSOR;
e1429afe 5197 w->phys_cursor_width = -1;
99558ce8
JR
5198 }
5199 else
e1429afe 5200 {
e5a3b7d9 5201 w->phys_cursor_type = cursor_type;
e1429afe 5202 }
99558ce8 5203
791f420f
JR
5204 w->phys_cursor_on_p = 1;
5205
abb15ebd
JR
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. */
e5a3b7d9 5209 if (active_p)
abb15ebd 5210 {
0648dde0 5211 struct frame *f = XFRAME (WINDOW_FRAME (w));
99558ce8 5212 HWND hwnd = FRAME_W32_WINDOW (f);
abb15ebd 5213
99558ce8
JR
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);
b932cad7
EZ
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);
99558ce8 5222
c902b920
JR
5223 PostMessage (hwnd, WM_IME_STARTCOMPOSITION, 0, 0);
5224
99558ce8
JR
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);
abb15ebd
JR
5235 }
5236
6b61353c 5237 if (glyph_row->exact_window_width_line_p
f951a506
EZ
5238 && (glyph_row->reversed_p
5239 ? (w->phys_cursor.hpos < 0)
5240 : (w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])))
6b61353c
KH
5241 {
5242 glyph_row->cursor_in_fringe_p = 1;
f951a506 5243 draw_fringe_bitmap (w, glyph_row, glyph_row->reversed_p);
6b61353c
KH
5244 return;
5245 }
5246
e5a3b7d9 5247 switch (cursor_type)
ee78dc32 5248 {
791f420f
JR
5249 case HOLLOW_BOX_CURSOR:
5250 x_draw_hollow_cursor (w, glyph_row);
5251 break;
5252
5253 case FILLED_BOX_CURSOR:
89271099 5254 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
791f420f
JR
5255 break;
5256
5257 case BAR_CURSOR:
e5a3b7d9 5258 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
17456df1
JR
5259 break;
5260
5261 case HBAR_CURSOR:
e5a3b7d9 5262 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
791f420f 5263 break;
ee78dc32 5264
791f420f 5265 case NO_CURSOR:
a18bb28d 5266 w->phys_cursor_width = 0;
791f420f
JR
5267 break;
5268
5269 default:
1088b922 5270 emacs_abort ();
791f420f 5271 }
ee78dc32
GV
5272 }
5273}
5274
689004fa 5275
ee78dc32 5276\f
7f5d1df8
GV
5277/* Icons. */
5278
5279int
b56ceb92 5280x_bitmap_icon (struct frame *f, Lisp_Object icon)
7f5d1df8 5281{
945a75f8
JR
5282 HANDLE main_icon;
5283 HANDLE small_icon = NULL;
7f5d1df8
GV
5284
5285 if (FRAME_W32_WINDOW (f) == 0)
5286 return 1;
5287
5288 if (NILP (icon))
945a75f8 5289 main_icon = LoadIcon (hinst, EMACS_CLASS);
7f5d1df8 5290 else if (STRINGP (icon))
945a75f8
JR
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 }
7f5d1df8
GV
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
945a75f8 5320 main_icon = LoadIcon (NULL, name);
7f5d1df8
GV
5321 }
5322 else
5323 return 1;
5324
945a75f8 5325 if (main_icon == NULL)
7f5d1df8
GV
5326 return 1;
5327
791f420f 5328 PostMessage (FRAME_W32_WINDOW (f), WM_SETICON, (WPARAM) ICON_BIG,
945a75f8
JR
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);
7f5d1df8
GV
5335
5336 return 0;
5337}
5338
5339\f
c2cc16fa
JR
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
5347x_error_catcher (display, error)
5348x_catch_errors (dpy)
5349x_catch_errors_unwind (old_val)
5350x_check_errors (dpy, format)
16ca6226 5351x_fully_uncatch_errors ()
c2cc16fa
JR
5352x_had_errors_p (dpy)
5353x_clear_errors (dpy)
5354x_uncatch_errors (dpy, count)
5355x_trace_wire ()
5356x_connection_signal (signalnum)
5357x_connection_closed (dpy, error_message)
5358x_error_quitter (display, error)
5359x_error_handler (display, error)
5360x_io_error_quitter (display)
5361
5362 */
5363
5364\f
ee78dc32
GV
5365/* Changing the font of the frame. */
5366
027f6f90 5367Lisp_Object
b56ceb92 5368x_new_font (struct frame *f, Lisp_Object font_object, int fontset)
027f6f90 5369{
ef39ccbb 5370 struct font *font = XFONT_OBJECT (font_object);
027f6f90 5371
ef39ccbb
KH
5372 if (fontset < 0)
5373 fontset = fontset_from_font (font_object);
5374 FRAME_FONTSET (f) = fontset;
5375 if (FRAME_FONT (f) == font)
027f6f90
JR
5376 /* This font is already set in frame F. There's nothing more to
5377 do. */
f9c34147 5378 return font_object;
027f6f90 5379
ef39ccbb
KH
5380 FRAME_FONT (f) = font;
5381 FRAME_BASELINE_OFFSET (f) = font->baseline_offset;
5382 FRAME_COLUMN_WIDTH (f) = font->average_width;
ef39ccbb 5383 FRAME_LINE_HEIGHT (f) = font->height;
027f6f90
JR
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
f9c34147 5410 /* X version sets font of input methods here also. */
027f6f90 5411
f9c34147 5412 return font_object;
027f6f90 5413}
027f6f90 5414
c2cc16fa
JR
5415\f
5416/***********************************************************************
5417 TODO: W32 Input Methods
5418 ***********************************************************************/
5419/* Listing missing functions from xterm.c helps diff stay in step.
791f420f 5420
c2cc16fa
JR
5421xim_destroy_callback (xim, client_data, call_data)
5422xim_open_dpy (dpyinfo, resource_name)
5423struct xim_inst_t
5424xim_instantiate_callback (display, client_data, call_data)
5425xim_initialize (dpyinfo, resource_name)
5426xim_close_dpy (dpyinfo)
791f420f 5427
c2cc16fa 5428 */
791f420f 5429
cabb23bc 5430\f
689004fa
GV
5431/* Calculate the absolute position in frame F
5432 from its current recorded position values and gravity. */
5433
9ef2e2cf 5434void
b56ceb92 5435x_calc_absolute_position (struct frame *f)
ee78dc32 5436{
62e50ec6 5437 int flags = f->size_hint_flags;
ee78dc32 5438
83676aa2
KS
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
ee78dc32
GV
5470 position that fits on the screen. */
5471 if (flags & XNegative)
aad3612f 5472 f->left_pos = (x_display_pixel_width (FRAME_DISPLAY_INFO (f))
62e50ec6 5473 - FRAME_PIXEL_WIDTH (f)
83676aa2
KS
5474 + f->left_pos
5475 - (left_right_borders_width - 1));
158cba56 5476
ee78dc32 5477 if (flags & YNegative)
aad3612f 5478 f->top_pos = (x_display_pixel_height (FRAME_DISPLAY_INFO (f))
62e50ec6 5479 - FRAME_PIXEL_HEIGHT (f)
83676aa2
KS
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. */
62e50ec6 5485 f->size_hint_flags &= ~ (XNegative | YNegative);
ee78dc32
GV
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
9ef2e2cf 5494void
b56ceb92
JB
5495x_set_offset (struct frame *f, register int xoff, register int yoff,
5496 int change_gravity)
ee78dc32
GV
5497{
5498 int modified_top, modified_left;
5499
5500 if (change_gravity > 0)
5501 {
62e50ec6
KS
5502 f->top_pos = yoff;
5503 f->left_pos = xoff;
5504 f->size_hint_flags &= ~ (XNegative | YNegative);
ee78dc32 5505 if (xoff < 0)
62e50ec6 5506 f->size_hint_flags |= XNegative;
ee78dc32 5507 if (yoff < 0)
62e50ec6
KS
5508 f->size_hint_flags |= YNegative;
5509 f->win_gravity = NorthWestGravity;
ee78dc32
GV
5510 }
5511 x_calc_absolute_position (f);
5512
4d7e6e51 5513 block_input ();
ee78dc32
GV
5514 x_wm_set_size_hint (f, (long) 0, 0);
5515
62e50ec6
KS
5516 modified_left = f->left_pos;
5517 modified_top = f->top_pos;
ee78dc32 5518
fbd6baed 5519 my_set_window_pos (FRAME_W32_WINDOW (f),
52cf03a1
GV
5520 NULL,
5521 modified_left, modified_top,
cabb23bc 5522 0, 0,
689004fa 5523 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
4d7e6e51 5524 unblock_input ();
ee78dc32
GV
5525}
5526
549808db
JR
5527
5528/* Check if we need to resize the frame due to a fullscreen request.
cc92c454 5529 If so needed, resize the frame. */
549808db 5530static void
b56ceb92 5531x_check_fullscreen (struct frame *f)
549808db 5532{
62e50ec6 5533 if (f->want_fullscreen & FULLSCREEN_BOTH)
549808db
JR
5534 {
5535 int width, height, ign;
d67d1627 5536
62e50ec6 5537 x_real_positions (f, &f->left_pos, &f->top_pos);
549808db
JR
5538
5539 x_fullscreen_adjust (f, &width, &height, &ign, &ign);
d67d1627 5540
549808db 5541 /* We do not need to move the window, it shall be taken care of
66f30e44 5542 when setting WM manager hints. */
62e50ec6 5543 if (FRAME_COLS (f) != width || FRAME_LINES (f) != height)
549808db
JR
5544 {
5545 change_frame_size (f, height, width, 0, 1, 0);
5546 SET_FRAME_GARBAGED (f);
5547 cancel_mouse_face (f);
5548
cc92c454 5549 /* Wait for the change of frame size to occur. */
62e50ec6 5550 f->want_fullscreen |= FULLSCREEN_WAIT;
549808db
JR
5551 }
5552 }
5553}
5554
b2faf49c 5555static void
a10c8269 5556w32fullscreen_hook (struct frame *f)
b2faf49c 5557{
edfa7fa0 5558 if (FRAME_VISIBLE_P (f))
b2faf49c 5559 {
1f635a07
EC
5560 HWND hwnd = FRAME_W32_WINDOW(f);
5561 DWORD dwStyle = GetWindowLong (hwnd, GWL_STYLE);
5562 RECT rect;
b2faf49c 5563
1f635a07
EC
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 }
b2faf49c 5577
1f635a07
EC
5578 w32_fullscreen_rect (hwnd, f->want_fullscreen,
5579 FRAME_NORMAL_PLACEMENT (f).rcNormalPosition, &rect);
cdc0d0bd 5580 FRAME_PREV_FSMODE (f) = f->want_fullscreen;
16ddd1a6
MR
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)
1f635a07
EC
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 }
b2faf49c 5595
a5cc4dde 5596 f->want_fullscreen = FULLSCREEN_NONE;
b2faf49c
EZ
5597 unblock_input ();
5598 }
a5cc4dde
EZ
5599 else
5600 f->want_fullscreen |= FULLSCREEN_WAIT;
b2faf49c
EZ
5601}
5602
ee78dc32
GV
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. */
c2cc16fa 5607
791f420f 5608void
b56ceb92 5609x_set_window_size (struct frame *f, int change_gravity, int cols, int rows)
ee78dc32
GV
5610{
5611 int pixelwidth, pixelheight;
d67d1627 5612
4d7e6e51 5613 block_input ();
d67d1627 5614
ee78dc32 5615 check_frame_size (f, &rows, &cols);
62e50ec6
KS
5616 f->scroll_bar_actual_width
5617 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
d33c49e8 5618
b6ae1532 5619 compute_fringe_widths (f, 0);
d33c49e8 5620
62e50ec6
KS
5621 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols);
5622 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows);
d67d1627 5623
62e50ec6 5624 f->win_gravity = NorthWestGravity;
ee78dc32 5625 x_wm_set_size_hint (f, (long) 0, 0);
d67d1627 5626
ee78dc32
GV
5627 {
5628 RECT rect;
5629
5630 rect.left = rect.top = 0;
5631 rect.right = pixelwidth;
5632 rect.bottom = pixelheight;
d67d1627 5633
ed3751c8
JB
5634 AdjustWindowRect (&rect, f->output_data.w32->dwStyle,
5635 FRAME_EXTERNAL_MENU_BAR (f));
d67d1627 5636
fbd6baed 5637 my_set_window_pos (FRAME_W32_WINDOW (f),
d67d1627 5638 NULL,
52cf03a1 5639 0, 0,
689004fa
GV
5640 rect.right - rect.left,
5641 rect.bottom - rect.top,
5642 SWP_NOZORDER | SWP_NOMOVE | SWP_NOACTIVATE);
ee78dc32 5643 }
d67d1627 5644
f8d1a163
JR
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
fffa137c 5651 end is some nasty buggy behavior, including the potential loss
f8d1a163
JR
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,
ee78dc32
GV
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.
d67d1627 5664
ee78dc32
GV
5665 We could just not bother storing any of this information here,
5666 and let the ConfigureNotify event set everything up, but that
ec48c3a7 5667 might be kind of confusing to the Lisp code, since size changes
ee78dc32 5668 wouldn't be reported in the frame parameters until some random
791f420f
JR
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);
62e50ec6
KS
5674 FRAME_PIXEL_WIDTH (f) = pixelwidth;
5675 FRAME_PIXEL_HEIGHT (f) = pixelheight;
ee78dc32 5676
689004fa
GV
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
ee78dc32 5683 /* If cursor was outside the new size, mark it as off. */
e69b0960 5684 mark_window_cursors_off (XWINDOW (f->root_window));
ee78dc32 5685
689004fa 5686 /* Clear out any recollection of where the mouse highlighting was,
d67d1627 5687 since it might be in a place that's outside the new frame size.
689004fa
GV
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. */
31d4844a 5690 cancel_mouse_face (f);
f8d1a163 5691#endif
31d4844a 5692
4d7e6e51 5693 unblock_input ();
ee78dc32
GV
5694}
5695\f
5696/* Mouse warping. */
5697
ec48c3a7
JR
5698void x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y);
5699
5700void
b56ceb92 5701x_set_mouse_position (struct frame *f, int x, int y)
ec48c3a7
JR
5702{
5703 int pix_x, pix_y;
5704
62e50ec6
KS
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;
ec48c3a7
JR
5707
5708 if (pix_x < 0) pix_x = 0;
62e50ec6 5709 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
ec48c3a7
JR
5710
5711 if (pix_y < 0) pix_y = 0;
62e50ec6 5712 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
ec48c3a7
JR
5713
5714 x_set_mouse_pixel_position (f, pix_x, pix_y);
5715}
5716
1bcd16f2 5717void
b56ceb92 5718x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y)
1bcd16f2 5719{
689004fa
GV
5720 RECT rect;
5721 POINT pt;
5722
4d7e6e51 5723 block_input ();
1bcd16f2 5724
689004fa
GV
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);
1bcd16f2 5729
689004fa 5730 SetCursorPos (pt.x, pt.y);
1bcd16f2 5731
4d7e6e51 5732 unblock_input ();
1bcd16f2
MB
5733}
5734
ee78dc32
GV
5735\f
5736/* focus shifting, raising and lowering. */
5737
ec48c3a7 5738void
fcd42c11 5739x_focus_frame (struct frame *f)
ee78dc32 5740{
689004fa
GV
5741 struct w32_display_info *dpyinfo = &one_w32_display_info;
5742
5743 /* Give input focus to frame. */
4d7e6e51 5744 block_input ();
689004fa
GV
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
ef0e360f 5751 my_set_foreground_window (FRAME_W32_WINDOW (f));
4d7e6e51 5752 unblock_input ();
ee78dc32
GV
5753}
5754
ee78dc32 5755/* Raise frame F. */
791f420f 5756void
b56ceb92 5757x_raise_frame (struct frame *f)
ee78dc32 5758{
4d7e6e51 5759 block_input ();
689004fa
GV
5760
5761 /* Strictly speaking, raise-frame should only change the frame's Z
fffa137c 5762 order, leaving input focus unchanged. This is reasonable behavior
689004fa 5763 on X where the usual policy is point-to-focus. However, this
fffa137c 5764 behavior would be very odd on Windows where the usual policy is
689004fa
GV
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
e1dbe924 5771 click on the frame (preferably the title bar so as not to move
689004fa
GV
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))
ee78dc32 5781 {
689004fa
GV
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 {
85d0efd1
EZ
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 }
689004fa 5807 }
ee78dc32 5808 }
689004fa
GV
5809 else
5810 {
85d0efd1 5811 my_bring_window_to_top (FRAME_W32_WINDOW (f));
689004fa
GV
5812 }
5813
4d7e6e51 5814 unblock_input ();
ee78dc32
GV
5815}
5816
5817/* Lower frame F. */
791f420f 5818void
b56ceb92 5819x_lower_frame (struct frame *f)
ee78dc32 5820{
4d7e6e51 5821 block_input ();
689004fa
GV
5822 my_set_window_pos (FRAME_W32_WINDOW (f),
5823 HWND_BOTTOM,
5824 0, 0, 0, 0,
5825 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
4d7e6e51 5826 unblock_input ();
ee78dc32
GV
5827}
5828
5829static void
a10c8269 5830w32_frame_raise_lower (struct frame *f, int raise_flag)
ee78dc32 5831{
7e6ac5b9
AI
5832 if (! FRAME_W32_P (f))
5833 return;
5834
ec48c3a7 5835 if (raise_flag)
ee78dc32
GV
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
ec48c3a7 5850void
b56ceb92 5851x_make_frame_visible (struct frame *f)
ee78dc32 5852{
4d7e6e51 5853 block_input ();
ee78dc32 5854
2cd98812 5855 x_set_bitmap_icon (f);
7f5d1df8 5856
ee78dc32
GV
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)
fbd6baed 5864 && ! f->output_data.w32->asked_for_visible)
8958048c
EZ
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. */
ed3751c8 5871 SystemParametersInfo (SPI_GETWORKAREA, 0, &workarea_rect, 0);
9d4f32e8 5872 GetWindowRect (FRAME_W32_WINDOW (f), &window_rect);
8958048c
EZ
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 }
ee78dc32 5881
fbd6baed 5882 f->output_data.w32->asked_for_visible = 1;
52cf03a1 5883
22610910 5884 /* According to a report in emacs-devel 2008-06-03, SW_SHOWNORMAL
91af3942 5885 causes unexpected behavior when unminimizing frames that were
53964682 5886 previously maximized. But only SW_SHOWNORMAL works properly for
22610910 5887 frames that were truely hidden (using make-frame-invisible), so
edfa7fa0
DA
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. */
12f71857 5891 my_show_window (f, FRAME_W32_WINDOW (f),
edfa7fa0 5892 FRAME_ICONIFIED_P (f) ? SW_RESTORE : SW_SHOWNORMAL);
ee78dc32
GV
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;
791f420f 5900 int count;
ee78dc32
GV
5901
5902 /* This must come after we set COUNT. */
4d7e6e51 5903 unblock_input ();
ee78dc32
GV
5904
5905 XSETFRAME (frame, f);
5906
791f420f
JR
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);)
ee78dc32 5912 {
791f420f 5913 /* Force processing of queued events. */
01b220b6 5914 /* TODO: x_sync equivalent? */
791f420f 5915
ee78dc32
GV
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. */
a9b4e0ec
AI
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;
ee78dc32 5929 }
ee78dc32 5930 }
ee78dc32
GV
5931 }
5932}
5933
5934/* Change from mapped state to withdrawn state. */
5935
5936/* Make the frame visible (mapped and not iconified). */
5937
b56ceb92
JB
5938void
5939x_make_frame_invisible (struct frame *f)
ee78dc32 5940{
ee78dc32 5941 /* Don't keep the highlight on an invisible frame. */
aad3612f
DA
5942 if (FRAME_DISPLAY_INFO (f)->x_highlight_frame == f)
5943 FRAME_DISPLAY_INFO (f)->x_highlight_frame = 0;
d67d1627 5944
4d7e6e51 5945 block_input ();
d67d1627 5946
689004fa 5947 my_show_window (f, FRAME_W32_WINDOW (f), SW_HIDE);
d67d1627 5948
ee78dc32
GV
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. */
edfa7fa0
DA
5954 SET_FRAME_VISIBLE (f, 0);
5955 SET_FRAME_ICONIFIED (f, 0);
d67d1627 5956
4d7e6e51 5957 unblock_input ();
ee78dc32
GV
5958}
5959
5960/* Change window state from mapped to iconified. */
5961
52cf03a1 5962void
b56ceb92 5963x_iconify_frame (struct frame *f)
ee78dc32 5964{
ee78dc32 5965 /* Don't keep the highlight on an invisible frame. */
aad3612f
DA
5966 if (FRAME_DISPLAY_INFO (f)->x_highlight_frame == f)
5967 FRAME_DISPLAY_INFO (f)->x_highlight_frame = 0;
ee78dc32 5968
edfa7fa0 5969 if (FRAME_ICONIFIED_P (f))
ee78dc32
GV
5970 return;
5971
4d7e6e51 5972 block_input ();
ee78dc32 5973
2cd98812 5974 x_set_bitmap_icon (f);
7f5d1df8 5975
689004fa 5976 /* Simulate the user minimizing the frame. */
4934bcdd 5977 SendMessage (FRAME_W32_WINDOW (f), WM_SYSCOMMAND, SC_MINIMIZE, 0);
ee78dc32 5978
a8f93651
EZ
5979 SET_FRAME_VISIBLE (f, 0);
5980 SET_FRAME_ICONIFIED (f, 1);
5981
4d7e6e51 5982 unblock_input ();
ee78dc32 5983}
c2cc16fa 5984
ee78dc32 5985\f
25badd7a 5986/* Free X resources of frame F. */
ee78dc32 5987
25badd7a 5988void
7c3320d8 5989x_free_frame_resources (struct frame *f)
ee78dc32 5990{
aad3612f 5991 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
bbf534ce 5992 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
ee78dc32 5993
4d7e6e51 5994 block_input ();
ee78dc32 5995
ef39ccbb
KH
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);
027f6f90 6001
25badd7a
AI
6002 if (FRAME_W32_WINDOW (f))
6003 my_destroy_window (f, FRAME_W32_WINDOW (f));
d67d1627 6004
ee78dc32 6005 free_frame_menubar (f);
ee78dc32 6006
25badd7a
AI
6007 if (FRAME_FACE_CACHE (f))
6008 free_frame_faces (f);
d67d1627 6009
fbd6baed 6010 xfree (f->output_data.w32);
25badd7a 6011 f->output_data.w32 = NULL;
d67d1627 6012
fbd6baed
GV
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;
4baaed0f
KS
6017 if (f == dpyinfo->x_highlight_frame)
6018 dpyinfo->x_highlight_frame = 0;
bbf534ce 6019 if (f == hlinfo->mouse_face_mouse_frame)
9fed9729 6020 reset_mouse_highlight (hlinfo);
ee78dc32 6021
4d7e6e51 6022 unblock_input ();
ee78dc32 6023}
25badd7a
AI
6024
6025
6026/* Destroy the window of frame F. */
4a418b10 6027void
b56ceb92 6028x_destroy_window (struct frame *f)
25badd7a 6029{
aad3612f 6030 struct w32_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
25badd7a
AI
6031
6032 x_free_frame_resources (f);
25badd7a
AI
6033 dpyinfo->reference_count--;
6034}
c2cc16fa 6035
ee78dc32
GV
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.
18e27ea8 6042 If USER_POSITION, set the USPosition
ee78dc32 6043 flag (this is useful when FLAGS is 0). */
791f420f 6044void
18e27ea8 6045x_wm_set_size_hint (struct frame *f, long flags, bool user_position)
ee78dc32 6046{
fbd6baed 6047 Window window = FRAME_W32_WINDOW (f);
ee78dc32 6048
97c23857 6049 enter_crit ();
ee78dc32 6050
62e50ec6
KS
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);
ee78dc32 6055
97c23857 6056 leave_crit ();
ee78dc32
GV
6057}
6058
784b56e2
EZ
6059/***********************************************************************
6060 Fonts
6061 ***********************************************************************/
6062
e509cfa6 6063#ifdef GLYPH_DEBUG
784b56e2
EZ
6064
6065/* Check that FONT is valid on frame F. It is if it can be found in F's
6066 font table. */
6067
6068static void
6069x_check_font (struct frame *f, struct font *font)
6070{
a54e2c05 6071 eassert (font != NULL && ! NILP (font->props[FONT_TYPE_INDEX]));
784b56e2 6072 if (font->driver->check)
a54e2c05 6073 eassert (font->driver->check (f, font) == 0);
784b56e2
EZ
6074}
6075
e509cfa6 6076#endif /* GLYPH_DEBUG */
784b56e2
EZ
6077
6078
6079\f
791f420f
JR
6080/***********************************************************************
6081 Initialization
6082 ***********************************************************************/
ee78dc32 6083
fbd6baed 6084static int w32_initialized = 0;
ee78dc32 6085
f7737f5d 6086void
b56ceb92 6087w32_initialize_display_info (Lisp_Object display_name)
f7737f5d
JR
6088{
6089 struct w32_display_info *dpyinfo = &one_w32_display_info;
6090
72af86bd 6091 memset (dpyinfo, 0, sizeof (*dpyinfo));
f7737f5d 6092
d141d701 6093 dpyinfo->name_list_element = Fcons (display_name, Qnil);
23f86fce
DA
6094 dpyinfo->w32_id_name = xmalloc (SCHARS (Vinvocation_name)
6095 + SCHARS (Vsystem_name) + 2);
f7737f5d 6096 sprintf (dpyinfo->w32_id_name, "%s@%s",
d5db4077 6097 SDATA (Vinvocation_name), SDATA (Vsystem_name));
f7737f5d
JR
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;
f7737f5d
JR
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;
2bf04b9d 6108 dpyinfo->vertical_scroll_bar_cursor = w32_load_cursor (IDC_ARROW);
01b220b6 6109 /* TODO: dpyinfo->gray */
f7737f5d 6110
9fed9729 6111 reset_mouse_highlight (&dpyinfo->mouse_highlight);
f7737f5d
JR
6112}
6113
0105dc3e 6114/* Create an xrdb-style database of resources to supersede registry settings.
c13a8a91 6115 The database is just a concatenation of C strings, finished by an additional
decb374a 6116 \0. The strings are submitted to some basic normalization, so
c13a8a91
JB
6117
6118 [ *]option[ *]:[ *]value...
6119
6120 becomes
6121
6122 option:value...
6123
6124 but any whitespace following value is not removed. */
6125
6126static char *
b56ceb92 6127w32_make_rdb (char *xrm_option)
c13a8a91
JB
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
4a418b10
JR
6168extern frame_parm_handler w32_frame_parm_handlers[];
6169
6170static 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,
fd462129 6181 0, /* flush_display */
4a418b10 6182 x_clear_window_mouse_face,
e5e29349 6183 x_get_glyph_overhangs,
4a418b10
JR
6184 x_fix_overlapping_area,
6185 w32_draw_fringe_bitmap,
6186 w32_define_fringe_bitmap,
6187 w32_destroy_fringe_bitmap,
cf907d69 6188 w32_compute_glyph_string_overhangs,
4a418b10
JR
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
6197static void x_delete_terminal (struct terminal *term);
6198
6199static struct terminal *
6200w32_create_terminal (struct w32_display_info *dpyinfo)
6201{
6202 struct terminal *terminal;
def7fa34 6203
4a418b10
JR
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;
a892a94c
DA
6216 terminal->reset_terminal_modes_hook = NULL;
6217 terminal->set_terminal_modes_hook = NULL;
4a418b10
JR
6218 terminal->update_begin_hook = x_update_begin;
6219 terminal->update_end_hook = x_update_end;
0c7f856e 6220 terminal->set_terminal_window_hook = NULL;
4a418b10
JR
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;
b2faf49c 6226 terminal->fullscreen_hook = w32fullscreen_hook;
4a418b10
JR
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;
def7fa34 6234
4a418b10 6235 terminal->rif = &w32_redisplay_interface;
4a418b10 6236
1526bc23
JR
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. */
1afcba63 6240 terminal->kboard = allocate_kboard (Qw32);
1526bc23
JR
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++;
1526bc23 6247
4a418b10
JR
6248 return terminal;
6249}
6250
6251static void
6252x_delete_terminal (struct terminal *terminal)
6253{
6254 struct w32_display_info *dpyinfo = terminal->display_info.w32;
4a418b10 6255
e2749141 6256 /* Protect against recursive calls. delete_frame in
4a418b10 6257 delete_terminal calls us back when it deletes our last frame. */
adc54316 6258 if (!terminal->name)
4a418b10
JR
6259 return;
6260
4d7e6e51 6261 block_input ();
4a418b10
JR
6262
6263 x_delete_display (dpyinfo);
4d7e6e51 6264 unblock_input ();
4a418b10
JR
6265}
6266
fbd6baed 6267struct w32_display_info *
b56ceb92 6268w32_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name)
ee78dc32 6269{
fbd6baed 6270 struct w32_display_info *dpyinfo;
4a418b10 6271 struct terminal *terminal;
ee78dc32 6272 HDC hdc;
d67d1627 6273
4d7e6e51 6274 block_input ();
d67d1627 6275
fbd6baed 6276 if (!w32_initialized)
ee78dc32 6277 {
fbd6baed
GV
6278 w32_initialize ();
6279 w32_initialized = 1;
ee78dc32 6280 }
d67d1627 6281
f7737f5d 6282 w32_initialize_display_info (display_name);
ee78dc32 6283
f7737f5d 6284 dpyinfo = &one_w32_display_info;
4a418b10
JR
6285 terminal = w32_create_terminal (dpyinfo);
6286
6287 /* Set the name of the terminal. */
5b71542d 6288 terminal->name = xlispstrdup (display_name);
8c3b00cb 6289
c13a8a91
JB
6290 dpyinfo->xrdb = xrm_option ? w32_make_rdb (xrm_option) : NULL;
6291
8c3b00cb
AI
6292 /* Put this display on the chain. */
6293 dpyinfo->next = x_display_list;
6294 x_display_list = dpyinfo;
d67d1627 6295
cb4a3e42 6296 hdc = GetDC (NULL);
791f420f 6297
ee78dc32
GV
6298 dpyinfo->root_window = GetDesktopWindow ();
6299 dpyinfo->n_planes = GetDeviceCaps (hdc, PLANES);
6300 dpyinfo->n_cbits = GetDeviceCaps (hdc, BITSPIXEL);
55689ab1
JR
6301 dpyinfo->resx = GetDeviceCaps (hdc, LOGPIXELSX);
6302 dpyinfo->resy = GetDeviceCaps (hdc, LOGPIXELSY);
52cf03a1 6303 dpyinfo->has_palette = GetDeviceCaps (hdc, RASTERCAPS) & RC_PALETTE;
cb4a3e42 6304 ReleaseDC (NULL, hdc);
52cf03a1 6305
e1dbe924 6306 /* initialize palette with white and black */
52cf03a1 6307 {
316ed821 6308 XColor color;
55689ab1
JR
6309 w32_defined_color (0, "white", &color, 1);
6310 w32_defined_color (0, "black", &color, 1);
52cf03a1
GV
6311 }
6312
0fda9b75
DC
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. */
543c3ccd 6317 add_keyboard_wait_descriptor (0);
0fda9b75
DC
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
543c3ccd 6322
b6ae1532
KS
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. */
09b69f01 6330 w32_init_fringe (terminal->rif);
f7737f5d 6331
4d7e6e51 6332 unblock_input ();
ee78dc32
GV
6333
6334 return dpyinfo;
6335}
6336\f
6337/* Get rid of display DPYINFO, assuming all frames are already gone. */
ee78dc32 6338void
b56ceb92 6339x_delete_display (struct w32_display_info *dpyinfo)
ee78dc32 6340{
d141d701 6341 /* FIXME: the only display info apparently can't be deleted. */
52cf03a1
GV
6342 /* free palette table */
6343 {
fbd6baed 6344 struct w32_palette_entry * plist;
52cf03a1
GV
6345
6346 plist = dpyinfo->color_list;
6347 while (plist)
6348 {
fbd6baed 6349 struct w32_palette_entry * pentry = plist;
52cf03a1 6350 plist = plist->next;
9127e20e 6351 xfree (pentry);
52cf03a1
GV
6352 }
6353 dpyinfo->color_list = NULL;
6354 if (dpyinfo->palette)
ed3751c8 6355 DeleteObject (dpyinfo->palette);
52cf03a1 6356 }
fbd6baed 6357 xfree (dpyinfo->w32_id_name);
f7737f5d 6358
6b61353c 6359 w32_reset_fringes ();
ee78dc32 6360}
0fda9b75 6361
ee78dc32 6362\f
fbd6baed 6363/* Set up use of W32. */
ee78dc32 6364
b0d4e0c7 6365DWORD WINAPI w32_msg_worker (void * arg);
ee78dc32 6366
1bb8a291 6367static void
b56ceb92 6368w32_initialize (void)
fbd6baed 6369{
ff90fbde 6370 HANDLE shell;
0a3472c7 6371 HRESULT (WINAPI * set_user_model) (wchar_t * id);
ff90fbde 6372
ee78dc32
GV
6373 baud_rate = 19200;
6374
abb15ebd
JR
6375 w32_system_caret_hwnd = NULL;
6376 w32_system_caret_height = 0;
abb15ebd
JR
6377 w32_system_caret_x = 0;
6378 w32_system_caret_y = 0;
6379
ff90fbde
JR
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
0fda9b75 6399#ifdef CYGWIN
406af475 6400 if ((w32_message_fd = emacs_open ("/dev/windows", O_RDWR, 0)) == -1)
0fda9b75
DC
6401 fatal ("opening /dev/windows: %s", strerror (errno));
6402#endif /* CYGWIN */
6403
c2baa2b6
JR
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
791f420f
JR
6410 last_tool_bar_item = -1;
6411 any_help_event_p = 0;
6412
689004fa
GV
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);
ee78dc32 6416
13087e59 6417 {
4f3576ee 6418 DWORD input_locale_id = ((DWORD_PTR) GetKeyboardLayout (0) & 0xffffffff);
302fc036
EZ
6419 w32_keyboard_codepage =
6420 codepage_for_locale ((LCID) (input_locale_id & 0xffff));
13087e59 6421 }
ee78dc32 6422
13087e59
JR
6423 /* Create the window thread - it will terminate itself when the app
6424 terminates */
ee78dc32
GV
6425 init_crit ();
6426
6427 dwMainThreadId = GetCurrentThreadId ();
d67d1627 6428 DuplicateHandle (GetCurrentProcess (), GetCurrentThread (),
ee78dc32
GV
6429 GetCurrentProcess (), &hMainThread, 0, TRUE, DUPLICATE_SAME_ACCESS);
6430
6431 /* Wait for thread to start */
ee78dc32
GV
6432 {
6433 MSG msg;
6434
6435 PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE);
6436
d67d1627 6437 hWindowsThread = CreateThread (NULL, 0,
b0d4e0c7
JR
6438 w32_msg_worker,
6439 0, 0, &dwWindowsThreadId);
ee78dc32
GV
6440
6441 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
6442 }
d67d1627 6443
52cf03a1 6444 /* It is desirable that mainThread should have the same notion of
e9e23e23 6445 focus window and active window as windowsThread. Unfortunately, the
52cf03a1
GV
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
e9e23e23 6449 instead we need to send messages to windowsThread to make some API
52cf03a1 6450 calls for us (ones that affect, or depend on, the active/focus
65a6ff8f 6451 window state.) */
52cf03a1 6452#ifdef ATTACH_THREADS
e9e23e23 6453 AttachThreadInput (dwMainThreadId, dwWindowsThreadId, TRUE);
52cf03a1 6454#endif
689004fa 6455
33e40ce7 6456 /* Dynamically link to optional system components. */
689004fa 6457 {
ff90fbde 6458 HMODULE user_lib = GetModuleHandle ("user32.dll");
689004fa 6459
41375f89 6460#define LOAD_PROC(lib, fn) pfn##fn = (void *) GetProcAddress (lib, #fn)
689004fa 6461
8b61a891 6462 LOAD_PROC (user_lib, SetLayeredWindowAttributes);
65a6ff8f 6463
689004fa
GV
6464#undef LOAD_PROC
6465
33e40ce7
JR
6466 /* Ensure scrollbar handle is at least 5 pixels. */
6467 vertical_scroll_bar_min_handle = 5;
689004fa
GV
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 }
ee78dc32
GV
6474}
6475
6476void
b56ceb92 6477syms_of_w32term (void)
ee78dc32 6478{
5f33dbf7 6479 DEFSYM (Qvendor_specific_keysyms, "vendor-specific-keysyms");
52cf03a1 6480
477f1e50
EZ
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
fbd6baed 6487 DEFVAR_INT ("w32-num-mouse-buttons",
29208e82 6488 w32_num_mouse_buttons,
33f09670 6489 doc: /* Number of physical mouse buttons. */);
e597eb7d 6490 w32_num_mouse_buttons = 2;
52cf03a1 6491
fbd6baed 6492 DEFVAR_LISP ("w32-swap-mouse-buttons",
29208e82 6493 Vw32_swap_mouse_buttons,
33f09670
JR
6494 doc: /* Swap the mapping of middle and right mouse buttons.
6495When nil, middle button is mouse-2 and right button is mouse-3. */);
fbd6baed 6496 Vw32_swap_mouse_buttons = Qnil;
689004fa
GV
6497
6498 DEFVAR_LISP ("w32-grab-focus-on-raise",
29208e82 6499 Vw32_grab_focus_on_raise,
33f09670
JR
6500 doc: /* Raised frame grabs input focus.
6501When t, `raise-frame' grabs input focus as well. This fits well
6502with the normal Windows click-to-focus policy, but might not be
6503desirable when using a point-to-focus policy. */);
689004fa
GV
6504 Vw32_grab_focus_on_raise = Qt;
6505
6506 DEFVAR_LISP ("w32-capslock-is-shiftlock",
29208e82 6507 Vw32_capslock_is_shiftlock,
33f09670
JR
6508 doc: /* Apply CapsLock state to non character input keys.
6509When nil, CapsLock only affects normal character input keys. */);
689004fa 6510 Vw32_capslock_is_shiftlock = Qnil;
ef0e360f
GV
6511
6512 DEFVAR_LISP ("w32-recognize-altgr",
29208e82 6513 Vw32_recognize_altgr,
33f09670
JR
6514 doc: /* Recognize right-alt and left-ctrl as AltGr.
6515When nil, the right-alt and left-ctrl key combination is
d67d1627 6516interpreted normally. */);
ef0e360f 6517 Vw32_recognize_altgr = Qt;
bc6af935 6518
99558ce8 6519 DEFVAR_BOOL ("w32-use-visible-system-caret",
29208e82 6520 w32_use_visible_system_caret,
99558ce8
JR
6521 doc: /* Flag to make the system caret visible.
6522When this is non-nil, Emacs will indicate the position of point by
6523using the system caret instead of drawing its own cursor. Some screen
6524reader software does not track the system cursor properly when it is
6525invisible, and gets confused by Emacs drawing its own cursor, so this
d67d1627 6526variable is initialized to t when Emacs detects that screen reader
99558ce8
JR
6527software is running as it starts up.
6528
6529When this variable is set, other variables affecting the appearance of
6530the cursor have no effect. */);
6531
c2baa2b6 6532 w32_use_visible_system_caret = 0;
99558ce8 6533
099b6577
EZ
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",
29208e82 6537 x_use_underline_position_properties,
fb7ada5f 6538 doc: /* Non-nil means make use of UNDERLINE_POSITION font properties.
e1e4b63b 6539A value of nil means ignore them. If you encounter fonts with bogus
099b6577 6540UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
ea883883
GM
6541to 4.1, set this to nil. You can also use `underline-minimum-offset'
6542to override the font's UNDERLINE_POSITION for small font display
6543sizes. */);
099b6577
EZ
6544 x_use_underline_position_properties = 0;
6545
30f27523 6546 DEFVAR_BOOL ("x-underline-at-descent-line",
29208e82 6547 x_underline_at_descent_line,
fb7ada5f 6548 doc: /* Non-nil means to draw the underline at the same place as the descent line.
e1e4b63b
JB
6549A value of nil means to draw the underline according to the value of the
6550variable `x-use-underline-position-properties', which is usually at the
6551baseline level. The default value is nil. */);
30f27523
KS
6552 x_underline_at_descent_line = 0;
6553
29208e82 6554 DEFVAR_LISP ("x-toolkit-scroll-bars", Vx_toolkit_scroll_bars,
65807d73
GM
6555 doc: /* Which toolkit scroll bars Emacs uses, if any.
6556A value of nil means Emacs doesn't use toolkit scroll bars.
6557With the X Window system, the value is a symbol describing the
6558X toolkit. Possible values are: gtk, motif, xaw, or xaw3d.
44f92739 6559With MS Windows or Nextstep, the value is t. */);
5bf04520 6560 Vx_toolkit_scroll_bars = Qt;
791f420f 6561
8d2db8be
DA
6562 /* Tell Emacs about this window system. */
6563 Fprovide (Qw32, Qnil);
ee78dc32 6564}