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