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