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