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