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