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