Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-91
[bpt/emacs.git] / src / w32term.c
1 /* Implementation of GUI terminal on the Microsoft W32 API.
2 Copyright (C) 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
3 2002, 2003, 2004, 2005 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 || (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)
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
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)
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 || 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)
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 int
3359 note_mouse_movement (frame, msg)
3360 FRAME_PTR frame;
3361 MSG *msg;
3362 {
3363 int mouse_x = LOWORD (msg->lParam);
3364 int mouse_y = HIWORD (msg->lParam);
3365
3366 last_mouse_movement_time = msg->time;
3367 memcpy (&last_mouse_motion_event, msg, sizeof (last_mouse_motion_event));
3368 XSETFRAME (last_mouse_motion_frame, frame);
3369
3370 if (msg->hwnd != FRAME_W32_WINDOW (frame))
3371 {
3372 frame->mouse_moved = 1;
3373 last_mouse_scroll_bar = Qnil;
3374 note_mouse_highlight (frame, -1, -1);
3375 return 1;
3376 }
3377
3378 /* Has the mouse moved off the glyph it was on at the last sighting? */
3379 if (mouse_x < last_mouse_glyph.left
3380 || mouse_x >= last_mouse_glyph.right
3381 || mouse_y < last_mouse_glyph.top
3382 || mouse_y >= last_mouse_glyph.bottom)
3383 {
3384 frame->mouse_moved = 1;
3385 last_mouse_scroll_bar = Qnil;
3386 note_mouse_highlight (frame, mouse_x, mouse_y);
3387 /* Remember the mouse position here, as w32_mouse_position only
3388 gets called when mouse tracking is enabled but we also need
3389 to keep track of the mouse for help_echo and highlighting at
3390 other times. */
3391 remember_mouse_glyph (frame, mouse_x, mouse_y, &last_mouse_glyph);
3392 return 1;
3393 }
3394
3395 return 0;
3396 }
3397
3398 \f
3399 /************************************************************************
3400 Mouse Face
3401 ************************************************************************/
3402
3403 static struct scroll_bar *x_window_to_scroll_bar ();
3404 static void x_scroll_bar_report_motion ();
3405 static void x_check_fullscreen P_ ((struct frame *));
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 /* Return the current position of the mouse.
3425 *fp should be a frame which indicates which display to ask about.
3426
3427 If the mouse movement started in a scroll bar, set *fp, *bar_window,
3428 and *part to the frame, window, and scroll bar part that the mouse
3429 is over. Set *x and *y to the portion and whole of the mouse's
3430 position on the scroll bar.
3431
3432 If the mouse movement started elsewhere, set *fp to the frame the
3433 mouse is on, *bar_window to nil, and *x and *y to the character cell
3434 the mouse is over.
3435
3436 Set *time to the server time-stamp for the time at which the mouse
3437 was at this position.
3438
3439 Don't store anything if we don't have a valid set of values to report.
3440
3441 This clears the mouse_moved flag, so we can wait for the next mouse
3442 movement. */
3443
3444 static void
3445 w32_mouse_position (fp, insist, bar_window, part, x, y, time)
3446 FRAME_PTR *fp;
3447 int insist;
3448 Lisp_Object *bar_window;
3449 enum scroll_bar_part *part;
3450 Lisp_Object *x, *y;
3451 unsigned long *time;
3452 {
3453 FRAME_PTR f1;
3454
3455 BLOCK_INPUT;
3456
3457 if (! NILP (last_mouse_scroll_bar) && insist == 0)
3458 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
3459 else
3460 {
3461 POINT pt;
3462
3463 Lisp_Object frame, tail;
3464
3465 /* Clear the mouse-moved flag for every frame on this display. */
3466 FOR_EACH_FRAME (tail, frame)
3467 XFRAME (frame)->mouse_moved = 0;
3468
3469 last_mouse_scroll_bar = Qnil;
3470
3471 GetCursorPos (&pt);
3472
3473 /* Now we have a position on the root; find the innermost window
3474 containing the pointer. */
3475 {
3476 if (FRAME_W32_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
3477 && FRAME_LIVE_P (last_mouse_frame))
3478 {
3479 /* If mouse was grabbed on a frame, give coords for that frame
3480 even if the mouse is now outside it. */
3481 f1 = last_mouse_frame;
3482 }
3483 else
3484 {
3485 /* Is window under mouse one of our frames? */
3486 f1 = x_any_window_to_frame (FRAME_W32_DISPLAY_INFO (*fp),
3487 WindowFromPoint (pt));
3488 }
3489
3490 /* If not, is it one of our scroll bars? */
3491 if (! f1)
3492 {
3493 struct scroll_bar *bar
3494 = x_window_to_scroll_bar (WindowFromPoint (pt));
3495
3496 if (bar)
3497 {
3498 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3499 }
3500 }
3501
3502 if (f1 == 0 && insist > 0)
3503 f1 = SELECTED_FRAME ();
3504
3505 if (f1)
3506 {
3507 /* Ok, we found a frame. Store all the values.
3508 last_mouse_glyph is a rectangle used to reduce the
3509 generation of mouse events. To not miss any motion
3510 events, we must divide the frame into rectangles of the
3511 size of the smallest character that could be displayed
3512 on it, i.e. into the same rectangles that matrices on
3513 the frame are divided into. */
3514
3515 #if OLD_REDISPLAY_CODE
3516 int ignore1, ignore2;
3517
3518 ScreenToClient (FRAME_W32_WINDOW (f1), &pt);
3519
3520 pixel_to_glyph_coords (f1, pt.x, pt.y, &ignore1, &ignore2,
3521 &last_mouse_glyph,
3522 FRAME_W32_DISPLAY_INFO (f1)->grabbed
3523 || insist);
3524 #else
3525 ScreenToClient (FRAME_W32_WINDOW (f1), &pt);
3526 remember_mouse_glyph (f1, pt.x, pt.y, &last_mouse_glyph);
3527 #endif
3528
3529 *bar_window = Qnil;
3530 *part = 0;
3531 *fp = f1;
3532 XSETINT (*x, pt.x);
3533 XSETINT (*y, pt.y);
3534 *time = last_mouse_movement_time;
3535 }
3536 }
3537 }
3538
3539 UNBLOCK_INPUT;
3540 }
3541
3542 \f
3543 /***********************************************************************
3544 Tool-bars
3545 ***********************************************************************/
3546
3547 /* Handle mouse button event on the tool-bar of frame F, at
3548 frame-relative coordinates X/Y. EVENT_TYPE is either ButtionPress
3549 or ButtonRelase. */
3550
3551 static void
3552 w32_handle_tool_bar_click (f, button_event)
3553 struct frame *f;
3554 struct input_event *button_event;
3555 {
3556 int x = XFASTINT (button_event->x);
3557 int y = XFASTINT (button_event->y);
3558
3559 if (button_event->modifiers & down_modifier)
3560 handle_tool_bar_click (f, x, y, 1, 0);
3561 else
3562 handle_tool_bar_click (f, x, y, 0,
3563 button_event->modifiers & ~up_modifier);
3564 }
3565
3566
3567 \f
3568 /***********************************************************************
3569 Scroll bars
3570 ***********************************************************************/
3571
3572 /* Scroll bar support. */
3573
3574 /* Given a window ID, find the struct scroll_bar which manages it.
3575 This can be called in GC, so we have to make sure to strip off mark
3576 bits. */
3577
3578 static struct scroll_bar *
3579 x_window_to_scroll_bar (window_id)
3580 Window window_id;
3581 {
3582 Lisp_Object tail;
3583
3584 for (tail = Vframe_list;
3585 XGCTYPE (tail) == Lisp_Cons;
3586 tail = XCDR (tail))
3587 {
3588 Lisp_Object frame, bar, condemned;
3589
3590 frame = XCAR (tail);
3591 /* All elements of Vframe_list should be frames. */
3592 if (! GC_FRAMEP (frame))
3593 abort ();
3594
3595 /* Scan this frame's scroll bar list for a scroll bar with the
3596 right window ID. */
3597 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
3598 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
3599 /* This trick allows us to search both the ordinary and
3600 condemned scroll bar lists with one loop. */
3601 ! GC_NILP (bar) || (bar = condemned,
3602 condemned = Qnil,
3603 ! GC_NILP (bar));
3604 bar = XSCROLL_BAR (bar)->next)
3605 if (SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar)) == window_id)
3606 return XSCROLL_BAR (bar);
3607 }
3608
3609 return 0;
3610 }
3611
3612
3613 \f
3614 /* Set the thumb size and position of scroll bar BAR. We are currently
3615 displaying PORTION out of a whole WHOLE, and our position POSITION. */
3616
3617 static void
3618 w32_set_scroll_bar_thumb (bar, portion, position, whole)
3619 struct scroll_bar *bar;
3620 int portion, position, whole;
3621 {
3622 Window w = SCROLL_BAR_W32_WINDOW (bar);
3623 double range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
3624 int sb_page, sb_pos;
3625 BOOL draggingp = !NILP (bar->dragging) ? TRUE : FALSE;
3626
3627 if (whole)
3628 {
3629 /* Position scroll bar at rock bottom if the bottom of the
3630 buffer is visible. This avoids shinking the thumb away
3631 to nothing if it is held at the bottom of the buffer. */
3632 if (position + portion >= whole)
3633 {
3634 sb_page = range * (whole - position) / whole
3635 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3636 sb_pos = range;
3637 }
3638
3639 sb_page = portion * range / whole + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3640 sb_pos = position * range / whole;
3641 }
3642 else
3643 {
3644 sb_page = range;
3645 sb_pos = 0;
3646 }
3647
3648 BLOCK_INPUT;
3649
3650 if (pfnSetScrollInfo)
3651 {
3652 SCROLLINFO si;
3653
3654 si.cbSize = sizeof (si);
3655 /* Only update page size if currently dragging, to reduce
3656 flicker effects. */
3657 if (draggingp)
3658 si.fMask = SIF_PAGE;
3659 else
3660 si.fMask = SIF_PAGE | SIF_POS;
3661 si.nPage = sb_page;
3662 si.nPos = sb_pos;
3663
3664 pfnSetScrollInfo (w, SB_CTL, &si, !draggingp);
3665 }
3666 else
3667 SetScrollPos (w, SB_CTL, sb_pos, !draggingp);
3668
3669 UNBLOCK_INPUT;
3670 }
3671
3672 \f
3673 /************************************************************************
3674 Scroll bars, general
3675 ************************************************************************/
3676
3677 HWND
3678 my_create_scrollbar (f, bar)
3679 struct frame * f;
3680 struct scroll_bar * bar;
3681 {
3682 return (HWND) SendMessage (FRAME_W32_WINDOW (f),
3683 WM_EMACS_CREATESCROLLBAR, (WPARAM) f,
3684 (LPARAM) bar);
3685 }
3686
3687 /*#define ATTACH_THREADS*/
3688
3689 static BOOL
3690 my_show_window (FRAME_PTR f, HWND hwnd, int how)
3691 {
3692 #ifndef ATTACH_THREADS
3693 return SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_SHOWWINDOW,
3694 (WPARAM) hwnd, (LPARAM) how);
3695 #else
3696 return ShowWindow (hwnd, how);
3697 #endif
3698 }
3699
3700 static void
3701 my_set_window_pos (HWND hwnd, HWND hwndAfter,
3702 int x, int y, int cx, int cy, UINT flags)
3703 {
3704 #ifndef ATTACH_THREADS
3705 WINDOWPOS pos;
3706 pos.hwndInsertAfter = hwndAfter;
3707 pos.x = x;
3708 pos.y = y;
3709 pos.cx = cx;
3710 pos.cy = cy;
3711 pos.flags = flags;
3712 SendMessage (hwnd, WM_EMACS_SETWINDOWPOS, (WPARAM) &pos, 0);
3713 #else
3714 SetWindowPos (hwnd, hwndAfter, x, y, cx, cy, flags);
3715 #endif
3716 }
3717
3718 static void
3719 my_set_focus (f, hwnd)
3720 struct frame * f;
3721 HWND hwnd;
3722 {
3723 SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_SETFOCUS,
3724 (WPARAM) hwnd, 0);
3725 }
3726
3727 static void
3728 my_set_foreground_window (hwnd)
3729 HWND hwnd;
3730 {
3731 SendMessage (hwnd, WM_EMACS_SETFOREGROUND, (WPARAM) hwnd, 0);
3732 }
3733
3734
3735 static void
3736 my_destroy_window (f, hwnd)
3737 struct frame * f;
3738 HWND hwnd;
3739 {
3740 SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_DESTROYWINDOW,
3741 (WPARAM) hwnd, 0);
3742 }
3743
3744 /* Create a scroll bar and return the scroll bar vector for it. W is
3745 the Emacs window on which to create the scroll bar. TOP, LEFT,
3746 WIDTH and HEIGHT are.the pixel coordinates and dimensions of the
3747 scroll bar. */
3748
3749 static struct scroll_bar *
3750 x_scroll_bar_create (w, top, left, width, height)
3751 struct window *w;
3752 int top, left, width, height;
3753 {
3754 struct frame *f = XFRAME (WINDOW_FRAME (w));
3755 HWND hwnd;
3756 struct scroll_bar *bar
3757 = XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE), Qnil));
3758
3759 BLOCK_INPUT;
3760
3761 XSETWINDOW (bar->window, w);
3762 XSETINT (bar->top, top);
3763 XSETINT (bar->left, left);
3764 XSETINT (bar->width, width);
3765 XSETINT (bar->height, height);
3766 XSETINT (bar->start, 0);
3767 XSETINT (bar->end, 0);
3768 bar->dragging = Qnil;
3769
3770 /* Requires geometry to be set before call to create the real window */
3771
3772 hwnd = my_create_scrollbar (f, bar);
3773
3774 if (pfnSetScrollInfo)
3775 {
3776 SCROLLINFO si;
3777
3778 si.cbSize = sizeof (si);
3779 si.fMask = SIF_ALL;
3780 si.nMin = 0;
3781 si.nMax = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height)
3782 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3783 si.nPage = si.nMax;
3784 si.nPos = 0;
3785
3786 pfnSetScrollInfo (hwnd, SB_CTL, &si, FALSE);
3787 }
3788 else
3789 {
3790 SetScrollRange (hwnd, SB_CTL, 0,
3791 VERTICAL_SCROLL_BAR_TOP_RANGE (f, height), FALSE);
3792 SetScrollPos (hwnd, SB_CTL, 0, FALSE);
3793 }
3794
3795 SET_SCROLL_BAR_W32_WINDOW (bar, hwnd);
3796
3797 /* Add bar to its frame's list of scroll bars. */
3798 bar->next = FRAME_SCROLL_BARS (f);
3799 bar->prev = Qnil;
3800 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
3801 if (! NILP (bar->next))
3802 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
3803
3804 UNBLOCK_INPUT;
3805
3806 return bar;
3807 }
3808
3809
3810 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
3811 nil. */
3812
3813 static void
3814 x_scroll_bar_remove (bar)
3815 struct scroll_bar *bar;
3816 {
3817 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3818
3819 BLOCK_INPUT;
3820
3821 /* Destroy the window. */
3822 my_destroy_window (f, SCROLL_BAR_W32_WINDOW (bar));
3823
3824 /* Disassociate this scroll bar from its window. */
3825 XWINDOW (bar->window)->vertical_scroll_bar = Qnil;
3826
3827 UNBLOCK_INPUT;
3828 }
3829
3830 /* Set the handle of the vertical scroll bar for WINDOW to indicate
3831 that we are displaying PORTION characters out of a total of WHOLE
3832 characters, starting at POSITION. If WINDOW has no scroll bar,
3833 create one. */
3834 static void
3835 w32_set_vertical_scroll_bar (w, portion, whole, position)
3836 struct window *w;
3837 int portion, whole, position;
3838 {
3839 struct frame *f = XFRAME (w->frame);
3840 struct scroll_bar *bar;
3841 int top, height, left, sb_left, width, sb_width;
3842 int window_y, window_height;
3843
3844 /* Get window dimensions. */
3845 window_box (w, -1, 0, &window_y, 0, &window_height);
3846 top = window_y;
3847 width = WINDOW_CONFIG_SCROLL_BAR_COLS (w) * FRAME_COLUMN_WIDTH (f);
3848 height = window_height;
3849
3850 /* Compute the left edge of the scroll bar area. */
3851 left = WINDOW_SCROLL_BAR_AREA_X (w);
3852
3853 /* Compute the width of the scroll bar which might be less than
3854 the width of the area reserved for the scroll bar. */
3855 if (WINDOW_CONFIG_SCROLL_BAR_WIDTH (w) > 0)
3856 sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
3857 else
3858 sb_width = width;
3859
3860 /* Compute the left edge of the scroll bar. */
3861 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
3862 sb_left = left + width - sb_width - (width - sb_width) / 2;
3863 else
3864 sb_left = left + (width - sb_width) / 2;
3865
3866 /* Does the scroll bar exist yet? */
3867 if (NILP (w->vertical_scroll_bar))
3868 {
3869 HDC hdc;
3870 BLOCK_INPUT;
3871 if (width > 0 && height > 0)
3872 {
3873 hdc = get_frame_dc (f);
3874 w32_clear_area (f, hdc, left, top, width, height);
3875 release_frame_dc (f, hdc);
3876 }
3877 UNBLOCK_INPUT;
3878
3879 bar = x_scroll_bar_create (w, top, sb_left, sb_width, height);
3880 }
3881 else
3882 {
3883 /* It may just need to be moved and resized. */
3884 HWND hwnd;
3885
3886 bar = XSCROLL_BAR (w->vertical_scroll_bar);
3887 hwnd = SCROLL_BAR_W32_WINDOW (bar);
3888
3889 /* If already correctly positioned, do nothing. */
3890 if ( XINT (bar->left) == sb_left
3891 && XINT (bar->top) == top
3892 && XINT (bar->width) == sb_width
3893 && XINT (bar->height) == height )
3894 {
3895 /* Redraw after clear_frame. */
3896 if (!my_show_window (f, hwnd, SW_NORMAL))
3897 InvalidateRect (hwnd, NULL, FALSE);
3898 }
3899 else
3900 {
3901 HDC hdc;
3902 BLOCK_INPUT;
3903 if (width && height)
3904 {
3905 hdc = get_frame_dc (f);
3906 /* Since Windows scroll bars are smaller than the space reserved
3907 for them on the frame, we have to clear "under" them. */
3908 w32_clear_area (f, hdc,
3909 left,
3910 top,
3911 width,
3912 height);
3913 release_frame_dc (f, hdc);
3914 }
3915 /* Make sure scroll bar is "visible" before moving, to ensure the
3916 area of the parent window now exposed will be refreshed. */
3917 my_show_window (f, hwnd, SW_HIDE);
3918 MoveWindow (hwnd, sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
3919 top, sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
3920 max (height, 1), TRUE);
3921 if (pfnSetScrollInfo)
3922 {
3923 SCROLLINFO si;
3924
3925 si.cbSize = sizeof (si);
3926 si.fMask = SIF_RANGE;
3927 si.nMin = 0;
3928 si.nMax = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height)
3929 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3930
3931 pfnSetScrollInfo (hwnd, SB_CTL, &si, FALSE);
3932 }
3933 else
3934 SetScrollRange (hwnd, SB_CTL, 0,
3935 VERTICAL_SCROLL_BAR_TOP_RANGE (f, height), FALSE);
3936 my_show_window (f, hwnd, SW_NORMAL);
3937 /* InvalidateRect (w, NULL, FALSE); */
3938
3939 /* Remember new settings. */
3940 XSETINT (bar->left, sb_left);
3941 XSETINT (bar->top, top);
3942 XSETINT (bar->width, sb_width);
3943 XSETINT (bar->height, height);
3944
3945 UNBLOCK_INPUT;
3946 }
3947 }
3948 w32_set_scroll_bar_thumb (bar, portion, position, whole);
3949
3950 XSETVECTOR (w->vertical_scroll_bar, bar);
3951 }
3952
3953
3954 /* The following three hooks are used when we're doing a thorough
3955 redisplay of the frame. We don't explicitly know which scroll bars
3956 are going to be deleted, because keeping track of when windows go
3957 away is a real pain - "Can you say set-window-configuration, boys
3958 and girls?" Instead, we just assert at the beginning of redisplay
3959 that *all* scroll bars are to be removed, and then save a scroll bar
3960 from the fiery pit when we actually redisplay its window. */
3961
3962 /* Arrange for all scroll bars on FRAME to be removed at the next call
3963 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
3964 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
3965
3966 static void
3967 w32_condemn_scroll_bars (frame)
3968 FRAME_PTR frame;
3969 {
3970 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
3971 while (! NILP (FRAME_SCROLL_BARS (frame)))
3972 {
3973 Lisp_Object bar;
3974 bar = FRAME_SCROLL_BARS (frame);
3975 FRAME_SCROLL_BARS (frame) = XSCROLL_BAR (bar)->next;
3976 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
3977 XSCROLL_BAR (bar)->prev = Qnil;
3978 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
3979 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
3980 FRAME_CONDEMNED_SCROLL_BARS (frame) = bar;
3981 }
3982 }
3983
3984
3985 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
3986 Note that WINDOW isn't necessarily condemned at all. */
3987
3988 static void
3989 w32_redeem_scroll_bar (window)
3990 struct window *window;
3991 {
3992 struct scroll_bar *bar;
3993 struct frame *f;
3994
3995 /* We can't redeem this window's scroll bar if it doesn't have one. */
3996 if (NILP (window->vertical_scroll_bar))
3997 abort ();
3998
3999 bar = XSCROLL_BAR (window->vertical_scroll_bar);
4000
4001 /* Unlink it from the condemned list. */
4002 f = XFRAME (WINDOW_FRAME (window));
4003 if (NILP (bar->prev))
4004 {
4005 /* If the prev pointer is nil, it must be the first in one of
4006 the lists. */
4007 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
4008 /* It's not condemned. Everything's fine. */
4009 return;
4010 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
4011 window->vertical_scroll_bar))
4012 FRAME_CONDEMNED_SCROLL_BARS (f) = bar->next;
4013 else
4014 /* If its prev pointer is nil, it must be at the front of
4015 one or the other! */
4016 abort ();
4017 }
4018 else
4019 XSCROLL_BAR (bar->prev)->next = bar->next;
4020
4021 if (! NILP (bar->next))
4022 XSCROLL_BAR (bar->next)->prev = bar->prev;
4023
4024 bar->next = FRAME_SCROLL_BARS (f);
4025 bar->prev = Qnil;
4026 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
4027 if (! NILP (bar->next))
4028 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
4029 }
4030
4031 /* Remove all scroll bars on FRAME that haven't been saved since the
4032 last call to `*condemn_scroll_bars_hook'. */
4033
4034 static void
4035 w32_judge_scroll_bars (f)
4036 FRAME_PTR f;
4037 {
4038 Lisp_Object bar, next;
4039
4040 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
4041
4042 /* Clear out the condemned list now so we won't try to process any
4043 more events on the hapless scroll bars. */
4044 FRAME_CONDEMNED_SCROLL_BARS (f) = Qnil;
4045
4046 for (; ! NILP (bar); bar = next)
4047 {
4048 struct scroll_bar *b = XSCROLL_BAR (bar);
4049
4050 x_scroll_bar_remove (b);
4051
4052 next = b->next;
4053 b->next = b->prev = Qnil;
4054 }
4055
4056 /* Now there should be no references to the condemned scroll bars,
4057 and they should get garbage-collected. */
4058 }
4059
4060 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
4061 is set to something other than NO_EVENT, it is enqueued.
4062
4063 This may be called from a signal handler, so we have to ignore GC
4064 mark bits. */
4065
4066 static int
4067 w32_scroll_bar_handle_click (bar, msg, emacs_event)
4068 struct scroll_bar *bar;
4069 W32Msg *msg;
4070 struct input_event *emacs_event;
4071 {
4072 if (! GC_WINDOWP (bar->window))
4073 abort ();
4074
4075 emacs_event->kind = W32_SCROLL_BAR_CLICK_EVENT;
4076 emacs_event->code = 0;
4077 /* not really meaningful to distinguish up/down */
4078 emacs_event->modifiers = msg->dwModifiers;
4079 emacs_event->frame_or_window = bar->window;
4080 emacs_event->arg = Qnil;
4081 emacs_event->timestamp = msg->msg.time;
4082
4083 {
4084 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
4085 int y;
4086 int dragging = !NILP (bar->dragging);
4087
4088 if (pfnGetScrollInfo)
4089 {
4090 SCROLLINFO si;
4091
4092 si.cbSize = sizeof (si);
4093 si.fMask = SIF_POS;
4094
4095 pfnGetScrollInfo ((HWND) msg->msg.lParam, SB_CTL, &si);
4096 y = si.nPos;
4097 }
4098 else
4099 y = GetScrollPos ((HWND) msg->msg.lParam, SB_CTL);
4100
4101 bar->dragging = Qnil;
4102
4103
4104 last_mouse_scroll_bar_pos = msg->msg.wParam;
4105
4106 switch (LOWORD (msg->msg.wParam))
4107 {
4108 case SB_LINEDOWN:
4109 emacs_event->part = scroll_bar_down_arrow;
4110 break;
4111 case SB_LINEUP:
4112 emacs_event->part = scroll_bar_up_arrow;
4113 break;
4114 case SB_PAGEUP:
4115 emacs_event->part = scroll_bar_above_handle;
4116 break;
4117 case SB_PAGEDOWN:
4118 emacs_event->part = scroll_bar_below_handle;
4119 break;
4120 case SB_TOP:
4121 emacs_event->part = scroll_bar_handle;
4122 y = 0;
4123 break;
4124 case SB_BOTTOM:
4125 emacs_event->part = scroll_bar_handle;
4126 y = top_range;
4127 break;
4128 case SB_THUMBTRACK:
4129 case SB_THUMBPOSITION:
4130 if (VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height)) <= 0xffff)
4131 y = HIWORD (msg->msg.wParam);
4132 bar->dragging = Qt;
4133 emacs_event->part = scroll_bar_handle;
4134
4135 /* "Silently" update current position. */
4136 if (pfnSetScrollInfo)
4137 {
4138 SCROLLINFO si;
4139
4140 si.cbSize = sizeof (si);
4141 si.fMask = SIF_POS;
4142 si.nPos = y;
4143 /* Remember apparent position (we actually lag behind the real
4144 position, so don't set that directly. */
4145 last_scroll_bar_drag_pos = y;
4146
4147 pfnSetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, FALSE);
4148 }
4149 else
4150 SetScrollPos (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, y, FALSE);
4151 break;
4152 case SB_ENDSCROLL:
4153 /* If this is the end of a drag sequence, then reset the scroll
4154 handle size to normal and do a final redraw. Otherwise do
4155 nothing. */
4156 if (dragging)
4157 {
4158 if (pfnSetScrollInfo)
4159 {
4160 SCROLLINFO si;
4161 int start = XINT (bar->start);
4162 int end = XINT (bar->end);
4163
4164 si.cbSize = sizeof (si);
4165 si.fMask = SIF_PAGE | SIF_POS;
4166 si.nPage = end - start + VERTICAL_SCROLL_BAR_MIN_HANDLE;
4167 si.nPos = last_scroll_bar_drag_pos;
4168 pfnSetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, TRUE);
4169 }
4170 else
4171 SetScrollPos (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, y, TRUE);
4172 }
4173 /* fall through */
4174 default:
4175 emacs_event->kind = NO_EVENT;
4176 return FALSE;
4177 }
4178
4179 XSETINT (emacs_event->x, y);
4180 XSETINT (emacs_event->y, top_range);
4181
4182 return TRUE;
4183 }
4184 }
4185
4186 /* Return information to the user about the current position of the mouse
4187 on the scroll bar. */
4188
4189 static void
4190 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time)
4191 FRAME_PTR *fp;
4192 Lisp_Object *bar_window;
4193 enum scroll_bar_part *part;
4194 Lisp_Object *x, *y;
4195 unsigned long *time;
4196 {
4197 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
4198 Window w = SCROLL_BAR_W32_WINDOW (bar);
4199 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4200 int pos;
4201 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
4202
4203 BLOCK_INPUT;
4204
4205 *fp = f;
4206 *bar_window = bar->window;
4207
4208 if (pfnGetScrollInfo)
4209 {
4210 SCROLLINFO si;
4211
4212 si.cbSize = sizeof (si);
4213 si.fMask = SIF_POS | SIF_PAGE | SIF_RANGE;
4214
4215 pfnGetScrollInfo (w, SB_CTL, &si);
4216 pos = si.nPos;
4217 top_range = si.nMax - si.nPage + 1;
4218 }
4219 else
4220 pos = GetScrollPos (w, SB_CTL);
4221
4222 switch (LOWORD (last_mouse_scroll_bar_pos))
4223 {
4224 case SB_THUMBPOSITION:
4225 case SB_THUMBTRACK:
4226 *part = scroll_bar_handle;
4227 if (VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height)) <= 0xffff)
4228 pos = HIWORD (last_mouse_scroll_bar_pos);
4229 break;
4230 case SB_LINEDOWN:
4231 *part = scroll_bar_handle;
4232 pos++;
4233 break;
4234 default:
4235 *part = scroll_bar_handle;
4236 break;
4237 }
4238
4239 XSETINT (*x, pos);
4240 XSETINT (*y, top_range);
4241
4242 f->mouse_moved = 0;
4243 last_mouse_scroll_bar = Qnil;
4244
4245 *time = last_mouse_movement_time;
4246
4247 UNBLOCK_INPUT;
4248 }
4249
4250
4251 /* The screen has been cleared so we may have changed foreground or
4252 background colors, and the scroll bars may need to be redrawn.
4253 Clear out the scroll bars, and ask for expose events, so we can
4254 redraw them. */
4255
4256 void
4257 x_scroll_bar_clear (f)
4258 FRAME_PTR f;
4259 {
4260 Lisp_Object bar;
4261
4262 /* We can have scroll bars even if this is 0,
4263 if we just turned off scroll bar mode.
4264 But in that case we should not clear them. */
4265 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
4266 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
4267 bar = XSCROLL_BAR (bar)->next)
4268 {
4269 HWND window = SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar));
4270 HDC hdc = GetDC (window);
4271 RECT rect;
4272
4273 /* Hide scroll bar until ready to repaint. x_scroll_bar_move
4274 arranges to refresh the scroll bar if hidden. */
4275 my_show_window (f, window, SW_HIDE);
4276
4277 GetClientRect (window, &rect);
4278 select_palette (f, hdc);
4279 w32_clear_rect (f, hdc, &rect);
4280 deselect_palette (f, hdc);
4281
4282 ReleaseDC (window, hdc);
4283 }
4284 }
4285
4286 \f
4287 /* The main W32 event-reading loop - w32_read_socket. */
4288
4289 /* Record the last 100 characters stored
4290 to help debug the loss-of-chars-during-GC problem. */
4291
4292 static int temp_index;
4293 static short temp_buffer[100];
4294
4295
4296 /* Read events coming from the W32 shell.
4297 This routine is called by the SIGIO handler.
4298 We return as soon as there are no more events to be read.
4299
4300 We return the number of characters stored into the buffer,
4301 thus pretending to be `read'.
4302
4303 EXPECTED is nonzero if the caller knows input is available.
4304
4305 Some of these messages are reposted back to the message queue since the
4306 system calls the windows proc directly in a context where we cannot return
4307 the data nor can we guarantee the state we are in. So if we dispatch them
4308 we will get into an infinite loop. To prevent this from ever happening we
4309 will set a variable to indicate we are in the read_socket call and indicate
4310 which message we are processing since the windows proc gets called
4311 recursively with different messages by the system.
4312 */
4313
4314 int
4315 w32_read_socket (sd, expected, hold_quit)
4316 register int sd;
4317 int expected;
4318 struct input_event *hold_quit;
4319 {
4320 int count = 0;
4321 int check_visibility = 0;
4322 W32Msg msg;
4323 struct frame *f;
4324 struct w32_display_info *dpyinfo = &one_w32_display_info;
4325
4326 if (interrupt_input_blocked)
4327 {
4328 interrupt_input_pending = 1;
4329 return -1;
4330 }
4331
4332 interrupt_input_pending = 0;
4333 BLOCK_INPUT;
4334
4335 /* So people can tell when we have read the available input. */
4336 input_signal_count++;
4337
4338 /* TODO: ghostscript integration. */
4339 while (get_next_msg (&msg, FALSE))
4340 {
4341 struct input_event inev;
4342 int do_help = 0;
4343
4344 EVENT_INIT (inev);
4345 inev.kind = NO_EVENT;
4346 inev.arg = Qnil;
4347
4348 switch (msg.msg.message)
4349 {
4350 case WM_PAINT:
4351 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4352
4353 if (f)
4354 {
4355 if (msg.rect.right == msg.rect.left ||
4356 msg.rect.bottom == msg.rect.top)
4357 {
4358 /* We may get paint messages even though the client
4359 area is clipped - these are not expose events. */
4360 DebPrint (("clipped frame %p (%s) got WM_PAINT - ignored\n", f,
4361 SDATA (f->name)));
4362 }
4363 else if (f->async_visible != 1)
4364 {
4365 /* Definitely not obscured, so mark as visible. */
4366 f->async_visible = 1;
4367 f->async_iconified = 0;
4368 SET_FRAME_GARBAGED (f);
4369 DebPrint (("frame %p (%s) reexposed by WM_PAINT\n", f,
4370 SDATA (f->name)));
4371
4372 /* WM_PAINT serves as MapNotify as well, so report
4373 visibility changes properly. */
4374 if (f->iconified)
4375 {
4376 inev.kind = DEICONIFY_EVENT;
4377 XSETFRAME (inev.frame_or_window, f);
4378 }
4379 else if (! NILP (Vframe_list)
4380 && ! NILP (XCDR (Vframe_list)))
4381 /* Force a redisplay sooner or later to update the
4382 frame titles in case this is the second frame. */
4383 record_asynch_buffer_change ();
4384 }
4385 else
4386 {
4387 HDC hdc = get_frame_dc (f);
4388
4389 /* Erase background again for safety. */
4390 w32_clear_rect (f, hdc, &msg.rect);
4391 release_frame_dc (f, hdc);
4392 expose_frame (f,
4393 msg.rect.left,
4394 msg.rect.top,
4395 msg.rect.right - msg.rect.left,
4396 msg.rect.bottom - msg.rect.top);
4397 }
4398 }
4399 break;
4400
4401 case WM_INPUTLANGCHANGE:
4402 /* Generate a language change event. */
4403 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4404
4405 if (f)
4406 {
4407 inev.kind = LANGUAGE_CHANGE_EVENT;
4408 XSETFRAME (inev.frame_or_window, f);
4409 inev.code = msg.msg.wParam;
4410 inev.modifiers = msg.msg.lParam & 0xffff;
4411 }
4412 break;
4413
4414 case WM_KEYDOWN:
4415 case WM_SYSKEYDOWN:
4416 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4417
4418 if (f && !f->iconified)
4419 {
4420 if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight))
4421 {
4422 clear_mouse_face (dpyinfo);
4423 dpyinfo->mouse_face_hidden = 1;
4424 }
4425
4426 if (temp_index == sizeof temp_buffer / sizeof (short))
4427 temp_index = 0;
4428 temp_buffer[temp_index++] = msg.msg.wParam;
4429 inev.kind = NON_ASCII_KEYSTROKE_EVENT;
4430 inev.code = msg.msg.wParam;
4431 inev.modifiers = msg.dwModifiers;
4432 XSETFRAME (inev.frame_or_window, f);
4433 inev.timestamp = msg.msg.time;
4434 }
4435 break;
4436
4437 case WM_SYSCHAR:
4438 case WM_CHAR:
4439 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4440
4441 if (f && !f->iconified)
4442 {
4443 if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight))
4444 {
4445 clear_mouse_face (dpyinfo);
4446 dpyinfo->mouse_face_hidden = 1;
4447 }
4448
4449 if (temp_index == sizeof temp_buffer / sizeof (short))
4450 temp_index = 0;
4451 temp_buffer[temp_index++] = msg.msg.wParam;
4452 inev.kind = ASCII_KEYSTROKE_EVENT;
4453 inev.code = msg.msg.wParam;
4454 inev.modifiers = msg.dwModifiers;
4455 XSETFRAME (inev.frame_or_window, f);
4456 inev.timestamp = msg.msg.time;
4457 }
4458 break;
4459
4460 case WM_MOUSEMOVE:
4461 /* Ignore non-movement. */
4462 {
4463 int x = LOWORD (msg.msg.lParam);
4464 int y = HIWORD (msg.msg.lParam);
4465 if (x == last_mousemove_x && y == last_mousemove_y)
4466 break;
4467 last_mousemove_x = x;
4468 last_mousemove_y = y;
4469 }
4470
4471 previous_help_echo_string = help_echo_string;
4472 help_echo_string = Qnil;
4473
4474 if (dpyinfo->grabbed && last_mouse_frame
4475 && FRAME_LIVE_P (last_mouse_frame))
4476 f = last_mouse_frame;
4477 else
4478 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4479
4480 if (dpyinfo->mouse_face_hidden)
4481 {
4482 dpyinfo->mouse_face_hidden = 0;
4483 clear_mouse_face (dpyinfo);
4484 }
4485
4486 if (f)
4487 {
4488 /* Generate SELECT_WINDOW_EVENTs when needed. */
4489 if (mouse_autoselect_window)
4490 {
4491 Lisp_Object window;
4492 int x = LOWORD (msg.msg.lParam);
4493 int y = HIWORD (msg.msg.lParam);
4494
4495 window = window_from_coordinates (f, x, y, 0, 0, 0, 0);
4496
4497 /* Window will be selected only when it is not
4498 selected now and last mouse movement event was
4499 not in it. Minibuffer window will be selected
4500 iff it is active. */
4501 if (WINDOWP(window)
4502 && !EQ (window, last_window)
4503 && !EQ (window, selected_window))
4504 {
4505 inev.kind = SELECT_WINDOW_EVENT;
4506 inev.frame_or_window = window;
4507 }
4508
4509 last_window=window;
4510 }
4511 if (!note_mouse_movement (f, &msg.msg))
4512 help_echo_string = previous_help_echo_string;
4513 }
4514 else
4515 {
4516 /* If we move outside the frame, then we're
4517 certainly no longer on any text in the frame. */
4518 clear_mouse_face (dpyinfo);
4519 }
4520
4521 /* If the contents of the global variable help_echo_string
4522 has changed, generate a HELP_EVENT. */
4523 #if 0 /* The below is an invalid comparison when USE_LISP_UNION_TYPE.
4524 But it was originally changed to this to fix a bug, so I have
4525 not removed it completely in case the bug is still there. */
4526 if (help_echo_string != previous_help_echo_string ||
4527 (!NILP (help_echo_string) && !STRINGP (help_echo_string) && f->mouse_moved))
4528 #else /* This is what xterm.c does. */
4529 if (!NILP (help_echo_string)
4530 || !NILP (previous_help_echo_string))
4531 do_help = 1;
4532 #endif
4533 break;
4534
4535 case WM_LBUTTONDOWN:
4536 case WM_LBUTTONUP:
4537 case WM_MBUTTONDOWN:
4538 case WM_MBUTTONUP:
4539 case WM_RBUTTONDOWN:
4540 case WM_RBUTTONUP:
4541 case WM_XBUTTONDOWN:
4542 case WM_XBUTTONUP:
4543 {
4544 /* If we decide we want to generate an event to be seen
4545 by the rest of Emacs, we put it here. */
4546 int tool_bar_p = 0;
4547 int button;
4548 int up;
4549
4550 if (dpyinfo->grabbed && last_mouse_frame
4551 && FRAME_LIVE_P (last_mouse_frame))
4552 f = last_mouse_frame;
4553 else
4554 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4555
4556 if (f)
4557 {
4558 construct_mouse_click (&inev, &msg, f);
4559
4560 /* Is this in the tool-bar? */
4561 if (WINDOWP (f->tool_bar_window)
4562 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)))
4563 {
4564 Lisp_Object window;
4565 int x = XFASTINT (inev.x);
4566 int y = XFASTINT (inev.y);
4567
4568 window = window_from_coordinates (f, x, y, 0, 0, 0, 1);
4569
4570 if (EQ (window, f->tool_bar_window))
4571 {
4572 w32_handle_tool_bar_click (f, &inev);
4573 tool_bar_p = 1;
4574 }
4575 }
4576
4577 if (tool_bar_p
4578 || (dpyinfo->w32_focus_frame
4579 && f != dpyinfo->w32_focus_frame))
4580 inev.kind = NO_EVENT;
4581 }
4582
4583 parse_button (msg.msg.message, HIWORD (msg.msg.wParam),
4584 &button, &up);
4585
4586 if (up)
4587 {
4588 dpyinfo->grabbed &= ~ (1 << button);
4589 }
4590 else
4591 {
4592 dpyinfo->grabbed |= (1 << button);
4593 last_mouse_frame = f;
4594 /* Ignore any mouse motion that happened
4595 before this event; any subsequent mouse-movement
4596 Emacs events should reflect only motion after
4597 the ButtonPress. */
4598 if (f != 0)
4599 f->mouse_moved = 0;
4600
4601 if (!tool_bar_p)
4602 last_tool_bar_item = -1;
4603 }
4604 break;
4605 }
4606
4607 case WM_MOUSEWHEEL:
4608 {
4609 if (dpyinfo->grabbed && last_mouse_frame
4610 && FRAME_LIVE_P (last_mouse_frame))
4611 f = last_mouse_frame;
4612 else
4613 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4614
4615 if (f)
4616 {
4617
4618 if (!dpyinfo->w32_focus_frame
4619 || f == dpyinfo->w32_focus_frame)
4620 {
4621 /* Emit an Emacs wheel-up/down event. */
4622 construct_mouse_wheel (&inev, &msg, f);
4623 }
4624 /* Ignore any mouse motion that happened before this
4625 event; any subsequent mouse-movement Emacs events
4626 should reflect only motion after the
4627 ButtonPress. */
4628 f->mouse_moved = 0;
4629 }
4630 last_mouse_frame = f;
4631 last_tool_bar_item = -1;
4632 }
4633 break;
4634
4635 case WM_DROPFILES:
4636 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4637
4638 if (f)
4639 construct_drag_n_drop (&inev, &msg, f);
4640 break;
4641
4642 case WM_VSCROLL:
4643 {
4644 struct scroll_bar *bar =
4645 x_window_to_scroll_bar ((HWND)msg.msg.lParam);
4646
4647 if (bar)
4648 w32_scroll_bar_handle_click (bar, &msg, &inev);
4649 break;
4650 }
4651
4652 case WM_WINDOWPOSCHANGED:
4653 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4654 if (f)
4655 {
4656 if (f->want_fullscreen & FULLSCREEN_WAIT)
4657 f->want_fullscreen &= ~(FULLSCREEN_WAIT|FULLSCREEN_BOTH);
4658 }
4659 check_visibility = 1;
4660 break;
4661
4662 case WM_ACTIVATE:
4663 case WM_ACTIVATEAPP:
4664 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4665 if (f)
4666 x_check_fullscreen (f);
4667 check_visibility = 1;
4668 break;
4669
4670 case WM_MOVE:
4671 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4672
4673 if (f && !f->async_iconified)
4674 {
4675 int x, y;
4676
4677 x_real_positions (f, &x, &y);
4678 f->left_pos = x;
4679 f->top_pos = y;
4680 }
4681
4682 check_visibility = 1;
4683 break;
4684
4685 case WM_SHOWWINDOW:
4686 /* wParam non-zero means Window is about to be shown, 0 means
4687 about to be hidden. */
4688 /* Redo the mouse-highlight after the tooltip has gone. */
4689 if (!msg.msg.wParam && msg.msg.hwnd == tip_window)
4690 {
4691 tip_window = NULL;
4692 redo_mouse_highlight ();
4693 }
4694
4695 /* If window has been obscured or exposed by another window
4696 being maximised or minimised/restored, then recheck
4697 visibility of all frames. Direct changes to our own
4698 windows get handled by WM_SIZE. */
4699 #if 0
4700 if (msg.msg.lParam != 0)
4701 check_visibility = 1;
4702 else
4703 {
4704 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4705 f->async_visible = msg.msg.wParam;
4706 }
4707 #endif
4708
4709 check_visibility = 1;
4710 break;
4711
4712 case WM_SIZE:
4713 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4714
4715 /* Inform lisp of whether frame has been iconified etc. */
4716 if (f)
4717 {
4718 switch (msg.msg.wParam)
4719 {
4720 case SIZE_MINIMIZED:
4721 f->async_visible = 0;
4722 f->async_iconified = 1;
4723
4724 inev.kind = ICONIFY_EVENT;
4725 XSETFRAME (inev.frame_or_window, f);
4726 break;
4727
4728 case SIZE_MAXIMIZED:
4729 case SIZE_RESTORED:
4730 f->async_visible = 1;
4731 f->async_iconified = 0;
4732
4733 /* wait_reading_process_output will notice this and update
4734 the frame's display structures. */
4735 SET_FRAME_GARBAGED (f);
4736
4737 if (f->iconified)
4738 {
4739 int x, y;
4740
4741 /* Reset top and left positions of the Window
4742 here since Windows sends a WM_MOVE message
4743 BEFORE telling us the Window is minimized
4744 when the Window is iconified, with 3000,3000
4745 as the co-ords. */
4746 x_real_positions (f, &x, &y);
4747 f->left_pos = x;
4748 f->top_pos = y;
4749
4750 inev.kind = DEICONIFY_EVENT;
4751 XSETFRAME (inev.frame_or_window, f);
4752 }
4753 else if (! NILP (Vframe_list)
4754 && ! NILP (XCDR (Vframe_list)))
4755 /* Force a redisplay sooner or later
4756 to update the frame titles
4757 in case this is the second frame. */
4758 record_asynch_buffer_change ();
4759 break;
4760 }
4761 }
4762
4763 if (f && !f->async_iconified && msg.msg.wParam != SIZE_MINIMIZED)
4764 {
4765 RECT rect;
4766 int rows;
4767 int columns;
4768 int width;
4769 int height;
4770
4771 GetClientRect (msg.msg.hwnd, &rect);
4772
4773 height = rect.bottom - rect.top;
4774 width = rect.right - rect.left;
4775
4776 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, height);
4777 columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, width);
4778
4779 /* TODO: Clip size to the screen dimensions. */
4780
4781 /* Even if the number of character rows and columns has
4782 not changed, the font size may have changed, so we need
4783 to check the pixel dimensions as well. */
4784
4785 if (columns != FRAME_COLS (f)
4786 || rows != FRAME_LINES (f)
4787 || width != FRAME_PIXEL_WIDTH (f)
4788 || height != FRAME_PIXEL_HEIGHT (f))
4789 {
4790 change_frame_size (f, rows, columns, 0, 1, 0);
4791 SET_FRAME_GARBAGED (f);
4792 cancel_mouse_face (f);
4793 FRAME_PIXEL_WIDTH (f) = width;
4794 FRAME_PIXEL_HEIGHT (f) = height;
4795 f->win_gravity = NorthWestGravity;
4796 }
4797 }
4798
4799 check_visibility = 1;
4800 break;
4801
4802 case WM_MOUSELEAVE:
4803 f = x_any_window_to_frame (dpyinfo, msg.msg.hwnd);
4804 if (f)
4805 {
4806 if (f == dpyinfo->mouse_face_mouse_frame)
4807 {
4808 /* If we move outside the frame, then we're
4809 certainly no longer on any text in the frame. */
4810 clear_mouse_face (dpyinfo);
4811 dpyinfo->mouse_face_mouse_frame = 0;
4812 }
4813
4814 /* Generate a nil HELP_EVENT to cancel a help-echo.
4815 Do it only if there's something to cancel.
4816 Otherwise, the startup message is cleared when
4817 the mouse leaves the frame. */
4818 if (any_help_event_p)
4819 do_help = -1;
4820 }
4821 break;
4822
4823 case WM_SETFOCUS:
4824 w32_detect_focus_change (dpyinfo, &msg, &inev);
4825
4826 dpyinfo->grabbed = 0;
4827 check_visibility = 1;
4828 break;
4829
4830 case WM_KILLFOCUS:
4831 f = x_top_window_to_frame (dpyinfo, msg.msg.hwnd);
4832
4833 if (f)
4834 {
4835 if (f == dpyinfo->w32_focus_event_frame)
4836 dpyinfo->w32_focus_event_frame = 0;
4837
4838 if (f == dpyinfo->w32_focus_frame)
4839 x_new_focus_frame (dpyinfo, 0);
4840
4841 if (f == dpyinfo->mouse_face_mouse_frame)
4842 {
4843 /* If we move outside the frame, then we're
4844 certainly no longer on any text in the frame. */
4845 clear_mouse_face (dpyinfo);
4846 dpyinfo->mouse_face_mouse_frame = 0;
4847 }
4848
4849 /* Generate a nil HELP_EVENT to cancel a help-echo.
4850 Do it only if there's something to cancel.
4851 Otherwise, the startup message is cleared when
4852 the mouse leaves the frame. */
4853 if (any_help_event_p)
4854 do_help = -1;
4855 }
4856
4857 dpyinfo->grabbed = 0;
4858 check_visibility = 1;
4859 break;
4860
4861 case WM_CLOSE:
4862 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4863
4864 if (f)
4865 {
4866 inev.kind = DELETE_WINDOW_EVENT;
4867 XSETFRAME (inev.frame_or_window, f);
4868 }
4869 break;
4870
4871 case WM_INITMENU:
4872 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4873
4874 if (f)
4875 {
4876 inev.kind = MENU_BAR_ACTIVATE_EVENT;
4877 XSETFRAME (inev.frame_or_window, f);
4878 }
4879 break;
4880
4881 case WM_COMMAND:
4882 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4883
4884 if (f)
4885 {
4886 extern void menubar_selection_callback
4887 (FRAME_PTR f, void * client_data);
4888 menubar_selection_callback (f, (void *)msg.msg.wParam);
4889 }
4890
4891 check_visibility = 1;
4892 break;
4893
4894 case WM_DISPLAYCHANGE:
4895 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4896
4897 if (f)
4898 {
4899 dpyinfo->width = (short) LOWORD (msg.msg.lParam);
4900 dpyinfo->height = (short) HIWORD (msg.msg.lParam);
4901 dpyinfo->n_cbits = msg.msg.wParam;
4902 DebPrint (("display change: %d %d\n", dpyinfo->width,
4903 dpyinfo->height));
4904 }
4905
4906 check_visibility = 1;
4907 break;
4908
4909 default:
4910 /* Check for messages registered at runtime. */
4911 if (msg.msg.message == msh_mousewheel)
4912 {
4913 /* Forward MSH_MOUSEWHEEL as WM_MOUSEWHEEL. */
4914 msg.msg.message = WM_MOUSEWHEEL;
4915 prepend_msg (&msg);
4916 }
4917 break;
4918 }
4919
4920 if (inev.kind != NO_EVENT)
4921 {
4922 kbd_buffer_store_event_hold (&inev, hold_quit);
4923 count++;
4924 }
4925
4926 if (do_help
4927 && !(hold_quit && hold_quit->kind != NO_EVENT))
4928 {
4929 Lisp_Object frame;
4930
4931 if (f)
4932 XSETFRAME (frame, f);
4933 else
4934 frame = Qnil;
4935
4936 if (do_help > 0)
4937 {
4938 if (NILP (help_echo_string))
4939 {
4940 help_echo_object = help_echo_window = Qnil;
4941 help_echo_pos = -1;
4942 }
4943
4944 any_help_event_p = 1;
4945 gen_help_event (help_echo_string, frame, help_echo_window,
4946 help_echo_object, help_echo_pos);
4947 }
4948 else
4949 {
4950 help_echo_string = Qnil;
4951 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
4952 }
4953 count++;
4954 }
4955 }
4956
4957 /* If the focus was just given to an autoraising frame,
4958 raise it now. */
4959 /* ??? This ought to be able to handle more than one such frame. */
4960 if (pending_autoraise_frame)
4961 {
4962 x_raise_frame (pending_autoraise_frame);
4963 pending_autoraise_frame = 0;
4964 }
4965
4966 /* Check which frames are still visisble, if we have enqueued any user
4967 events or been notified of events that may affect visibility. We
4968 do this here because there doesn't seem to be any direct
4969 notification from Windows that the visibility of a window has
4970 changed (at least, not in all cases). */
4971 if (count > 0 || check_visibility)
4972 {
4973 Lisp_Object tail, frame;
4974
4975 FOR_EACH_FRAME (tail, frame)
4976 {
4977 FRAME_PTR f = XFRAME (frame);
4978 /* The tooltip has been drawn already. Avoid the
4979 SET_FRAME_GARBAGED below. */
4980 if (EQ (frame, tip_frame))
4981 continue;
4982
4983 /* Check "visible" frames and mark each as obscured or not.
4984 Note that async_visible is nonzero for unobscured and
4985 obscured frames, but zero for hidden and iconified frames. */
4986 if (FRAME_W32_P (f) && f->async_visible)
4987 {
4988 RECT clipbox;
4989 HDC hdc;
4990
4991 enter_crit ();
4992 /* Query clipping rectangle for the entire window area
4993 (GetWindowDC), not just the client portion (GetDC).
4994 Otherwise, the scrollbars and menubar aren't counted as
4995 part of the visible area of the frame, and we may think
4996 the frame is obscured when really a scrollbar is still
4997 visible and gets WM_PAINT messages above. */
4998 hdc = GetWindowDC (FRAME_W32_WINDOW (f));
4999 GetClipBox (hdc, &clipbox);
5000 ReleaseDC (FRAME_W32_WINDOW (f), hdc);
5001 leave_crit ();
5002
5003 if (clipbox.right == clipbox.left
5004 || clipbox.bottom == clipbox.top)
5005 {
5006 /* Frame has become completely obscured so mark as
5007 such (we do this by setting async_visible to 2 so
5008 that FRAME_VISIBLE_P is still true, but redisplay
5009 will skip it). */
5010 f->async_visible = 2;
5011
5012 if (!FRAME_OBSCURED_P (f))
5013 {
5014 DebPrint (("frame %p (%s) obscured\n", f,
5015 SDATA (f->name)));
5016 }
5017 }
5018 else
5019 {
5020 /* Frame is not obscured, so mark it as such. */
5021 f->async_visible = 1;
5022
5023 if (FRAME_OBSCURED_P (f))
5024 {
5025 SET_FRAME_GARBAGED (f);
5026 DebPrint (("obscured frame %p (%s) found to be visible\n", f,
5027 SDATA (f->name)));
5028
5029 /* Force a redisplay sooner or later. */
5030 record_asynch_buffer_change ();
5031 }
5032 }
5033 }
5034 }
5035 }
5036
5037 UNBLOCK_INPUT;
5038 return count;
5039 }
5040
5041
5042 \f
5043 /***********************************************************************
5044 Text Cursor
5045 ***********************************************************************/
5046
5047 /* Set clipping for output in glyph row ROW. W is the window in which
5048 we operate. GC is the graphics context to set clipping in.
5049
5050 ROW may be a text row or, e.g., a mode line. Text rows must be
5051 clipped to the interior of the window dedicated to text display,
5052 mode lines must be clipped to the whole window. */
5053
5054 static void
5055 w32_clip_to_row (w, row, area, hdc)
5056 struct window *w;
5057 struct glyph_row *row;
5058 int area;
5059 HDC hdc;
5060 {
5061 struct frame *f = XFRAME (WINDOW_FRAME (w));
5062 RECT clip_rect;
5063 int window_x, window_y, window_width;
5064
5065 window_box (w, area, &window_x, &window_y, &window_width, 0);
5066
5067 clip_rect.left = window_x;
5068 clip_rect.top = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
5069 clip_rect.top = max (clip_rect.top, window_y);
5070 clip_rect.right = clip_rect.left + window_width;
5071 clip_rect.bottom = clip_rect.top + row->visible_height;
5072
5073 w32_set_clip_rectangle (hdc, &clip_rect);
5074 }
5075
5076
5077 /* Draw a hollow box cursor on window W in glyph row ROW. */
5078
5079 static void
5080 x_draw_hollow_cursor (w, row)
5081 struct window *w;
5082 struct glyph_row *row;
5083 {
5084 struct frame *f = XFRAME (WINDOW_FRAME (w));
5085 HDC hdc;
5086 RECT rect;
5087 int h;
5088 struct glyph *cursor_glyph;
5089 HBRUSH hb = CreateSolidBrush (f->output_data.w32->cursor_pixel);
5090
5091 /* Get the glyph the cursor is on. If we can't tell because
5092 the current matrix is invalid or such, give up. */
5093 cursor_glyph = get_phys_cursor_glyph (w);
5094 if (cursor_glyph == NULL)
5095 return;
5096
5097 /* Compute frame-relative coordinates for phys cursor. */
5098 rect.left = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
5099 rect.top = get_phys_cursor_geometry (w, row, cursor_glyph, &h);
5100 rect.bottom = rect.top + h;
5101 rect.right = rect.left + w->phys_cursor_width;
5102
5103 hdc = get_frame_dc (f);
5104 /* Set clipping, draw the rectangle, and reset clipping again. */
5105 w32_clip_to_row (w, row, TEXT_AREA, hdc);
5106 FrameRect (hdc, &rect, hb);
5107 DeleteObject (hb);
5108 w32_set_clip_rectangle (hdc, NULL);
5109 release_frame_dc (f, hdc);
5110 }
5111
5112
5113 /* Draw a bar cursor on window W in glyph row ROW.
5114
5115 Implementation note: One would like to draw a bar cursor with an
5116 angle equal to the one given by the font property XA_ITALIC_ANGLE.
5117 Unfortunately, I didn't find a font yet that has this property set.
5118 --gerd. */
5119
5120 static void
5121 x_draw_bar_cursor (w, row, width, kind)
5122 struct window *w;
5123 struct glyph_row *row;
5124 int width;
5125 enum text_cursor_kinds kind;
5126 {
5127 struct frame *f = XFRAME (w->frame);
5128 struct glyph *cursor_glyph;
5129 int x;
5130 HDC hdc;
5131
5132 /* If cursor is out of bounds, don't draw garbage. This can happen
5133 in mini-buffer windows when switching between echo area glyphs
5134 and mini-buffer. */
5135 cursor_glyph = get_phys_cursor_glyph (w);
5136 if (cursor_glyph == NULL)
5137 return;
5138
5139 /* If on an image, draw like a normal cursor. That's usually better
5140 visible than drawing a bar, esp. if the image is large so that
5141 the bar might not be in the window. */
5142 if (cursor_glyph->type == IMAGE_GLYPH)
5143 {
5144 struct glyph_row *row;
5145 row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
5146 draw_phys_cursor_glyph (w, row, DRAW_CURSOR);
5147 }
5148 else
5149 {
5150 COLORREF cursor_color = f->output_data.w32->cursor_pixel;
5151 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
5152
5153 /* If the glyph's background equals the color we normally draw
5154 the bar cursor in, the bar cursor in its normal color is
5155 invisible. Use the glyph's foreground color instead in this
5156 case, on the assumption that the glyph's colors are chosen so
5157 that the glyph is legible. */
5158 if (face->background == cursor_color)
5159 cursor_color = face->foreground;
5160
5161 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
5162
5163 if (width < 0)
5164 width = FRAME_CURSOR_WIDTH (f);
5165 width = min (cursor_glyph->pixel_width, width);
5166
5167 w->phys_cursor_width = width;
5168
5169
5170 hdc = get_frame_dc (f);
5171 w32_clip_to_row (w, row, TEXT_AREA, hdc);
5172
5173 if (kind == BAR_CURSOR)
5174 {
5175 w32_fill_area (f, hdc, cursor_color, x,
5176 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
5177 width, row->height);
5178 }
5179 else
5180 {
5181 w32_fill_area (f, hdc, cursor_color, x,
5182 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
5183 row->height - width),
5184 cursor_glyph->pixel_width, width);
5185 }
5186
5187 w32_set_clip_rectangle (hdc, NULL);
5188 release_frame_dc (f, hdc);
5189 }
5190 }
5191
5192
5193 /* RIF: Define cursor CURSOR on frame F. */
5194
5195 static void
5196 w32_define_frame_cursor (f, cursor)
5197 struct frame *f;
5198 Cursor cursor;
5199 {
5200 w32_define_cursor (FRAME_W32_WINDOW (f), cursor);
5201 }
5202
5203
5204 /* RIF: Clear area on frame F. */
5205
5206 static void
5207 w32_clear_frame_area (f, x, y, width, height)
5208 struct frame *f;
5209 int x, y, width, height;
5210 {
5211 HDC hdc;
5212
5213 hdc = get_frame_dc (f);
5214 w32_clear_area (f, hdc, x, y, width, height);
5215 release_frame_dc (f, hdc);
5216 }
5217
5218 /* RIF: Draw or clear cursor on window W. */
5219
5220 static void
5221 w32_draw_window_cursor (w, glyph_row, x, y, cursor_type, cursor_width, on_p, active_p)
5222 struct window *w;
5223 struct glyph_row *glyph_row;
5224 int x, y;
5225 int cursor_type, cursor_width;
5226 int on_p, active_p;
5227 {
5228 if (on_p)
5229 {
5230 /* If the user wants to use the system caret, make sure our own
5231 cursor remains invisible. */
5232 if (w32_use_visible_system_caret)
5233 {
5234 /* Call to erase_phys_cursor here seems to use the
5235 wrong values of w->phys_cursor, as they have been
5236 overwritten before this function was called. */
5237 if (w->phys_cursor_type != NO_CURSOR)
5238 erase_phys_cursor (w);
5239
5240 cursor_type = w->phys_cursor_type = NO_CURSOR;
5241 w->phys_cursor_width = -1;
5242 }
5243 else
5244 {
5245 w->phys_cursor_type = cursor_type;
5246 }
5247
5248 w->phys_cursor_on_p = 1;
5249
5250 /* If this is the active cursor, we need to track it with the
5251 system caret, so third party software like screen magnifiers
5252 and speech synthesizers can follow the cursor. */
5253 if (active_p)
5254 {
5255 struct frame *f = XFRAME (WINDOW_FRAME (w));
5256 HWND hwnd = FRAME_W32_WINDOW (f);
5257
5258 w32_system_caret_x
5259 = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
5260 w32_system_caret_y
5261 = (WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y)
5262 + glyph_row->ascent - w->phys_cursor_ascent);
5263
5264 /* If the size of the active cursor changed, destroy the old
5265 system caret. */
5266 if (w32_system_caret_hwnd
5267 && (w32_system_caret_height != w->phys_cursor_height))
5268 PostMessage (hwnd, WM_EMACS_DESTROY_CARET, 0, 0);
5269
5270 w32_system_caret_height = w->phys_cursor_height;
5271
5272 /* Move the system caret. */
5273 PostMessage (hwnd, WM_EMACS_TRACK_CARET, 0, 0);
5274 }
5275
5276 if (glyph_row->exact_window_width_line_p
5277 && w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])
5278 {
5279 glyph_row->cursor_in_fringe_p = 1;
5280 draw_fringe_bitmap (w, glyph_row, 0);
5281 return;
5282 }
5283
5284 switch (cursor_type)
5285 {
5286 case HOLLOW_BOX_CURSOR:
5287 x_draw_hollow_cursor (w, glyph_row);
5288 break;
5289
5290 case FILLED_BOX_CURSOR:
5291 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
5292 break;
5293
5294 case BAR_CURSOR:
5295 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
5296 break;
5297
5298 case HBAR_CURSOR:
5299 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
5300 break;
5301
5302 case NO_CURSOR:
5303 w->phys_cursor_width = 0;
5304 break;
5305
5306 default:
5307 abort ();
5308 }
5309 }
5310 }
5311
5312
5313 \f
5314 /* Icons. */
5315
5316 int
5317 x_bitmap_icon (f, icon)
5318 struct frame *f;
5319 Lisp_Object icon;
5320 {
5321 HANDLE main_icon;
5322 HANDLE small_icon = NULL;
5323
5324 if (FRAME_W32_WINDOW (f) == 0)
5325 return 1;
5326
5327 if (NILP (icon))
5328 main_icon = LoadIcon (hinst, EMACS_CLASS);
5329 else if (STRINGP (icon))
5330 {
5331 /* Load the main icon from the named file. */
5332 main_icon = LoadImage (NULL, (LPCTSTR) SDATA (icon), IMAGE_ICON, 0, 0,
5333 LR_DEFAULTSIZE | LR_LOADFROMFILE);
5334 /* Try to load a small icon to go with it. */
5335 small_icon = LoadImage (NULL, (LPCSTR) SDATA (icon), IMAGE_ICON,
5336 GetSystemMetrics (SM_CXSMICON),
5337 GetSystemMetrics (SM_CYSMICON),
5338 LR_LOADFROMFILE);
5339 }
5340 else if (SYMBOLP (icon))
5341 {
5342 LPCTSTR name;
5343
5344 if (EQ (icon, intern ("application")))
5345 name = (LPCTSTR) IDI_APPLICATION;
5346 else if (EQ (icon, intern ("hand")))
5347 name = (LPCTSTR) IDI_HAND;
5348 else if (EQ (icon, intern ("question")))
5349 name = (LPCTSTR) IDI_QUESTION;
5350 else if (EQ (icon, intern ("exclamation")))
5351 name = (LPCTSTR) IDI_EXCLAMATION;
5352 else if (EQ (icon, intern ("asterisk")))
5353 name = (LPCTSTR) IDI_ASTERISK;
5354 else if (EQ (icon, intern ("winlogo")))
5355 name = (LPCTSTR) IDI_WINLOGO;
5356 else
5357 return 1;
5358
5359 main_icon = LoadIcon (NULL, name);
5360 }
5361 else
5362 return 1;
5363
5364 if (main_icon == NULL)
5365 return 1;
5366
5367 PostMessage (FRAME_W32_WINDOW (f), WM_SETICON, (WPARAM) ICON_BIG,
5368 (LPARAM) main_icon);
5369
5370 /* If there is a small icon that goes with it, set that too. */
5371 if (small_icon)
5372 PostMessage (FRAME_W32_WINDOW (f), WM_SETICON, (WPARAM) ICON_SMALL,
5373 (LPARAM) small_icon);
5374
5375 return 0;
5376 }
5377
5378 \f
5379 /************************************************************************
5380 Handling X errors
5381 ************************************************************************/
5382
5383 /* Display Error Handling functions not used on W32. Listing them here
5384 helps diff stay in step when comparing w32term.c with xterm.c.
5385
5386 x_error_catcher (display, error)
5387 x_catch_errors (dpy)
5388 x_catch_errors_unwind (old_val)
5389 x_check_errors (dpy, format)
5390 x_had_errors_p (dpy)
5391 x_clear_errors (dpy)
5392 x_uncatch_errors (dpy, count)
5393 x_trace_wire ()
5394 x_connection_signal (signalnum)
5395 x_connection_closed (dpy, error_message)
5396 x_error_quitter (display, error)
5397 x_error_handler (display, error)
5398 x_io_error_quitter (display)
5399
5400 */
5401
5402 \f
5403 /* Changing the font of the frame. */
5404
5405 /* Give frame F the font named FONTNAME as its default font, and
5406 return the full name of that font. FONTNAME may be a wildcard
5407 pattern; in that case, we choose some font that fits the pattern.
5408 The return value shows which font we chose. */
5409
5410 Lisp_Object
5411 x_new_font (f, fontname)
5412 struct frame *f;
5413 register char *fontname;
5414 {
5415 struct font_info *fontp
5416 = FS_LOAD_FONT (f, fontname);
5417
5418 if (!fontp)
5419 return Qnil;
5420
5421 if (FRAME_FONT (f) == (XFontStruct *) (fontp->font))
5422 /* This font is already set in frame F. There's nothing more to
5423 do. */
5424 return build_string (fontp->full_name);
5425
5426 FRAME_FONT (f) = (XFontStruct *) (fontp->font);
5427 FRAME_BASELINE_OFFSET (f) = fontp->baseline_offset;
5428 FRAME_FONTSET (f) = -1;
5429
5430 FRAME_COLUMN_WIDTH (f) = fontp->average_width;
5431 FRAME_SPACE_WIDTH (f) = fontp->space_width;
5432 FRAME_LINE_HEIGHT (f) = FONT_HEIGHT (FRAME_FONT (f));
5433
5434 compute_fringe_widths (f, 1);
5435
5436 /* Compute the scroll bar width in character columns. */
5437 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
5438 {
5439 int wid = FRAME_COLUMN_WIDTH (f);
5440 FRAME_CONFIG_SCROLL_BAR_COLS (f)
5441 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + wid-1) / wid;
5442 }
5443 else
5444 {
5445 int wid = FRAME_COLUMN_WIDTH (f);
5446 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
5447 }
5448
5449 /* Now make the frame display the given font. */
5450 if (FRAME_W32_WINDOW (f) != 0)
5451 {
5452 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
5453 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
5454 }
5455
5456 return build_string (fontp->full_name);
5457 }
5458 \f
5459 /* Give frame F the fontset named FONTSETNAME as its default fontset,
5460 and return the full name of that fontset. FONTSETNAME may be a
5461 wildcard pattern; in that case, we choose some fontset that fits
5462 the pattern. FONTSETNAME may be a font name for ASCII characters;
5463 in that case, we create a fontset from that font name.
5464
5465 The return value shows which fontset we chose.
5466 If FONTSETNAME specifies the default fontset, return Qt.
5467 If an ASCII font in the specified fontset can't be loaded, return
5468 Qnil. */
5469
5470 Lisp_Object
5471 x_new_fontset (f, fontsetname)
5472 struct frame *f;
5473 Lisp_Object fontsetname;
5474 {
5475 int fontset = fs_query_fontset (fontsetname, 0);
5476 Lisp_Object result;
5477
5478 if (fontset > 0 && FRAME_FONTSET(f) == fontset)
5479 /* This fontset is already set in frame F. There's nothing more
5480 to do. */
5481 return fontset_name (fontset);
5482 else if (fontset == 0)
5483 /* The default fontset can't be the default font. */
5484 return Qt;
5485
5486 if (fontset > 0)
5487 result = x_new_font (f, (SDATA (fontset_ascii (fontset))));
5488 else
5489 result = x_new_font (f, SDATA (fontsetname));
5490
5491 if (!STRINGP (result))
5492 /* Can't load ASCII font. */
5493 return Qnil;
5494
5495 if (fontset < 0)
5496 fontset = new_fontset_from_font_name (result);
5497
5498 /* Since x_new_font doesn't update any fontset information, do it now. */
5499 FRAME_FONTSET(f) = fontset;
5500
5501 return fontset_name (fontset);
5502 }
5503
5504 \f
5505 /***********************************************************************
5506 TODO: W32 Input Methods
5507 ***********************************************************************/
5508 /* Listing missing functions from xterm.c helps diff stay in step.
5509
5510 xim_destroy_callback (xim, client_data, call_data)
5511 xim_open_dpy (dpyinfo, resource_name)
5512 struct xim_inst_t
5513 xim_instantiate_callback (display, client_data, call_data)
5514 xim_initialize (dpyinfo, resource_name)
5515 xim_close_dpy (dpyinfo)
5516
5517 */
5518
5519 \f
5520 /* Calculate the absolute position in frame F
5521 from its current recorded position values and gravity. */
5522
5523 void
5524 x_calc_absolute_position (f)
5525 struct frame *f;
5526 {
5527 int flags = f->size_hint_flags;
5528
5529 /* Treat negative positions as relative to the leftmost bottommost
5530 position that fits on the screen. */
5531 if (flags & XNegative)
5532 f->left_pos = (FRAME_W32_DISPLAY_INFO (f)->width
5533 - FRAME_PIXEL_WIDTH (f)
5534 + f->left_pos);
5535
5536 if (flags & YNegative)
5537 f->top_pos = (FRAME_W32_DISPLAY_INFO (f)->height
5538 - FRAME_PIXEL_HEIGHT (f)
5539 + f->top_pos);
5540 /* The left_pos and top_pos
5541 are now relative to the top and left screen edges,
5542 so the flags should correspond. */
5543 f->size_hint_flags &= ~ (XNegative | YNegative);
5544 }
5545
5546 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
5547 to really change the position, and 0 when calling from
5548 x_make_frame_visible (in that case, XOFF and YOFF are the current
5549 position values). It is -1 when calling from x_set_frame_parameters,
5550 which means, do adjust for borders but don't change the gravity. */
5551
5552 void
5553 x_set_offset (f, xoff, yoff, change_gravity)
5554 struct frame *f;
5555 register int xoff, yoff;
5556 int change_gravity;
5557 {
5558 int modified_top, modified_left;
5559
5560 if (change_gravity > 0)
5561 {
5562 f->top_pos = yoff;
5563 f->left_pos = xoff;
5564 f->size_hint_flags &= ~ (XNegative | YNegative);
5565 if (xoff < 0)
5566 f->size_hint_flags |= XNegative;
5567 if (yoff < 0)
5568 f->size_hint_flags |= YNegative;
5569 f->win_gravity = NorthWestGravity;
5570 }
5571 x_calc_absolute_position (f);
5572
5573 BLOCK_INPUT;
5574 x_wm_set_size_hint (f, (long) 0, 0);
5575
5576 modified_left = f->left_pos;
5577 modified_top = f->top_pos;
5578
5579 my_set_window_pos (FRAME_W32_WINDOW (f),
5580 NULL,
5581 modified_left, modified_top,
5582 0, 0,
5583 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
5584 UNBLOCK_INPUT;
5585 }
5586
5587
5588 /* Check if we need to resize the frame due to a fullscreen request.
5589 If so needed, resize the frame. */
5590 static void
5591 x_check_fullscreen (f)
5592 struct frame *f;
5593 {
5594 if (f->want_fullscreen & FULLSCREEN_BOTH)
5595 {
5596 int width, height, ign;
5597
5598 x_real_positions (f, &f->left_pos, &f->top_pos);
5599
5600 x_fullscreen_adjust (f, &width, &height, &ign, &ign);
5601
5602 /* We do not need to move the window, it shall be taken care of
5603 when setting WM manager hints. */
5604 if (FRAME_COLS (f) != width || FRAME_LINES (f) != height)
5605 {
5606 change_frame_size (f, height, width, 0, 1, 0);
5607 SET_FRAME_GARBAGED (f);
5608 cancel_mouse_face (f);
5609
5610 /* Wait for the change of frame size to occur */
5611 f->want_fullscreen |= FULLSCREEN_WAIT;
5612 }
5613 }
5614 }
5615
5616 /* Call this to change the size of frame F's x-window.
5617 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
5618 for this size change and subsequent size changes.
5619 Otherwise we leave the window gravity unchanged. */
5620
5621 void
5622 x_set_window_size (f, change_gravity, cols, rows)
5623 struct frame *f;
5624 int change_gravity;
5625 int cols, rows;
5626 {
5627 int pixelwidth, pixelheight;
5628
5629 BLOCK_INPUT;
5630
5631 check_frame_size (f, &rows, &cols);
5632 f->scroll_bar_actual_width
5633 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
5634
5635 compute_fringe_widths (f, 0);
5636
5637 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols);
5638 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows);
5639
5640 f->win_gravity = NorthWestGravity;
5641 x_wm_set_size_hint (f, (long) 0, 0);
5642
5643 {
5644 RECT rect;
5645
5646 rect.left = rect.top = 0;
5647 rect.right = pixelwidth;
5648 rect.bottom = pixelheight;
5649
5650 AdjustWindowRect(&rect, f->output_data.w32->dwStyle,
5651 FRAME_EXTERNAL_MENU_BAR (f));
5652
5653 my_set_window_pos (FRAME_W32_WINDOW (f),
5654 NULL,
5655 0, 0,
5656 rect.right - rect.left,
5657 rect.bottom - rect.top,
5658 SWP_NOZORDER | SWP_NOMOVE | SWP_NOACTIVATE);
5659 }
5660
5661 /* Now, strictly speaking, we can't be sure that this is accurate,
5662 but the window manager will get around to dealing with the size
5663 change request eventually, and we'll hear how it went when the
5664 ConfigureNotify event gets here.
5665
5666 We could just not bother storing any of this information here,
5667 and let the ConfigureNotify event set everything up, but that
5668 might be kind of confusing to the Lisp code, since size changes
5669 wouldn't be reported in the frame parameters until some random
5670 point in the future when the ConfigureNotify event arrives.
5671
5672 We pass 1 for DELAY since we can't run Lisp code inside of
5673 a BLOCK_INPUT. */
5674 change_frame_size (f, rows, cols, 0, 1, 0);
5675 FRAME_PIXEL_WIDTH (f) = pixelwidth;
5676 FRAME_PIXEL_HEIGHT (f) = pixelheight;
5677
5678 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
5679 receive in the ConfigureNotify event; if we get what we asked
5680 for, then the event won't cause the screen to become garbaged, so
5681 we have to make sure to do it here. */
5682 SET_FRAME_GARBAGED (f);
5683
5684 /* If cursor was outside the new size, mark it as off. */
5685 mark_window_cursors_off (XWINDOW (f->root_window));
5686
5687 /* Clear out any recollection of where the mouse highlighting was,
5688 since it might be in a place that's outside the new frame size.
5689 Actually checking whether it is outside is a pain in the neck,
5690 so don't try--just let the highlighting be done afresh with new size. */
5691 cancel_mouse_face (f);
5692
5693 UNBLOCK_INPUT;
5694 }
5695 \f
5696 /* Mouse warping. */
5697
5698 void x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y);
5699
5700 void
5701 x_set_mouse_position (f, x, y)
5702 struct frame *f;
5703 int x, y;
5704 {
5705 int pix_x, pix_y;
5706
5707 pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2;
5708 pix_y = FRAME_LINE_TO_PIXEL_Y (f, y) + FRAME_LINE_HEIGHT (f) / 2;
5709
5710 if (pix_x < 0) pix_x = 0;
5711 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
5712
5713 if (pix_y < 0) pix_y = 0;
5714 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
5715
5716 x_set_mouse_pixel_position (f, pix_x, pix_y);
5717 }
5718
5719 void
5720 x_set_mouse_pixel_position (f, pix_x, pix_y)
5721 struct frame *f;
5722 int pix_x, pix_y;
5723 {
5724 RECT rect;
5725 POINT pt;
5726
5727 BLOCK_INPUT;
5728
5729 GetClientRect (FRAME_W32_WINDOW (f), &rect);
5730 pt.x = rect.left + pix_x;
5731 pt.y = rect.top + pix_y;
5732 ClientToScreen (FRAME_W32_WINDOW (f), &pt);
5733
5734 SetCursorPos (pt.x, pt.y);
5735
5736 UNBLOCK_INPUT;
5737 }
5738
5739 \f
5740 /* focus shifting, raising and lowering. */
5741
5742 void
5743 x_focus_on_frame (f)
5744 struct frame *f;
5745 {
5746 struct w32_display_info *dpyinfo = &one_w32_display_info;
5747
5748 /* Give input focus to frame. */
5749 BLOCK_INPUT;
5750 #if 0
5751 /* Try not to change its Z-order if possible. */
5752 if (x_window_to_frame (dpyinfo, GetForegroundWindow ()))
5753 my_set_focus (f, FRAME_W32_WINDOW (f));
5754 else
5755 #endif
5756 my_set_foreground_window (FRAME_W32_WINDOW (f));
5757 UNBLOCK_INPUT;
5758 }
5759
5760 void
5761 x_unfocus_frame (f)
5762 struct frame *f;
5763 {
5764 }
5765
5766 /* Raise frame F. */
5767 void
5768 x_raise_frame (f)
5769 struct frame *f;
5770 {
5771 BLOCK_INPUT;
5772
5773 /* Strictly speaking, raise-frame should only change the frame's Z
5774 order, leaving input focus unchanged. This is reasonable behaviour
5775 on X where the usual policy is point-to-focus. However, this
5776 behaviour would be very odd on Windows where the usual policy is
5777 click-to-focus.
5778
5779 On X, if the mouse happens to be over the raised frame, it gets
5780 input focus anyway (so the window with focus will never be
5781 completely obscured) - if not, then just moving the mouse over it
5782 is sufficient to give it focus. On Windows, the user must actually
5783 click on the frame (preferrably the title bar so as not to move
5784 point), which is more awkward. Also, no other Windows program
5785 raises a window to the top but leaves another window (possibly now
5786 completely obscured) with input focus.
5787
5788 Because there is a system setting on Windows that allows the user
5789 to choose the point to focus policy, we make the strict semantics
5790 optional, but by default we grab focus when raising. */
5791
5792 if (NILP (Vw32_grab_focus_on_raise))
5793 {
5794 /* The obvious call to my_set_window_pos doesn't work if Emacs is
5795 not already the foreground application: the frame is raised
5796 above all other frames belonging to us, but not above the
5797 current top window. To achieve that, we have to resort to this
5798 more cumbersome method. */
5799
5800 HDWP handle = BeginDeferWindowPos (2);
5801 if (handle)
5802 {
5803 DeferWindowPos (handle,
5804 FRAME_W32_WINDOW (f),
5805 HWND_TOP,
5806 0, 0, 0, 0,
5807 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
5808
5809 DeferWindowPos (handle,
5810 GetForegroundWindow (),
5811 FRAME_W32_WINDOW (f),
5812 0, 0, 0, 0,
5813 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
5814
5815 EndDeferWindowPos (handle);
5816 }
5817 }
5818 else
5819 {
5820 my_set_foreground_window (FRAME_W32_WINDOW (f));
5821 }
5822
5823 UNBLOCK_INPUT;
5824 }
5825
5826 /* Lower frame F. */
5827 void
5828 x_lower_frame (f)
5829 struct frame *f;
5830 {
5831 BLOCK_INPUT;
5832 my_set_window_pos (FRAME_W32_WINDOW (f),
5833 HWND_BOTTOM,
5834 0, 0, 0, 0,
5835 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
5836 UNBLOCK_INPUT;
5837 }
5838
5839 static void
5840 w32_frame_raise_lower (f, raise_flag)
5841 FRAME_PTR f;
5842 int raise_flag;
5843 {
5844 if (! FRAME_W32_P (f))
5845 return;
5846
5847 if (raise_flag)
5848 x_raise_frame (f);
5849 else
5850 x_lower_frame (f);
5851 }
5852 \f
5853 /* Change of visibility. */
5854
5855 /* This tries to wait until the frame is really visible.
5856 However, if the window manager asks the user where to position
5857 the frame, this will return before the user finishes doing that.
5858 The frame will not actually be visible at that time,
5859 but it will become visible later when the window manager
5860 finishes with it. */
5861
5862 void
5863 x_make_frame_visible (f)
5864 struct frame *f;
5865 {
5866 Lisp_Object type;
5867
5868 BLOCK_INPUT;
5869
5870 type = x_icon_type (f);
5871 if (!NILP (type))
5872 x_bitmap_icon (f, type);
5873
5874 if (! FRAME_VISIBLE_P (f))
5875 {
5876 /* We test FRAME_GARBAGED_P here to make sure we don't
5877 call x_set_offset a second time
5878 if we get to x_make_frame_visible a second time
5879 before the window gets really visible. */
5880 if (! FRAME_ICONIFIED_P (f)
5881 && ! f->output_data.w32->asked_for_visible)
5882 x_set_offset (f, f->left_pos, f->top_pos, 0);
5883
5884 f->output_data.w32->asked_for_visible = 1;
5885
5886 /* my_show_window (f, FRAME_W32_WINDOW (f), f->async_iconified ? SW_RESTORE : SW_SHOW); */
5887 my_show_window (f, FRAME_W32_WINDOW (f), SW_SHOWNORMAL);
5888 }
5889
5890 /* Synchronize to ensure Emacs knows the frame is visible
5891 before we do anything else. We do this loop with input not blocked
5892 so that incoming events are handled. */
5893 {
5894 Lisp_Object frame;
5895 int count;
5896
5897 /* This must come after we set COUNT. */
5898 UNBLOCK_INPUT;
5899
5900 XSETFRAME (frame, f);
5901
5902 /* Wait until the frame is visible. Process X events until a
5903 MapNotify event has been seen, or until we think we won't get a
5904 MapNotify at all.. */
5905 for (count = input_signal_count + 10;
5906 input_signal_count < count && !FRAME_VISIBLE_P (f);)
5907 {
5908 /* Force processing of queued events. */
5909 /* TODO: x_sync equivalent? */
5910
5911 /* Machines that do polling rather than SIGIO have been observed
5912 to go into a busy-wait here. So we'll fake an alarm signal
5913 to let the handler know that there's something to be read.
5914 We used to raise a real alarm, but it seems that the handler
5915 isn't always enabled here. This is probably a bug. */
5916 if (input_polling_used ())
5917 {
5918 /* It could be confusing if a real alarm arrives while processing
5919 the fake one. Turn it off and let the handler reset it. */
5920 int old_poll_suppress_count = poll_suppress_count;
5921 poll_suppress_count = 1;
5922 poll_for_input_1 ();
5923 poll_suppress_count = old_poll_suppress_count;
5924 }
5925 }
5926 FRAME_SAMPLE_VISIBILITY (f);
5927 }
5928 }
5929
5930 /* Change from mapped state to withdrawn state. */
5931
5932 /* Make the frame visible (mapped and not iconified). */
5933
5934 x_make_frame_invisible (f)
5935 struct frame *f;
5936 {
5937 /* Don't keep the highlight on an invisible frame. */
5938 if (FRAME_W32_DISPLAY_INFO (f)->x_highlight_frame == f)
5939 FRAME_W32_DISPLAY_INFO (f)->x_highlight_frame = 0;
5940
5941 BLOCK_INPUT;
5942
5943 my_show_window (f, FRAME_W32_WINDOW (f), SW_HIDE);
5944
5945 /* We can't distinguish this from iconification
5946 just by the event that we get from the server.
5947 So we can't win using the usual strategy of letting
5948 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
5949 and synchronize with the server to make sure we agree. */
5950 f->visible = 0;
5951 FRAME_ICONIFIED_P (f) = 0;
5952 f->async_visible = 0;
5953 f->async_iconified = 0;
5954
5955 UNBLOCK_INPUT;
5956 }
5957
5958 /* Change window state from mapped to iconified. */
5959
5960 void
5961 x_iconify_frame (f)
5962 struct frame *f;
5963 {
5964 Lisp_Object type;
5965
5966 /* Don't keep the highlight on an invisible frame. */
5967 if (FRAME_W32_DISPLAY_INFO (f)->x_highlight_frame == f)
5968 FRAME_W32_DISPLAY_INFO (f)->x_highlight_frame = 0;
5969
5970 if (f->async_iconified)
5971 return;
5972
5973 BLOCK_INPUT;
5974
5975 type = x_icon_type (f);
5976 if (!NILP (type))
5977 x_bitmap_icon (f, type);
5978
5979 /* Simulate the user minimizing the frame. */
5980 SendMessage (FRAME_W32_WINDOW (f), WM_SYSCOMMAND, SC_MINIMIZE, 0);
5981
5982 UNBLOCK_INPUT;
5983 }
5984
5985 \f
5986 /* Free X resources of frame F. */
5987
5988 void
5989 x_free_frame_resources (f)
5990 struct frame *f;
5991 {
5992 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
5993
5994 BLOCK_INPUT;
5995
5996 if (FRAME_W32_WINDOW (f))
5997 my_destroy_window (f, FRAME_W32_WINDOW (f));
5998
5999 free_frame_menubar (f);
6000
6001 unload_color (f, f->output_data.x->foreground_pixel);
6002 unload_color (f, f->output_data.x->background_pixel);
6003 unload_color (f, f->output_data.w32->cursor_pixel);
6004 unload_color (f, f->output_data.w32->cursor_foreground_pixel);
6005 unload_color (f, f->output_data.w32->border_pixel);
6006 unload_color (f, f->output_data.w32->mouse_pixel);
6007 if (f->output_data.w32->white_relief.allocated_p)
6008 unload_color (f, f->output_data.w32->white_relief.pixel);
6009 if (f->output_data.w32->black_relief.allocated_p)
6010 unload_color (f, f->output_data.w32->black_relief.pixel);
6011
6012 if (FRAME_FACE_CACHE (f))
6013 free_frame_faces (f);
6014
6015 xfree (f->output_data.w32);
6016 f->output_data.w32 = NULL;
6017
6018 if (f == dpyinfo->w32_focus_frame)
6019 dpyinfo->w32_focus_frame = 0;
6020 if (f == dpyinfo->w32_focus_event_frame)
6021 dpyinfo->w32_focus_event_frame = 0;
6022 if (f == dpyinfo->x_highlight_frame)
6023 dpyinfo->x_highlight_frame = 0;
6024
6025 if (f == dpyinfo->mouse_face_mouse_frame)
6026 {
6027 dpyinfo->mouse_face_beg_row
6028 = dpyinfo->mouse_face_beg_col = -1;
6029 dpyinfo->mouse_face_end_row
6030 = dpyinfo->mouse_face_end_col = -1;
6031 dpyinfo->mouse_face_window = Qnil;
6032 dpyinfo->mouse_face_deferred_gc = 0;
6033 dpyinfo->mouse_face_mouse_frame = 0;
6034 }
6035
6036 UNBLOCK_INPUT;
6037 }
6038
6039
6040 /* Destroy the window of frame F. */
6041
6042 x_destroy_window (f)
6043 struct frame *f;
6044 {
6045 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
6046
6047 x_free_frame_resources (f);
6048
6049 dpyinfo->reference_count--;
6050 }
6051
6052 \f
6053 /* Setting window manager hints. */
6054
6055 /* Set the normal size hints for the window manager, for frame F.
6056 FLAGS is the flags word to use--or 0 meaning preserve the flags
6057 that the window now has.
6058 If USER_POSITION is nonzero, we set the USPosition
6059 flag (this is useful when FLAGS is 0). */
6060 void
6061 x_wm_set_size_hint (f, flags, user_position)
6062 struct frame *f;
6063 long flags;
6064 int user_position;
6065 {
6066 Window window = FRAME_W32_WINDOW (f);
6067
6068 enter_crit ();
6069
6070 SetWindowLong (window, WND_FONTWIDTH_INDEX, FRAME_COLUMN_WIDTH (f));
6071 SetWindowLong (window, WND_LINEHEIGHT_INDEX, FRAME_LINE_HEIGHT (f));
6072 SetWindowLong (window, WND_BORDER_INDEX, FRAME_INTERNAL_BORDER_WIDTH (f));
6073 SetWindowLong (window, WND_SCROLLBAR_INDEX, f->scroll_bar_actual_width);
6074
6075 leave_crit ();
6076 }
6077
6078 /* Window manager things */
6079 void
6080 x_wm_set_icon_position (f, icon_x, icon_y)
6081 struct frame *f;
6082 int icon_x, icon_y;
6083 {
6084 #if 0
6085 Window window = FRAME_W32_WINDOW (f);
6086
6087 f->display.x->wm_hints.flags |= IconPositionHint;
6088 f->display.x->wm_hints.icon_x = icon_x;
6089 f->display.x->wm_hints.icon_y = icon_y;
6090
6091 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->display.x->wm_hints);
6092 #endif
6093 }
6094
6095 \f
6096 /***********************************************************************
6097 Fonts
6098 ***********************************************************************/
6099
6100 /* The following functions are listed here to help diff stay in step
6101 with xterm.c. See w32fns.c for definitions.
6102
6103 x_get_font_info (f, font_idx)
6104 x_list_fonts (f, pattern, size, maxnames)
6105
6106 */
6107
6108 #if GLYPH_DEBUG
6109
6110 /* Check that FONT is valid on frame F. It is if it can be found in F's
6111 font table. */
6112
6113 static void
6114 x_check_font (f, font)
6115 struct frame *f;
6116 XFontStruct *font;
6117 {
6118 int i;
6119 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
6120
6121 xassert (font != NULL);
6122
6123 for (i = 0; i < dpyinfo->n_fonts; i++)
6124 if (dpyinfo->font_table[i].name
6125 && font == dpyinfo->font_table[i].font)
6126 break;
6127
6128 xassert (i < dpyinfo->n_fonts);
6129 }
6130
6131 #endif /* GLYPH_DEBUG != 0 */
6132
6133 /* Set *W to the minimum width, *H to the minimum font height of FONT.
6134 Note: There are (broken) X fonts out there with invalid XFontStruct
6135 min_bounds contents. For example, handa@etl.go.jp reports that
6136 "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1" fonts
6137 have font->min_bounds.width == 0. */
6138
6139 static INLINE void
6140 x_font_min_bounds (font, w, h)
6141 XFontStruct *font;
6142 int *w, *h;
6143 {
6144 /*
6145 * TODO: Windows does not appear to offer min bound, only
6146 * average and maximum width, and maximum height.
6147 */
6148 *h = FONT_HEIGHT (font);
6149 *w = FONT_WIDTH (font);
6150 }
6151
6152
6153 /* Compute the smallest character width and smallest font height over
6154 all fonts available on frame F. Set the members smallest_char_width
6155 and smallest_font_height in F's x_display_info structure to
6156 the values computed. Value is non-zero if smallest_font_height or
6157 smallest_char_width become smaller than they were before. */
6158
6159 int
6160 x_compute_min_glyph_bounds (f)
6161 struct frame *f;
6162 {
6163 int i;
6164 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
6165 XFontStruct *font;
6166 int old_width = dpyinfo->smallest_char_width;
6167 int old_height = dpyinfo->smallest_font_height;
6168
6169 dpyinfo->smallest_font_height = 100000;
6170 dpyinfo->smallest_char_width = 100000;
6171
6172 for (i = 0; i < dpyinfo->n_fonts; ++i)
6173 if (dpyinfo->font_table[i].name)
6174 {
6175 struct font_info *fontp = dpyinfo->font_table + i;
6176 int w, h;
6177
6178 font = (XFontStruct *) fontp->font;
6179 xassert (font != (XFontStruct *) ~0);
6180 x_font_min_bounds (font, &w, &h);
6181
6182 dpyinfo->smallest_font_height = min (dpyinfo->smallest_font_height, h);
6183 dpyinfo->smallest_char_width = min (dpyinfo->smallest_char_width, w);
6184 }
6185
6186 xassert (dpyinfo->smallest_char_width > 0
6187 && dpyinfo->smallest_font_height > 0);
6188
6189 return (dpyinfo->n_fonts == 1
6190 || dpyinfo->smallest_char_width < old_width
6191 || dpyinfo->smallest_font_height < old_height);
6192 }
6193
6194 /* The following functions are listed here to help diff stay in step
6195 with xterm.c. See w32fns.c for definitions.
6196
6197 x_load_font (f, fontname, size)
6198 x_query_font (f, fontname)
6199 x_find_ccl_program (fontp)
6200
6201 */
6202 \f
6203 /***********************************************************************
6204 Initialization
6205 ***********************************************************************/
6206
6207 static int w32_initialized = 0;
6208
6209 void
6210 w32_initialize_display_info (display_name)
6211 Lisp_Object display_name;
6212 {
6213 struct w32_display_info *dpyinfo = &one_w32_display_info;
6214
6215 bzero (dpyinfo, sizeof (*dpyinfo));
6216
6217 /* Put it on w32_display_name_list. */
6218 w32_display_name_list = Fcons (Fcons (display_name, Qnil),
6219 w32_display_name_list);
6220 dpyinfo->name_list_element = XCAR (w32_display_name_list);
6221
6222 dpyinfo->w32_id_name
6223 = (char *) xmalloc (SCHARS (Vinvocation_name)
6224 + SCHARS (Vsystem_name)
6225 + 2);
6226 sprintf (dpyinfo->w32_id_name, "%s@%s",
6227 SDATA (Vinvocation_name), SDATA (Vsystem_name));
6228
6229 /* Default Console mode values - overridden when running in GUI mode
6230 with values obtained from system metrics. */
6231 dpyinfo->resx = 1;
6232 dpyinfo->resy = 1;
6233 dpyinfo->height_in = 1;
6234 dpyinfo->width_in = 1;
6235 dpyinfo->n_planes = 1;
6236 dpyinfo->n_cbits = 4;
6237 dpyinfo->n_fonts = 0;
6238 dpyinfo->smallest_font_height = 1;
6239 dpyinfo->smallest_char_width = 1;
6240
6241 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
6242 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
6243 dpyinfo->mouse_face_face_id = DEFAULT_FACE_ID;
6244 dpyinfo->mouse_face_window = Qnil;
6245 dpyinfo->mouse_face_overlay = Qnil;
6246 dpyinfo->mouse_face_hidden = 0;
6247
6248 dpyinfo->vertical_scroll_bar_cursor = w32_load_cursor (IDC_ARROW);
6249 /* TODO: dpyinfo->gray */
6250
6251 }
6252
6253 /* Create an xrdb-style database of resources to supercede registry settings.
6254 The database is just a concatenation of C strings, finished by an additional
6255 \0. The string are submitted to some basic normalization, so
6256
6257 [ *]option[ *]:[ *]value...
6258
6259 becomes
6260
6261 option:value...
6262
6263 but any whitespace following value is not removed. */
6264
6265 static char *
6266 w32_make_rdb (xrm_option)
6267 char *xrm_option;
6268 {
6269 char *buffer = xmalloc (strlen (xrm_option) + 2);
6270 char *current = buffer;
6271 char ch;
6272 int in_option = 1;
6273 int before_value = 0;
6274
6275 do {
6276 ch = *xrm_option++;
6277
6278 if (ch == '\n')
6279 {
6280 *current++ = '\0';
6281 in_option = 1;
6282 before_value = 0;
6283 }
6284 else if (ch != ' ')
6285 {
6286 *current++ = ch;
6287 if (in_option && (ch == ':'))
6288 {
6289 in_option = 0;
6290 before_value = 1;
6291 }
6292 else if (before_value)
6293 {
6294 before_value = 0;
6295 }
6296 }
6297 else if (!(in_option || before_value))
6298 {
6299 *current++ = ch;
6300 }
6301 } while (ch);
6302
6303 *current = '\0';
6304
6305 return buffer;
6306 }
6307
6308 struct w32_display_info *
6309 w32_term_init (display_name, xrm_option, resource_name)
6310 Lisp_Object display_name;
6311 char *xrm_option;
6312 char *resource_name;
6313 {
6314 struct w32_display_info *dpyinfo;
6315 HDC hdc;
6316
6317 BLOCK_INPUT;
6318
6319 if (!w32_initialized)
6320 {
6321 w32_initialize ();
6322 w32_initialized = 1;
6323 }
6324
6325 w32_initialize_display_info (display_name);
6326
6327 dpyinfo = &one_w32_display_info;
6328
6329 dpyinfo->xrdb = xrm_option ? w32_make_rdb (xrm_option) : NULL;
6330
6331 /* Put this display on the chain. */
6332 dpyinfo->next = x_display_list;
6333 x_display_list = dpyinfo;
6334
6335 hdc = GetDC (GetDesktopWindow ());
6336
6337 dpyinfo->height = GetDeviceCaps (hdc, VERTRES);
6338 dpyinfo->width = GetDeviceCaps (hdc, HORZRES);
6339 dpyinfo->root_window = GetDesktopWindow ();
6340 dpyinfo->n_planes = GetDeviceCaps (hdc, PLANES);
6341 dpyinfo->n_cbits = GetDeviceCaps (hdc, BITSPIXEL);
6342 dpyinfo->resx = GetDeviceCaps (hdc, LOGPIXELSX);
6343 dpyinfo->resy = GetDeviceCaps (hdc, LOGPIXELSY);
6344 dpyinfo->has_palette = GetDeviceCaps (hdc, RASTERCAPS) & RC_PALETTE;
6345 dpyinfo->image_cache = make_image_cache ();
6346 dpyinfo->height_in = dpyinfo->height / dpyinfo->resx;
6347 dpyinfo->width_in = dpyinfo->width / dpyinfo->resy;
6348 ReleaseDC (GetDesktopWindow (), hdc);
6349
6350 /* initialise palette with white and black */
6351 {
6352 XColor color;
6353 w32_defined_color (0, "white", &color, 1);
6354 w32_defined_color (0, "black", &color, 1);
6355 }
6356
6357 /* Create Fringe Bitmaps and store them for later use.
6358
6359 On W32, bitmaps are all unsigned short, as Windows requires
6360 bitmap data to be Word aligned. For some reason they are
6361 horizontally reflected compared to how they appear on X, so we
6362 need to bitswap and convert to unsigned shorts before creating
6363 the bitmaps. */
6364 w32_init_fringe ();
6365
6366 #ifndef F_SETOWN_BUG
6367 #ifdef F_SETOWN
6368 #ifdef F_SETOWN_SOCK_NEG
6369 /* stdin is a socket here */
6370 fcntl (connection, F_SETOWN, -getpid ());
6371 #else /* ! defined (F_SETOWN_SOCK_NEG) */
6372 fcntl (connection, F_SETOWN, getpid ());
6373 #endif /* ! defined (F_SETOWN_SOCK_NEG) */
6374 #endif /* ! defined (F_SETOWN) */
6375 #endif /* F_SETOWN_BUG */
6376
6377 #ifdef SIGIO
6378 if (interrupt_input)
6379 init_sigio (connection);
6380 #endif /* ! defined (SIGIO) */
6381
6382 UNBLOCK_INPUT;
6383
6384 return dpyinfo;
6385 }
6386 \f
6387 /* Get rid of display DPYINFO, assuming all frames are already gone. */
6388
6389 void
6390 x_delete_display (dpyinfo)
6391 struct w32_display_info *dpyinfo;
6392 {
6393 /* Discard this display from w32_display_name_list and w32_display_list.
6394 We can't use Fdelq because that can quit. */
6395 if (! NILP (w32_display_name_list)
6396 && EQ (XCAR (w32_display_name_list), dpyinfo->name_list_element))
6397 w32_display_name_list = XCDR (w32_display_name_list);
6398 else
6399 {
6400 Lisp_Object tail;
6401
6402 tail = w32_display_name_list;
6403 while (CONSP (tail) && CONSP (XCDR (tail)))
6404 {
6405 if (EQ (XCAR (XCDR (tail)), dpyinfo->name_list_element))
6406 {
6407 XSETCDR (tail, XCDR (XCDR (tail)));
6408 break;
6409 }
6410 tail = XCDR (tail);
6411 }
6412 }
6413
6414 /* free palette table */
6415 {
6416 struct w32_palette_entry * plist;
6417
6418 plist = dpyinfo->color_list;
6419 while (plist)
6420 {
6421 struct w32_palette_entry * pentry = plist;
6422 plist = plist->next;
6423 xfree (pentry);
6424 }
6425 dpyinfo->color_list = NULL;
6426 if (dpyinfo->palette)
6427 DeleteObject(dpyinfo->palette);
6428 }
6429 xfree (dpyinfo->font_table);
6430 xfree (dpyinfo->w32_id_name);
6431
6432 w32_reset_fringes ();
6433 }
6434 \f
6435 /* Set up use of W32. */
6436
6437 DWORD w32_msg_worker ();
6438
6439 void
6440 x_flush (struct frame * f)
6441 { /* Nothing to do */ }
6442
6443 extern frame_parm_handler w32_frame_parm_handlers[];
6444
6445 static struct redisplay_interface w32_redisplay_interface =
6446 {
6447 w32_frame_parm_handlers,
6448 x_produce_glyphs,
6449 x_write_glyphs,
6450 x_insert_glyphs,
6451 x_clear_end_of_line,
6452 x_scroll_run,
6453 x_after_update_window_line,
6454 x_update_window_begin,
6455 x_update_window_end,
6456 x_cursor_to,
6457 x_flush,
6458 0, /* flush_display_optional */
6459 x_clear_window_mouse_face,
6460 w32_get_glyph_overhangs,
6461 x_fix_overlapping_area,
6462 w32_draw_fringe_bitmap,
6463 w32_define_fringe_bitmap,
6464 w32_destroy_fringe_bitmap,
6465 w32_per_char_metric,
6466 w32_encode_char,
6467 NULL, /* w32_compute_glyph_string_overhangs */
6468 x_draw_glyph_string,
6469 w32_define_frame_cursor,
6470 w32_clear_frame_area,
6471 w32_draw_window_cursor,
6472 w32_draw_vertical_window_border,
6473 w32_shift_glyphs_for_insert
6474 };
6475
6476 void
6477 w32_initialize ()
6478 {
6479 rif = &w32_redisplay_interface;
6480
6481 /* MSVC does not type K&R functions with no arguments correctly, and
6482 so we must explicitly cast them. */
6483 clear_frame_hook = (void (*)(void)) x_clear_frame;
6484 ring_bell_hook = (void (*)(void)) w32_ring_bell;
6485 update_begin_hook = x_update_begin;
6486 update_end_hook = x_update_end;
6487
6488 read_socket_hook = w32_read_socket;
6489
6490 frame_up_to_date_hook = w32_frame_up_to_date;
6491
6492 mouse_position_hook = w32_mouse_position;
6493 frame_rehighlight_hook = w32_frame_rehighlight;
6494 frame_raise_lower_hook = w32_frame_raise_lower;
6495 set_vertical_scroll_bar_hook = w32_set_vertical_scroll_bar;
6496 condemn_scroll_bars_hook = w32_condemn_scroll_bars;
6497 redeem_scroll_bar_hook = w32_redeem_scroll_bar;
6498 judge_scroll_bars_hook = w32_judge_scroll_bars;
6499
6500 scroll_region_ok = 1; /* we'll scroll partial frames */
6501 char_ins_del_ok = 1;
6502 line_ins_del_ok = 1; /* we'll just blt 'em */
6503 fast_clear_end_of_line = 1; /* X does this well */
6504 memory_below_frame = 0; /* we don't remember what scrolls
6505 off the bottom */
6506 baud_rate = 19200;
6507
6508 w32_system_caret_hwnd = NULL;
6509 w32_system_caret_height = 0;
6510 w32_system_caret_x = 0;
6511 w32_system_caret_y = 0;
6512
6513 /* Initialize w32_use_visible_system_caret based on whether a screen
6514 reader is in use. */
6515 if (!SystemParametersInfo (SPI_GETSCREENREADER, 0,
6516 &w32_use_visible_system_caret, 0))
6517 w32_use_visible_system_caret = 0;
6518
6519 last_tool_bar_item = -1;
6520 any_help_event_p = 0;
6521
6522 /* Initialize input mode: interrupt_input off, no flow control, allow
6523 8 bit character input, standard quit char. */
6524 Fset_input_mode (Qnil, Qnil, make_number (2), Qnil);
6525
6526 /* Create the window thread - it will terminate itself or when the app terminates */
6527
6528 init_crit ();
6529
6530 dwMainThreadId = GetCurrentThreadId ();
6531 DuplicateHandle (GetCurrentProcess (), GetCurrentThread (),
6532 GetCurrentProcess (), &hMainThread, 0, TRUE, DUPLICATE_SAME_ACCESS);
6533
6534 /* Wait for thread to start */
6535
6536 {
6537 MSG msg;
6538
6539 PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE);
6540
6541 hWindowsThread = CreateThread (NULL, 0,
6542 (LPTHREAD_START_ROUTINE) w32_msg_worker,
6543 0, 0, &dwWindowsThreadId);
6544
6545 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
6546 }
6547
6548 /* It is desirable that mainThread should have the same notion of
6549 focus window and active window as windowsThread. Unfortunately, the
6550 following call to AttachThreadInput, which should do precisely what
6551 we need, causes major problems when Emacs is linked as a console
6552 program. Unfortunately, we have good reasons for doing that, so
6553 instead we need to send messages to windowsThread to make some API
6554 calls for us (ones that affect, or depend on, the active/focus
6555 window state. */
6556 #ifdef ATTACH_THREADS
6557 AttachThreadInput (dwMainThreadId, dwWindowsThreadId, TRUE);
6558 #endif
6559
6560 /* Dynamically link to optional system components. */
6561 {
6562 HANDLE user_lib = LoadLibrary ("user32.dll");
6563 HANDLE gdi_lib = LoadLibrary ("gdi32.dll");
6564 UINT smoothing_type;
6565 BOOL smoothing_enabled;
6566
6567 #define LOAD_PROC(lib, fn) pfn##fn = (void *) GetProcAddress (lib, #fn)
6568
6569 /* New proportional scroll bar functions. */
6570 LOAD_PROC (user_lib, SetScrollInfo);
6571 LOAD_PROC (user_lib, GetScrollInfo);
6572 LOAD_PROC (gdi_lib, GetFontUnicodeRanges);
6573
6574 #undef LOAD_PROC
6575
6576 FreeLibrary (user_lib);
6577 FreeLibrary (gdi_lib);
6578
6579 /* If using proportional scroll bars, ensure handle is at least 5 pixels;
6580 otherwise use the fixed height. */
6581 vertical_scroll_bar_min_handle = (pfnSetScrollInfo != NULL) ? 5 :
6582 GetSystemMetrics (SM_CYVTHUMB);
6583
6584 /* For either kind of scroll bar, take account of the arrows; these
6585 effectively form the border of the main scroll bar range. */
6586 vertical_scroll_bar_top_border = vertical_scroll_bar_bottom_border
6587 = GetSystemMetrics (SM_CYVSCROLL);
6588
6589 /* Constants that are not always defined by the system headers
6590 since they only exist on certain versions of Windows. */
6591 #ifndef SPI_GETFONTSMOOTHING
6592 #define SPI_GETFONTSMOOTHING 0x4A
6593 #endif
6594 #ifndef SPI_GETFONTSMOOTHINGTYPE
6595 #define SPI_GETFONTSMOOTHINGTYPE 0x0200A
6596 #endif
6597 #ifndef FE_FONTSMOOTHINGCLEARTYPE
6598 #define FE_FONTSMOOTHINGCLEARTYPE 0x2
6599 #endif
6600
6601 /* Determine if Cleartype is in use. Used to enable a hack in
6602 the char metric calculations which adds extra pixels to
6603 compensate for the "sub-pixels" that are not counted by the
6604 system APIs. */
6605 cleartype_active =
6606 SystemParametersInfo (SPI_GETFONTSMOOTHING, 0, &smoothing_enabled, 0)
6607 && smoothing_enabled
6608 && SystemParametersInfo (SPI_GETFONTSMOOTHINGTYPE, 0, &smoothing_type, 0)
6609 && smoothing_type == FE_FONTSMOOTHINGCLEARTYPE;
6610 }
6611 }
6612
6613 void
6614 syms_of_w32term ()
6615 {
6616 staticpro (&w32_display_name_list);
6617 w32_display_name_list = Qnil;
6618
6619 staticpro (&last_mouse_scroll_bar);
6620 last_mouse_scroll_bar = Qnil;
6621
6622 staticpro (&Qvendor_specific_keysyms);
6623 Qvendor_specific_keysyms = intern ("vendor-specific-keysyms");
6624
6625 DEFVAR_INT ("w32-num-mouse-buttons",
6626 &w32_num_mouse_buttons,
6627 doc: /* Number of physical mouse buttons. */);
6628 w32_num_mouse_buttons = 2;
6629
6630 DEFVAR_LISP ("w32-swap-mouse-buttons",
6631 &Vw32_swap_mouse_buttons,
6632 doc: /* Swap the mapping of middle and right mouse buttons.
6633 When nil, middle button is mouse-2 and right button is mouse-3. */);
6634 Vw32_swap_mouse_buttons = Qnil;
6635
6636 DEFVAR_LISP ("w32-grab-focus-on-raise",
6637 &Vw32_grab_focus_on_raise,
6638 doc: /* Raised frame grabs input focus.
6639 When t, `raise-frame' grabs input focus as well. This fits well
6640 with the normal Windows click-to-focus policy, but might not be
6641 desirable when using a point-to-focus policy. */);
6642 Vw32_grab_focus_on_raise = Qt;
6643
6644 DEFVAR_LISP ("w32-capslock-is-shiftlock",
6645 &Vw32_capslock_is_shiftlock,
6646 doc: /* Apply CapsLock state to non character input keys.
6647 When nil, CapsLock only affects normal character input keys. */);
6648 Vw32_capslock_is_shiftlock = Qnil;
6649
6650 DEFVAR_LISP ("w32-recognize-altgr",
6651 &Vw32_recognize_altgr,
6652 doc: /* Recognize right-alt and left-ctrl as AltGr.
6653 When nil, the right-alt and left-ctrl key combination is
6654 interpreted normally. */);
6655 Vw32_recognize_altgr = Qt;
6656
6657 DEFVAR_BOOL ("w32-enable-unicode-output",
6658 &w32_enable_unicode_output,
6659 doc: /* Enable the use of Unicode for text output if non-nil.
6660 Unicode output may prevent some third party applications for displaying
6661 Far-East Languages on Windows 95/98 from working properly.
6662 NT uses Unicode internally anyway, so this flag will probably have no
6663 affect on NT machines. */);
6664 w32_enable_unicode_output = 1;
6665
6666 DEFVAR_BOOL ("w32-use-visible-system-caret",
6667 &w32_use_visible_system_caret,
6668 doc: /* Flag to make the system caret visible.
6669 When this is non-nil, Emacs will indicate the position of point by
6670 using the system caret instead of drawing its own cursor. Some screen
6671 reader software does not track the system cursor properly when it is
6672 invisible, and gets confused by Emacs drawing its own cursor, so this
6673 variable is initialized to t when Emacs detects that screen reader
6674 software is running as it starts up.
6675
6676 When this variable is set, other variables affecting the appearance of
6677 the cursor have no effect. */);
6678
6679 w32_use_visible_system_caret = 0;
6680
6681 /* We don't yet support this, but defining this here avoids whining
6682 from cus-start.el and other places, like "M-x set-variable". */
6683 DEFVAR_BOOL ("x-use-underline-position-properties",
6684 &x_use_underline_position_properties,
6685 doc: /* *Non-nil means make use of UNDERLINE_POSITION font properties.
6686 nil means ignore them. If you encounter fonts with bogus
6687 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
6688 to 4.1, set this to nil.
6689
6690 NOTE: Not supported on MS-Windows yet. */);
6691 x_use_underline_position_properties = 0;
6692
6693 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars,
6694 doc: /* If not nil, Emacs uses toolkit scroll bars. */);
6695 Vx_toolkit_scroll_bars = Qt;
6696
6697 staticpro (&last_mouse_motion_frame);
6698 last_mouse_motion_frame = Qnil;
6699 }
6700
6701 /* arch-tag: 5fa70624-ab86-499c-8a85-473958ee4646
6702 (do not change this comment) */