(safe_run_hooks_1): Don't crash if Vrun_hooks is nil.
[emacs.git] / src / w32term.c
blob294059aa77bbb598df55eaaba7df7394f016903a
1 /* Implementation of GUI terminal on the Microsoft W32 API.
2 Copyright (C) 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
3 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
22 #include <config.h>
23 #include <signal.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include "lisp.h"
27 #include "charset.h"
28 #include "blockinput.h"
30 #include "w32heap.h"
31 #include "w32term.h"
32 #include "w32bdf.h"
33 #include <shellapi.h>
35 #include "systty.h"
36 #include "systime.h"
37 #include "atimer.h"
38 #include "keymap.h"
40 #include <ctype.h>
41 #include <errno.h>
42 #include <setjmp.h>
43 #include <sys/stat.h>
45 #include "keyboard.h"
46 #include "frame.h"
47 #include "dispextern.h"
48 #include "fontset.h"
49 #include "termhooks.h"
50 #include "termopts.h"
51 #include "termchar.h"
52 #include "gnu.h"
53 #include "disptab.h"
54 #include "buffer.h"
55 #include "window.h"
56 #include "intervals.h"
57 #include "composite.h"
58 #include "coding.h"
60 #define abs(x) ((x) < 0 ? -(x) : (x))
63 /* Fringe bitmaps. */
65 static int max_fringe_bmp = 0;
66 static HBITMAP *fringe_bmp = 0;
68 /* Non-nil means Emacs uses toolkit scroll bars. */
70 Lisp_Object Vx_toolkit_scroll_bars;
72 /* Temporary variables for w32_read_socket. */
74 static int last_mousemove_x = 0;
75 static int last_mousemove_y = 0;
77 /* Define GET_WHEEL_DELTA_WPARAM macro if system headers don't. */
78 #ifndef GET_WHEEL_DELTA_WPARAM
79 #define GET_WHEEL_DELTA_WPARAM(wparam) ((short)HIWORD (wparam))
80 #endif
82 /* Non-zero means that a HELP_EVENT has been generated since Emacs
83 start. */
85 static int any_help_event_p;
87 /* Last window where we saw the mouse. Used by mouse-autoselect-window. */
88 static Lisp_Object last_window;
90 /* Non-zero means make use of UNDERLINE_POSITION font properties.
91 (Not yet supported, see TODO in x_draw_glyph_string.) */
92 int x_use_underline_position_properties;
94 extern unsigned int msh_mousewheel;
96 extern void free_frame_menubar ();
98 extern int w32_codepage_for_font (char *fontname);
99 extern Cursor w32_load_cursor (LPCTSTR name);
101 extern glyph_metric *w32_BDF_TextMetric(bdffont *fontp,
102 unsigned char *text, int dim);
103 extern Lisp_Object Vwindow_system;
105 #define x_any_window_to_frame x_window_to_frame
106 #define x_top_window_to_frame x_window_to_frame
109 /* This is display since w32 does not support multiple ones. */
110 struct w32_display_info one_w32_display_info;
111 struct w32_display_info *x_display_list;
113 /* This is a list of cons cells, each of the form (NAME . FONT-LIST-CACHE),
114 one for each element of w32_display_list and in the same order.
115 NAME is the name of the frame.
116 FONT-LIST-CACHE records previous values returned by x-list-fonts. */
117 Lisp_Object w32_display_name_list;
119 /* Frame being updated by update_frame. This is declared in term.c.
120 This is set by update_begin and looked at by all the
121 w32 functions. It is zero while not inside an update.
122 In that case, the w32 functions assume that `SELECTED_FRAME ()'
123 is the frame to apply to. */
124 extern struct frame *updating_frame;
126 /* This is a frame waiting to be autoraised, within w32_read_socket. */
127 struct frame *pending_autoraise_frame;
129 /* The handle of the frame that currently owns the system caret. */
130 HWND w32_system_caret_hwnd;
131 int w32_system_caret_height;
132 int w32_system_caret_x;
133 int w32_system_caret_y;
134 int w32_use_visible_system_caret;
136 /* Flag to enable Unicode output in case users wish to use programs
137 like Twinbridge on '95 rather than installed system level support
138 for Far East languages. */
139 int w32_enable_unicode_output;
141 /* Flag to enable Cleartype hack for font metrics. */
142 static int cleartype_active;
144 DWORD dwWindowsThreadId = 0;
145 HANDLE hWindowsThread = NULL;
146 DWORD dwMainThreadId = 0;
147 HANDLE hMainThread = NULL;
149 int vertical_scroll_bar_min_handle;
150 int vertical_scroll_bar_top_border;
151 int vertical_scroll_bar_bottom_border;
153 int last_scroll_bar_drag_pos;
155 /* Mouse movement. */
157 /* Where the mouse was last time we reported a mouse event. */
159 static RECT last_mouse_glyph;
160 static FRAME_PTR last_mouse_glyph_frame;
161 static Lisp_Object last_mouse_press_frame;
163 int w32_num_mouse_buttons;
165 Lisp_Object Vw32_swap_mouse_buttons;
167 /* Control whether x_raise_frame also sets input focus. */
168 Lisp_Object Vw32_grab_focus_on_raise;
170 /* Control whether Caps Lock affects non-ascii characters. */
171 Lisp_Object Vw32_capslock_is_shiftlock;
173 /* Control whether right-alt and left-ctrl should be recognized as AltGr. */
174 Lisp_Object Vw32_recognize_altgr;
176 /* The scroll bar in which the last motion event occurred.
178 If the last motion event occurred in a scroll bar, we set this
179 so w32_mouse_position can know whether to report a scroll bar motion or
180 an ordinary motion.
182 If the last motion event didn't occur in a scroll bar, we set this
183 to Qnil, to tell w32_mouse_position to return an ordinary motion event. */
184 static Lisp_Object last_mouse_scroll_bar;
185 static int last_mouse_scroll_bar_pos;
187 /* This is a hack. We would really prefer that w32_mouse_position would
188 return the time associated with the position it returns, but there
189 doesn't seem to be any way to wrest the time-stamp from the server
190 along with the position query. So, we just keep track of the time
191 of the last movement we received, and return that in hopes that
192 it's somewhat accurate. */
194 static Time last_mouse_movement_time;
196 /* Incremented by w32_read_socket whenever it really tries to read
197 events. */
199 #ifdef __STDC__
200 static int volatile input_signal_count;
201 #else
202 static int input_signal_count;
203 #endif
205 extern Lisp_Object Vcommand_line_args, Vsystem_name;
207 #ifndef USE_CRT_DLL
208 extern int errno;
209 #endif
211 /* A mask of extra modifier bits to put into every keyboard char. */
213 extern EMACS_INT extra_keyboard_modifiers;
215 static void x_update_window_end P_ ((struct window *, int, int));
216 void w32_delete_display P_ ((struct w32_display_info *));
217 static void w32_handle_tool_bar_click P_ ((struct frame *,
218 struct input_event *));
219 void w32_define_cursor P_ ((Window, Cursor));
221 void x_lower_frame P_ ((struct frame *));
222 void x_scroll_bar_clear P_ ((struct frame *));
223 void x_wm_set_size_hint P_ ((struct frame *, long, int));
224 void x_raise_frame P_ ((struct frame *));
225 void x_set_window_size P_ ((struct frame *, int, int, int));
226 void x_wm_set_window_state P_ ((struct frame *, int));
227 void x_wm_set_icon_pixmap P_ ((struct frame *, int));
228 void w32_initialize P_ ((void));
229 static void x_font_min_bounds P_ ((XFontStruct *, int *, int *));
230 int x_compute_min_glyph_bounds P_ ((struct frame *));
231 static void x_update_end P_ ((struct frame *));
232 static void w32_frame_up_to_date P_ ((struct frame *));
233 static void w32_set_terminal_modes P_ ((void));
234 static void w32_reset_terminal_modes P_ ((void));
235 static void x_clear_frame P_ ((void));
236 static void frame_highlight P_ ((struct frame *));
237 static void frame_unhighlight P_ ((struct frame *));
238 static void x_new_focus_frame P_ ((struct w32_display_info *,
239 struct frame *));
240 static void x_focus_changed P_ ((int, int, struct w32_display_info *,
241 struct frame *, struct input_event *));
242 static void w32_detect_focus_change P_ ((struct w32_display_info *,
243 W32Msg *, struct input_event *));
244 static void w32_frame_rehighlight P_ ((struct frame *));
245 static void x_frame_rehighlight P_ ((struct w32_display_info *));
246 static void x_draw_hollow_cursor P_ ((struct window *, struct glyph_row *));
247 static void x_draw_bar_cursor P_ ((struct window *, struct glyph_row *, int,
248 enum text_cursor_kinds));
249 static void w32_clip_to_row P_ ((struct window *, struct glyph_row *, int, HDC));
250 static BOOL my_show_window P_ ((struct frame *, HWND, int));
251 static void my_set_window_pos P_ ((HWND, HWND, int, int, int, int, UINT));
252 static void my_set_focus P_ ((struct frame *, HWND));
253 static void my_set_foreground_window P_ ((HWND));
254 static void my_destroy_window P_ ((struct frame *, HWND));
256 static Lisp_Object Qvendor_specific_keysyms;
259 /***********************************************************************
260 Debugging
261 ***********************************************************************/
263 #if 0
265 /* This is a function useful for recording debugging information about
266 the sequence of occurrences in this file. */
268 struct record
270 char *locus;
271 int type;
274 struct record event_record[100];
276 int event_record_index;
278 record_event (locus, type)
279 char *locus;
280 int type;
282 if (event_record_index == sizeof (event_record) / sizeof (struct record))
283 event_record_index = 0;
285 event_record[event_record_index].locus = locus;
286 event_record[event_record_index].type = type;
287 event_record_index++;
290 #endif /* 0 */
293 void
294 XChangeGC (void * ignore, XGCValues* gc, unsigned long mask,
295 XGCValues *xgcv)
297 if (mask & GCForeground)
298 gc->foreground = xgcv->foreground;
299 if (mask & GCBackground)
300 gc->background = xgcv->background;
301 if (mask & GCFont)
302 gc->font = xgcv->font;
305 XGCValues *XCreateGC (void * ignore, Window window, unsigned long mask,
306 XGCValues *xgcv)
308 XGCValues *gc = (XGCValues *) xmalloc (sizeof (XGCValues));
309 bzero (gc, sizeof (XGCValues));
311 XChangeGC (ignore, gc, mask, xgcv);
313 return gc;
316 void
317 XGetGCValues (void* ignore, XGCValues *gc,
318 unsigned long mask, XGCValues *xgcv)
320 XChangeGC (ignore, xgcv, mask, gc);
323 static void
324 w32_set_clip_rectangle (HDC hdc, RECT *rect)
326 if (rect)
328 HRGN clip_region = CreateRectRgnIndirect (rect);
329 SelectClipRgn (hdc, clip_region);
330 DeleteObject (clip_region);
332 else
333 SelectClipRgn (hdc, NULL);
337 /* Draw a hollow rectangle at the specified position. */
338 void
339 w32_draw_rectangle (HDC hdc, XGCValues *gc, int x, int y,
340 int width, int height)
342 HBRUSH hb, oldhb;
343 HPEN hp, oldhp;
345 hb = CreateSolidBrush (gc->background);
346 hp = CreatePen (PS_SOLID, 0, gc->foreground);
347 oldhb = SelectObject (hdc, hb);
348 oldhp = SelectObject (hdc, hp);
350 Rectangle (hdc, x, y, x + width, y + height);
352 SelectObject (hdc, oldhb);
353 SelectObject (hdc, oldhp);
354 DeleteObject (hb);
355 DeleteObject (hp);
358 /* Draw a filled rectangle at the specified position. */
359 void
360 w32_fill_rect (f, hdc, pix, lprect)
361 FRAME_PTR f;
362 HDC hdc;
363 COLORREF pix;
364 RECT * lprect;
366 HBRUSH hb;
368 hb = CreateSolidBrush (pix);
369 FillRect (hdc, lprect, hb);
370 DeleteObject (hb);
373 void
374 w32_clear_window (f)
375 FRAME_PTR f;
377 RECT rect;
378 HDC hdc = get_frame_dc (f);
380 /* Under certain conditions, this can be called at startup with
381 a console frame pointer before the GUI frame is created. An HDC
382 of 0 indicates this. */
383 if (hdc)
385 GetClientRect (FRAME_W32_WINDOW (f), &rect);
386 w32_clear_rect (f, hdc, &rect);
389 release_frame_dc (f, hdc);
393 /***********************************************************************
394 Starting and ending an update
395 ***********************************************************************/
397 /* Start an update of frame F. This function is installed as a hook
398 for update_begin, i.e. it is called when update_begin is called.
399 This function is called prior to calls to x_update_window_begin for
400 each window being updated. */
402 static void
403 x_update_begin (f)
404 struct frame *f;
406 struct w32_display_info *display_info = FRAME_W32_DISPLAY_INFO (f);
408 if (! FRAME_W32_P (f))
409 return;
411 /* Regenerate display palette before drawing if list of requested
412 colors has changed. */
413 if (display_info->regen_palette)
415 w32_regenerate_palette (f);
416 display_info->regen_palette = FALSE;
421 /* Start update of window W. Set the global variable updated_window
422 to the window being updated and set output_cursor to the cursor
423 position of W. */
425 static void
426 x_update_window_begin (w)
427 struct window *w;
429 struct frame *f = XFRAME (WINDOW_FRAME (w));
430 struct w32_display_info *display_info = FRAME_W32_DISPLAY_INFO (f);
432 /* Hide the system caret during an update. */
433 if (w32_use_visible_system_caret && w32_system_caret_hwnd)
435 SendMessage (w32_system_caret_hwnd, WM_EMACS_HIDE_CARET, 0, 0);
438 updated_window = w;
439 set_output_cursor (&w->cursor);
441 BLOCK_INPUT;
443 if (f == display_info->mouse_face_mouse_frame)
445 /* Don't do highlighting for mouse motion during the update. */
446 display_info->mouse_face_defer = 1;
448 /* If F needs to be redrawn, simply forget about any prior mouse
449 highlighting. */
450 if (FRAME_GARBAGED_P (f))
451 display_info->mouse_face_window = Qnil;
453 #if 0 /* Rows in a current matrix containing glyphs in mouse-face have
454 their mouse_face_p flag set, which means that they are always
455 unequal to rows in a desired matrix which never have that
456 flag set. So, rows containing mouse-face glyphs are never
457 scrolled, and we don't have to switch the mouse highlight off
458 here to prevent it from being scrolled. */
460 /* Can we tell that this update does not affect the window
461 where the mouse highlight is? If so, no need to turn off.
462 Likewise, don't do anything if the frame is garbaged;
463 in that case, the frame's current matrix that we would use
464 is all wrong, and we will redisplay that line anyway. */
465 if (!NILP (display_info->mouse_face_window)
466 && w == XWINDOW (display_info->mouse_face_window))
468 int i;
470 for (i = 0; i < w->desired_matrix->nrows; ++i)
471 if (MATRIX_ROW_ENABLED_P (w->desired_matrix, i))
472 break;
474 if (i < w->desired_matrix->nrows)
475 clear_mouse_face (display_info);
477 #endif /* 0 */
480 UNBLOCK_INPUT;
483 /* Draw a vertical window border from (x,y0) to (x,y1) */
485 static void
486 w32_draw_vertical_window_border (w, x, y0, y1)
487 struct window *w;
488 int x, y0, y1;
490 struct frame *f = XFRAME (WINDOW_FRAME (w));
491 RECT r;
492 HDC hdc;
493 struct face *face;
495 r.left = x;
496 r.right = x + 1;
497 r.top = y0;
498 r.bottom = y1;
500 hdc = get_frame_dc (f);
501 face = FACE_FROM_ID (f, VERTICAL_BORDER_FACE_ID);
502 if (face)
503 w32_fill_rect (f, hdc, face->foreground, &r);
504 else
505 w32_fill_rect (f, hdc, FRAME_FOREGROUND_PIXEL (f), &r);
507 release_frame_dc (f, hdc);
511 /* End update of window W (which is equal to updated_window).
513 Draw vertical borders between horizontally adjacent windows, and
514 display W's cursor if CURSOR_ON_P is non-zero.
516 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
517 glyphs in mouse-face were overwritten. In that case we have to
518 make sure that the mouse-highlight is properly redrawn.
520 W may be a menu bar pseudo-window in case we don't have X toolkit
521 support. Such windows don't have a cursor, so don't display it
522 here. */
524 static void
525 x_update_window_end (w, cursor_on_p, mouse_face_overwritten_p)
526 struct window *w;
527 int cursor_on_p, mouse_face_overwritten_p;
529 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (XFRAME (w->frame));
531 if (!w->pseudo_window_p)
533 BLOCK_INPUT;
535 if (cursor_on_p)
536 display_and_set_cursor (w, 1, output_cursor.hpos,
537 output_cursor.vpos,
538 output_cursor.x, output_cursor.y);
540 if (draw_window_fringes (w, 1))
541 x_draw_vertical_border (w);
543 UNBLOCK_INPUT;
546 /* If a row with mouse-face was overwritten, arrange for
547 XTframe_up_to_date to redisplay the mouse highlight. */
548 if (mouse_face_overwritten_p)
550 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
551 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
552 dpyinfo->mouse_face_window = Qnil;
555 /* Unhide the caret. This won't actually show the cursor, unless it
556 was visible before the corresponding call to HideCaret in
557 x_update_window_begin. */
558 if (w32_use_visible_system_caret && w32_system_caret_hwnd)
560 SendMessage (w32_system_caret_hwnd, WM_EMACS_SHOW_CARET, 0, 0);
563 updated_window = NULL;
567 /* End update of frame F. This function is installed as a hook in
568 update_end. */
570 static void
571 x_update_end (f)
572 struct frame *f;
574 if (! FRAME_W32_P (f))
575 return;
577 /* Mouse highlight may be displayed again. */
578 FRAME_W32_DISPLAY_INFO (f)->mouse_face_defer = 0;
582 /* This function is called from various places in xdisp.c whenever a
583 complete update has been performed. The global variable
584 updated_window is not available here. */
586 static void
587 w32_frame_up_to_date (f)
588 struct frame *f;
590 if (FRAME_W32_P (f))
592 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
594 if (dpyinfo->mouse_face_deferred_gc
595 || f == dpyinfo->mouse_face_mouse_frame)
597 BLOCK_INPUT;
598 if (dpyinfo->mouse_face_mouse_frame)
599 note_mouse_highlight (dpyinfo->mouse_face_mouse_frame,
600 dpyinfo->mouse_face_mouse_x,
601 dpyinfo->mouse_face_mouse_y);
602 dpyinfo->mouse_face_deferred_gc = 0;
603 UNBLOCK_INPUT;
609 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
610 arrow bitmaps, or clear the fringes if no bitmaps are required
611 before DESIRED_ROW is made current. The window being updated is
612 found in updated_window. This function is called from
613 update_window_line only if it is known that there are differences
614 between bitmaps to be drawn between current row and DESIRED_ROW. */
616 static void
617 x_after_update_window_line (desired_row)
618 struct glyph_row *desired_row;
620 struct window *w = updated_window;
621 struct frame *f;
622 int width, height;
624 xassert (w);
626 if (!desired_row->mode_line_p && !w->pseudo_window_p)
627 desired_row->redraw_fringe_bitmaps_p = 1;
629 /* When a window has disappeared, make sure that no rest of
630 full-width rows stays visible in the internal border. Could
631 check here if updated_window is the leftmost/rightmost window,
632 but I guess it's not worth doing since vertically split windows
633 are almost never used, internal border is rarely set, and the
634 overhead is very small. */
635 if (windows_or_buffers_changed
636 && desired_row->full_width_p
637 && (f = XFRAME (w->frame),
638 width = FRAME_INTERNAL_BORDER_WIDTH (f),
639 width != 0)
640 && (height = desired_row->visible_height,
641 height > 0))
643 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
645 /* Internal border is drawn below the tool bar. */
646 if (WINDOWP (f->tool_bar_window)
647 && w == XWINDOW (f->tool_bar_window))
648 y -= width;
650 BLOCK_INPUT;
652 HDC hdc = get_frame_dc (f);
653 w32_clear_area (f, hdc, 0, y, width, height);
654 w32_clear_area (f, hdc, FRAME_PIXEL_WIDTH (f) - width,
655 y, width, height);
656 release_frame_dc (f, hdc);
658 UNBLOCK_INPUT;
663 /* Draw the bitmap WHICH in one of the left or right fringes of
664 window W. ROW is the glyph row for which to display the bitmap; it
665 determines the vertical position at which the bitmap has to be
666 drawn. */
668 static void
669 w32_draw_fringe_bitmap (w, row, p)
670 struct window *w;
671 struct glyph_row *row;
672 struct draw_fringe_bitmap_params *p;
674 struct frame *f = XFRAME (WINDOW_FRAME (w));
675 HDC hdc;
676 struct face *face = p->face;
677 int rowY;
679 hdc = get_frame_dc (f);
681 /* Must clip because of partially visible lines. */
682 rowY = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
683 if (p->y < rowY)
685 /* Adjust position of "bottom aligned" bitmap on partially
686 visible last row. */
687 int oldY = row->y;
688 int oldVH = row->visible_height;
689 row->visible_height = p->h;
690 row->y -= rowY - p->y;
691 w32_clip_to_row (w, row, -1, hdc);
692 row->y = oldY;
693 row->visible_height = oldVH;
695 else
696 w32_clip_to_row (w, row, -1, hdc);
698 if (p->bx >= 0 && !p->overlay_p)
700 w32_fill_area (f, hdc, face->background,
701 p->bx, p->by, p->nx, p->ny);
704 if (p->which && p->which < max_fringe_bmp)
706 HBITMAP pixmap = fringe_bmp[p->which];
707 HDC compat_hdc;
708 HANDLE horig_obj;
710 compat_hdc = CreateCompatibleDC (hdc);
712 SaveDC (hdc);
714 horig_obj = SelectObject (compat_hdc, pixmap);
716 /* Paint overlays transparently. */
717 if (p->overlay_p)
719 HBRUSH h_brush, h_orig_brush;
721 SetTextColor (hdc, BLACK_PIX_DEFAULT (f));
722 SetBkColor (hdc, WHITE_PIX_DEFAULT (f));
723 h_brush = CreateSolidBrush (face->foreground);
724 h_orig_brush = SelectObject (hdc, h_brush);
726 BitBlt (hdc, p->x, p->y, p->wd, p->h,
727 compat_hdc, 0, p->dh,
728 DSTINVERT);
729 BitBlt (hdc, p->x, p->y, p->wd, p->h,
730 compat_hdc, 0, p->dh,
731 0x2E064A);
732 BitBlt (hdc, p->x, p->y, p->wd, p->h,
733 compat_hdc, 0, p->dh,
734 DSTINVERT);
736 SelectObject (hdc, h_orig_brush);
737 DeleteObject (h_brush);
739 else
741 SetTextColor (hdc, face->background);
742 SetBkColor (hdc, (p->cursor_p
743 ? f->output_data.w32->cursor_pixel
744 : face->foreground));
746 BitBlt (hdc, p->x, p->y, p->wd, p->h,
747 compat_hdc, 0, p->dh,
748 SRCCOPY);
751 SelectObject (compat_hdc, horig_obj);
752 DeleteDC (compat_hdc);
753 RestoreDC (hdc, -1);
756 w32_set_clip_rectangle (hdc, NULL);
758 release_frame_dc (f, hdc);
761 static void
762 w32_define_fringe_bitmap (which, bits, h, wd)
763 int which;
764 unsigned short *bits;
765 int h, wd;
767 if (which >= max_fringe_bmp)
769 int i = max_fringe_bmp;
770 max_fringe_bmp = which + 20;
771 fringe_bmp = (HBITMAP *) xrealloc (fringe_bmp, max_fringe_bmp * sizeof (HBITMAP));
772 while (i < max_fringe_bmp)
773 fringe_bmp[i++] = 0;
776 fringe_bmp[which] = CreateBitmap (wd, h, 1, 1, bits);
779 static void
780 w32_destroy_fringe_bitmap (which)
781 int which;
783 if (which >= max_fringe_bmp)
784 return;
786 if (fringe_bmp[which])
787 DeleteObject (fringe_bmp[which]);
788 fringe_bmp[which] = 0;
793 /* This is called when starting Emacs and when restarting after
794 suspend. When starting Emacs, no window is mapped. And nothing
795 must be done to Emacs's own window if it is suspended (though that
796 rarely happens). */
798 static void
799 w32_set_terminal_modes (void)
803 /* This is called when exiting or suspending Emacs. Exiting will make
804 the W32 windows go away, and suspending requires no action. */
806 static void
807 w32_reset_terminal_modes (void)
813 /***********************************************************************
814 Display Iterator
815 ***********************************************************************/
817 /* Function prototypes of this page. */
819 XCharStruct *w32_per_char_metric P_ ((XFontStruct *, wchar_t *, int));
820 static int w32_encode_char P_ ((int, wchar_t *, struct font_info *, int *));
823 /* Get metrics of character CHAR2B in FONT. Value is always non-null.
824 If CHAR2B is not contained in FONT, the font's default character
825 metric is returned. */
827 static int
828 w32_bdf_per_char_metric (font, char2b, dim, pcm)
829 XFontStruct *font;
830 wchar_t *char2b;
831 int dim;
832 XCharStruct * pcm;
834 glyph_metric * bdf_metric;
835 char buf[2];
837 if (dim == 1)
838 buf[0] = (char)(*char2b);
839 else
841 buf[0] = XCHAR2B_BYTE1 (char2b);
842 buf[1] = XCHAR2B_BYTE2 (char2b);
845 bdf_metric = w32_BDF_TextMetric (font->bdf, buf, dim);
847 if (bdf_metric)
849 pcm->width = bdf_metric->dwidth;
850 pcm->lbearing = bdf_metric->bbox;
851 pcm->rbearing = bdf_metric->dwidth
852 - (bdf_metric->bbox + bdf_metric->bbw);
853 pcm->ascent = bdf_metric->bboy + bdf_metric->bbh;
854 pcm->descent = -bdf_metric->bboy;
856 return 1;
858 return 0;
862 static int
863 w32_native_per_char_metric (font, char2b, font_type, pcm)
864 XFontStruct *font;
865 wchar_t *char2b;
866 enum w32_char_font_type font_type;
867 XCharStruct * pcm;
869 HDC hdc = GetDC (NULL);
870 HFONT old_font;
871 BOOL retval = FALSE;
873 xassert (font && char2b);
874 xassert (font->hfont);
875 xassert (font_type == UNICODE_FONT || font_type == ANSI_FONT);
877 old_font = SelectObject (hdc, font->hfont);
879 if ((font->tm.tmPitchAndFamily & TMPF_TRUETYPE) != 0)
881 ABC char_widths;
883 if (font_type == UNICODE_FONT)
884 retval = GetCharABCWidthsW (hdc, *char2b, *char2b, &char_widths);
885 else
886 retval = GetCharABCWidthsA (hdc, *char2b, *char2b, &char_widths);
888 if (retval)
890 #if 0
891 /* Disabled until we can find a way to get the right results
892 on all versions of Windows. */
894 /* Don't trust the ABC widths. For synthesized fonts they are
895 wrong, and so is the result of GetCharWidth()! */
896 int real_width;
897 GetCharWidth (hdc, *char2b, *char2b, &real_width);
898 #endif
899 if (cleartype_active)
901 /* Cleartype antialiasing causes characters to overhang
902 by a pixel on each side compared with what GetCharABCWidths
903 reports. */
904 char_widths.abcA -= 1;
905 char_widths.abcC -= 1;
906 char_widths.abcB += 2;
909 pcm->width = char_widths.abcA + char_widths.abcB + char_widths.abcC;
910 #if 0
911 /* As far as I can tell, this is the best way to determine what
912 ExtTextOut will do with the broken font. */
913 if (pcm->width != real_width)
914 pcm->width = (pcm->width + real_width) / 2;
915 #endif
916 pcm->lbearing = char_widths.abcA;
917 pcm->rbearing = char_widths.abcA + char_widths.abcB;
918 pcm->ascent = FONT_BASE (font);
919 pcm->descent = FONT_DESCENT (font);
923 if (!retval)
925 /* Either font is not a True-type font, or GetCharABCWidthsW
926 failed (it is not supported on Windows 9x for instance), so we
927 can't determine the full info we would like. All is not lost
928 though - we can call GetTextExtentPoint32 to get rbearing and
929 deduce width based on the font's per-string overhang. lbearing
930 is assumed to be zero. */
932 /* TODO: Some Thai characters (and other composites if Windows
933 supports them) do have lbearing, and report their total width
934 as zero. Need some way of handling them when
935 GetCharABCWidthsW fails. */
936 SIZE sz;
938 if (font_type == UNICODE_FONT)
939 retval = GetTextExtentPoint32W (hdc, char2b, 1, &sz);
940 else
941 retval = GetTextExtentPoint32A (hdc, (char*)char2b, 1, &sz);
943 if (retval)
945 pcm->width = sz.cx - font->tm.tmOverhang;
946 pcm->rbearing = sz.cx;
947 pcm->lbearing = 0;
948 pcm->ascent = FONT_BASE (font);
949 pcm->descent = FONT_DESCENT (font);
954 if (pcm->width == 0 && (pcm->rbearing - pcm->lbearing) == 0)
956 retval = FALSE;
959 SelectObject (hdc, old_font);
960 ReleaseDC (NULL, hdc);
962 return retval;
966 XCharStruct *
967 w32_per_char_metric (font, char2b, font_type)
968 XFontStruct *font;
969 wchar_t *char2b;
970 int /* enum w32_char_font_type */ font_type;
972 /* The result metric information. */
973 XCharStruct *pcm;
974 BOOL retval;
976 xassert (font && char2b);
978 /* TODO: This function is currently called through the RIF, and in
979 some cases font_type is UNKNOWN_FONT. We currently allow the
980 cached metrics to be used, which seems to work, but in cases
981 where font_type is UNKNOWN_FONT, we probably haven't encoded
982 char2b appropriately. All callers need checking to see what they
983 are passing. This is most likely to affect variable width fonts
984 outside the Latin-1 range, particularly in languages like Thai
985 that rely on rbearing and lbearing to provide composition. I
986 don't think that is working currently anyway, but we don't seem
987 to have anyone testing such languages on Windows. */
989 /* Handle the common cases quickly. */
990 if (!font->bdf && font->per_char == NULL)
991 /* TODO: determine whether char2b exists in font? */
992 return &font->max_bounds;
993 else if (!font->bdf && *char2b < 128)
994 return &font->per_char[*char2b];
996 xassert (font_type != UNKNOWN_FONT);
998 pcm = &font->scratch;
1000 if (font_type == BDF_1D_FONT)
1001 retval = w32_bdf_per_char_metric (font, char2b, 1, pcm);
1002 else if (font_type == BDF_2D_FONT)
1003 retval = w32_bdf_per_char_metric (font, char2b, 2, pcm);
1004 else
1005 retval = w32_native_per_char_metric (font, char2b, font_type, pcm);
1007 if (retval)
1008 return pcm;
1010 return NULL;
1013 void
1014 w32_cache_char_metrics (font)
1015 XFontStruct *font;
1017 wchar_t char2b = L'x';
1019 /* Cache char metrics for the common cases. */
1020 if (font->bdf)
1022 /* TODO: determine whether font is fixed-pitch. */
1023 if (!w32_bdf_per_char_metric (font, &char2b, 1, &font->max_bounds))
1025 /* Use the font width and height as max bounds, as not all BDF
1026 fonts contain the letter 'x'. */
1027 font->max_bounds.width = FONT_MAX_WIDTH (font);
1028 font->max_bounds.lbearing = -font->bdf->llx;
1029 font->max_bounds.rbearing = FONT_MAX_WIDTH (font) - font->bdf->urx;
1030 font->max_bounds.ascent = FONT_BASE (font);
1031 font->max_bounds.descent = FONT_DESCENT (font);
1034 else
1036 if (((font->tm.tmPitchAndFamily & TMPF_FIXED_PITCH) != 0)
1037 /* Some fonts (eg DBCS fonts) are marked as fixed width even
1038 though they contain characters of different widths. */
1039 || (font->tm.tmMaxCharWidth != font->tm.tmAveCharWidth))
1041 /* Font is not fixed pitch, so cache per_char info for the
1042 ASCII characters. It would be much more work, and probably
1043 not worth it, to cache other chars, since we may change
1044 between using Unicode and ANSI text drawing functions at
1045 run-time. */
1046 int i;
1048 font->per_char = xmalloc (128 * sizeof(XCharStruct));
1049 for (i = 0; i < 128; i++)
1051 char2b = i;
1052 w32_native_per_char_metric (font, &char2b, ANSI_FONT,
1053 &font->per_char[i]);
1056 else
1057 w32_native_per_char_metric (font, &char2b, ANSI_FONT,
1058 &font->max_bounds);
1063 /* Determine if a font is double byte. */
1064 int w32_font_is_double_byte (XFontStruct *font)
1066 return font->double_byte_p;
1070 static BOOL
1071 w32_use_unicode_for_codepage (codepage)
1072 int codepage;
1074 /* If the current codepage is supported, use Unicode for output. */
1075 return (w32_enable_unicode_output
1076 && codepage != CP_8BIT
1077 && (codepage == CP_UNICODE || IsValidCodePage (codepage)));
1080 /* Encode CHAR2B using encoding information from FONT_INFO. CHAR2B is
1081 the two-byte form of C. Encoding is returned in *CHAR2B. */
1083 static int /* enum w32_char_font_type */
1084 w32_encode_char (c, char2b, font_info, two_byte_p)
1085 int c;
1086 wchar_t *char2b;
1087 struct font_info *font_info;
1088 int * two_byte_p;
1090 int charset = CHAR_CHARSET (c);
1091 int codepage;
1092 int unicode_p = 0;
1093 int internal_two_byte_p = 0;
1095 XFontStruct *font = font_info->font;
1097 internal_two_byte_p = w32_font_is_double_byte (font);
1099 /* FONT_INFO may define a scheme by which to encode byte1 and byte2.
1100 This may be either a program in a special encoder language or a
1101 fixed encoding. */
1102 if (font_info->font_encoder)
1104 /* It's a program. */
1105 struct ccl_program *ccl = font_info->font_encoder;
1107 if (CHARSET_DIMENSION (charset) == 1)
1109 ccl->reg[0] = charset;
1110 ccl->reg[1] = XCHAR2B_BYTE2 (char2b);
1111 ccl->reg[2] = -1;
1113 else
1115 ccl->reg[0] = charset;
1116 ccl->reg[1] = XCHAR2B_BYTE1 (char2b);
1117 ccl->reg[2] = XCHAR2B_BYTE2 (char2b);
1120 ccl_driver (ccl, NULL, NULL, 0, 0, NULL);
1122 /* We assume that MSBs are appropriately set/reset by CCL
1123 program. */
1124 if (!internal_two_byte_p) /* 1-byte font */
1125 STORE_XCHAR2B (char2b, 0, ccl->reg[1]);
1126 else
1127 STORE_XCHAR2B (char2b, ccl->reg[1], ccl->reg[2]);
1129 else if (font_info->encoding[charset])
1131 /* Fixed encoding scheme. See fontset.h for the meaning of the
1132 encoding numbers. */
1133 int enc = font_info->encoding[charset];
1135 if ((enc == 1 || enc == 2)
1136 && CHARSET_DIMENSION (charset) == 2)
1137 STORE_XCHAR2B (char2b, XCHAR2B_BYTE1 (char2b) | 0x80, XCHAR2B_BYTE2 (char2b));
1139 if (enc == 1 || enc == 3
1140 || (enc == 4 && CHARSET_DIMENSION (charset) == 1))
1141 STORE_XCHAR2B (char2b, XCHAR2B_BYTE1 (char2b), XCHAR2B_BYTE2 (char2b) | 0x80);
1142 else if (enc == 4)
1144 int sjis1, sjis2;
1146 ENCODE_SJIS (XCHAR2B_BYTE1 (char2b), XCHAR2B_BYTE2 (char2b),
1147 sjis1, sjis2);
1148 STORE_XCHAR2B (char2b, sjis1, sjis2);
1151 codepage = font_info->codepage;
1153 /* If charset is not ASCII or Latin-1, may need to move it into
1154 Unicode space. */
1155 if ( font && !font->bdf && w32_use_unicode_for_codepage (codepage)
1156 && charset != CHARSET_ASCII && charset != charset_latin_iso8859_1
1157 && charset != CHARSET_8_BIT_CONTROL && charset != CHARSET_8_BIT_GRAPHIC)
1159 char temp[3];
1160 temp[0] = XCHAR2B_BYTE1 (char2b);
1161 temp[1] = XCHAR2B_BYTE2 (char2b);
1162 temp[2] = '\0';
1163 if (codepage != CP_UNICODE)
1165 if (temp[0])
1166 MultiByteToWideChar (codepage, 0, temp, 2, char2b, 1);
1167 else
1168 MultiByteToWideChar (codepage, 0, temp+1, 1, char2b, 1);
1170 unicode_p = 1;
1171 internal_two_byte_p = 1;
1174 if (two_byte_p)
1175 *two_byte_p = internal_two_byte_p;
1177 if (!font)
1178 return UNKNOWN_FONT;
1179 else if (font->bdf && CHARSET_DIMENSION (charset) == 1)
1180 return BDF_1D_FONT;
1181 else if (font->bdf)
1182 return BDF_2D_FONT;
1183 else if (unicode_p)
1184 return UNICODE_FONT;
1185 else
1186 return ANSI_FONT;
1191 /***********************************************************************
1192 Glyph display
1193 ***********************************************************************/
1196 /* Encapsulate the different ways of displaying text under W32. */
1198 static void
1199 w32_text_out (s, x, y,chars,nchars)
1200 struct glyph_string * s;
1201 int x, y;
1202 wchar_t * chars;
1203 int nchars;
1205 int charset_dim = w32_font_is_double_byte (s->font) ? 2 : 1;
1206 if (s->font->bdf)
1207 w32_BDF_TextOut (s->font->bdf, s->hdc,
1208 x, y, (char *) chars, charset_dim,
1209 nchars * charset_dim, 0);
1210 else if (s->first_glyph->font_type == UNICODE_FONT)
1211 ExtTextOutW (s->hdc, x, y, 0, NULL, chars, nchars, NULL);
1212 else
1213 ExtTextOutA (s->hdc, x, y, 0, NULL, (char *) chars,
1214 nchars * charset_dim, NULL);
1218 static void x_set_glyph_string_clipping P_ ((struct glyph_string *));
1219 static void x_set_glyph_string_gc P_ ((struct glyph_string *));
1220 static void x_draw_glyph_string_background P_ ((struct glyph_string *,
1221 int));
1222 static void x_draw_glyph_string_foreground P_ ((struct glyph_string *));
1223 static void x_draw_composite_glyph_string_foreground P_ ((struct glyph_string *));
1224 static void x_draw_glyph_string_box P_ ((struct glyph_string *));
1225 static void x_draw_glyph_string P_ ((struct glyph_string *));
1226 static void x_set_cursor_gc P_ ((struct glyph_string *));
1227 static void x_set_mode_line_face_gc P_ ((struct glyph_string *));
1228 static void x_set_mouse_face_gc P_ ((struct glyph_string *));
1229 static int w32_alloc_lighter_color (struct frame *, COLORREF *, double, int);
1230 static void w32_setup_relief_color P_ ((struct frame *, struct relief *,
1231 double, int, COLORREF));
1232 static void x_setup_relief_colors P_ ((struct glyph_string *));
1233 static void x_draw_image_glyph_string P_ ((struct glyph_string *));
1234 static void x_draw_image_relief P_ ((struct glyph_string *));
1235 static void x_draw_image_foreground P_ ((struct glyph_string *));
1236 static void w32_draw_image_foreground_1 P_ ((struct glyph_string *, HBITMAP));
1237 static void x_clear_glyph_string_rect P_ ((struct glyph_string *, int,
1238 int, int, int));
1239 static void w32_draw_relief_rect P_ ((struct frame *, int, int, int, int,
1240 int, int, int, int, int, int,
1241 RECT *));
1242 static void w32_draw_box_rect P_ ((struct glyph_string *, int, int, int, int,
1243 int, int, int, RECT *));
1245 #if GLYPH_DEBUG
1246 static void x_check_font P_ ((struct frame *, XFontStruct *));
1247 #endif
1250 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
1251 face. */
1253 static void
1254 x_set_cursor_gc (s)
1255 struct glyph_string *s;
1257 if (s->font == FRAME_FONT (s->f)
1258 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
1259 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
1260 && !s->cmp)
1261 s->gc = s->f->output_data.w32->cursor_gc;
1262 else
1264 /* Cursor on non-default face: must merge. */
1265 XGCValues xgcv;
1266 unsigned long mask;
1268 xgcv.background = s->f->output_data.w32->cursor_pixel;
1269 xgcv.foreground = s->face->background;
1271 /* If the glyph would be invisible, try a different foreground. */
1272 if (xgcv.foreground == xgcv.background)
1273 xgcv.foreground = s->face->foreground;
1274 if (xgcv.foreground == xgcv.background)
1275 xgcv.foreground = s->f->output_data.w32->cursor_foreground_pixel;
1276 if (xgcv.foreground == xgcv.background)
1277 xgcv.foreground = s->face->foreground;
1279 /* Make sure the cursor is distinct from text in this face. */
1280 if (xgcv.background == s->face->background
1281 && xgcv.foreground == s->face->foreground)
1283 xgcv.background = s->face->foreground;
1284 xgcv.foreground = s->face->background;
1287 IF_DEBUG (x_check_font (s->f, s->font));
1288 xgcv.font = s->font;
1289 mask = GCForeground | GCBackground | GCFont;
1291 if (FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc)
1292 XChangeGC (NULL, FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc,
1293 mask, &xgcv);
1294 else
1295 FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc
1296 = XCreateGC (NULL, s->window, mask, &xgcv);
1298 s->gc = FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc;
1303 /* Set up S->gc of glyph string S for drawing text in mouse face. */
1305 static void
1306 x_set_mouse_face_gc (s)
1307 struct glyph_string *s;
1309 int face_id;
1310 struct face *face;
1312 /* What face has to be used last for the mouse face? */
1313 face_id = FRAME_W32_DISPLAY_INFO (s->f)->mouse_face_face_id;
1314 face = FACE_FROM_ID (s->f, face_id);
1315 if (face == NULL)
1316 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
1318 if (s->first_glyph->type == CHAR_GLYPH)
1319 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch);
1320 else
1321 face_id = FACE_FOR_CHAR (s->f, face, 0);
1322 s->face = FACE_FROM_ID (s->f, face_id);
1323 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
1325 /* If font in this face is same as S->font, use it. */
1326 if (s->font == s->face->font)
1327 s->gc = s->face->gc;
1328 else
1330 /* Otherwise construct scratch_cursor_gc with values from FACE
1331 but font FONT. */
1332 XGCValues xgcv;
1333 unsigned long mask;
1335 xgcv.background = s->face->background;
1336 xgcv.foreground = s->face->foreground;
1337 IF_DEBUG (x_check_font (s->f, s->font));
1338 xgcv.font = s->font;
1339 mask = GCForeground | GCBackground | GCFont;
1341 if (FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc)
1342 XChangeGC (NULL, FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc,
1343 mask, &xgcv);
1344 else
1345 FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc
1346 = XCreateGC (NULL, s->window, mask, &xgcv);
1348 s->gc = FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc;
1351 xassert (s->gc != 0);
1355 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
1356 Faces to use in the mode line have already been computed when the
1357 matrix was built, so there isn't much to do, here. */
1359 static INLINE void
1360 x_set_mode_line_face_gc (s)
1361 struct glyph_string *s;
1363 s->gc = s->face->gc;
1367 /* Set S->gc of glyph string S for drawing that glyph string. Set
1368 S->stippled_p to a non-zero value if the face of S has a stipple
1369 pattern. */
1371 static INLINE void
1372 x_set_glyph_string_gc (s)
1373 struct glyph_string *s;
1375 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
1377 if (s->hl == DRAW_NORMAL_TEXT)
1379 s->gc = s->face->gc;
1380 s->stippled_p = s->face->stipple != 0;
1382 else if (s->hl == DRAW_INVERSE_VIDEO)
1384 x_set_mode_line_face_gc (s);
1385 s->stippled_p = s->face->stipple != 0;
1387 else if (s->hl == DRAW_CURSOR)
1389 x_set_cursor_gc (s);
1390 s->stippled_p = 0;
1392 else if (s->hl == DRAW_MOUSE_FACE)
1394 x_set_mouse_face_gc (s);
1395 s->stippled_p = s->face->stipple != 0;
1397 else if (s->hl == DRAW_IMAGE_RAISED
1398 || s->hl == DRAW_IMAGE_SUNKEN)
1400 s->gc = s->face->gc;
1401 s->stippled_p = s->face->stipple != 0;
1403 else
1405 s->gc = s->face->gc;
1406 s->stippled_p = s->face->stipple != 0;
1409 /* GC must have been set. */
1410 xassert (s->gc != 0);
1414 /* Set clipping for output of glyph string S. S may be part of a mode
1415 line or menu if we don't have X toolkit support. */
1417 static INLINE void
1418 x_set_glyph_string_clipping (s)
1419 struct glyph_string *s;
1421 RECT r;
1422 get_glyph_string_clip_rect (s, &r);
1423 w32_set_clip_rectangle (s->hdc, &r);
1427 /* RIF:
1428 Compute left and right overhang of glyph string S. If S is a glyph
1429 string for a composition, assume overhangs don't exist. */
1431 static void
1432 w32_compute_glyph_string_overhangs (s)
1433 struct glyph_string *s;
1435 /* TODO: Windows does not appear to have a method for
1436 getting this info without getting the ABC widths for each
1437 individual character and working it out manually. */
1441 static void
1442 w32_get_glyph_overhangs (glyph, f, left, right)
1443 struct glyph *glyph;
1444 struct frame *f;
1445 int *left, *right;
1447 HDC hdc = get_frame_dc (f);
1448 /* Convert to unicode! */
1449 x_get_glyph_overhangs (glyph, f, left, right);
1450 release_frame_dc (f, hdc);
1454 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
1456 static INLINE void
1457 x_clear_glyph_string_rect (s, x, y, w, h)
1458 struct glyph_string *s;
1459 int x, y, w, h;
1461 int real_x = x;
1462 int real_y = y;
1463 int real_w = w;
1464 int real_h = h;
1465 #if 0
1466 /* Take clipping into account. */
1467 if (s->gc->clip_mask == Rect)
1469 real_x = max (real_x, s->gc->clip_rectangle.left);
1470 real_y = max (real_y, s->gc->clip_rectangle.top);
1471 real_w = min (real_w, s->gc->clip_rectangle.right
1472 - s->gc->clip_rectangle.left);
1473 real_h = min (real_h, s->gc->clip_rectangle.bottom
1474 - s->gc->clip_rectangle.top);
1476 #endif
1477 w32_fill_area (s->f, s->hdc, s->gc->background, real_x, real_y,
1478 real_w, real_h);
1482 /* Draw the background of glyph_string S. If S->background_filled_p
1483 is non-zero don't draw it. FORCE_P non-zero means draw the
1484 background even if it wouldn't be drawn normally. This is used
1485 when a string preceding S draws into the background of S, or S
1486 contains the first component of a composition. */
1488 static void
1489 x_draw_glyph_string_background (s, force_p)
1490 struct glyph_string *s;
1491 int force_p;
1493 /* Nothing to do if background has already been drawn or if it
1494 shouldn't be drawn in the first place. */
1495 if (!s->background_filled_p)
1497 int box_line_width = max (s->face->box_line_width, 0);
1499 #if 0 /* TODO: stipple */
1500 if (s->stippled_p)
1502 /* Fill background with a stipple pattern. */
1503 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
1504 XFillRectangle (s->display, s->window, s->gc, s->x,
1505 s->y + box_line_width,
1506 s->background_width,
1507 s->height - 2 * box_line_width);
1508 XSetFillStyle (s->display, s->gc, FillSolid);
1509 s->background_filled_p = 1;
1511 else
1512 #endif
1513 if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
1514 || s->font_not_found_p
1515 || s->extends_to_end_of_line_p
1516 || s->font->bdf
1517 || force_p)
1519 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
1520 s->background_width,
1521 s->height - 2 * box_line_width);
1522 s->background_filled_p = 1;
1528 /* Draw the foreground of glyph string S. */
1530 static void
1531 x_draw_glyph_string_foreground (s)
1532 struct glyph_string *s;
1534 int i, x;
1535 HFONT old_font;
1537 /* If first glyph of S has a left box line, start drawing the text
1538 of S to the right of that box line. */
1539 if (s->face->box != FACE_NO_BOX
1540 && s->first_glyph->left_box_line_p)
1541 x = s->x + abs (s->face->box_line_width);
1542 else
1543 x = s->x;
1545 if (s->for_overlaps || (s->background_filled_p && s->hl != DRAW_CURSOR))
1546 SetBkMode (s->hdc, TRANSPARENT);
1547 else
1548 SetBkMode (s->hdc, OPAQUE);
1550 SetTextColor (s->hdc, s->gc->foreground);
1551 SetBkColor (s->hdc, s->gc->background);
1552 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
1554 if (s->font && s->font->hfont)
1555 old_font = SelectObject (s->hdc, s->font->hfont);
1557 /* Draw characters of S as rectangles if S's font could not be
1558 loaded. */
1559 if (s->font_not_found_p)
1561 for (i = 0; i < s->nchars; ++i)
1563 struct glyph *g = s->first_glyph + i;
1565 w32_draw_rectangle (s->hdc, s->gc, x, s->y, g->pixel_width - 1,
1566 s->height - 1);
1567 x += g->pixel_width;
1570 else
1572 char *char1b = (char *) s->char2b;
1573 int boff = s->font_info->baseline_offset;
1575 if (s->font_info->vertical_centering)
1576 boff = VCENTER_BASELINE_OFFSET (s->font, s->f) - boff;
1578 /* If we can use 8-bit functions, condense S->char2b. */
1579 if (!s->two_byte_p)
1580 for (i = 0; i < s->nchars; ++i)
1581 char1b[i] = XCHAR2B_BYTE2 (&s->char2b[i]);
1583 /* Draw text with TextOut and friends. */
1584 w32_text_out (s, x, s->ybase - boff, s->char2b, s->nchars);
1586 if (s->face->overstrike)
1588 /* For overstriking (to simulate bold-face), draw the
1589 characters again shifted to the right by one pixel. */
1590 w32_text_out (s, x + 1, s->ybase - boff, s->char2b, s->nchars);
1593 if (s->font && s->font->hfont)
1594 SelectObject (s->hdc, old_font);
1597 /* Draw the foreground of composite glyph string S. */
1599 static void
1600 x_draw_composite_glyph_string_foreground (s)
1601 struct glyph_string *s;
1603 int i, x;
1604 HFONT old_font;
1606 /* If first glyph of S has a left box line, start drawing the text
1607 of S to the right of that box line. */
1608 if (s->face->box != FACE_NO_BOX
1609 && s->first_glyph->left_box_line_p)
1610 x = s->x + abs (s->face->box_line_width);
1611 else
1612 x = s->x;
1614 /* S is a glyph string for a composition. S->gidx is the index of
1615 the first character drawn for glyphs of this composition.
1616 S->gidx == 0 means we are drawing the very first character of
1617 this composition. */
1619 SetTextColor (s->hdc, s->gc->foreground);
1620 SetBkColor (s->hdc, s->gc->background);
1621 SetBkMode (s->hdc, TRANSPARENT);
1622 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
1624 if (s->font && s->font->hfont)
1625 old_font = SelectObject (s->hdc, s->font->hfont);
1627 /* Draw a rectangle for the composition if the font for the very
1628 first character of the composition could not be loaded. */
1629 if (s->font_not_found_p)
1631 if (s->gidx == 0)
1632 w32_draw_rectangle (s->hdc, s->gc, x, s->y, s->width - 1,
1633 s->height - 1);
1635 else
1637 for (i = 0; i < s->nchars; i++, ++s->gidx)
1639 w32_text_out (s, x + s->cmp->offsets[s->gidx * 2],
1640 s->ybase - s->cmp->offsets[s->gidx * 2 + 1],
1641 s->char2b + i, 1);
1642 if (s->face->overstrike)
1643 w32_text_out (s, x + s->cmp->offsets[s->gidx * 2] + 1,
1644 s->ybase - s->cmp->offsets[s->gidx * 2 + 1],
1645 s->char2b + i, 1);
1649 if (s->font && s->font->hfont)
1650 SelectObject (s->hdc, old_font);
1654 /* Brightness beyond which a color won't have its highlight brightness
1655 boosted.
1657 Nominally, highlight colors for `3d' faces are calculated by
1658 brightening an object's color by a constant scale factor, but this
1659 doesn't yield good results for dark colors, so for colors who's
1660 brightness is less than this value (on a scale of 0-255) have to
1661 use an additional additive factor.
1663 The value here is set so that the default menu-bar/mode-line color
1664 (grey75) will not have its highlights changed at all. */
1665 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 187
1668 /* Allocate a color which is lighter or darker than *COLOR by FACTOR
1669 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1670 If this produces the same color as COLOR, try a color where all RGB
1671 values have DELTA added. Return the allocated color in *COLOR.
1672 DISPLAY is the X display, CMAP is the colormap to operate on.
1673 Value is non-zero if successful. */
1675 static int
1676 w32_alloc_lighter_color (f, color, factor, delta)
1677 struct frame *f;
1678 COLORREF *color;
1679 double factor;
1680 int delta;
1682 COLORREF new;
1683 long bright;
1685 /* On Windows, RGB values are 0-255, not 0-65535, so scale delta. */
1686 delta /= 256;
1688 /* Change RGB values by specified FACTOR. Avoid overflow! */
1689 xassert (factor >= 0);
1690 new = PALETTERGB (min (0xff, factor * GetRValue (*color)),
1691 min (0xff, factor * GetGValue (*color)),
1692 min (0xff, factor * GetBValue (*color)));
1694 /* Calculate brightness of COLOR. */
1695 bright = (2 * GetRValue (*color) + 3 * GetGValue (*color)
1696 + GetBValue (*color)) / 6;
1698 /* We only boost colors that are darker than
1699 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
1700 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
1701 /* Make an additive adjustment to NEW, because it's dark enough so
1702 that scaling by FACTOR alone isn't enough. */
1704 /* How far below the limit this color is (0 - 1, 1 being darker). */
1705 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
1706 /* The additive adjustment. */
1707 int min_delta = delta * dimness * factor / 2;
1709 if (factor < 1)
1710 new = PALETTERGB (max (0, min (0xff, min_delta - GetRValue (*color))),
1711 max (0, min (0xff, min_delta - GetGValue (*color))),
1712 max (0, min (0xff, min_delta - GetBValue (*color))));
1713 else
1714 new = PALETTERGB (max (0, min (0xff, min_delta + GetRValue (*color))),
1715 max (0, min (0xff, min_delta + GetGValue (*color))),
1716 max (0, min (0xff, min_delta + GetBValue (*color))));
1719 if (new == *color)
1720 new = PALETTERGB (max (0, min (0xff, delta + GetRValue (*color))),
1721 max (0, min (0xff, delta + GetGValue (*color))),
1722 max (0, min (0xff, delta + GetBValue (*color))));
1724 /* TODO: Map to palette and retry with delta if same? */
1725 /* TODO: Free colors (if using palette)? */
1727 if (new == *color)
1728 return 0;
1730 *color = new;
1732 return 1;
1736 /* Set up the foreground color for drawing relief lines of glyph
1737 string S. RELIEF is a pointer to a struct relief containing the GC
1738 with which lines will be drawn. Use a color that is FACTOR or
1739 DELTA lighter or darker than the relief's background which is found
1740 in S->f->output_data.x->relief_background. If such a color cannot
1741 be allocated, use DEFAULT_PIXEL, instead. */
1743 static void
1744 w32_setup_relief_color (f, relief, factor, delta, default_pixel)
1745 struct frame *f;
1746 struct relief *relief;
1747 double factor;
1748 int delta;
1749 COLORREF default_pixel;
1751 XGCValues xgcv;
1752 struct w32_output *di = f->output_data.w32;
1753 unsigned long mask = GCForeground;
1754 COLORREF pixel;
1755 COLORREF background = di->relief_background;
1756 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
1758 /* TODO: Free colors (if using palette)? */
1760 /* Allocate new color. */
1761 xgcv.foreground = default_pixel;
1762 pixel = background;
1763 if (w32_alloc_lighter_color (f, &pixel, factor, delta))
1765 relief->allocated_p = 1;
1766 xgcv.foreground = relief->pixel = pixel;
1769 if (relief->gc == 0)
1771 #if 0 /* TODO: stipple */
1772 xgcv.stipple = dpyinfo->gray;
1773 mask |= GCStipple;
1774 #endif
1775 relief->gc = XCreateGC (NULL, FRAME_W32_WINDOW (f), mask, &xgcv);
1777 else
1778 XChangeGC (NULL, relief->gc, mask, &xgcv);
1782 /* Set up colors for the relief lines around glyph string S. */
1784 static void
1785 x_setup_relief_colors (s)
1786 struct glyph_string *s;
1788 struct w32_output *di = s->f->output_data.w32;
1789 COLORREF color;
1791 if (s->face->use_box_color_for_shadows_p)
1792 color = s->face->box_color;
1793 else if (s->first_glyph->type == IMAGE_GLYPH
1794 && s->img->pixmap
1795 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
1796 color = IMAGE_BACKGROUND (s->img, s->f, 0);
1797 else
1798 color = s->gc->background;
1800 if (di->white_relief.gc == 0
1801 || color != di->relief_background)
1803 di->relief_background = color;
1804 w32_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
1805 WHITE_PIX_DEFAULT (s->f));
1806 w32_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
1807 BLACK_PIX_DEFAULT (s->f));
1812 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
1813 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
1814 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
1815 relief. LEFT_P non-zero means draw a relief on the left side of
1816 the rectangle. RIGHT_P non-zero means draw a relief on the right
1817 side of the rectangle. CLIP_RECT is the clipping rectangle to use
1818 when drawing. */
1820 static void
1821 w32_draw_relief_rect (f, left_x, top_y, right_x, bottom_y, width,
1822 raised_p, top_p, bot_p, left_p, right_p, clip_rect)
1823 struct frame *f;
1824 int left_x, top_y, right_x, bottom_y, width;
1825 int top_p, bot_p, left_p, right_p, raised_p;
1826 RECT *clip_rect;
1828 int i;
1829 XGCValues gc;
1830 HDC hdc = get_frame_dc (f);
1832 if (raised_p)
1833 gc.foreground = f->output_data.w32->white_relief.gc->foreground;
1834 else
1835 gc.foreground = f->output_data.w32->black_relief.gc->foreground;
1837 w32_set_clip_rectangle (hdc, clip_rect);
1839 /* Top. */
1840 if (top_p)
1841 for (i = 0; i < width; ++i)
1842 w32_fill_area (f, hdc, gc.foreground,
1843 left_x + i * left_p, top_y + i,
1844 right_x - left_x - i * (left_p + right_p ) + 1, 1);
1846 /* Left. */
1847 if (left_p)
1848 for (i = 0; i < width; ++i)
1849 w32_fill_area (f, hdc, gc.foreground,
1850 left_x + i, top_y + i, 1,
1851 bottom_y - top_y - 2 * i + 1);
1853 if (raised_p)
1854 gc.foreground = f->output_data.w32->black_relief.gc->foreground;
1855 else
1856 gc.foreground = f->output_data.w32->white_relief.gc->foreground;
1858 /* Bottom. */
1859 if (bot_p)
1860 for (i = 0; i < width; ++i)
1861 w32_fill_area (f, hdc, gc.foreground,
1862 left_x + i * left_p, bottom_y - i,
1863 right_x - left_x - i * (left_p + right_p) + 1, 1);
1865 /* Right. */
1866 if (right_p)
1867 for (i = 0; i < width; ++i)
1868 w32_fill_area (f, hdc, gc.foreground,
1869 right_x - i, top_y + i + 1, 1,
1870 bottom_y - top_y - 2 * i - 1);
1872 w32_set_clip_rectangle (hdc, NULL);
1874 release_frame_dc (f, hdc);
1878 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
1879 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
1880 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
1881 left side of the rectangle. RIGHT_P non-zero means draw a line
1882 on the right side of the rectangle. CLIP_RECT is the clipping
1883 rectangle to use when drawing. */
1885 static void
1886 w32_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
1887 left_p, right_p, clip_rect)
1888 struct glyph_string *s;
1889 int left_x, top_y, right_x, bottom_y, width, left_p, right_p;
1890 RECT *clip_rect;
1892 w32_set_clip_rectangle (s->hdc, clip_rect);
1894 /* Top. */
1895 w32_fill_area (s->f, s->hdc, s->face->box_color,
1896 left_x, top_y, right_x - left_x + 1, width);
1898 /* Left. */
1899 if (left_p)
1901 w32_fill_area (s->f, s->hdc, s->face->box_color,
1902 left_x, top_y, width, bottom_y - top_y + 1);
1905 /* Bottom. */
1906 w32_fill_area (s->f, s->hdc, s->face->box_color,
1907 left_x, bottom_y - width + 1, right_x - left_x + 1, width);
1909 /* Right. */
1910 if (right_p)
1912 w32_fill_area (s->f, s->hdc, s->face->box_color,
1913 right_x - width + 1, top_y, width, bottom_y - top_y + 1);
1916 w32_set_clip_rectangle (s->hdc, NULL);
1920 /* Draw a box around glyph string S. */
1922 static void
1923 x_draw_glyph_string_box (s)
1924 struct glyph_string *s;
1926 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
1927 int left_p, right_p;
1928 struct glyph *last_glyph;
1929 RECT clip_rect;
1931 last_x = ((s->row->full_width_p && !s->w->pseudo_window_p)
1932 ? WINDOW_RIGHT_EDGE_X (s->w)
1933 : window_box_right (s->w, s->area));
1935 /* The glyph that may have a right box line. */
1936 last_glyph = (s->cmp || s->img
1937 ? s->first_glyph
1938 : s->first_glyph + s->nchars - 1);
1940 width = abs (s->face->box_line_width);
1941 raised_p = s->face->box == FACE_RAISED_BOX;
1942 left_x = s->x;
1943 right_x = ((s->row->full_width_p && s->extends_to_end_of_line_p
1944 ? last_x - 1
1945 : min (last_x, s->x + s->background_width) - 1));
1946 top_y = s->y;
1947 bottom_y = top_y + s->height - 1;
1949 left_p = (s->first_glyph->left_box_line_p
1950 || (s->hl == DRAW_MOUSE_FACE
1951 && (s->prev == NULL
1952 || s->prev->hl != s->hl)));
1953 right_p = (last_glyph->right_box_line_p
1954 || (s->hl == DRAW_MOUSE_FACE
1955 && (s->next == NULL
1956 || s->next->hl != s->hl)));
1958 get_glyph_string_clip_rect (s, &clip_rect);
1960 if (s->face->box == FACE_SIMPLE_BOX)
1961 w32_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
1962 left_p, right_p, &clip_rect);
1963 else
1965 x_setup_relief_colors (s);
1966 w32_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
1967 width, raised_p, 1, 1, left_p, right_p, &clip_rect);
1972 /* Draw foreground of image glyph string S. */
1974 static void
1975 x_draw_image_foreground (s)
1976 struct glyph_string *s;
1978 int x = s->x;
1979 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
1981 /* If first glyph of S has a left box line, start drawing it to the
1982 right of that line. */
1983 if (s->face->box != FACE_NO_BOX
1984 && s->first_glyph->left_box_line_p
1985 && s->slice.x == 0)
1986 x += abs (s->face->box_line_width);
1988 /* If there is a margin around the image, adjust x- and y-position
1989 by that margin. */
1990 if (s->slice.x == 0)
1991 x += s->img->hmargin;
1992 if (s->slice.y == 0)
1993 y += s->img->vmargin;
1995 SaveDC (s->hdc);
1997 if (s->img->pixmap)
1999 HDC compat_hdc = CreateCompatibleDC (s->hdc);
2000 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
2001 HBRUSH orig_brush = SelectObject (s->hdc, fg_brush);
2002 HGDIOBJ orig_obj = SelectObject (compat_hdc, s->img->pixmap);
2003 SetBkColor (compat_hdc, RGB (255, 255, 255));
2004 SetTextColor (s->hdc, RGB (0, 0, 0));
2005 x_set_glyph_string_clipping (s);
2007 if (s->img->mask)
2009 HDC mask_dc = CreateCompatibleDC (s->hdc);
2010 HGDIOBJ mask_orig_obj = SelectObject (mask_dc, s->img->mask);
2012 SetTextColor (s->hdc, RGB (255, 255, 255));
2013 SetBkColor (s->hdc, RGB (0, 0, 0));
2015 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
2016 compat_hdc, s->slice.x, s->slice.y, SRCINVERT);
2017 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
2018 mask_dc, s->slice.x, s->slice.y, SRCAND);
2019 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
2020 compat_hdc, s->slice.x, s->slice.y, SRCINVERT);
2022 SelectObject (mask_dc, mask_orig_obj);
2023 DeleteDC (mask_dc);
2025 else
2027 SetTextColor (s->hdc, s->gc->foreground);
2028 SetBkColor (s->hdc, s->gc->background);
2030 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
2031 compat_hdc, s->slice.x, s->slice.y, SRCCOPY);
2033 /* When the image has a mask, we can expect that at
2034 least part of a mouse highlight or a block cursor will
2035 be visible. If the image doesn't have a mask, make
2036 a block cursor visible by drawing a rectangle around
2037 the image. I believe it's looking better if we do
2038 nothing here for mouse-face. */
2039 if (s->hl == DRAW_CURSOR)
2041 int r = s->img->relief;
2042 if (r < 0) r = -r;
2043 w32_draw_rectangle (s->hdc, s->gc, x - r, y - r ,
2044 s->slice.width + r*2 - 1,
2045 s->slice.height + r*2 - 1);
2049 w32_set_clip_rectangle (s->hdc, NULL);
2050 SelectObject (s->hdc, orig_brush);
2051 DeleteObject (fg_brush);
2052 SelectObject (compat_hdc, orig_obj);
2053 DeleteDC (compat_hdc);
2055 else
2056 w32_draw_rectangle (s->hdc, s->gc, x, y,
2057 s->slice.width - 1, s->slice.height - 1);
2059 RestoreDC (s->hdc ,-1);
2063 /* Draw a relief around the image glyph string S. */
2065 static void
2066 x_draw_image_relief (s)
2067 struct glyph_string *s;
2069 int x0, y0, x1, y1, thick, raised_p;
2070 RECT r;
2071 int x = s->x;
2072 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
2074 /* If first glyph of S has a left box line, start drawing it to the
2075 right of that line. */
2076 if (s->face->box != FACE_NO_BOX
2077 && s->first_glyph->left_box_line_p
2078 && s->slice.x == 0)
2079 x += abs (s->face->box_line_width);
2081 /* If there is a margin around the image, adjust x- and y-position
2082 by that margin. */
2083 if (s->slice.x == 0)
2084 x += s->img->hmargin;
2085 if (s->slice.y == 0)
2086 y += s->img->vmargin;
2088 if (s->hl == DRAW_IMAGE_SUNKEN
2089 || s->hl == DRAW_IMAGE_RAISED)
2091 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
2092 raised_p = s->hl == DRAW_IMAGE_RAISED;
2094 else
2096 thick = abs (s->img->relief);
2097 raised_p = s->img->relief > 0;
2100 x0 = x - thick;
2101 y0 = y - thick;
2102 x1 = x + s->slice.width + thick - 1;
2103 y1 = y + s->slice.height + thick - 1;
2105 x_setup_relief_colors (s);
2106 get_glyph_string_clip_rect (s, &r);
2107 w32_draw_relief_rect (s->f, x0, y0, x1, y1, thick, raised_p,
2108 s->slice.y == 0,
2109 s->slice.y + s->slice.height == s->img->height,
2110 s->slice.x == 0,
2111 s->slice.x + s->slice.width == s->img->width,
2112 &r);
2116 /* Draw the foreground of image glyph string S to PIXMAP. */
2118 static void
2119 w32_draw_image_foreground_1 (s, pixmap)
2120 struct glyph_string *s;
2121 HBITMAP pixmap;
2123 HDC hdc = CreateCompatibleDC (s->hdc);
2124 HGDIOBJ orig_hdc_obj = SelectObject (hdc, pixmap);
2125 int x = 0;
2126 int y = s->ybase - s->y - image_ascent (s->img, s->face, &s->slice);
2128 /* If first glyph of S has a left box line, start drawing it to the
2129 right of that line. */
2130 if (s->face->box != FACE_NO_BOX
2131 && s->first_glyph->left_box_line_p
2132 && s->slice.x == 0)
2133 x += abs (s->face->box_line_width);
2135 /* If there is a margin around the image, adjust x- and y-position
2136 by that margin. */
2137 if (s->slice.x == 0)
2138 x += s->img->hmargin;
2139 if (s->slice.y == 0)
2140 y += s->img->vmargin;
2142 if (s->img->pixmap)
2144 HDC compat_hdc = CreateCompatibleDC (hdc);
2145 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
2146 HBRUSH orig_brush = SelectObject (hdc, fg_brush);
2147 HGDIOBJ orig_obj = SelectObject (compat_hdc, s->img->pixmap);
2149 if (s->img->mask)
2151 HDC mask_dc = CreateCompatibleDC (hdc);
2152 HGDIOBJ mask_orig_obj = SelectObject (mask_dc, s->img->mask);
2154 SetTextColor (hdc, RGB (0, 0, 0));
2155 SetBkColor (hdc, RGB (255, 255, 255));
2156 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
2157 compat_hdc, s->slice.x, s->slice.y, SRCINVERT);
2158 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
2159 mask_dc, s->slice.x, s->slice.y, SRCAND);
2160 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
2161 compat_hdc, s->slice.x, s->slice.y, SRCINVERT);
2163 SelectObject (mask_dc, mask_orig_obj);
2164 DeleteDC (mask_dc);
2166 else
2168 SetTextColor (hdc, s->gc->foreground);
2169 SetBkColor (hdc, s->gc->background);
2171 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
2172 compat_hdc, s->slice.x, s->slice.y, SRCCOPY);
2174 /* When the image has a mask, we can expect that at
2175 least part of a mouse highlight or a block cursor will
2176 be visible. If the image doesn't have a mask, make
2177 a block cursor visible by drawing a rectangle around
2178 the image. I believe it's looking better if we do
2179 nothing here for mouse-face. */
2180 if (s->hl == DRAW_CURSOR)
2182 int r = s->img->relief;
2183 if (r < 0) r = -r;
2184 w32_draw_rectangle (hdc, s->gc, x - r, y - r,
2185 s->slice.width + r*2 - 1,
2186 s->slice.height + r*2 - 1);
2190 SelectObject (hdc, orig_brush);
2191 DeleteObject (fg_brush);
2192 SelectObject (compat_hdc, orig_obj);
2193 DeleteDC (compat_hdc);
2195 else
2196 w32_draw_rectangle (hdc, s->gc, x, y,
2197 s->slice.width - 1, s->slice.height - 1);
2199 SelectObject (hdc, orig_hdc_obj);
2200 DeleteDC (hdc);
2204 /* Draw part of the background of glyph string S. X, Y, W, and H
2205 give the rectangle to draw. */
2207 static void
2208 x_draw_glyph_string_bg_rect (s, x, y, w, h)
2209 struct glyph_string *s;
2210 int x, y, w, h;
2212 #if 0 /* TODO: stipple */
2213 if (s->stippled_p)
2215 /* Fill background with a stipple pattern. */
2216 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2217 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
2218 XSetFillStyle (s->display, s->gc, FillSolid);
2220 else
2221 #endif
2222 x_clear_glyph_string_rect (s, x, y, w, h);
2226 /* Draw image glyph string S.
2228 s->y
2229 s->x +-------------------------
2230 | s->face->box
2232 | +-------------------------
2233 | | s->img->vmargin
2235 | | +-------------------
2236 | | | the image
2240 static void
2241 x_draw_image_glyph_string (s)
2242 struct glyph_string *s;
2244 int x, y;
2245 int box_line_hwidth = abs (s->face->box_line_width);
2246 int box_line_vwidth = max (s->face->box_line_width, 0);
2247 int height;
2248 HBITMAP pixmap = 0;
2250 height = s->height - 2 * box_line_vwidth;
2252 /* Fill background with face under the image. Do it only if row is
2253 taller than image or if image has a clip mask to reduce
2254 flickering. */
2255 s->stippled_p = s->face->stipple != 0;
2256 if (height > s->slice.height
2257 || s->img->hmargin
2258 || s->img->vmargin
2259 || s->img->mask
2260 || s->img->pixmap == 0
2261 || s->width != s->background_width)
2263 x = s->x;
2264 if (s->first_glyph->left_box_line_p
2265 && s->slice.x == 0)
2266 x += box_line_hwidth;
2268 y = s->y;
2269 if (s->slice.y == 0)
2270 y += box_line_vwidth;
2272 #if 0 /* TODO: figure out if we need to do this on Windows. */
2273 if (s->img->mask)
2275 /* Create a pixmap as large as the glyph string. Fill it
2276 with the background color. Copy the image to it, using
2277 its mask. Copy the temporary pixmap to the display. */
2278 Screen *screen = FRAME_X_SCREEN (s->f);
2279 int depth = DefaultDepthOfScreen (screen);
2281 /* Create a pixmap as large as the glyph string. */
2282 pixmap = XCreatePixmap (s->display, s->window,
2283 s->background_width,
2284 s->height, depth);
2286 /* Don't clip in the following because we're working on the
2287 pixmap. */
2288 XSetClipMask (s->display, s->gc, None);
2290 /* Fill the pixmap with the background color/stipple. */
2291 if (s->stippled_p)
2293 /* Fill background with a stipple pattern. */
2294 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2295 XFillRectangle (s->display, pixmap, s->gc,
2296 0, 0, s->background_width, s->height);
2297 XSetFillStyle (s->display, s->gc, FillSolid);
2299 else
2301 XGCValues xgcv;
2302 XGetGCValues (s->display, s->gc, GCForeground | GCBackground,
2303 &xgcv);
2304 XSetForeground (s->display, s->gc, xgcv.background);
2305 XFillRectangle (s->display, pixmap, s->gc,
2306 0, 0, s->background_width, s->height);
2307 XSetForeground (s->display, s->gc, xgcv.foreground);
2310 else
2311 #endif
2312 x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
2314 s->background_filled_p = 1;
2317 /* Draw the foreground. */
2318 if (pixmap != 0)
2320 w32_draw_image_foreground_1 (s, pixmap);
2321 x_set_glyph_string_clipping (s);
2323 HDC compat_hdc = CreateCompatibleDC (s->hdc);
2324 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
2325 HBRUSH orig_brush = SelectObject (s->hdc, fg_brush);
2326 HGDIOBJ orig_obj = SelectObject (compat_hdc, pixmap);
2328 SetTextColor (s->hdc, s->gc->foreground);
2329 SetBkColor (s->hdc, s->gc->background);
2330 BitBlt (s->hdc, s->x, s->y, s->background_width, s->height,
2331 compat_hdc, 0, 0, SRCCOPY);
2333 SelectObject (s->hdc, orig_brush);
2334 DeleteObject (fg_brush);
2335 SelectObject (compat_hdc, orig_obj);
2336 DeleteDC (compat_hdc);
2338 DeleteObject (pixmap);
2339 pixmap = 0;
2341 else
2342 x_draw_image_foreground (s);
2344 /* If we must draw a relief around the image, do it. */
2345 if (s->img->relief
2346 || s->hl == DRAW_IMAGE_RAISED
2347 || s->hl == DRAW_IMAGE_SUNKEN)
2348 x_draw_image_relief (s);
2352 /* Draw stretch glyph string S. */
2354 static void
2355 x_draw_stretch_glyph_string (s)
2356 struct glyph_string *s;
2358 xassert (s->first_glyph->type == STRETCH_GLYPH);
2359 s->stippled_p = s->face->stipple != 0;
2361 if (s->hl == DRAW_CURSOR
2362 && !x_stretch_cursor_p)
2364 /* If `x-stretch-block-cursor' is nil, don't draw a block cursor
2365 as wide as the stretch glyph. */
2366 int width, background_width = s->background_width;
2367 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
2369 if (x < left_x)
2371 background_width -= left_x - x;
2372 x = left_x;
2374 width = min (FRAME_COLUMN_WIDTH (s->f), background_width);
2376 /* Draw cursor. */
2377 x_draw_glyph_string_bg_rect (s, x, s->y, width, s->height);
2379 /* Clear rest using the GC of the original non-cursor face. */
2380 if (width < background_width)
2382 XGCValues *gc = s->face->gc;
2383 int y = s->y;
2384 int w = background_width - width, h = s->height;
2385 RECT r;
2386 HDC hdc = s->hdc;
2388 x += width;
2389 if (s->row->mouse_face_p
2390 && cursor_in_mouse_face_p (s->w))
2392 x_set_mouse_face_gc (s);
2393 gc = s->gc;
2395 else
2396 gc = s->face->gc;
2398 get_glyph_string_clip_rect (s, &r);
2399 w32_set_clip_rectangle (hdc, &r);
2401 #if 0 /* TODO: stipple */
2402 if (s->face->stipple)
2404 /* Fill background with a stipple pattern. */
2405 XSetFillStyle (s->display, gc, FillOpaqueStippled);
2406 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2407 XSetFillStyle (s->display, gc, FillSolid);
2409 else
2410 #endif
2412 w32_fill_area (s->f, s->hdc, gc->background, x, y, w, h);
2416 else if (!s->background_filled_p)
2418 int background_width = s->background_width;
2419 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
2421 if (x < left_x)
2423 background_width -= left_x - x;
2424 x = left_x;
2426 if (background_width > 0)
2427 x_draw_glyph_string_bg_rect (s, x, s->y, background_width, s->height);
2430 s->background_filled_p = 1;
2434 /* Draw glyph string S. */
2436 static void
2437 x_draw_glyph_string (s)
2438 struct glyph_string *s;
2440 int relief_drawn_p = 0;
2442 /* If S draws into the background of its successor, draw the
2443 background of the successor first so that S can draw into it.
2444 This makes S->next use XDrawString instead of XDrawImageString. */
2445 if (s->next && s->right_overhang && !s->for_overlaps)
2447 xassert (s->next->img == NULL);
2448 x_set_glyph_string_gc (s->next);
2449 x_set_glyph_string_clipping (s->next);
2450 x_draw_glyph_string_background (s->next, 1);
2453 /* Set up S->gc, set clipping and draw S. */
2454 x_set_glyph_string_gc (s);
2456 /* Draw relief (if any) in advance for char/composition so that the
2457 glyph string can be drawn over it. */
2458 if (!s->for_overlaps
2459 && s->face->box != FACE_NO_BOX
2460 && (s->first_glyph->type == CHAR_GLYPH
2461 || s->first_glyph->type == COMPOSITE_GLYPH))
2464 x_set_glyph_string_clipping (s);
2465 x_draw_glyph_string_background (s, 1);
2466 x_draw_glyph_string_box (s);
2467 x_set_glyph_string_clipping (s);
2468 relief_drawn_p = 1;
2470 else
2471 x_set_glyph_string_clipping (s);
2473 switch (s->first_glyph->type)
2475 case IMAGE_GLYPH:
2476 x_draw_image_glyph_string (s);
2477 break;
2479 case STRETCH_GLYPH:
2480 x_draw_stretch_glyph_string (s);
2481 break;
2483 case CHAR_GLYPH:
2484 if (s->for_overlaps)
2485 s->background_filled_p = 1;
2486 else
2487 x_draw_glyph_string_background (s, 0);
2488 x_draw_glyph_string_foreground (s);
2489 break;
2491 case COMPOSITE_GLYPH:
2492 if (s->for_overlaps || s->gidx > 0)
2493 s->background_filled_p = 1;
2494 else
2495 x_draw_glyph_string_background (s, 1);
2496 x_draw_composite_glyph_string_foreground (s);
2497 break;
2499 default:
2500 abort ();
2503 if (!s->for_overlaps)
2505 /* Draw underline. */
2506 if (s->face->underline_p
2507 && (s->font->bdf || !s->font->tm.tmUnderlined))
2509 unsigned long h = 1;
2510 unsigned long dy = s->height - h;
2512 /* TODO: Use font information for positioning and thickness
2513 of underline. See OUTLINETEXTMETRIC, and xterm.c.
2514 Note: If you make this work, don't forget to change the
2515 doc string of x-use-underline-position-properties below. */
2516 if (s->face->underline_defaulted_p)
2518 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x,
2519 s->y + dy, s->width, 1);
2521 else
2523 w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x,
2524 s->y + dy, s->width, 1);
2528 /* Draw overline. */
2529 if (s->face->overline_p)
2531 unsigned long dy = 0, h = 1;
2533 if (s->face->overline_color_defaulted_p)
2535 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x,
2536 s->y + dy, s->width, h);
2538 else
2540 w32_fill_area (s->f, s->hdc, s->face->overline_color, s->x,
2541 s->y + dy, s->width, h);
2545 /* Draw strike-through. */
2546 if (s->face->strike_through_p
2547 && (s->font->bdf || !s->font->tm.tmStruckOut))
2549 unsigned long h = 1;
2550 unsigned long dy = (s->height - h) / 2;
2552 if (s->face->strike_through_color_defaulted_p)
2554 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x, s->y + dy,
2555 s->width, h);
2557 else
2559 w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x,
2560 s->y + dy, s->width, h);
2564 /* Draw relief. */
2565 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
2566 x_draw_glyph_string_box (s);
2569 /* Reset clipping. */
2570 w32_set_clip_rectangle (s->hdc, NULL);
2574 /* Shift display to make room for inserted glyphs. */
2576 void
2577 w32_shift_glyphs_for_insert (f, x, y, width, height, shift_by)
2578 struct frame *f;
2579 int x, y, width, height, shift_by;
2581 HDC hdc;
2583 hdc = get_frame_dc (f);
2584 BitBlt (hdc, x + shift_by, y, width, height,
2585 hdc, x, y, SRCCOPY);
2587 release_frame_dc (f, hdc);
2591 /* Delete N glyphs at the nominal cursor position. Not implemented
2592 for X frames. */
2594 static void
2595 x_delete_glyphs (n)
2596 register int n;
2598 struct frame *f;
2600 if (updating_frame)
2601 f = updating_frame;
2602 else
2603 f = SELECTED_FRAME ();
2605 if (! FRAME_W32_P (f))
2606 return;
2608 abort ();
2612 /* Clear entire frame. If updating_frame is non-null, clear that
2613 frame. Otherwise clear the selected frame. */
2615 static void
2616 x_clear_frame ()
2618 struct frame *f;
2620 if (updating_frame)
2621 f = updating_frame;
2622 else
2623 f = SELECTED_FRAME ();
2625 if (! FRAME_W32_P (f))
2626 return;
2628 /* Clearing the frame will erase any cursor, so mark them all as no
2629 longer visible. */
2630 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
2631 output_cursor.hpos = output_cursor.vpos = 0;
2632 output_cursor.x = -1;
2634 /* We don't set the output cursor here because there will always
2635 follow an explicit cursor_to. */
2636 BLOCK_INPUT;
2638 w32_clear_window (f);
2640 /* We have to clear the scroll bars, too. If we have changed
2641 colors or something like that, then they should be notified. */
2642 x_scroll_bar_clear (f);
2644 UNBLOCK_INPUT;
2648 /* Make audible bell. */
2650 static void
2651 w32_ring_bell (void)
2653 struct frame *f;
2655 f = SELECTED_FRAME ();
2657 BLOCK_INPUT;
2659 if (FRAME_W32_P (f) && visible_bell)
2661 int i;
2662 HWND hwnd = FRAME_W32_WINDOW (SELECTED_FRAME ());
2664 for (i = 0; i < 5; i++)
2666 FlashWindow (hwnd, TRUE);
2667 Sleep (10);
2669 FlashWindow (hwnd, FALSE);
2671 else
2672 w32_sys_ring_bell ();
2674 UNBLOCK_INPUT;
2678 /* Specify how many text lines, from the top of the window,
2679 should be affected by insert-lines and delete-lines operations.
2680 This, and those operations, are used only within an update
2681 that is bounded by calls to x_update_begin and x_update_end. */
2683 static void
2684 w32_set_terminal_window (n)
2685 register int n;
2687 /* This function intentionally left blank. */
2691 /***********************************************************************
2692 Line Dance
2693 ***********************************************************************/
2695 /* Perform an insert-lines or delete-lines operation, inserting N
2696 lines or deleting -N lines at vertical position VPOS. */
2698 static void
2699 x_ins_del_lines (vpos, n)
2700 int vpos, n;
2702 struct frame *f;
2704 if (updating_frame)
2705 f = updating_frame;
2706 else
2707 f = SELECTED_FRAME ();
2709 if (! FRAME_W32_P (f))
2710 return;
2712 abort ();
2716 /* Scroll part of the display as described by RUN. */
2718 static void
2719 x_scroll_run (w, run)
2720 struct window *w;
2721 struct run *run;
2723 struct frame *f = XFRAME (w->frame);
2724 int x, y, width, height, from_y, to_y, bottom_y;
2725 HWND hwnd = FRAME_W32_WINDOW (f);
2726 HRGN expect_dirty;
2728 /* Get frame-relative bounding box of the text display area of W,
2729 without mode lines. Include in this box the left and right
2730 fringes of W. */
2731 window_box (w, -1, &x, &y, &width, &height);
2733 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
2734 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
2735 bottom_y = y + height;
2737 if (to_y < from_y)
2739 /* Scrolling up. Make sure we don't copy part of the mode
2740 line at the bottom. */
2741 if (from_y + run->height > bottom_y)
2742 height = bottom_y - from_y;
2743 else
2744 height = run->height;
2745 expect_dirty = CreateRectRgn (x, y + height, x + width, bottom_y);
2747 else
2749 /* Scolling down. Make sure we don't copy over the mode line.
2750 at the bottom. */
2751 if (to_y + run->height > bottom_y)
2752 height = bottom_y - to_y;
2753 else
2754 height = run->height;
2755 expect_dirty = CreateRectRgn (x, y, x + width, to_y);
2758 BLOCK_INPUT;
2760 /* Cursor off. Will be switched on again in x_update_window_end. */
2761 updated_window = w;
2762 x_clear_cursor (w);
2765 RECT from;
2766 RECT to;
2767 HRGN dirty = CreateRectRgn (0, 0, 0, 0);
2768 HRGN combined = CreateRectRgn (0, 0, 0, 0);
2770 from.left = to.left = x;
2771 from.right = to.right = x + width;
2772 from.top = from_y;
2773 from.bottom = from_y + height;
2774 to.top = y;
2775 to.bottom = bottom_y;
2777 ScrollWindowEx (hwnd, 0, to_y - from_y, &from, &to, dirty,
2778 NULL, SW_INVALIDATE);
2780 /* Combine this with what we expect to be dirty. This covers the
2781 case where not all of the region we expect is actually dirty. */
2782 CombineRgn (combined, dirty, expect_dirty, RGN_OR);
2784 /* If the dirty region is not what we expected, redraw the entire frame. */
2785 if (!EqualRgn (combined, expect_dirty))
2786 SET_FRAME_GARBAGED (f);
2788 DeleteObject (dirty);
2789 DeleteObject (combined);
2792 UNBLOCK_INPUT;
2793 DeleteObject (expect_dirty);
2798 /***********************************************************************
2799 Exposure Events
2800 ***********************************************************************/
2802 static void
2803 frame_highlight (f)
2804 struct frame *f;
2806 x_update_cursor (f, 1);
2809 static void
2810 frame_unhighlight (f)
2811 struct frame *f;
2813 x_update_cursor (f, 1);
2816 /* The focus has changed. Update the frames as necessary to reflect
2817 the new situation. Note that we can't change the selected frame
2818 here, because the Lisp code we are interrupting might become confused.
2819 Each event gets marked with the frame in which it occurred, so the
2820 Lisp code can tell when the switch took place by examining the events. */
2822 static void
2823 x_new_focus_frame (dpyinfo, frame)
2824 struct w32_display_info *dpyinfo;
2825 struct frame *frame;
2827 struct frame *old_focus = dpyinfo->w32_focus_frame;
2829 if (frame != dpyinfo->w32_focus_frame)
2831 /* Set this before calling other routines, so that they see
2832 the correct value of w32_focus_frame. */
2833 dpyinfo->w32_focus_frame = frame;
2835 if (old_focus && old_focus->auto_lower)
2836 x_lower_frame (old_focus);
2838 if (dpyinfo->w32_focus_frame && dpyinfo->w32_focus_frame->auto_raise)
2839 pending_autoraise_frame = dpyinfo->w32_focus_frame;
2840 else
2841 pending_autoraise_frame = 0;
2844 x_frame_rehighlight (dpyinfo);
2848 /* Handle FocusIn and FocusOut state changes for FRAME.
2849 If FRAME has focus and there exists more than one frame, puts
2850 a FOCUS_IN_EVENT into *BUFP. */
2852 static void
2853 x_focus_changed (type, state, dpyinfo, frame, bufp)
2854 int type;
2855 int state;
2856 struct w32_display_info *dpyinfo;
2857 struct frame *frame;
2858 struct input_event *bufp;
2860 if (type == WM_SETFOCUS)
2862 if (dpyinfo->w32_focus_event_frame != frame)
2864 x_new_focus_frame (dpyinfo, frame);
2865 dpyinfo->w32_focus_event_frame = frame;
2867 /* Don't stop displaying the initial startup message
2868 for a switch-frame event we don't need. */
2869 if (GC_NILP (Vterminal_frame)
2870 && GC_CONSP (Vframe_list)
2871 && !GC_NILP (XCDR (Vframe_list)))
2873 bufp->kind = FOCUS_IN_EVENT;
2874 XSETFRAME (bufp->frame_or_window, frame);
2878 frame->output_data.x->focus_state |= state;
2880 /* TODO: IME focus? */
2882 else if (type == WM_KILLFOCUS)
2884 frame->output_data.x->focus_state &= ~state;
2886 if (dpyinfo->w32_focus_event_frame == frame)
2888 dpyinfo->w32_focus_event_frame = 0;
2889 x_new_focus_frame (dpyinfo, 0);
2892 /* TODO: IME focus? */
2897 /* The focus may have changed. Figure out if it is a real focus change,
2898 by checking both FocusIn/Out and Enter/LeaveNotify events.
2900 Returns FOCUS_IN_EVENT event in *BUFP. */
2902 static void
2903 w32_detect_focus_change (dpyinfo, event, bufp)
2904 struct w32_display_info *dpyinfo;
2905 W32Msg *event;
2906 struct input_event *bufp;
2908 struct frame *frame;
2910 frame = x_any_window_to_frame (dpyinfo, event->msg.hwnd);
2911 if (! frame)
2912 return;
2914 /* On w32, this is only called from focus events, so no switch needed. */
2915 x_focus_changed (event->msg.message,
2916 (event->msg.message == WM_KILLFOCUS ?
2917 FOCUS_IMPLICIT : FOCUS_EXPLICIT),
2918 dpyinfo, frame, bufp);
2922 /* Handle an event saying the mouse has moved out of an Emacs frame. */
2924 void
2925 x_mouse_leave (dpyinfo)
2926 struct w32_display_info *dpyinfo;
2928 x_new_focus_frame (dpyinfo, dpyinfo->w32_focus_event_frame);
2931 /* The focus has changed, or we have redirected a frame's focus to
2932 another frame (this happens when a frame uses a surrogate
2933 mini-buffer frame). Shift the highlight as appropriate.
2935 The FRAME argument doesn't necessarily have anything to do with which
2936 frame is being highlighted or un-highlighted; we only use it to find
2937 the appropriate X display info. */
2939 static void
2940 w32_frame_rehighlight (frame)
2941 struct frame *frame;
2943 if (! FRAME_W32_P (frame))
2944 return;
2945 x_frame_rehighlight (FRAME_W32_DISPLAY_INFO (frame));
2948 static void
2949 x_frame_rehighlight (dpyinfo)
2950 struct w32_display_info *dpyinfo;
2952 struct frame *old_highlight = dpyinfo->x_highlight_frame;
2954 if (dpyinfo->w32_focus_frame)
2956 dpyinfo->x_highlight_frame
2957 = ((GC_FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame)))
2958 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame))
2959 : dpyinfo->w32_focus_frame);
2960 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
2962 FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame) = Qnil;
2963 dpyinfo->x_highlight_frame = dpyinfo->w32_focus_frame;
2966 else
2967 dpyinfo->x_highlight_frame = 0;
2969 if (dpyinfo->x_highlight_frame != old_highlight)
2971 if (old_highlight)
2972 frame_unhighlight (old_highlight);
2973 if (dpyinfo->x_highlight_frame)
2974 frame_highlight (dpyinfo->x_highlight_frame);
2978 /* Keyboard processing - modifier keys, etc. */
2980 /* Convert a keysym to its name. */
2982 char *
2983 x_get_keysym_name (keysym)
2984 int keysym;
2986 /* Make static so we can always return it */
2987 static char value[100];
2989 BLOCK_INPUT;
2990 GetKeyNameText (keysym, value, 100);
2991 UNBLOCK_INPUT;
2993 return value;
2998 /* Mouse clicks and mouse movement. Rah. */
3000 /* Parse a button MESSAGE. The button index is returned in PBUTTON, and
3001 the state in PUP. XBUTTON provides extra information for extended mouse
3002 button messages. Returns FALSE if unable to parse the message. */
3003 BOOL
3004 parse_button (message, xbutton, pbutton, pup)
3005 int message;
3006 int xbutton;
3007 int * pbutton;
3008 int * pup;
3010 int button = 0;
3011 int up = 0;
3013 switch (message)
3015 case WM_LBUTTONDOWN:
3016 button = 0;
3017 up = 0;
3018 break;
3019 case WM_LBUTTONUP:
3020 button = 0;
3021 up = 1;
3022 break;
3023 case WM_MBUTTONDOWN:
3024 if (NILP (Vw32_swap_mouse_buttons))
3025 button = 1;
3026 else
3027 button = 2;
3028 up = 0;
3029 break;
3030 case WM_MBUTTONUP:
3031 if (NILP (Vw32_swap_mouse_buttons))
3032 button = 1;
3033 else
3034 button = 2;
3035 up = 1;
3036 break;
3037 case WM_RBUTTONDOWN:
3038 if (NILP (Vw32_swap_mouse_buttons))
3039 button = 2;
3040 else
3041 button = 1;
3042 up = 0;
3043 break;
3044 case WM_RBUTTONUP:
3045 if (NILP (Vw32_swap_mouse_buttons))
3046 button = 2;
3047 else
3048 button = 1;
3049 up = 1;
3050 break;
3051 case WM_XBUTTONDOWN:
3052 button = xbutton + 2;
3053 up = 0;
3054 break;
3055 case WM_XBUTTONUP:
3056 button = xbutton + 2;
3057 up = 1;
3058 break;
3059 default:
3060 return (FALSE);
3063 if (pup) *pup = up;
3064 if (pbutton) *pbutton = button;
3066 return (TRUE);
3070 /* Prepare a mouse-event in *RESULT for placement in the input queue.
3072 If the event is a button press, then note that we have grabbed
3073 the mouse. */
3075 static Lisp_Object
3076 construct_mouse_click (result, msg, f)
3077 struct input_event *result;
3078 W32Msg *msg;
3079 struct frame *f;
3081 int button;
3082 int up;
3084 parse_button (msg->msg.message, HIWORD (msg->msg.wParam),
3085 &button, &up);
3087 /* Make the event type NO_EVENT; we'll change that when we decide
3088 otherwise. */
3089 result->kind = MOUSE_CLICK_EVENT;
3090 result->code = button;
3091 result->timestamp = msg->msg.time;
3092 result->modifiers = (msg->dwModifiers
3093 | (up
3094 ? up_modifier
3095 : down_modifier));
3097 XSETINT (result->x, LOWORD (msg->msg.lParam));
3098 XSETINT (result->y, HIWORD (msg->msg.lParam));
3099 XSETFRAME (result->frame_or_window, f);
3100 result->arg = Qnil;
3101 return Qnil;
3104 static Lisp_Object
3105 construct_mouse_wheel (result, msg, f)
3106 struct input_event *result;
3107 W32Msg *msg;
3108 struct frame *f;
3110 POINT p;
3111 int delta;
3113 result->kind = WHEEL_EVENT;
3114 result->code = 0;
3115 result->timestamp = msg->msg.time;
3117 /* A WHEEL_DELTA positive value indicates that the wheel was rotated
3118 forward, away from the user (up); a negative value indicates that
3119 the wheel was rotated backward, toward the user (down). */
3120 delta = GET_WHEEL_DELTA_WPARAM (msg->msg.wParam);
3122 /* The up and down modifiers indicate if the wheel was rotated up or
3123 down based on WHEEL_DELTA value. */
3124 result->modifiers = (msg->dwModifiers
3125 | ((delta < 0 ) ? down_modifier : up_modifier));
3127 /* With multiple monitors, we can legitimately get negative
3128 coordinates, so cast to short to interpret them correctly. */
3129 p.x = (short) LOWORD (msg->msg.lParam);
3130 p.y = (short) HIWORD (msg->msg.lParam);
3131 ScreenToClient (msg->msg.hwnd, &p);
3132 XSETINT (result->x, p.x);
3133 XSETINT (result->y, p.y);
3134 XSETFRAME (result->frame_or_window, f);
3135 result->arg = Qnil;
3136 return Qnil;
3139 static Lisp_Object
3140 construct_drag_n_drop (result, msg, f)
3141 struct input_event *result;
3142 W32Msg *msg;
3143 struct frame *f;
3145 Lisp_Object files;
3146 Lisp_Object frame;
3147 HDROP hdrop;
3148 POINT p;
3149 WORD num_files;
3150 char *name;
3151 int i, len;
3153 result->kind = DRAG_N_DROP_EVENT;
3154 result->code = 0;
3155 result->timestamp = msg->msg.time;
3156 result->modifiers = msg->dwModifiers;
3158 hdrop = (HDROP) msg->msg.wParam;
3159 DragQueryPoint (hdrop, &p);
3161 #if 0
3162 p.x = LOWORD (msg->msg.lParam);
3163 p.y = HIWORD (msg->msg.lParam);
3164 ScreenToClient (msg->msg.hwnd, &p);
3165 #endif
3167 XSETINT (result->x, p.x);
3168 XSETINT (result->y, p.y);
3170 num_files = DragQueryFile (hdrop, 0xFFFFFFFF, NULL, 0);
3171 files = Qnil;
3173 for (i = 0; i < num_files; i++)
3175 len = DragQueryFile (hdrop, i, NULL, 0);
3176 if (len <= 0)
3177 continue;
3178 name = alloca (len + 1);
3179 DragQueryFile (hdrop, i, name, len + 1);
3180 files = Fcons (DECODE_FILE (build_string (name)), files);
3183 DragFinish (hdrop);
3185 XSETFRAME (frame, f);
3186 result->frame_or_window = frame;
3187 result->arg = files;
3188 return Qnil;
3192 /* Function to report a mouse movement to the mainstream Emacs code.
3193 The input handler calls this.
3195 We have received a mouse movement event, which is given in *event.
3196 If the mouse is over a different glyph than it was last time, tell
3197 the mainstream emacs code by setting mouse_moved. If not, ask for
3198 another motion event, so we can check again the next time it moves. */
3200 static MSG last_mouse_motion_event;
3201 static Lisp_Object last_mouse_motion_frame;
3203 static int
3204 note_mouse_movement (frame, msg)
3205 FRAME_PTR frame;
3206 MSG *msg;
3208 int mouse_x = LOWORD (msg->lParam);
3209 int mouse_y = HIWORD (msg->lParam);
3211 last_mouse_movement_time = msg->time;
3212 memcpy (&last_mouse_motion_event, msg, sizeof (last_mouse_motion_event));
3213 XSETFRAME (last_mouse_motion_frame, frame);
3215 if (msg->hwnd != FRAME_W32_WINDOW (frame))
3217 frame->mouse_moved = 1;
3218 last_mouse_scroll_bar = Qnil;
3219 note_mouse_highlight (frame, -1, -1);
3220 last_mouse_glyph_frame = 0;
3221 return 1;
3224 /* Has the mouse moved off the glyph it was on at the last sighting? */
3225 if (frame != last_mouse_glyph_frame
3226 || mouse_x < last_mouse_glyph.left
3227 || mouse_x >= last_mouse_glyph.right
3228 || mouse_y < last_mouse_glyph.top
3229 || mouse_y >= last_mouse_glyph.bottom)
3231 frame->mouse_moved = 1;
3232 last_mouse_scroll_bar = Qnil;
3233 note_mouse_highlight (frame, mouse_x, mouse_y);
3234 /* Remember the mouse position here, as w32_mouse_position only
3235 gets called when mouse tracking is enabled but we also need
3236 to keep track of the mouse for help_echo and highlighting at
3237 other times. */
3238 remember_mouse_glyph (frame, mouse_x, mouse_y, &last_mouse_glyph);
3239 last_mouse_glyph_frame = frame;
3240 return 1;
3243 return 0;
3247 /************************************************************************
3248 Mouse Face
3249 ************************************************************************/
3251 static struct scroll_bar *x_window_to_scroll_bar ();
3252 static void x_scroll_bar_report_motion ();
3253 static void x_check_fullscreen P_ ((struct frame *));
3255 static void
3256 redo_mouse_highlight ()
3258 if (!NILP (last_mouse_motion_frame)
3259 && FRAME_LIVE_P (XFRAME (last_mouse_motion_frame)))
3260 note_mouse_highlight (XFRAME (last_mouse_motion_frame),
3261 LOWORD (last_mouse_motion_event.lParam),
3262 HIWORD (last_mouse_motion_event.lParam));
3265 void
3266 w32_define_cursor (window, cursor)
3267 Window window;
3268 Cursor cursor;
3270 PostMessage (window, WM_EMACS_SETCURSOR, (WPARAM) cursor, 0);
3272 /* Return the current position of the mouse.
3273 *fp should be a frame which indicates which display to ask about.
3275 If the mouse movement started in a scroll bar, set *fp, *bar_window,
3276 and *part to the frame, window, and scroll bar part that the mouse
3277 is over. Set *x and *y to the portion and whole of the mouse's
3278 position on the scroll bar.
3280 If the mouse movement started elsewhere, set *fp to the frame the
3281 mouse is on, *bar_window to nil, and *x and *y to the character cell
3282 the mouse is over.
3284 Set *time to the server time-stamp for the time at which the mouse
3285 was at this position.
3287 Don't store anything if we don't have a valid set of values to report.
3289 This clears the mouse_moved flag, so we can wait for the next mouse
3290 movement. */
3292 static void
3293 w32_mouse_position (fp, insist, bar_window, part, x, y, time)
3294 FRAME_PTR *fp;
3295 int insist;
3296 Lisp_Object *bar_window;
3297 enum scroll_bar_part *part;
3298 Lisp_Object *x, *y;
3299 unsigned long *time;
3301 FRAME_PTR f1;
3303 BLOCK_INPUT;
3305 if (! NILP (last_mouse_scroll_bar) && insist == 0)
3306 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
3307 else
3309 POINT pt;
3311 Lisp_Object frame, tail;
3313 /* Clear the mouse-moved flag for every frame on this display. */
3314 FOR_EACH_FRAME (tail, frame)
3315 XFRAME (frame)->mouse_moved = 0;
3317 last_mouse_scroll_bar = Qnil;
3319 GetCursorPos (&pt);
3321 /* Now we have a position on the root; find the innermost window
3322 containing the pointer. */
3324 if (FRAME_W32_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
3325 && FRAME_LIVE_P (last_mouse_frame))
3327 /* If mouse was grabbed on a frame, give coords for that frame
3328 even if the mouse is now outside it. */
3329 f1 = last_mouse_frame;
3331 else
3333 /* Is window under mouse one of our frames? */
3334 f1 = x_any_window_to_frame (FRAME_W32_DISPLAY_INFO (*fp),
3335 WindowFromPoint (pt));
3338 /* If not, is it one of our scroll bars? */
3339 if (! f1)
3341 struct scroll_bar *bar
3342 = x_window_to_scroll_bar (WindowFromPoint (pt));
3344 if (bar)
3346 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3350 if (f1 == 0 && insist > 0)
3351 f1 = SELECTED_FRAME ();
3353 if (f1)
3355 /* Ok, we found a frame. Store all the values.
3356 last_mouse_glyph is a rectangle used to reduce the
3357 generation of mouse events. To not miss any motion
3358 events, we must divide the frame into rectangles of the
3359 size of the smallest character that could be displayed
3360 on it, i.e. into the same rectangles that matrices on
3361 the frame are divided into. */
3363 ScreenToClient (FRAME_W32_WINDOW (f1), &pt);
3364 remember_mouse_glyph (f1, pt.x, pt.y, &last_mouse_glyph);
3365 last_mouse_glyph_frame = f1;
3367 *bar_window = Qnil;
3368 *part = 0;
3369 *fp = f1;
3370 XSETINT (*x, pt.x);
3371 XSETINT (*y, pt.y);
3372 *time = last_mouse_movement_time;
3377 UNBLOCK_INPUT;
3381 /***********************************************************************
3382 Tool-bars
3383 ***********************************************************************/
3385 /* Handle mouse button event on the tool-bar of frame F, at
3386 frame-relative coordinates X/Y. EVENT_TYPE is either ButtionPress
3387 or ButtonRelase. */
3389 static void
3390 w32_handle_tool_bar_click (f, button_event)
3391 struct frame *f;
3392 struct input_event *button_event;
3394 int x = XFASTINT (button_event->x);
3395 int y = XFASTINT (button_event->y);
3397 if (button_event->modifiers & down_modifier)
3398 handle_tool_bar_click (f, x, y, 1, 0);
3399 else
3400 handle_tool_bar_click (f, x, y, 0,
3401 button_event->modifiers & ~up_modifier);
3406 /***********************************************************************
3407 Scroll bars
3408 ***********************************************************************/
3410 /* Scroll bar support. */
3412 /* Given a window ID, find the struct scroll_bar which manages it.
3413 This can be called in GC, so we have to make sure to strip off mark
3414 bits. */
3416 static struct scroll_bar *
3417 x_window_to_scroll_bar (window_id)
3418 Window window_id;
3420 Lisp_Object tail;
3422 for (tail = Vframe_list;
3423 XGCTYPE (tail) == Lisp_Cons;
3424 tail = XCDR (tail))
3426 Lisp_Object frame, bar, condemned;
3428 frame = XCAR (tail);
3429 /* All elements of Vframe_list should be frames. */
3430 if (! GC_FRAMEP (frame))
3431 abort ();
3433 /* Scan this frame's scroll bar list for a scroll bar with the
3434 right window ID. */
3435 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
3436 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
3437 /* This trick allows us to search both the ordinary and
3438 condemned scroll bar lists with one loop. */
3439 ! GC_NILP (bar) || (bar = condemned,
3440 condemned = Qnil,
3441 ! GC_NILP (bar));
3442 bar = XSCROLL_BAR (bar)->next)
3443 if (SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar)) == window_id)
3444 return XSCROLL_BAR (bar);
3447 return 0;
3452 /* Set the thumb size and position of scroll bar BAR. We are currently
3453 displaying PORTION out of a whole WHOLE, and our position POSITION. */
3455 static void
3456 w32_set_scroll_bar_thumb (bar, portion, position, whole)
3457 struct scroll_bar *bar;
3458 int portion, position, whole;
3460 Window w = SCROLL_BAR_W32_WINDOW (bar);
3461 double range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
3462 int sb_page, sb_pos;
3463 BOOL draggingp = !NILP (bar->dragging) ? TRUE : FALSE;
3464 SCROLLINFO si;
3466 if (whole)
3468 /* Position scroll bar at rock bottom if the bottom of the
3469 buffer is visible. This avoids shinking the thumb away
3470 to nothing if it is held at the bottom of the buffer. */
3471 if (position + portion >= whole)
3473 sb_page = range * (whole - position) / whole
3474 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3475 sb_pos = range;
3478 sb_page = portion * range / whole + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3479 sb_pos = position * range / whole;
3481 else
3483 sb_page = range;
3484 sb_pos = 0;
3487 BLOCK_INPUT;
3489 si.cbSize = sizeof (si);
3490 /* Only update page size if currently dragging, to reduce
3491 flicker effects. */
3492 if (draggingp)
3493 si.fMask = SIF_PAGE;
3494 else
3495 si.fMask = SIF_PAGE | SIF_POS;
3496 si.nPage = sb_page;
3497 si.nPos = sb_pos;
3499 SetScrollInfo (w, SB_CTL, &si, !draggingp);
3501 UNBLOCK_INPUT;
3505 /************************************************************************
3506 Scroll bars, general
3507 ************************************************************************/
3509 HWND
3510 my_create_scrollbar (f, bar)
3511 struct frame * f;
3512 struct scroll_bar * bar;
3514 return (HWND) SendMessage (FRAME_W32_WINDOW (f),
3515 WM_EMACS_CREATESCROLLBAR, (WPARAM) f,
3516 (LPARAM) bar);
3519 /*#define ATTACH_THREADS*/
3521 static BOOL
3522 my_show_window (FRAME_PTR f, HWND hwnd, int how)
3524 #ifndef ATTACH_THREADS
3525 return SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_SHOWWINDOW,
3526 (WPARAM) hwnd, (LPARAM) how);
3527 #else
3528 return ShowWindow (hwnd, how);
3529 #endif
3532 static void
3533 my_set_window_pos (HWND hwnd, HWND hwndAfter,
3534 int x, int y, int cx, int cy, UINT flags)
3536 #ifndef ATTACH_THREADS
3537 WINDOWPOS pos;
3538 pos.hwndInsertAfter = hwndAfter;
3539 pos.x = x;
3540 pos.y = y;
3541 pos.cx = cx;
3542 pos.cy = cy;
3543 pos.flags = flags;
3544 SendMessage (hwnd, WM_EMACS_SETWINDOWPOS, (WPARAM) &pos, 0);
3545 #else
3546 SetWindowPos (hwnd, hwndAfter, x, y, cx, cy, flags);
3547 #endif
3550 static void
3551 my_set_focus (f, hwnd)
3552 struct frame * f;
3553 HWND hwnd;
3555 SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_SETFOCUS,
3556 (WPARAM) hwnd, 0);
3559 static void
3560 my_set_foreground_window (hwnd)
3561 HWND hwnd;
3563 SendMessage (hwnd, WM_EMACS_SETFOREGROUND, (WPARAM) hwnd, 0);
3567 static void
3568 my_destroy_window (f, hwnd)
3569 struct frame * f;
3570 HWND hwnd;
3572 SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_DESTROYWINDOW,
3573 (WPARAM) hwnd, 0);
3576 /* Create a scroll bar and return the scroll bar vector for it. W is
3577 the Emacs window on which to create the scroll bar. TOP, LEFT,
3578 WIDTH and HEIGHT are.the pixel coordinates and dimensions of the
3579 scroll bar. */
3581 static struct scroll_bar *
3582 x_scroll_bar_create (w, top, left, width, height)
3583 struct window *w;
3584 int top, left, width, height;
3586 struct frame *f = XFRAME (WINDOW_FRAME (w));
3587 HWND hwnd;
3588 SCROLLINFO si;
3589 struct scroll_bar *bar
3590 = XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE), Qnil));
3592 BLOCK_INPUT;
3594 XSETWINDOW (bar->window, w);
3595 XSETINT (bar->top, top);
3596 XSETINT (bar->left, left);
3597 XSETINT (bar->width, width);
3598 XSETINT (bar->height, height);
3599 XSETINT (bar->start, 0);
3600 XSETINT (bar->end, 0);
3601 bar->dragging = Qnil;
3603 /* Requires geometry to be set before call to create the real window */
3605 hwnd = my_create_scrollbar (f, bar);
3607 si.cbSize = sizeof (si);
3608 si.fMask = SIF_ALL;
3609 si.nMin = 0;
3610 si.nMax = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height)
3611 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3612 si.nPage = si.nMax;
3613 si.nPos = 0;
3615 SetScrollInfo (hwnd, SB_CTL, &si, FALSE);
3617 SET_SCROLL_BAR_W32_WINDOW (bar, hwnd);
3619 /* Add bar to its frame's list of scroll bars. */
3620 bar->next = FRAME_SCROLL_BARS (f);
3621 bar->prev = Qnil;
3622 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
3623 if (! NILP (bar->next))
3624 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
3626 UNBLOCK_INPUT;
3628 return bar;
3632 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
3633 nil. */
3635 static void
3636 x_scroll_bar_remove (bar)
3637 struct scroll_bar *bar;
3639 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3641 BLOCK_INPUT;
3643 /* Destroy the window. */
3644 my_destroy_window (f, SCROLL_BAR_W32_WINDOW (bar));
3646 /* Disassociate this scroll bar from its window. */
3647 XWINDOW (bar->window)->vertical_scroll_bar = Qnil;
3649 UNBLOCK_INPUT;
3652 /* Set the handle of the vertical scroll bar for WINDOW to indicate
3653 that we are displaying PORTION characters out of a total of WHOLE
3654 characters, starting at POSITION. If WINDOW has no scroll bar,
3655 create one. */
3656 static void
3657 w32_set_vertical_scroll_bar (w, portion, whole, position)
3658 struct window *w;
3659 int portion, whole, position;
3661 struct frame *f = XFRAME (w->frame);
3662 struct scroll_bar *bar;
3663 int top, height, left, sb_left, width, sb_width;
3664 int window_y, window_height;
3666 /* Get window dimensions. */
3667 window_box (w, -1, 0, &window_y, 0, &window_height);
3668 top = window_y;
3669 width = WINDOW_CONFIG_SCROLL_BAR_COLS (w) * FRAME_COLUMN_WIDTH (f);
3670 height = window_height;
3672 /* Compute the left edge of the scroll bar area. */
3673 left = WINDOW_SCROLL_BAR_AREA_X (w);
3675 /* Compute the width of the scroll bar which might be less than
3676 the width of the area reserved for the scroll bar. */
3677 if (WINDOW_CONFIG_SCROLL_BAR_WIDTH (w) > 0)
3678 sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
3679 else
3680 sb_width = width;
3682 /* Compute the left edge of the scroll bar. */
3683 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
3684 sb_left = left + width - sb_width - (width - sb_width) / 2;
3685 else
3686 sb_left = left + (width - sb_width) / 2;
3688 /* Does the scroll bar exist yet? */
3689 if (NILP (w->vertical_scroll_bar))
3691 HDC hdc;
3692 BLOCK_INPUT;
3693 if (width > 0 && height > 0)
3695 hdc = get_frame_dc (f);
3696 w32_clear_area (f, hdc, left, top, width, height);
3697 release_frame_dc (f, hdc);
3699 UNBLOCK_INPUT;
3701 bar = x_scroll_bar_create (w, top, sb_left, sb_width, height);
3703 else
3705 /* It may just need to be moved and resized. */
3706 HWND hwnd;
3708 bar = XSCROLL_BAR (w->vertical_scroll_bar);
3709 hwnd = SCROLL_BAR_W32_WINDOW (bar);
3711 /* If already correctly positioned, do nothing. */
3712 if ( XINT (bar->left) == sb_left
3713 && XINT (bar->top) == top
3714 && XINT (bar->width) == sb_width
3715 && XINT (bar->height) == height )
3717 /* Redraw after clear_frame. */
3718 if (!my_show_window (f, hwnd, SW_NORMAL))
3719 InvalidateRect (hwnd, NULL, FALSE);
3721 else
3723 HDC hdc;
3724 SCROLLINFO si;
3726 BLOCK_INPUT;
3727 if (width && height)
3729 hdc = get_frame_dc (f);
3730 /* Since Windows scroll bars are smaller than the space reserved
3731 for them on the frame, we have to clear "under" them. */
3732 w32_clear_area (f, hdc,
3733 left,
3734 top,
3735 width,
3736 height);
3737 release_frame_dc (f, hdc);
3739 /* Make sure scroll bar is "visible" before moving, to ensure the
3740 area of the parent window now exposed will be refreshed. */
3741 my_show_window (f, hwnd, SW_HIDE);
3742 MoveWindow (hwnd, sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
3743 top, sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
3744 max (height, 1), TRUE);
3746 si.cbSize = sizeof (si);
3747 si.fMask = SIF_RANGE;
3748 si.nMin = 0;
3749 si.nMax = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height)
3750 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3752 SetScrollInfo (hwnd, SB_CTL, &si, FALSE);
3754 my_show_window (f, hwnd, SW_NORMAL);
3755 /* InvalidateRect (w, NULL, FALSE); */
3757 /* Remember new settings. */
3758 XSETINT (bar->left, sb_left);
3759 XSETINT (bar->top, top);
3760 XSETINT (bar->width, sb_width);
3761 XSETINT (bar->height, height);
3763 UNBLOCK_INPUT;
3766 w32_set_scroll_bar_thumb (bar, portion, position, whole);
3768 XSETVECTOR (w->vertical_scroll_bar, bar);
3772 /* The following three hooks are used when we're doing a thorough
3773 redisplay of the frame. We don't explicitly know which scroll bars
3774 are going to be deleted, because keeping track of when windows go
3775 away is a real pain - "Can you say set-window-configuration, boys
3776 and girls?" Instead, we just assert at the beginning of redisplay
3777 that *all* scroll bars are to be removed, and then save a scroll bar
3778 from the fiery pit when we actually redisplay its window. */
3780 /* Arrange for all scroll bars on FRAME to be removed at the next call
3781 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
3782 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
3784 static void
3785 w32_condemn_scroll_bars (frame)
3786 FRAME_PTR frame;
3788 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
3789 while (! NILP (FRAME_SCROLL_BARS (frame)))
3791 Lisp_Object bar;
3792 bar = FRAME_SCROLL_BARS (frame);
3793 FRAME_SCROLL_BARS (frame) = XSCROLL_BAR (bar)->next;
3794 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
3795 XSCROLL_BAR (bar)->prev = Qnil;
3796 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
3797 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
3798 FRAME_CONDEMNED_SCROLL_BARS (frame) = bar;
3803 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
3804 Note that WINDOW isn't necessarily condemned at all. */
3806 static void
3807 w32_redeem_scroll_bar (window)
3808 struct window *window;
3810 struct scroll_bar *bar;
3811 struct frame *f;
3813 /* We can't redeem this window's scroll bar if it doesn't have one. */
3814 if (NILP (window->vertical_scroll_bar))
3815 abort ();
3817 bar = XSCROLL_BAR (window->vertical_scroll_bar);
3819 /* Unlink it from the condemned list. */
3820 f = XFRAME (WINDOW_FRAME (window));
3821 if (NILP (bar->prev))
3823 /* If the prev pointer is nil, it must be the first in one of
3824 the lists. */
3825 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
3826 /* It's not condemned. Everything's fine. */
3827 return;
3828 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
3829 window->vertical_scroll_bar))
3830 FRAME_CONDEMNED_SCROLL_BARS (f) = bar->next;
3831 else
3832 /* If its prev pointer is nil, it must be at the front of
3833 one or the other! */
3834 abort ();
3836 else
3837 XSCROLL_BAR (bar->prev)->next = bar->next;
3839 if (! NILP (bar->next))
3840 XSCROLL_BAR (bar->next)->prev = bar->prev;
3842 bar->next = FRAME_SCROLL_BARS (f);
3843 bar->prev = Qnil;
3844 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
3845 if (! NILP (bar->next))
3846 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
3849 /* Remove all scroll bars on FRAME that haven't been saved since the
3850 last call to `*condemn_scroll_bars_hook'. */
3852 static void
3853 w32_judge_scroll_bars (f)
3854 FRAME_PTR f;
3856 Lisp_Object bar, next;
3858 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
3860 /* Clear out the condemned list now so we won't try to process any
3861 more events on the hapless scroll bars. */
3862 FRAME_CONDEMNED_SCROLL_BARS (f) = Qnil;
3864 for (; ! NILP (bar); bar = next)
3866 struct scroll_bar *b = XSCROLL_BAR (bar);
3868 x_scroll_bar_remove (b);
3870 next = b->next;
3871 b->next = b->prev = Qnil;
3874 /* Now there should be no references to the condemned scroll bars,
3875 and they should get garbage-collected. */
3878 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
3879 is set to something other than NO_EVENT, it is enqueued.
3881 This may be called from a signal handler, so we have to ignore GC
3882 mark bits. */
3884 static int
3885 w32_scroll_bar_handle_click (bar, msg, emacs_event)
3886 struct scroll_bar *bar;
3887 W32Msg *msg;
3888 struct input_event *emacs_event;
3890 if (! GC_WINDOWP (bar->window))
3891 abort ();
3893 emacs_event->kind = W32_SCROLL_BAR_CLICK_EVENT;
3894 emacs_event->code = 0;
3895 /* not really meaningful to distinguish up/down */
3896 emacs_event->modifiers = msg->dwModifiers;
3897 emacs_event->frame_or_window = bar->window;
3898 emacs_event->arg = Qnil;
3899 emacs_event->timestamp = msg->msg.time;
3902 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
3903 int y;
3904 int dragging = !NILP (bar->dragging);
3905 SCROLLINFO si;
3907 si.cbSize = sizeof (si);
3908 si.fMask = SIF_POS;
3910 GetScrollInfo ((HWND) msg->msg.lParam, SB_CTL, &si);
3911 y = si.nPos;
3913 bar->dragging = Qnil;
3916 last_mouse_scroll_bar_pos = msg->msg.wParam;
3918 switch (LOWORD (msg->msg.wParam))
3920 case SB_LINEDOWN:
3921 emacs_event->part = scroll_bar_down_arrow;
3922 break;
3923 case SB_LINEUP:
3924 emacs_event->part = scroll_bar_up_arrow;
3925 break;
3926 case SB_PAGEUP:
3927 emacs_event->part = scroll_bar_above_handle;
3928 break;
3929 case SB_PAGEDOWN:
3930 emacs_event->part = scroll_bar_below_handle;
3931 break;
3932 case SB_TOP:
3933 emacs_event->part = scroll_bar_handle;
3934 y = 0;
3935 break;
3936 case SB_BOTTOM:
3937 emacs_event->part = scroll_bar_handle;
3938 y = top_range;
3939 break;
3940 case SB_THUMBTRACK:
3941 case SB_THUMBPOSITION:
3942 if (VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height)) <= 0xffff)
3943 y = HIWORD (msg->msg.wParam);
3944 bar->dragging = Qt;
3945 emacs_event->part = scroll_bar_handle;
3947 /* "Silently" update current position. */
3949 SCROLLINFO si;
3951 si.cbSize = sizeof (si);
3952 si.fMask = SIF_POS;
3953 si.nPos = y;
3954 /* Remember apparent position (we actually lag behind the real
3955 position, so don't set that directly. */
3956 last_scroll_bar_drag_pos = y;
3958 SetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, FALSE);
3960 break;
3961 case SB_ENDSCROLL:
3962 /* If this is the end of a drag sequence, then reset the scroll
3963 handle size to normal and do a final redraw. Otherwise do
3964 nothing. */
3965 if (dragging)
3967 SCROLLINFO si;
3968 int start = XINT (bar->start);
3969 int end = XINT (bar->end);
3971 si.cbSize = sizeof (si);
3972 si.fMask = SIF_PAGE | SIF_POS;
3973 si.nPage = end - start + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3974 si.nPos = last_scroll_bar_drag_pos;
3975 SetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, TRUE);
3977 /* fall through */
3978 default:
3979 emacs_event->kind = NO_EVENT;
3980 return FALSE;
3983 XSETINT (emacs_event->x, y);
3984 XSETINT (emacs_event->y, top_range);
3986 return TRUE;
3990 /* Return information to the user about the current position of the mouse
3991 on the scroll bar. */
3993 static void
3994 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time)
3995 FRAME_PTR *fp;
3996 Lisp_Object *bar_window;
3997 enum scroll_bar_part *part;
3998 Lisp_Object *x, *y;
3999 unsigned long *time;
4001 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
4002 Window w = SCROLL_BAR_W32_WINDOW (bar);
4003 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
4004 int pos;
4005 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
4006 SCROLLINFO si;
4008 BLOCK_INPUT;
4010 *fp = f;
4011 *bar_window = bar->window;
4013 si.cbSize = sizeof (si);
4014 si.fMask = SIF_POS | SIF_PAGE | SIF_RANGE;
4016 GetScrollInfo (w, SB_CTL, &si);
4017 pos = si.nPos;
4018 top_range = si.nMax - si.nPage + 1;
4020 switch (LOWORD (last_mouse_scroll_bar_pos))
4022 case SB_THUMBPOSITION:
4023 case SB_THUMBTRACK:
4024 *part = scroll_bar_handle;
4025 if (VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height)) <= 0xffff)
4026 pos = HIWORD (last_mouse_scroll_bar_pos);
4027 break;
4028 case SB_LINEDOWN:
4029 *part = scroll_bar_handle;
4030 pos++;
4031 break;
4032 default:
4033 *part = scroll_bar_handle;
4034 break;
4037 XSETINT (*x, pos);
4038 XSETINT (*y, top_range);
4040 f->mouse_moved = 0;
4041 last_mouse_scroll_bar = Qnil;
4043 *time = last_mouse_movement_time;
4045 UNBLOCK_INPUT;
4049 /* The screen has been cleared so we may have changed foreground or
4050 background colors, and the scroll bars may need to be redrawn.
4051 Clear out the scroll bars, and ask for expose events, so we can
4052 redraw them. */
4054 void
4055 x_scroll_bar_clear (f)
4056 FRAME_PTR f;
4058 Lisp_Object bar;
4060 /* We can have scroll bars even if this is 0,
4061 if we just turned off scroll bar mode.
4062 But in that case we should not clear them. */
4063 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
4064 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
4065 bar = XSCROLL_BAR (bar)->next)
4067 HWND window = SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar));
4068 HDC hdc = GetDC (window);
4069 RECT rect;
4071 /* Hide scroll bar until ready to repaint. x_scroll_bar_move
4072 arranges to refresh the scroll bar if hidden. */
4073 my_show_window (f, window, SW_HIDE);
4075 GetClientRect (window, &rect);
4076 select_palette (f, hdc);
4077 w32_clear_rect (f, hdc, &rect);
4078 deselect_palette (f, hdc);
4080 ReleaseDC (window, hdc);
4085 /* The main W32 event-reading loop - w32_read_socket. */
4087 /* Record the last 100 characters stored
4088 to help debug the loss-of-chars-during-GC problem. */
4090 static int temp_index;
4091 static short temp_buffer[100];
4094 /* Read events coming from the W32 shell.
4095 This routine is called by the SIGIO handler.
4096 We return as soon as there are no more events to be read.
4098 We return the number of characters stored into the buffer,
4099 thus pretending to be `read'.
4101 EXPECTED is nonzero if the caller knows input is available.
4103 Some of these messages are reposted back to the message queue since the
4104 system calls the windows proc directly in a context where we cannot return
4105 the data nor can we guarantee the state we are in. So if we dispatch them
4106 we will get into an infinite loop. To prevent this from ever happening we
4107 will set a variable to indicate we are in the read_socket call and indicate
4108 which message we are processing since the windows proc gets called
4109 recursively with different messages by the system.
4113 w32_read_socket (sd, expected, hold_quit)
4114 register int sd;
4115 int expected;
4116 struct input_event *hold_quit;
4118 int count = 0;
4119 int check_visibility = 0;
4120 W32Msg msg;
4121 struct frame *f;
4122 struct w32_display_info *dpyinfo = &one_w32_display_info;
4124 if (interrupt_input_blocked)
4126 interrupt_input_pending = 1;
4127 return -1;
4130 interrupt_input_pending = 0;
4131 BLOCK_INPUT;
4133 /* So people can tell when we have read the available input. */
4134 input_signal_count++;
4136 /* TODO: ghostscript integration. */
4137 while (get_next_msg (&msg, FALSE))
4139 struct input_event inev;
4140 int do_help = 0;
4142 EVENT_INIT (inev);
4143 inev.kind = NO_EVENT;
4144 inev.arg = Qnil;
4146 switch (msg.msg.message)
4148 case WM_PAINT:
4149 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4151 if (f)
4153 if (msg.rect.right == msg.rect.left ||
4154 msg.rect.bottom == msg.rect.top)
4156 /* We may get paint messages even though the client
4157 area is clipped - these are not expose events. */
4158 DebPrint (("clipped frame %p (%s) got WM_PAINT - ignored\n", f,
4159 SDATA (f->name)));
4161 else if (f->async_visible != 1)
4163 /* Definitely not obscured, so mark as visible. */
4164 f->async_visible = 1;
4165 f->async_iconified = 0;
4166 SET_FRAME_GARBAGED (f);
4167 DebPrint (("frame %p (%s) reexposed by WM_PAINT\n", f,
4168 SDATA (f->name)));
4170 /* WM_PAINT serves as MapNotify as well, so report
4171 visibility changes properly. */
4172 if (f->iconified)
4174 inev.kind = DEICONIFY_EVENT;
4175 XSETFRAME (inev.frame_or_window, f);
4177 else if (! NILP (Vframe_list)
4178 && ! NILP (XCDR (Vframe_list)))
4179 /* Force a redisplay sooner or later to update the
4180 frame titles in case this is the second frame. */
4181 record_asynch_buffer_change ();
4183 else
4185 HDC hdc = get_frame_dc (f);
4187 /* Erase background again for safety. */
4188 w32_clear_rect (f, hdc, &msg.rect);
4189 release_frame_dc (f, hdc);
4190 expose_frame (f,
4191 msg.rect.left,
4192 msg.rect.top,
4193 msg.rect.right - msg.rect.left,
4194 msg.rect.bottom - msg.rect.top);
4197 break;
4199 case WM_INPUTLANGCHANGE:
4200 /* Generate a language change event. */
4201 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4203 if (f)
4205 inev.kind = LANGUAGE_CHANGE_EVENT;
4206 XSETFRAME (inev.frame_or_window, f);
4207 inev.code = msg.msg.wParam;
4208 inev.modifiers = msg.msg.lParam & 0xffff;
4210 break;
4212 case WM_KEYDOWN:
4213 case WM_SYSKEYDOWN:
4214 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4216 if (f && !f->iconified)
4218 if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
4219 && !EQ (f->tool_bar_window, dpyinfo->mouse_face_window))
4221 clear_mouse_face (dpyinfo);
4222 dpyinfo->mouse_face_hidden = 1;
4225 if (temp_index == sizeof temp_buffer / sizeof (short))
4226 temp_index = 0;
4227 temp_buffer[temp_index++] = msg.msg.wParam;
4228 inev.kind = NON_ASCII_KEYSTROKE_EVENT;
4229 inev.code = msg.msg.wParam;
4230 inev.modifiers = msg.dwModifiers;
4231 XSETFRAME (inev.frame_or_window, f);
4232 inev.timestamp = msg.msg.time;
4234 break;
4236 case WM_SYSCHAR:
4237 case WM_CHAR:
4238 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4240 if (f && !f->iconified)
4242 if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
4243 && !EQ (f->tool_bar_window, dpyinfo->mouse_face_window))
4245 clear_mouse_face (dpyinfo);
4246 dpyinfo->mouse_face_hidden = 1;
4249 if (temp_index == sizeof temp_buffer / sizeof (short))
4250 temp_index = 0;
4251 temp_buffer[temp_index++] = msg.msg.wParam;
4252 inev.kind = ASCII_KEYSTROKE_EVENT;
4253 inev.code = msg.msg.wParam;
4254 inev.modifiers = msg.dwModifiers;
4255 XSETFRAME (inev.frame_or_window, f);
4256 inev.timestamp = msg.msg.time;
4258 break;
4260 case WM_MOUSEMOVE:
4261 /* Ignore non-movement. */
4263 int x = LOWORD (msg.msg.lParam);
4264 int y = HIWORD (msg.msg.lParam);
4265 if (x == last_mousemove_x && y == last_mousemove_y)
4266 break;
4267 last_mousemove_x = x;
4268 last_mousemove_y = y;
4271 previous_help_echo_string = help_echo_string;
4272 help_echo_string = Qnil;
4274 if (dpyinfo->grabbed && last_mouse_frame
4275 && FRAME_LIVE_P (last_mouse_frame))
4276 f = last_mouse_frame;
4277 else
4278 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4280 if (dpyinfo->mouse_face_hidden)
4282 dpyinfo->mouse_face_hidden = 0;
4283 clear_mouse_face (dpyinfo);
4286 if (f)
4288 /* Generate SELECT_WINDOW_EVENTs when needed. */
4289 if (mouse_autoselect_window)
4291 Lisp_Object window;
4292 int x = LOWORD (msg.msg.lParam);
4293 int y = HIWORD (msg.msg.lParam);
4295 window = window_from_coordinates (f, x, y, 0, 0, 0, 0);
4297 /* Window will be selected only when it is not
4298 selected now and last mouse movement event was
4299 not in it. Minibuffer window will be selected
4300 iff it is active. */
4301 if (WINDOWP(window)
4302 && !EQ (window, last_window)
4303 && !EQ (window, selected_window))
4305 inev.kind = SELECT_WINDOW_EVENT;
4306 inev.frame_or_window = window;
4309 last_window=window;
4311 if (!note_mouse_movement (f, &msg.msg))
4312 help_echo_string = previous_help_echo_string;
4314 else
4316 /* If we move outside the frame, then we're
4317 certainly no longer on any text in the frame. */
4318 clear_mouse_face (dpyinfo);
4321 /* If the contents of the global variable help_echo_string
4322 has changed, generate a HELP_EVENT. */
4323 #if 0 /* The below is an invalid comparison when USE_LISP_UNION_TYPE.
4324 But it was originally changed to this to fix a bug, so I have
4325 not removed it completely in case the bug is still there. */
4326 if (help_echo_string != previous_help_echo_string ||
4327 (!NILP (help_echo_string) && !STRINGP (help_echo_string) && f->mouse_moved))
4328 #else /* This is what xterm.c does. */
4329 if (!NILP (help_echo_string)
4330 || !NILP (previous_help_echo_string))
4331 do_help = 1;
4332 #endif
4333 break;
4335 case WM_LBUTTONDOWN:
4336 case WM_LBUTTONUP:
4337 case WM_MBUTTONDOWN:
4338 case WM_MBUTTONUP:
4339 case WM_RBUTTONDOWN:
4340 case WM_RBUTTONUP:
4341 case WM_XBUTTONDOWN:
4342 case WM_XBUTTONUP:
4344 /* If we decide we want to generate an event to be seen
4345 by the rest of Emacs, we put it here. */
4346 int tool_bar_p = 0;
4347 int button;
4348 int up;
4350 if (dpyinfo->grabbed && last_mouse_frame
4351 && FRAME_LIVE_P (last_mouse_frame))
4352 f = last_mouse_frame;
4353 else
4354 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4356 if (f)
4358 construct_mouse_click (&inev, &msg, f);
4360 /* Is this in the tool-bar? */
4361 if (WINDOWP (f->tool_bar_window)
4362 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)))
4364 Lisp_Object window;
4365 int x = XFASTINT (inev.x);
4366 int y = XFASTINT (inev.y);
4368 window = window_from_coordinates (f, x, y, 0, 0, 0, 1);
4370 if (EQ (window, f->tool_bar_window))
4372 w32_handle_tool_bar_click (f, &inev);
4373 tool_bar_p = 1;
4377 if (tool_bar_p
4378 || (dpyinfo->w32_focus_frame
4379 && f != dpyinfo->w32_focus_frame))
4380 inev.kind = NO_EVENT;
4383 parse_button (msg.msg.message, HIWORD (msg.msg.wParam),
4384 &button, &up);
4386 if (up)
4388 dpyinfo->grabbed &= ~ (1 << button);
4390 else
4392 dpyinfo->grabbed |= (1 << button);
4393 last_mouse_frame = f;
4394 /* Ignore any mouse motion that happened
4395 before this event; any subsequent mouse-movement
4396 Emacs events should reflect only motion after
4397 the ButtonPress. */
4398 if (f != 0)
4399 f->mouse_moved = 0;
4401 if (!tool_bar_p)
4402 last_tool_bar_item = -1;
4404 break;
4407 case WM_MOUSEWHEEL:
4409 if (dpyinfo->grabbed && last_mouse_frame
4410 && FRAME_LIVE_P (last_mouse_frame))
4411 f = last_mouse_frame;
4412 else
4413 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4415 if (f)
4418 if (!dpyinfo->w32_focus_frame
4419 || f == dpyinfo->w32_focus_frame)
4421 /* Emit an Emacs wheel-up/down event. */
4422 construct_mouse_wheel (&inev, &msg, f);
4424 /* Ignore any mouse motion that happened before this
4425 event; any subsequent mouse-movement Emacs events
4426 should reflect only motion after the
4427 ButtonPress. */
4428 f->mouse_moved = 0;
4430 last_mouse_frame = f;
4431 last_tool_bar_item = -1;
4433 break;
4435 case WM_DROPFILES:
4436 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4438 if (f)
4439 construct_drag_n_drop (&inev, &msg, f);
4440 break;
4442 case WM_VSCROLL:
4444 struct scroll_bar *bar =
4445 x_window_to_scroll_bar ((HWND)msg.msg.lParam);
4447 if (bar)
4448 w32_scroll_bar_handle_click (bar, &msg, &inev);
4449 break;
4452 case WM_WINDOWPOSCHANGED:
4453 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4454 if (f)
4456 if (f->want_fullscreen & FULLSCREEN_WAIT)
4457 f->want_fullscreen &= ~(FULLSCREEN_WAIT|FULLSCREEN_BOTH);
4459 check_visibility = 1;
4460 break;
4462 case WM_ACTIVATE:
4463 case WM_ACTIVATEAPP:
4464 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4465 if (f)
4466 x_check_fullscreen (f);
4467 check_visibility = 1;
4468 break;
4470 case WM_MOVE:
4471 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4473 if (f && !f->async_iconified)
4475 int x, y;
4477 x_real_positions (f, &x, &y);
4478 f->left_pos = x;
4479 f->top_pos = y;
4482 check_visibility = 1;
4483 break;
4485 case WM_SHOWWINDOW:
4486 /* wParam non-zero means Window is about to be shown, 0 means
4487 about to be hidden. */
4488 /* Redo the mouse-highlight after the tooltip has gone. */
4489 if (!msg.msg.wParam && msg.msg.hwnd == tip_window)
4491 tip_window = NULL;
4492 redo_mouse_highlight ();
4495 /* If window has been obscured or exposed by another window
4496 being maximised or minimised/restored, then recheck
4497 visibility of all frames. Direct changes to our own
4498 windows get handled by WM_SIZE. */
4499 #if 0
4500 if (msg.msg.lParam != 0)
4501 check_visibility = 1;
4502 else
4504 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4505 f->async_visible = msg.msg.wParam;
4507 #endif
4509 check_visibility = 1;
4510 break;
4512 case WM_SIZE:
4513 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4515 /* Inform lisp of whether frame has been iconified etc. */
4516 if (f)
4518 switch (msg.msg.wParam)
4520 case SIZE_MINIMIZED:
4521 f->async_visible = 0;
4522 f->async_iconified = 1;
4524 inev.kind = ICONIFY_EVENT;
4525 XSETFRAME (inev.frame_or_window, f);
4526 break;
4528 case SIZE_MAXIMIZED:
4529 case SIZE_RESTORED:
4530 f->async_visible = 1;
4531 f->async_iconified = 0;
4533 /* wait_reading_process_output will notice this and update
4534 the frame's display structures. */
4535 SET_FRAME_GARBAGED (f);
4537 if (f->iconified)
4539 int x, y;
4541 /* Reset top and left positions of the Window
4542 here since Windows sends a WM_MOVE message
4543 BEFORE telling us the Window is minimized
4544 when the Window is iconified, with 3000,3000
4545 as the co-ords. */
4546 x_real_positions (f, &x, &y);
4547 f->left_pos = x;
4548 f->top_pos = y;
4550 inev.kind = DEICONIFY_EVENT;
4551 XSETFRAME (inev.frame_or_window, f);
4553 else if (! NILP (Vframe_list)
4554 && ! NILP (XCDR (Vframe_list)))
4555 /* Force a redisplay sooner or later
4556 to update the frame titles
4557 in case this is the second frame. */
4558 record_asynch_buffer_change ();
4559 break;
4563 if (f && !f->async_iconified && msg.msg.wParam != SIZE_MINIMIZED)
4565 RECT rect;
4566 int rows;
4567 int columns;
4568 int width;
4569 int height;
4571 GetClientRect (msg.msg.hwnd, &rect);
4573 height = rect.bottom - rect.top;
4574 width = rect.right - rect.left;
4576 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, height);
4577 columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, width);
4579 /* TODO: Clip size to the screen dimensions. */
4581 /* Even if the number of character rows and columns has
4582 not changed, the font size may have changed, so we need
4583 to check the pixel dimensions as well. */
4585 if (columns != FRAME_COLS (f)
4586 || rows != FRAME_LINES (f)
4587 || width != FRAME_PIXEL_WIDTH (f)
4588 || height != FRAME_PIXEL_HEIGHT (f))
4590 change_frame_size (f, rows, columns, 0, 1, 0);
4591 SET_FRAME_GARBAGED (f);
4592 cancel_mouse_face (f);
4593 FRAME_PIXEL_WIDTH (f) = width;
4594 FRAME_PIXEL_HEIGHT (f) = height;
4595 f->win_gravity = NorthWestGravity;
4599 check_visibility = 1;
4600 break;
4602 case WM_MOUSELEAVE:
4603 f = x_any_window_to_frame (dpyinfo, msg.msg.hwnd);
4604 if (f)
4606 if (f == dpyinfo->mouse_face_mouse_frame)
4608 /* If we move outside the frame, then we're
4609 certainly no longer on any text in the frame. */
4610 clear_mouse_face (dpyinfo);
4611 dpyinfo->mouse_face_mouse_frame = 0;
4614 /* Generate a nil HELP_EVENT to cancel a help-echo.
4615 Do it only if there's something to cancel.
4616 Otherwise, the startup message is cleared when
4617 the mouse leaves the frame. */
4618 if (any_help_event_p)
4619 do_help = -1;
4621 break;
4623 case WM_SETFOCUS:
4624 w32_detect_focus_change (dpyinfo, &msg, &inev);
4626 dpyinfo->grabbed = 0;
4627 check_visibility = 1;
4628 break;
4630 case WM_KILLFOCUS:
4631 f = x_top_window_to_frame (dpyinfo, msg.msg.hwnd);
4633 if (f)
4635 if (f == dpyinfo->w32_focus_event_frame)
4636 dpyinfo->w32_focus_event_frame = 0;
4638 if (f == dpyinfo->w32_focus_frame)
4639 x_new_focus_frame (dpyinfo, 0);
4641 if (f == dpyinfo->mouse_face_mouse_frame)
4643 /* If we move outside the frame, then we're
4644 certainly no longer on any text in the frame. */
4645 clear_mouse_face (dpyinfo);
4646 dpyinfo->mouse_face_mouse_frame = 0;
4649 /* Generate a nil HELP_EVENT to cancel a help-echo.
4650 Do it only if there's something to cancel.
4651 Otherwise, the startup message is cleared when
4652 the mouse leaves the frame. */
4653 if (any_help_event_p)
4654 do_help = -1;
4657 dpyinfo->grabbed = 0;
4658 check_visibility = 1;
4659 break;
4661 case WM_CLOSE:
4662 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4664 if (f)
4666 inev.kind = DELETE_WINDOW_EVENT;
4667 XSETFRAME (inev.frame_or_window, f);
4669 break;
4671 case WM_INITMENU:
4672 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4674 if (f)
4676 inev.kind = MENU_BAR_ACTIVATE_EVENT;
4677 XSETFRAME (inev.frame_or_window, f);
4679 break;
4681 case WM_COMMAND:
4682 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4684 if (f)
4686 extern void menubar_selection_callback
4687 (FRAME_PTR f, void * client_data);
4688 menubar_selection_callback (f, (void *)msg.msg.wParam);
4691 check_visibility = 1;
4692 break;
4694 case WM_DISPLAYCHANGE:
4695 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4697 if (f)
4699 dpyinfo->width = (short) LOWORD (msg.msg.lParam);
4700 dpyinfo->height = (short) HIWORD (msg.msg.lParam);
4701 dpyinfo->n_cbits = msg.msg.wParam;
4702 DebPrint (("display change: %d %d\n", dpyinfo->width,
4703 dpyinfo->height));
4706 check_visibility = 1;
4707 break;
4709 default:
4710 /* Check for messages registered at runtime. */
4711 if (msg.msg.message == msh_mousewheel)
4713 /* Forward MSH_MOUSEWHEEL as WM_MOUSEWHEEL. */
4714 msg.msg.message = WM_MOUSEWHEEL;
4715 prepend_msg (&msg);
4717 break;
4720 if (inev.kind != NO_EVENT)
4722 kbd_buffer_store_event_hold (&inev, hold_quit);
4723 count++;
4726 if (do_help
4727 && !(hold_quit && hold_quit->kind != NO_EVENT))
4729 Lisp_Object frame;
4731 if (f)
4732 XSETFRAME (frame, f);
4733 else
4734 frame = Qnil;
4736 if (do_help > 0)
4738 if (NILP (help_echo_string))
4740 help_echo_object = help_echo_window = Qnil;
4741 help_echo_pos = -1;
4744 any_help_event_p = 1;
4745 gen_help_event (help_echo_string, frame, help_echo_window,
4746 help_echo_object, help_echo_pos);
4748 else
4750 help_echo_string = Qnil;
4751 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
4753 count++;
4757 /* If the focus was just given to an autoraising frame,
4758 raise it now. */
4759 /* ??? This ought to be able to handle more than one such frame. */
4760 if (pending_autoraise_frame)
4762 x_raise_frame (pending_autoraise_frame);
4763 pending_autoraise_frame = 0;
4766 /* Check which frames are still visisble, if we have enqueued any user
4767 events or been notified of events that may affect visibility. We
4768 do this here because there doesn't seem to be any direct
4769 notification from Windows that the visibility of a window has
4770 changed (at least, not in all cases). */
4771 if (count > 0 || check_visibility)
4773 Lisp_Object tail, frame;
4775 FOR_EACH_FRAME (tail, frame)
4777 FRAME_PTR f = XFRAME (frame);
4778 /* The tooltip has been drawn already. Avoid the
4779 SET_FRAME_GARBAGED below. */
4780 if (EQ (frame, tip_frame))
4781 continue;
4783 /* Check "visible" frames and mark each as obscured or not.
4784 Note that async_visible is nonzero for unobscured and
4785 obscured frames, but zero for hidden and iconified frames. */
4786 if (FRAME_W32_P (f) && f->async_visible)
4788 RECT clipbox;
4789 HDC hdc;
4791 enter_crit ();
4792 /* Query clipping rectangle for the entire window area
4793 (GetWindowDC), not just the client portion (GetDC).
4794 Otherwise, the scrollbars and menubar aren't counted as
4795 part of the visible area of the frame, and we may think
4796 the frame is obscured when really a scrollbar is still
4797 visible and gets WM_PAINT messages above. */
4798 hdc = GetWindowDC (FRAME_W32_WINDOW (f));
4799 GetClipBox (hdc, &clipbox);
4800 ReleaseDC (FRAME_W32_WINDOW (f), hdc);
4801 leave_crit ();
4803 if (clipbox.right == clipbox.left
4804 || clipbox.bottom == clipbox.top)
4806 /* Frame has become completely obscured so mark as
4807 such (we do this by setting async_visible to 2 so
4808 that FRAME_VISIBLE_P is still true, but redisplay
4809 will skip it). */
4810 f->async_visible = 2;
4812 if (!FRAME_OBSCURED_P (f))
4814 DebPrint (("frame %p (%s) obscured\n", f,
4815 SDATA (f->name)));
4818 else
4820 /* Frame is not obscured, so mark it as such. */
4821 f->async_visible = 1;
4823 if (FRAME_OBSCURED_P (f))
4825 SET_FRAME_GARBAGED (f);
4826 DebPrint (("obscured frame %p (%s) found to be visible\n", f,
4827 SDATA (f->name)));
4829 /* Force a redisplay sooner or later. */
4830 record_asynch_buffer_change ();
4837 UNBLOCK_INPUT;
4838 return count;
4843 /***********************************************************************
4844 Text Cursor
4845 ***********************************************************************/
4847 /* Set clipping for output in glyph row ROW. W is the window in which
4848 we operate. GC is the graphics context to set clipping in.
4850 ROW may be a text row or, e.g., a mode line. Text rows must be
4851 clipped to the interior of the window dedicated to text display,
4852 mode lines must be clipped to the whole window. */
4854 static void
4855 w32_clip_to_row (w, row, area, hdc)
4856 struct window *w;
4857 struct glyph_row *row;
4858 int area;
4859 HDC hdc;
4861 struct frame *f = XFRAME (WINDOW_FRAME (w));
4862 RECT clip_rect;
4863 int window_x, window_y, window_width;
4865 window_box (w, area, &window_x, &window_y, &window_width, 0);
4867 clip_rect.left = window_x;
4868 clip_rect.top = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
4869 clip_rect.top = max (clip_rect.top, window_y);
4870 clip_rect.right = clip_rect.left + window_width;
4871 clip_rect.bottom = clip_rect.top + row->visible_height;
4873 w32_set_clip_rectangle (hdc, &clip_rect);
4877 /* Draw a hollow box cursor on window W in glyph row ROW. */
4879 static void
4880 x_draw_hollow_cursor (w, row)
4881 struct window *w;
4882 struct glyph_row *row;
4884 struct frame *f = XFRAME (WINDOW_FRAME (w));
4885 HDC hdc;
4886 RECT rect;
4887 int left, top, h;
4888 struct glyph *cursor_glyph;
4889 HBRUSH hb = CreateSolidBrush (f->output_data.w32->cursor_pixel);
4891 /* Get the glyph the cursor is on. If we can't tell because
4892 the current matrix is invalid or such, give up. */
4893 cursor_glyph = get_phys_cursor_glyph (w);
4894 if (cursor_glyph == NULL)
4895 return;
4897 /* Compute frame-relative coordinates for phys cursor. */
4898 get_phys_cursor_geometry (w, row, cursor_glyph, &left, &top, &h);
4899 rect.left = left;
4900 rect.top = top;
4901 rect.bottom = rect.top + h;
4902 rect.right = rect.left + w->phys_cursor_width;
4904 hdc = get_frame_dc (f);
4905 /* Set clipping, draw the rectangle, and reset clipping again. */
4906 w32_clip_to_row (w, row, TEXT_AREA, hdc);
4907 FrameRect (hdc, &rect, hb);
4908 DeleteObject (hb);
4909 w32_set_clip_rectangle (hdc, NULL);
4910 release_frame_dc (f, hdc);
4914 /* Draw a bar cursor on window W in glyph row ROW.
4916 Implementation note: One would like to draw a bar cursor with an
4917 angle equal to the one given by the font property XA_ITALIC_ANGLE.
4918 Unfortunately, I didn't find a font yet that has this property set.
4919 --gerd. */
4921 static void
4922 x_draw_bar_cursor (w, row, width, kind)
4923 struct window *w;
4924 struct glyph_row *row;
4925 int width;
4926 enum text_cursor_kinds kind;
4928 struct frame *f = XFRAME (w->frame);
4929 struct glyph *cursor_glyph;
4930 int x;
4931 HDC hdc;
4933 /* If cursor is out of bounds, don't draw garbage. This can happen
4934 in mini-buffer windows when switching between echo area glyphs
4935 and mini-buffer. */
4936 cursor_glyph = get_phys_cursor_glyph (w);
4937 if (cursor_glyph == NULL)
4938 return;
4940 /* If on an image, draw like a normal cursor. That's usually better
4941 visible than drawing a bar, esp. if the image is large so that
4942 the bar might not be in the window. */
4943 if (cursor_glyph->type == IMAGE_GLYPH)
4945 struct glyph_row *row;
4946 row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
4947 draw_phys_cursor_glyph (w, row, DRAW_CURSOR);
4949 else
4951 COLORREF cursor_color = f->output_data.w32->cursor_pixel;
4952 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
4954 /* If the glyph's background equals the color we normally draw
4955 the bar cursor in, the bar cursor in its normal color is
4956 invisible. Use the glyph's foreground color instead in this
4957 case, on the assumption that the glyph's colors are chosen so
4958 that the glyph is legible. */
4959 if (face->background == cursor_color)
4960 cursor_color = face->foreground;
4962 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
4964 if (width < 0)
4965 width = FRAME_CURSOR_WIDTH (f);
4966 width = min (cursor_glyph->pixel_width, width);
4968 w->phys_cursor_width = width;
4971 hdc = get_frame_dc (f);
4972 w32_clip_to_row (w, row, TEXT_AREA, hdc);
4974 if (kind == BAR_CURSOR)
4976 w32_fill_area (f, hdc, cursor_color, x,
4977 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
4978 width, row->height);
4980 else
4982 w32_fill_area (f, hdc, cursor_color, x,
4983 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
4984 row->height - width),
4985 cursor_glyph->pixel_width, width);
4988 w32_set_clip_rectangle (hdc, NULL);
4989 release_frame_dc (f, hdc);
4994 /* RIF: Define cursor CURSOR on frame F. */
4996 static void
4997 w32_define_frame_cursor (f, cursor)
4998 struct frame *f;
4999 Cursor cursor;
5001 w32_define_cursor (FRAME_W32_WINDOW (f), cursor);
5005 /* RIF: Clear area on frame F. */
5007 static void
5008 w32_clear_frame_area (f, x, y, width, height)
5009 struct frame *f;
5010 int x, y, width, height;
5012 HDC hdc;
5014 hdc = get_frame_dc (f);
5015 w32_clear_area (f, hdc, x, y, width, height);
5016 release_frame_dc (f, hdc);
5019 /* RIF: Draw or clear cursor on window W. */
5021 static void
5022 w32_draw_window_cursor (w, glyph_row, x, y, cursor_type, cursor_width, on_p, active_p)
5023 struct window *w;
5024 struct glyph_row *glyph_row;
5025 int x, y;
5026 int cursor_type, cursor_width;
5027 int on_p, active_p;
5029 if (on_p)
5031 /* If the user wants to use the system caret, make sure our own
5032 cursor remains invisible. */
5033 if (w32_use_visible_system_caret)
5035 /* Call to erase_phys_cursor here seems to use the
5036 wrong values of w->phys_cursor, as they have been
5037 overwritten before this function was called. */
5038 if (w->phys_cursor_type != NO_CURSOR)
5039 erase_phys_cursor (w);
5041 cursor_type = w->phys_cursor_type = NO_CURSOR;
5042 w->phys_cursor_width = -1;
5044 else
5046 w->phys_cursor_type = cursor_type;
5049 w->phys_cursor_on_p = 1;
5051 /* If this is the active cursor, we need to track it with the
5052 system caret, so third party software like screen magnifiers
5053 and speech synthesizers can follow the cursor. */
5054 if (active_p)
5056 struct frame *f = XFRAME (WINDOW_FRAME (w));
5057 HWND hwnd = FRAME_W32_WINDOW (f);
5059 w32_system_caret_x
5060 = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
5061 w32_system_caret_y
5062 = (WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y)
5063 + glyph_row->ascent - w->phys_cursor_ascent);
5065 /* If the size of the active cursor changed, destroy the old
5066 system caret. */
5067 if (w32_system_caret_hwnd
5068 && (w32_system_caret_height != w->phys_cursor_height))
5069 PostMessage (hwnd, WM_EMACS_DESTROY_CARET, 0, 0);
5071 w32_system_caret_height = w->phys_cursor_height;
5073 /* Move the system caret. */
5074 PostMessage (hwnd, WM_EMACS_TRACK_CARET, 0, 0);
5077 if (glyph_row->exact_window_width_line_p
5078 && w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])
5080 glyph_row->cursor_in_fringe_p = 1;
5081 draw_fringe_bitmap (w, glyph_row, 0);
5082 return;
5085 switch (cursor_type)
5087 case HOLLOW_BOX_CURSOR:
5088 x_draw_hollow_cursor (w, glyph_row);
5089 break;
5091 case FILLED_BOX_CURSOR:
5092 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
5093 break;
5095 case BAR_CURSOR:
5096 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
5097 break;
5099 case HBAR_CURSOR:
5100 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
5101 break;
5103 case NO_CURSOR:
5104 w->phys_cursor_width = 0;
5105 break;
5107 default:
5108 abort ();
5115 /* Icons. */
5118 x_bitmap_icon (f, icon)
5119 struct frame *f;
5120 Lisp_Object icon;
5122 HANDLE main_icon;
5123 HANDLE small_icon = NULL;
5125 if (FRAME_W32_WINDOW (f) == 0)
5126 return 1;
5128 if (NILP (icon))
5129 main_icon = LoadIcon (hinst, EMACS_CLASS);
5130 else if (STRINGP (icon))
5132 /* Load the main icon from the named file. */
5133 main_icon = LoadImage (NULL, (LPCTSTR) SDATA (icon), IMAGE_ICON, 0, 0,
5134 LR_DEFAULTSIZE | LR_LOADFROMFILE);
5135 /* Try to load a small icon to go with it. */
5136 small_icon = LoadImage (NULL, (LPCSTR) SDATA (icon), IMAGE_ICON,
5137 GetSystemMetrics (SM_CXSMICON),
5138 GetSystemMetrics (SM_CYSMICON),
5139 LR_LOADFROMFILE);
5141 else if (SYMBOLP (icon))
5143 LPCTSTR name;
5145 if (EQ (icon, intern ("application")))
5146 name = (LPCTSTR) IDI_APPLICATION;
5147 else if (EQ (icon, intern ("hand")))
5148 name = (LPCTSTR) IDI_HAND;
5149 else if (EQ (icon, intern ("question")))
5150 name = (LPCTSTR) IDI_QUESTION;
5151 else if (EQ (icon, intern ("exclamation")))
5152 name = (LPCTSTR) IDI_EXCLAMATION;
5153 else if (EQ (icon, intern ("asterisk")))
5154 name = (LPCTSTR) IDI_ASTERISK;
5155 else if (EQ (icon, intern ("winlogo")))
5156 name = (LPCTSTR) IDI_WINLOGO;
5157 else
5158 return 1;
5160 main_icon = LoadIcon (NULL, name);
5162 else
5163 return 1;
5165 if (main_icon == NULL)
5166 return 1;
5168 PostMessage (FRAME_W32_WINDOW (f), WM_SETICON, (WPARAM) ICON_BIG,
5169 (LPARAM) main_icon);
5171 /* If there is a small icon that goes with it, set that too. */
5172 if (small_icon)
5173 PostMessage (FRAME_W32_WINDOW (f), WM_SETICON, (WPARAM) ICON_SMALL,
5174 (LPARAM) small_icon);
5176 return 0;
5180 /************************************************************************
5181 Handling X errors
5182 ************************************************************************/
5184 /* Display Error Handling functions not used on W32. Listing them here
5185 helps diff stay in step when comparing w32term.c with xterm.c.
5187 x_error_catcher (display, error)
5188 x_catch_errors (dpy)
5189 x_catch_errors_unwind (old_val)
5190 x_check_errors (dpy, format)
5191 x_fully_uncatch_errors ()
5192 x_catching_errors ()
5193 x_had_errors_p (dpy)
5194 x_clear_errors (dpy)
5195 x_uncatch_errors (dpy, count)
5196 x_trace_wire ()
5197 x_connection_signal (signalnum)
5198 x_connection_closed (dpy, error_message)
5199 x_error_quitter (display, error)
5200 x_error_handler (display, error)
5201 x_io_error_quitter (display)
5206 /* Changing the font of the frame. */
5208 /* Give frame F the font named FONTNAME as its default font, and
5209 return the full name of that font. FONTNAME may be a wildcard
5210 pattern; in that case, we choose some font that fits the pattern.
5211 The return value shows which font we chose. */
5213 Lisp_Object
5214 x_new_font (f, fontname)
5215 struct frame *f;
5216 register char *fontname;
5218 struct font_info *fontp
5219 = FS_LOAD_FONT (f, 0, fontname, -1);
5221 if (!fontp)
5222 return Qnil;
5224 FRAME_FONT (f) = (XFontStruct *) (fontp->font);
5225 FRAME_BASELINE_OFFSET (f) = fontp->baseline_offset;
5226 FRAME_FONTSET (f) = -1;
5228 FRAME_COLUMN_WIDTH (f) = fontp->average_width;
5229 FRAME_SPACE_WIDTH (f) = fontp->space_width;
5230 FRAME_LINE_HEIGHT (f) = FONT_HEIGHT (FRAME_FONT (f));
5232 compute_fringe_widths (f, 1);
5234 /* Compute the scroll bar width in character columns. */
5235 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
5237 int wid = FRAME_COLUMN_WIDTH (f);
5238 FRAME_CONFIG_SCROLL_BAR_COLS (f)
5239 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + wid-1) / wid;
5241 else
5243 int wid = FRAME_COLUMN_WIDTH (f);
5244 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
5247 /* Now make the frame display the given font. */
5248 if (FRAME_W32_WINDOW (f) != 0)
5250 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
5251 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
5254 return build_string (fontp->full_name);
5257 /* Give frame F the fontset named FONTSETNAME as its default font, and
5258 return the full name of that fontset. FONTSETNAME may be a wildcard
5259 pattern; in that case, we choose some fontset that fits the pattern.
5260 The return value shows which fontset we chose. */
5262 Lisp_Object
5263 x_new_fontset (f, fontsetname)
5264 struct frame *f;
5265 char *fontsetname;
5267 int fontset = fs_query_fontset (build_string (fontsetname), 0);
5268 Lisp_Object result;
5270 if (fontset < 0)
5271 return Qnil;
5273 if (FRAME_FONTSET (f) == fontset)
5274 /* This fontset is already set in frame F. There's nothing more
5275 to do. */
5276 return fontset_name (fontset);
5278 result = x_new_font (f, (SDATA (fontset_ascii (fontset))));
5280 if (!STRINGP (result))
5281 /* Can't load ASCII font. */
5282 return Qnil;
5284 /* Since x_new_font doesn't update any fontset information, do it now. */
5285 FRAME_FONTSET(f) = fontset;
5287 return build_string (fontsetname);
5291 /***********************************************************************
5292 TODO: W32 Input Methods
5293 ***********************************************************************/
5294 /* Listing missing functions from xterm.c helps diff stay in step.
5296 xim_destroy_callback (xim, client_data, call_data)
5297 xim_open_dpy (dpyinfo, resource_name)
5298 struct xim_inst_t
5299 xim_instantiate_callback (display, client_data, call_data)
5300 xim_initialize (dpyinfo, resource_name)
5301 xim_close_dpy (dpyinfo)
5306 /* Calculate the absolute position in frame F
5307 from its current recorded position values and gravity. */
5309 void
5310 x_calc_absolute_position (f)
5311 struct frame *f;
5313 int flags = f->size_hint_flags;
5315 /* The sum of the widths of the frame's left and right borders, and
5316 the sum of the heights of the frame's top and bottom borders (in
5317 pixels) drawn by Windows. */
5318 unsigned int left_right_borders_width, top_bottom_borders_height;
5320 /* Try to get the actual values of these two variables. We compute
5321 the border width (height) by subtracting the width (height) of
5322 the frame's client area from the width (height) of the frame's
5323 entire window. */
5324 WINDOWPLACEMENT wp = { 0 };
5325 RECT client_rect = { 0 };
5327 if (GetWindowPlacement (FRAME_W32_WINDOW (f), &wp)
5328 && GetClientRect (FRAME_W32_WINDOW (f), &client_rect))
5330 left_right_borders_width =
5331 (wp.rcNormalPosition.right - wp.rcNormalPosition.left) -
5332 (client_rect.right - client_rect.left);
5334 top_bottom_borders_height =
5335 (wp.rcNormalPosition.bottom - wp.rcNormalPosition.top) -
5336 (client_rect.bottom - client_rect.top);
5338 else
5340 /* Use sensible default values. */
5341 left_right_borders_width = 8;
5342 top_bottom_borders_height = 32;
5345 /* Treat negative positions as relative to the rightmost bottommost
5346 position that fits on the screen. */
5347 if (flags & XNegative)
5348 f->left_pos = (FRAME_W32_DISPLAY_INFO (f)->width
5349 - FRAME_PIXEL_WIDTH (f)
5350 + f->left_pos
5351 - (left_right_borders_width - 1));
5353 if (flags & YNegative)
5354 f->top_pos = (FRAME_W32_DISPLAY_INFO (f)->height
5355 - FRAME_PIXEL_HEIGHT (f)
5356 + f->top_pos
5357 - (top_bottom_borders_height - 1));
5359 /* The left_pos and top_pos are now relative to the top and left
5360 screen edges, so the flags should correspond. */
5361 f->size_hint_flags &= ~ (XNegative | YNegative);
5364 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
5365 to really change the position, and 0 when calling from
5366 x_make_frame_visible (in that case, XOFF and YOFF are the current
5367 position values). It is -1 when calling from x_set_frame_parameters,
5368 which means, do adjust for borders but don't change the gravity. */
5370 void
5371 x_set_offset (f, xoff, yoff, change_gravity)
5372 struct frame *f;
5373 register int xoff, yoff;
5374 int change_gravity;
5376 int modified_top, modified_left;
5378 if (change_gravity > 0)
5380 f->top_pos = yoff;
5381 f->left_pos = xoff;
5382 f->size_hint_flags &= ~ (XNegative | YNegative);
5383 if (xoff < 0)
5384 f->size_hint_flags |= XNegative;
5385 if (yoff < 0)
5386 f->size_hint_flags |= YNegative;
5387 f->win_gravity = NorthWestGravity;
5389 x_calc_absolute_position (f);
5391 BLOCK_INPUT;
5392 x_wm_set_size_hint (f, (long) 0, 0);
5394 modified_left = f->left_pos;
5395 modified_top = f->top_pos;
5397 my_set_window_pos (FRAME_W32_WINDOW (f),
5398 NULL,
5399 modified_left, modified_top,
5400 0, 0,
5401 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
5402 UNBLOCK_INPUT;
5406 /* Check if we need to resize the frame due to a fullscreen request.
5407 If so needed, resize the frame. */
5408 static void
5409 x_check_fullscreen (f)
5410 struct frame *f;
5412 if (f->want_fullscreen & FULLSCREEN_BOTH)
5414 int width, height, ign;
5416 x_real_positions (f, &f->left_pos, &f->top_pos);
5418 x_fullscreen_adjust (f, &width, &height, &ign, &ign);
5420 /* We do not need to move the window, it shall be taken care of
5421 when setting WM manager hints. */
5422 if (FRAME_COLS (f) != width || FRAME_LINES (f) != height)
5424 change_frame_size (f, height, width, 0, 1, 0);
5425 SET_FRAME_GARBAGED (f);
5426 cancel_mouse_face (f);
5428 /* Wait for the change of frame size to occur */
5429 f->want_fullscreen |= FULLSCREEN_WAIT;
5434 /* Call this to change the size of frame F's x-window.
5435 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
5436 for this size change and subsequent size changes.
5437 Otherwise we leave the window gravity unchanged. */
5439 void
5440 x_set_window_size (f, change_gravity, cols, rows)
5441 struct frame *f;
5442 int change_gravity;
5443 int cols, rows;
5445 int pixelwidth, pixelheight;
5447 BLOCK_INPUT;
5449 check_frame_size (f, &rows, &cols);
5450 f->scroll_bar_actual_width
5451 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
5453 compute_fringe_widths (f, 0);
5455 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols);
5456 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows);
5458 f->win_gravity = NorthWestGravity;
5459 x_wm_set_size_hint (f, (long) 0, 0);
5462 RECT rect;
5464 rect.left = rect.top = 0;
5465 rect.right = pixelwidth;
5466 rect.bottom = pixelheight;
5468 AdjustWindowRect(&rect, f->output_data.w32->dwStyle,
5469 FRAME_EXTERNAL_MENU_BAR (f));
5471 my_set_window_pos (FRAME_W32_WINDOW (f),
5472 NULL,
5473 0, 0,
5474 rect.right - rect.left,
5475 rect.bottom - rect.top,
5476 SWP_NOZORDER | SWP_NOMOVE | SWP_NOACTIVATE);
5479 /* Now, strictly speaking, we can't be sure that this is accurate,
5480 but the window manager will get around to dealing with the size
5481 change request eventually, and we'll hear how it went when the
5482 ConfigureNotify event gets here.
5484 We could just not bother storing any of this information here,
5485 and let the ConfigureNotify event set everything up, but that
5486 might be kind of confusing to the Lisp code, since size changes
5487 wouldn't be reported in the frame parameters until some random
5488 point in the future when the ConfigureNotify event arrives.
5490 We pass 1 for DELAY since we can't run Lisp code inside of
5491 a BLOCK_INPUT. */
5492 change_frame_size (f, rows, cols, 0, 1, 0);
5493 FRAME_PIXEL_WIDTH (f) = pixelwidth;
5494 FRAME_PIXEL_HEIGHT (f) = pixelheight;
5496 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
5497 receive in the ConfigureNotify event; if we get what we asked
5498 for, then the event won't cause the screen to become garbaged, so
5499 we have to make sure to do it here. */
5500 SET_FRAME_GARBAGED (f);
5502 /* If cursor was outside the new size, mark it as off. */
5503 mark_window_cursors_off (XWINDOW (f->root_window));
5505 /* Clear out any recollection of where the mouse highlighting was,
5506 since it might be in a place that's outside the new frame size.
5507 Actually checking whether it is outside is a pain in the neck,
5508 so don't try--just let the highlighting be done afresh with new size. */
5509 cancel_mouse_face (f);
5511 UNBLOCK_INPUT;
5514 /* Mouse warping. */
5516 void x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y);
5518 void
5519 x_set_mouse_position (f, x, y)
5520 struct frame *f;
5521 int x, y;
5523 int pix_x, pix_y;
5525 pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2;
5526 pix_y = FRAME_LINE_TO_PIXEL_Y (f, y) + FRAME_LINE_HEIGHT (f) / 2;
5528 if (pix_x < 0) pix_x = 0;
5529 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
5531 if (pix_y < 0) pix_y = 0;
5532 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
5534 x_set_mouse_pixel_position (f, pix_x, pix_y);
5537 void
5538 x_set_mouse_pixel_position (f, pix_x, pix_y)
5539 struct frame *f;
5540 int pix_x, pix_y;
5542 RECT rect;
5543 POINT pt;
5545 BLOCK_INPUT;
5547 GetClientRect (FRAME_W32_WINDOW (f), &rect);
5548 pt.x = rect.left + pix_x;
5549 pt.y = rect.top + pix_y;
5550 ClientToScreen (FRAME_W32_WINDOW (f), &pt);
5552 SetCursorPos (pt.x, pt.y);
5554 UNBLOCK_INPUT;
5558 /* focus shifting, raising and lowering. */
5560 void
5561 x_focus_on_frame (f)
5562 struct frame *f;
5564 struct w32_display_info *dpyinfo = &one_w32_display_info;
5566 /* Give input focus to frame. */
5567 BLOCK_INPUT;
5568 #if 0
5569 /* Try not to change its Z-order if possible. */
5570 if (x_window_to_frame (dpyinfo, GetForegroundWindow ()))
5571 my_set_focus (f, FRAME_W32_WINDOW (f));
5572 else
5573 #endif
5574 my_set_foreground_window (FRAME_W32_WINDOW (f));
5575 UNBLOCK_INPUT;
5578 void
5579 x_unfocus_frame (f)
5580 struct frame *f;
5584 /* Raise frame F. */
5585 void
5586 x_raise_frame (f)
5587 struct frame *f;
5589 BLOCK_INPUT;
5591 /* Strictly speaking, raise-frame should only change the frame's Z
5592 order, leaving input focus unchanged. This is reasonable behaviour
5593 on X where the usual policy is point-to-focus. However, this
5594 behaviour would be very odd on Windows where the usual policy is
5595 click-to-focus.
5597 On X, if the mouse happens to be over the raised frame, it gets
5598 input focus anyway (so the window with focus will never be
5599 completely obscured) - if not, then just moving the mouse over it
5600 is sufficient to give it focus. On Windows, the user must actually
5601 click on the frame (preferrably the title bar so as not to move
5602 point), which is more awkward. Also, no other Windows program
5603 raises a window to the top but leaves another window (possibly now
5604 completely obscured) with input focus.
5606 Because there is a system setting on Windows that allows the user
5607 to choose the point to focus policy, we make the strict semantics
5608 optional, but by default we grab focus when raising. */
5610 if (NILP (Vw32_grab_focus_on_raise))
5612 /* The obvious call to my_set_window_pos doesn't work if Emacs is
5613 not already the foreground application: the frame is raised
5614 above all other frames belonging to us, but not above the
5615 current top window. To achieve that, we have to resort to this
5616 more cumbersome method. */
5618 HDWP handle = BeginDeferWindowPos (2);
5619 if (handle)
5621 DeferWindowPos (handle,
5622 FRAME_W32_WINDOW (f),
5623 HWND_TOP,
5624 0, 0, 0, 0,
5625 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
5627 DeferWindowPos (handle,
5628 GetForegroundWindow (),
5629 FRAME_W32_WINDOW (f),
5630 0, 0, 0, 0,
5631 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
5633 EndDeferWindowPos (handle);
5636 else
5638 my_set_foreground_window (FRAME_W32_WINDOW (f));
5641 UNBLOCK_INPUT;
5644 /* Lower frame F. */
5645 void
5646 x_lower_frame (f)
5647 struct frame *f;
5649 BLOCK_INPUT;
5650 my_set_window_pos (FRAME_W32_WINDOW (f),
5651 HWND_BOTTOM,
5652 0, 0, 0, 0,
5653 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
5654 UNBLOCK_INPUT;
5657 static void
5658 w32_frame_raise_lower (f, raise_flag)
5659 FRAME_PTR f;
5660 int raise_flag;
5662 if (! FRAME_W32_P (f))
5663 return;
5665 if (raise_flag)
5666 x_raise_frame (f);
5667 else
5668 x_lower_frame (f);
5671 /* Change of visibility. */
5673 /* This tries to wait until the frame is really visible.
5674 However, if the window manager asks the user where to position
5675 the frame, this will return before the user finishes doing that.
5676 The frame will not actually be visible at that time,
5677 but it will become visible later when the window manager
5678 finishes with it. */
5680 void
5681 x_make_frame_visible (f)
5682 struct frame *f;
5684 Lisp_Object type;
5686 BLOCK_INPUT;
5688 type = x_icon_type (f);
5689 if (!NILP (type))
5690 x_bitmap_icon (f, type);
5692 if (! FRAME_VISIBLE_P (f))
5694 /* We test FRAME_GARBAGED_P here to make sure we don't
5695 call x_set_offset a second time
5696 if we get to x_make_frame_visible a second time
5697 before the window gets really visible. */
5698 if (! FRAME_ICONIFIED_P (f)
5699 && ! f->output_data.w32->asked_for_visible)
5701 RECT workarea_rect;
5702 RECT window_rect;
5704 /* Adjust vertical window position in order to avoid being
5705 covered by a task bar placed at the bottom of the desktop. */
5706 SystemParametersInfo(SPI_GETWORKAREA, 0, &workarea_rect, 0);
5707 GetWindowRect(FRAME_W32_WINDOW(f), &window_rect);
5708 if (window_rect.bottom > workarea_rect.bottom
5709 && window_rect.top > workarea_rect.top)
5710 f->top_pos = max (window_rect.top
5711 - window_rect.bottom + workarea_rect.bottom,
5712 workarea_rect.top);
5714 x_set_offset (f, f->left_pos, f->top_pos, 0);
5717 f->output_data.w32->asked_for_visible = 1;
5719 /* my_show_window (f, FRAME_W32_WINDOW (f), f->async_iconified ? SW_RESTORE : SW_SHOW); */
5720 my_show_window (f, FRAME_W32_WINDOW (f), SW_SHOWNORMAL);
5723 /* Synchronize to ensure Emacs knows the frame is visible
5724 before we do anything else. We do this loop with input not blocked
5725 so that incoming events are handled. */
5727 Lisp_Object frame;
5728 int count;
5730 /* This must come after we set COUNT. */
5731 UNBLOCK_INPUT;
5733 XSETFRAME (frame, f);
5735 /* Wait until the frame is visible. Process X events until a
5736 MapNotify event has been seen, or until we think we won't get a
5737 MapNotify at all.. */
5738 for (count = input_signal_count + 10;
5739 input_signal_count < count && !FRAME_VISIBLE_P (f);)
5741 /* Force processing of queued events. */
5742 /* TODO: x_sync equivalent? */
5744 /* Machines that do polling rather than SIGIO have been observed
5745 to go into a busy-wait here. So we'll fake an alarm signal
5746 to let the handler know that there's something to be read.
5747 We used to raise a real alarm, but it seems that the handler
5748 isn't always enabled here. This is probably a bug. */
5749 if (input_polling_used ())
5751 /* It could be confusing if a real alarm arrives while processing
5752 the fake one. Turn it off and let the handler reset it. */
5753 int old_poll_suppress_count = poll_suppress_count;
5754 poll_suppress_count = 1;
5755 poll_for_input_1 ();
5756 poll_suppress_count = old_poll_suppress_count;
5759 FRAME_SAMPLE_VISIBILITY (f);
5763 /* Change from mapped state to withdrawn state. */
5765 /* Make the frame visible (mapped and not iconified). */
5767 x_make_frame_invisible (f)
5768 struct frame *f;
5770 /* Don't keep the highlight on an invisible frame. */
5771 if (FRAME_W32_DISPLAY_INFO (f)->x_highlight_frame == f)
5772 FRAME_W32_DISPLAY_INFO (f)->x_highlight_frame = 0;
5774 BLOCK_INPUT;
5776 my_show_window (f, FRAME_W32_WINDOW (f), SW_HIDE);
5778 /* We can't distinguish this from iconification
5779 just by the event that we get from the server.
5780 So we can't win using the usual strategy of letting
5781 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
5782 and synchronize with the server to make sure we agree. */
5783 f->visible = 0;
5784 FRAME_ICONIFIED_P (f) = 0;
5785 f->async_visible = 0;
5786 f->async_iconified = 0;
5788 UNBLOCK_INPUT;
5791 /* Change window state from mapped to iconified. */
5793 void
5794 x_iconify_frame (f)
5795 struct frame *f;
5797 Lisp_Object type;
5799 /* Don't keep the highlight on an invisible frame. */
5800 if (FRAME_W32_DISPLAY_INFO (f)->x_highlight_frame == f)
5801 FRAME_W32_DISPLAY_INFO (f)->x_highlight_frame = 0;
5803 if (f->async_iconified)
5804 return;
5806 BLOCK_INPUT;
5808 type = x_icon_type (f);
5809 if (!NILP (type))
5810 x_bitmap_icon (f, type);
5812 /* Simulate the user minimizing the frame. */
5813 SendMessage (FRAME_W32_WINDOW (f), WM_SYSCOMMAND, SC_MINIMIZE, 0);
5815 UNBLOCK_INPUT;
5819 /* Free X resources of frame F. */
5821 void
5822 x_free_frame_resources (f)
5823 struct frame *f;
5825 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
5827 BLOCK_INPUT;
5829 if (FRAME_W32_WINDOW (f))
5830 my_destroy_window (f, FRAME_W32_WINDOW (f));
5832 free_frame_menubar (f);
5834 unload_color (f, f->output_data.x->foreground_pixel);
5835 unload_color (f, f->output_data.x->background_pixel);
5836 unload_color (f, f->output_data.w32->cursor_pixel);
5837 unload_color (f, f->output_data.w32->cursor_foreground_pixel);
5838 unload_color (f, f->output_data.w32->border_pixel);
5839 unload_color (f, f->output_data.w32->mouse_pixel);
5840 if (f->output_data.w32->white_relief.allocated_p)
5841 unload_color (f, f->output_data.w32->white_relief.pixel);
5842 if (f->output_data.w32->black_relief.allocated_p)
5843 unload_color (f, f->output_data.w32->black_relief.pixel);
5845 if (FRAME_FACE_CACHE (f))
5846 free_frame_faces (f);
5848 xfree (f->output_data.w32);
5849 f->output_data.w32 = NULL;
5851 if (f == dpyinfo->w32_focus_frame)
5852 dpyinfo->w32_focus_frame = 0;
5853 if (f == dpyinfo->w32_focus_event_frame)
5854 dpyinfo->w32_focus_event_frame = 0;
5855 if (f == dpyinfo->x_highlight_frame)
5856 dpyinfo->x_highlight_frame = 0;
5858 if (f == dpyinfo->mouse_face_mouse_frame)
5860 dpyinfo->mouse_face_beg_row
5861 = dpyinfo->mouse_face_beg_col = -1;
5862 dpyinfo->mouse_face_end_row
5863 = dpyinfo->mouse_face_end_col = -1;
5864 dpyinfo->mouse_face_window = Qnil;
5865 dpyinfo->mouse_face_deferred_gc = 0;
5866 dpyinfo->mouse_face_mouse_frame = 0;
5869 UNBLOCK_INPUT;
5873 /* Destroy the window of frame F. */
5875 x_destroy_window (f)
5876 struct frame *f;
5878 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
5880 x_free_frame_resources (f);
5882 dpyinfo->reference_count--;
5886 /* Setting window manager hints. */
5888 /* Set the normal size hints for the window manager, for frame F.
5889 FLAGS is the flags word to use--or 0 meaning preserve the flags
5890 that the window now has.
5891 If USER_POSITION is nonzero, we set the USPosition
5892 flag (this is useful when FLAGS is 0). */
5893 void
5894 x_wm_set_size_hint (f, flags, user_position)
5895 struct frame *f;
5896 long flags;
5897 int user_position;
5899 Window window = FRAME_W32_WINDOW (f);
5901 enter_crit ();
5903 SetWindowLong (window, WND_FONTWIDTH_INDEX, FRAME_COLUMN_WIDTH (f));
5904 SetWindowLong (window, WND_LINEHEIGHT_INDEX, FRAME_LINE_HEIGHT (f));
5905 SetWindowLong (window, WND_BORDER_INDEX, FRAME_INTERNAL_BORDER_WIDTH (f));
5906 SetWindowLong (window, WND_SCROLLBAR_INDEX, f->scroll_bar_actual_width);
5908 leave_crit ();
5911 /* Window manager things */
5912 void
5913 x_wm_set_icon_position (f, icon_x, icon_y)
5914 struct frame *f;
5915 int icon_x, icon_y;
5917 #if 0
5918 Window window = FRAME_W32_WINDOW (f);
5920 f->display.x->wm_hints.flags |= IconPositionHint;
5921 f->display.x->wm_hints.icon_x = icon_x;
5922 f->display.x->wm_hints.icon_y = icon_y;
5924 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->display.x->wm_hints);
5925 #endif
5929 /***********************************************************************
5930 Fonts
5931 ***********************************************************************/
5933 /* The following functions are listed here to help diff stay in step
5934 with xterm.c. See w32fns.c for definitions.
5936 x_get_font_info (f, font_idx)
5937 x_list_fonts (f, pattern, size, maxnames)
5941 #if GLYPH_DEBUG
5943 /* Check that FONT is valid on frame F. It is if it can be found in F's
5944 font table. */
5946 static void
5947 x_check_font (f, font)
5948 struct frame *f;
5949 XFontStruct *font;
5951 int i;
5952 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
5954 xassert (font != NULL);
5956 for (i = 0; i < dpyinfo->n_fonts; i++)
5957 if (dpyinfo->font_table[i].name
5958 && font == dpyinfo->font_table[i].font)
5959 break;
5961 xassert (i < dpyinfo->n_fonts);
5964 #endif /* GLYPH_DEBUG != 0 */
5966 /* Set *W to the minimum width, *H to the minimum font height of FONT.
5967 Note: There are (broken) X fonts out there with invalid XFontStruct
5968 min_bounds contents. For example, handa@etl.go.jp reports that
5969 "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1" fonts
5970 have font->min_bounds.width == 0. */
5972 static INLINE void
5973 x_font_min_bounds (font, w, h)
5974 XFontStruct *font;
5975 int *w, *h;
5978 * TODO: Windows does not appear to offer min bound, only
5979 * average and maximum width, and maximum height.
5981 *h = FONT_HEIGHT (font);
5982 *w = FONT_WIDTH (font);
5986 /* Compute the smallest character width and smallest font height over
5987 all fonts available on frame F. Set the members smallest_char_width
5988 and smallest_font_height in F's x_display_info structure to
5989 the values computed. Value is non-zero if smallest_font_height or
5990 smallest_char_width become smaller than they were before. */
5993 x_compute_min_glyph_bounds (f)
5994 struct frame *f;
5996 int i;
5997 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
5998 XFontStruct *font;
5999 int old_width = dpyinfo->smallest_char_width;
6000 int old_height = dpyinfo->smallest_font_height;
6002 dpyinfo->smallest_font_height = 100000;
6003 dpyinfo->smallest_char_width = 100000;
6005 for (i = 0; i < dpyinfo->n_fonts; ++i)
6006 if (dpyinfo->font_table[i].name)
6008 struct font_info *fontp = dpyinfo->font_table + i;
6009 int w, h;
6011 font = (XFontStruct *) fontp->font;
6012 xassert (font != (XFontStruct *) ~0);
6013 x_font_min_bounds (font, &w, &h);
6015 dpyinfo->smallest_font_height = min (dpyinfo->smallest_font_height, h);
6016 dpyinfo->smallest_char_width = min (dpyinfo->smallest_char_width, w);
6019 xassert (dpyinfo->smallest_char_width > 0
6020 && dpyinfo->smallest_font_height > 0);
6022 return (dpyinfo->n_fonts == 1
6023 || dpyinfo->smallest_char_width < old_width
6024 || dpyinfo->smallest_font_height < old_height);
6027 /* The following functions are listed here to help diff stay in step
6028 with xterm.c. See w32fns.c for definitions.
6030 x_load_font (f, fontname, size)
6031 x_query_font (f, fontname)
6032 x_find_ccl_program (fontp)
6036 /***********************************************************************
6037 Initialization
6038 ***********************************************************************/
6040 static int w32_initialized = 0;
6042 void
6043 w32_initialize_display_info (display_name)
6044 Lisp_Object display_name;
6046 struct w32_display_info *dpyinfo = &one_w32_display_info;
6048 bzero (dpyinfo, sizeof (*dpyinfo));
6050 /* Put it on w32_display_name_list. */
6051 w32_display_name_list = Fcons (Fcons (display_name, Qnil),
6052 w32_display_name_list);
6053 dpyinfo->name_list_element = XCAR (w32_display_name_list);
6055 dpyinfo->w32_id_name
6056 = (char *) xmalloc (SCHARS (Vinvocation_name)
6057 + SCHARS (Vsystem_name)
6058 + 2);
6059 sprintf (dpyinfo->w32_id_name, "%s@%s",
6060 SDATA (Vinvocation_name), SDATA (Vsystem_name));
6062 /* Default Console mode values - overridden when running in GUI mode
6063 with values obtained from system metrics. */
6064 dpyinfo->resx = 1;
6065 dpyinfo->resy = 1;
6066 dpyinfo->height_in = 1;
6067 dpyinfo->width_in = 1;
6068 dpyinfo->n_planes = 1;
6069 dpyinfo->n_cbits = 4;
6070 dpyinfo->n_fonts = 0;
6071 dpyinfo->smallest_font_height = 1;
6072 dpyinfo->smallest_char_width = 1;
6074 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
6075 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
6076 dpyinfo->mouse_face_face_id = DEFAULT_FACE_ID;
6077 dpyinfo->mouse_face_window = Qnil;
6078 dpyinfo->mouse_face_overlay = Qnil;
6079 dpyinfo->mouse_face_hidden = 0;
6081 dpyinfo->vertical_scroll_bar_cursor = w32_load_cursor (IDC_ARROW);
6082 /* TODO: dpyinfo->gray */
6086 /* Create an xrdb-style database of resources to supercede registry settings.
6087 The database is just a concatenation of C strings, finished by an additional
6088 \0. The string are submitted to some basic normalization, so
6090 [ *]option[ *]:[ *]value...
6092 becomes
6094 option:value...
6096 but any whitespace following value is not removed. */
6098 static char *
6099 w32_make_rdb (xrm_option)
6100 char *xrm_option;
6102 char *buffer = xmalloc (strlen (xrm_option) + 2);
6103 char *current = buffer;
6104 char ch;
6105 int in_option = 1;
6106 int before_value = 0;
6108 do {
6109 ch = *xrm_option++;
6111 if (ch == '\n')
6113 *current++ = '\0';
6114 in_option = 1;
6115 before_value = 0;
6117 else if (ch != ' ')
6119 *current++ = ch;
6120 if (in_option && (ch == ':'))
6122 in_option = 0;
6123 before_value = 1;
6125 else if (before_value)
6127 before_value = 0;
6130 else if (!(in_option || before_value))
6132 *current++ = ch;
6134 } while (ch);
6136 *current = '\0';
6138 return buffer;
6141 struct w32_display_info *
6142 w32_term_init (display_name, xrm_option, resource_name)
6143 Lisp_Object display_name;
6144 char *xrm_option;
6145 char *resource_name;
6147 struct w32_display_info *dpyinfo;
6148 HDC hdc;
6150 BLOCK_INPUT;
6152 if (!w32_initialized)
6154 w32_initialize ();
6155 w32_initialized = 1;
6158 w32_initialize_display_info (display_name);
6160 dpyinfo = &one_w32_display_info;
6162 dpyinfo->xrdb = xrm_option ? w32_make_rdb (xrm_option) : NULL;
6164 /* Put this display on the chain. */
6165 dpyinfo->next = x_display_list;
6166 x_display_list = dpyinfo;
6168 hdc = GetDC (GetDesktopWindow ());
6170 dpyinfo->height = GetDeviceCaps (hdc, VERTRES);
6171 dpyinfo->width = GetDeviceCaps (hdc, HORZRES);
6172 dpyinfo->root_window = GetDesktopWindow ();
6173 dpyinfo->n_planes = GetDeviceCaps (hdc, PLANES);
6174 dpyinfo->n_cbits = GetDeviceCaps (hdc, BITSPIXEL);
6175 dpyinfo->resx = GetDeviceCaps (hdc, LOGPIXELSX);
6176 dpyinfo->resy = GetDeviceCaps (hdc, LOGPIXELSY);
6177 dpyinfo->has_palette = GetDeviceCaps (hdc, RASTERCAPS) & RC_PALETTE;
6178 dpyinfo->image_cache = make_image_cache ();
6179 dpyinfo->height_in = dpyinfo->height / dpyinfo->resx;
6180 dpyinfo->width_in = dpyinfo->width / dpyinfo->resy;
6181 ReleaseDC (GetDesktopWindow (), hdc);
6183 /* initialise palette with white and black */
6185 XColor color;
6186 w32_defined_color (0, "white", &color, 1);
6187 w32_defined_color (0, "black", &color, 1);
6190 /* Create Fringe Bitmaps and store them for later use.
6192 On W32, bitmaps are all unsigned short, as Windows requires
6193 bitmap data to be Word aligned. For some reason they are
6194 horizontally reflected compared to how they appear on X, so we
6195 need to bitswap and convert to unsigned shorts before creating
6196 the bitmaps. */
6197 w32_init_fringe ();
6199 #ifndef F_SETOWN_BUG
6200 #ifdef F_SETOWN
6201 #ifdef F_SETOWN_SOCK_NEG
6202 /* stdin is a socket here */
6203 fcntl (connection, F_SETOWN, -getpid ());
6204 #else /* ! defined (F_SETOWN_SOCK_NEG) */
6205 fcntl (connection, F_SETOWN, getpid ());
6206 #endif /* ! defined (F_SETOWN_SOCK_NEG) */
6207 #endif /* ! defined (F_SETOWN) */
6208 #endif /* F_SETOWN_BUG */
6210 #ifdef SIGIO
6211 if (interrupt_input)
6212 init_sigio (connection);
6213 #endif /* ! defined (SIGIO) */
6215 UNBLOCK_INPUT;
6217 return dpyinfo;
6220 /* Get rid of display DPYINFO, assuming all frames are already gone. */
6222 void
6223 x_delete_display (dpyinfo)
6224 struct w32_display_info *dpyinfo;
6226 /* Discard this display from w32_display_name_list and w32_display_list.
6227 We can't use Fdelq because that can quit. */
6228 if (! NILP (w32_display_name_list)
6229 && EQ (XCAR (w32_display_name_list), dpyinfo->name_list_element))
6230 w32_display_name_list = XCDR (w32_display_name_list);
6231 else
6233 Lisp_Object tail;
6235 tail = w32_display_name_list;
6236 while (CONSP (tail) && CONSP (XCDR (tail)))
6238 if (EQ (XCAR (XCDR (tail)), dpyinfo->name_list_element))
6240 XSETCDR (tail, XCDR (XCDR (tail)));
6241 break;
6243 tail = XCDR (tail);
6247 /* free palette table */
6249 struct w32_palette_entry * plist;
6251 plist = dpyinfo->color_list;
6252 while (plist)
6254 struct w32_palette_entry * pentry = plist;
6255 plist = plist->next;
6256 xfree (pentry);
6258 dpyinfo->color_list = NULL;
6259 if (dpyinfo->palette)
6260 DeleteObject(dpyinfo->palette);
6262 xfree (dpyinfo->font_table);
6263 xfree (dpyinfo->w32_id_name);
6265 w32_reset_fringes ();
6268 /* Set up use of W32. */
6270 DWORD w32_msg_worker ();
6272 void
6273 x_flush (struct frame * f)
6274 { /* Nothing to do */ }
6276 extern frame_parm_handler w32_frame_parm_handlers[];
6278 static struct redisplay_interface w32_redisplay_interface =
6280 w32_frame_parm_handlers,
6281 x_produce_glyphs,
6282 x_write_glyphs,
6283 x_insert_glyphs,
6284 x_clear_end_of_line,
6285 x_scroll_run,
6286 x_after_update_window_line,
6287 x_update_window_begin,
6288 x_update_window_end,
6289 x_cursor_to,
6290 x_flush,
6291 0, /* flush_display_optional */
6292 x_clear_window_mouse_face,
6293 w32_get_glyph_overhangs,
6294 x_fix_overlapping_area,
6295 w32_draw_fringe_bitmap,
6296 w32_define_fringe_bitmap,
6297 w32_destroy_fringe_bitmap,
6298 w32_per_char_metric,
6299 w32_encode_char,
6300 NULL, /* w32_compute_glyph_string_overhangs */
6301 x_draw_glyph_string,
6302 w32_define_frame_cursor,
6303 w32_clear_frame_area,
6304 w32_draw_window_cursor,
6305 w32_draw_vertical_window_border,
6306 w32_shift_glyphs_for_insert
6309 void
6310 w32_initialize ()
6312 rif = &w32_redisplay_interface;
6314 /* MSVC does not type K&R functions with no arguments correctly, and
6315 so we must explicitly cast them. */
6316 clear_frame_hook = (void (*)(void)) x_clear_frame;
6317 ring_bell_hook = (void (*)(void)) w32_ring_bell;
6318 update_begin_hook = x_update_begin;
6319 update_end_hook = x_update_end;
6321 read_socket_hook = w32_read_socket;
6323 frame_up_to_date_hook = w32_frame_up_to_date;
6325 mouse_position_hook = w32_mouse_position;
6326 frame_rehighlight_hook = w32_frame_rehighlight;
6327 frame_raise_lower_hook = w32_frame_raise_lower;
6328 set_vertical_scroll_bar_hook = w32_set_vertical_scroll_bar;
6329 condemn_scroll_bars_hook = w32_condemn_scroll_bars;
6330 redeem_scroll_bar_hook = w32_redeem_scroll_bar;
6331 judge_scroll_bars_hook = w32_judge_scroll_bars;
6333 scroll_region_ok = 1; /* we'll scroll partial frames */
6334 char_ins_del_ok = 1;
6335 line_ins_del_ok = 1; /* we'll just blt 'em */
6336 fast_clear_end_of_line = 1; /* X does this well */
6337 memory_below_frame = 0; /* we don't remember what scrolls
6338 off the bottom */
6339 baud_rate = 19200;
6341 w32_system_caret_hwnd = NULL;
6342 w32_system_caret_height = 0;
6343 w32_system_caret_x = 0;
6344 w32_system_caret_y = 0;
6346 /* Initialize w32_use_visible_system_caret based on whether a screen
6347 reader is in use. */
6348 if (!SystemParametersInfo (SPI_GETSCREENREADER, 0,
6349 &w32_use_visible_system_caret, 0))
6350 w32_use_visible_system_caret = 0;
6352 last_tool_bar_item = -1;
6353 any_help_event_p = 0;
6355 /* Initialize input mode: interrupt_input off, no flow control, allow
6356 8 bit character input, standard quit char. */
6357 Fset_input_mode (Qnil, Qnil, make_number (2), Qnil);
6359 /* Create the window thread - it will terminate itself or when the app terminates */
6361 init_crit ();
6363 dwMainThreadId = GetCurrentThreadId ();
6364 DuplicateHandle (GetCurrentProcess (), GetCurrentThread (),
6365 GetCurrentProcess (), &hMainThread, 0, TRUE, DUPLICATE_SAME_ACCESS);
6367 /* Wait for thread to start */
6370 MSG msg;
6372 PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE);
6374 hWindowsThread = CreateThread (NULL, 0,
6375 (LPTHREAD_START_ROUTINE) w32_msg_worker,
6376 0, 0, &dwWindowsThreadId);
6378 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
6381 /* It is desirable that mainThread should have the same notion of
6382 focus window and active window as windowsThread. Unfortunately, the
6383 following call to AttachThreadInput, which should do precisely what
6384 we need, causes major problems when Emacs is linked as a console
6385 program. Unfortunately, we have good reasons for doing that, so
6386 instead we need to send messages to windowsThread to make some API
6387 calls for us (ones that affect, or depend on, the active/focus
6388 window state. */
6389 #ifdef ATTACH_THREADS
6390 AttachThreadInput (dwMainThreadId, dwWindowsThreadId, TRUE);
6391 #endif
6393 /* Load system settings. */
6395 UINT smoothing_type;
6396 BOOL smoothing_enabled;
6398 /* If using proportional scroll bars, ensure handle is at least 5 pixels;
6399 otherwise use the fixed height. */
6400 vertical_scroll_bar_min_handle = 5;
6402 /* For either kind of scroll bar, take account of the arrows; these
6403 effectively form the border of the main scroll bar range. */
6404 vertical_scroll_bar_top_border = vertical_scroll_bar_bottom_border
6405 = GetSystemMetrics (SM_CYVSCROLL);
6407 /* Constants that are not always defined by the system headers
6408 since they only exist on certain versions of Windows. */
6409 #ifndef SPI_GETFONTSMOOTHING
6410 #define SPI_GETFONTSMOOTHING 0x4A
6411 #endif
6412 #ifndef SPI_GETFONTSMOOTHINGTYPE
6413 #define SPI_GETFONTSMOOTHINGTYPE 0x0200A
6414 #endif
6415 #ifndef FE_FONTSMOOTHINGCLEARTYPE
6416 #define FE_FONTSMOOTHINGCLEARTYPE 0x2
6417 #endif
6419 /* Determine if Cleartype is in use. Used to enable a hack in
6420 the char metric calculations which adds extra pixels to
6421 compensate for the "sub-pixels" that are not counted by the
6422 system APIs. */
6423 cleartype_active =
6424 SystemParametersInfo (SPI_GETFONTSMOOTHING, 0, &smoothing_enabled, 0)
6425 && smoothing_enabled
6426 && SystemParametersInfo (SPI_GETFONTSMOOTHINGTYPE, 0, &smoothing_type, 0)
6427 && smoothing_type == FE_FONTSMOOTHINGCLEARTYPE;
6431 void
6432 syms_of_w32term ()
6434 staticpro (&w32_display_name_list);
6435 w32_display_name_list = Qnil;
6437 staticpro (&last_mouse_scroll_bar);
6438 last_mouse_scroll_bar = Qnil;
6440 staticpro (&Qvendor_specific_keysyms);
6441 Qvendor_specific_keysyms = intern ("vendor-specific-keysyms");
6443 DEFVAR_INT ("w32-num-mouse-buttons",
6444 &w32_num_mouse_buttons,
6445 doc: /* Number of physical mouse buttons. */);
6446 w32_num_mouse_buttons = 2;
6448 DEFVAR_LISP ("w32-swap-mouse-buttons",
6449 &Vw32_swap_mouse_buttons,
6450 doc: /* Swap the mapping of middle and right mouse buttons.
6451 When nil, middle button is mouse-2 and right button is mouse-3. */);
6452 Vw32_swap_mouse_buttons = Qnil;
6454 DEFVAR_LISP ("w32-grab-focus-on-raise",
6455 &Vw32_grab_focus_on_raise,
6456 doc: /* Raised frame grabs input focus.
6457 When t, `raise-frame' grabs input focus as well. This fits well
6458 with the normal Windows click-to-focus policy, but might not be
6459 desirable when using a point-to-focus policy. */);
6460 Vw32_grab_focus_on_raise = Qt;
6462 DEFVAR_LISP ("w32-capslock-is-shiftlock",
6463 &Vw32_capslock_is_shiftlock,
6464 doc: /* Apply CapsLock state to non character input keys.
6465 When nil, CapsLock only affects normal character input keys. */);
6466 Vw32_capslock_is_shiftlock = Qnil;
6468 DEFVAR_LISP ("w32-recognize-altgr",
6469 &Vw32_recognize_altgr,
6470 doc: /* Recognize right-alt and left-ctrl as AltGr.
6471 When nil, the right-alt and left-ctrl key combination is
6472 interpreted normally. */);
6473 Vw32_recognize_altgr = Qt;
6475 DEFVAR_BOOL ("w32-enable-unicode-output",
6476 &w32_enable_unicode_output,
6477 doc: /* Enable the use of Unicode for text output if non-nil.
6478 Unicode output may prevent some third party applications for displaying
6479 Far-East Languages on Windows 95/98 from working properly.
6480 NT uses Unicode internally anyway, so this flag will probably have no
6481 affect on NT machines. */);
6482 w32_enable_unicode_output = 1;
6484 DEFVAR_BOOL ("w32-use-visible-system-caret",
6485 &w32_use_visible_system_caret,
6486 doc: /* Flag to make the system caret visible.
6487 When this is non-nil, Emacs will indicate the position of point by
6488 using the system caret instead of drawing its own cursor. Some screen
6489 reader software does not track the system cursor properly when it is
6490 invisible, and gets confused by Emacs drawing its own cursor, so this
6491 variable is initialized to t when Emacs detects that screen reader
6492 software is running as it starts up.
6494 When this variable is set, other variables affecting the appearance of
6495 the cursor have no effect. */);
6497 w32_use_visible_system_caret = 0;
6499 /* We don't yet support this, but defining this here avoids whining
6500 from cus-start.el and other places, like "M-x set-variable". */
6501 DEFVAR_BOOL ("x-use-underline-position-properties",
6502 &x_use_underline_position_properties,
6503 doc: /* *Non-nil means make use of UNDERLINE_POSITION font properties.
6504 nil means ignore them. If you encounter fonts with bogus
6505 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
6506 to 4.1, set this to nil.
6508 NOTE: Not supported on MS-Windows yet. */);
6509 x_use_underline_position_properties = 0;
6511 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars,
6512 doc: /* If not nil, Emacs uses toolkit scroll bars. */);
6513 Vx_toolkit_scroll_bars = Qt;
6515 staticpro (&last_mouse_motion_frame);
6516 last_mouse_motion_frame = Qnil;
6519 /* arch-tag: 5fa70624-ab86-499c-8a85-473958ee4646
6520 (do not change this comment) */