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