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