(construct_mouse_wheel): Result is a MOUSE_CLICK_EVENT. Scrolling down/up the
[emacs.git] / src / w32term.c
blob2900acf7f0a375edc3c1f577f8dd6403fce6e4f6
1 /* Implementation of GUI terminal on the Microsoft W32 API.
2 Copyright (C) 1989, 93, 94, 95, 96, 1997, 1998, 1999, 2000, 2001
3 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., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, 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 HBITMAP fringe_bmp[MAX_FRINGE_BITMAPS];
67 /* Non-nil means Emacs uses toolkit scroll bars. */
69 Lisp_Object Vx_toolkit_scroll_bars;
71 /* Temporary variables for w32_read_socket. */
73 static int last_mousemove_x = 0;
74 static int last_mousemove_y = 0;
76 /* Non-zero means that a HELP_EVENT has been generated since Emacs
77 start. */
79 static int any_help_event_p;
81 /* Last window where we saw the mouse. Used by mouse-autoselect-window. */
82 static Lisp_Object last_window;
84 extern unsigned int msh_mousewheel;
86 extern void free_frame_menubar ();
88 extern int w32_codepage_for_font (char *fontname);
89 extern Cursor w32_load_cursor (LPCTSTR name);
91 extern glyph_metric *w32_BDF_TextMetric(bdffont *fontp,
92 unsigned char *text, int dim);
93 extern Lisp_Object Vwindow_system;
95 #define x_any_window_to_frame x_window_to_frame
96 #define x_top_window_to_frame x_window_to_frame
99 /* This is display since w32 does not support multiple ones. */
100 struct w32_display_info one_w32_display_info;
101 struct w32_display_info *x_display_list;
103 /* This is a list of cons cells, each of the form (NAME . FONT-LIST-CACHE),
104 one for each element of w32_display_list and in the same order.
105 NAME is the name of the frame.
106 FONT-LIST-CACHE records previous values returned by x-list-fonts. */
107 Lisp_Object w32_display_name_list;
109 /* Frame being updated by update_frame. This is declared in term.c.
110 This is set by update_begin and looked at by all the
111 w32 functions. It is zero while not inside an update.
112 In that case, the w32 functions assume that `SELECTED_FRAME ()'
113 is the frame to apply to. */
114 extern struct frame *updating_frame;
116 /* This is a frame waiting to be autoraised, within w32_read_socket. */
117 struct frame *pending_autoraise_frame;
119 /* The handle of the frame that currently owns the system caret. */
120 HWND w32_system_caret_hwnd;
121 int w32_system_caret_height;
122 int w32_system_caret_x;
123 int w32_system_caret_y;
124 int w32_use_visible_system_caret;
126 /* Flag to enable Unicode output in case users wish to use programs
127 like Twinbridge on '95 rather than installed system level support
128 for Far East languages. */
129 int w32_enable_unicode_output;
131 DWORD dwWindowsThreadId = 0;
132 HANDLE hWindowsThread = NULL;
133 DWORD dwMainThreadId = 0;
134 HANDLE hMainThread = NULL;
136 #ifndef SIF_ALL
137 /* These definitions are new with Windows 95. */
138 #define SIF_RANGE 0x0001
139 #define SIF_PAGE 0x0002
140 #define SIF_POS 0x0004
141 #define SIF_DISABLENOSCROLL 0x0008
142 #define SIF_TRACKPOS 0x0010
143 #define SIF_ALL (SIF_RANGE | SIF_PAGE | SIF_POS | SIF_TRACKPOS)
145 typedef struct tagSCROLLINFO
147 UINT cbSize;
148 UINT fMask;
149 int nMin;
150 int nMax;
151 UINT nPage;
152 int nPos;
153 int nTrackPos;
154 } SCROLLINFO, FAR *LPSCROLLINFO;
155 typedef SCROLLINFO CONST FAR *LPCSCROLLINFO;
156 #endif /* SIF_ALL */
158 /* Dynamic linking to new proportional scroll bar functions. */
159 int (PASCAL *pfnSetScrollInfo) (HWND hwnd, int fnBar, LPSCROLLINFO lpsi, BOOL fRedraw);
160 BOOL (PASCAL *pfnGetScrollInfo) (HWND hwnd, int fnBar, LPSCROLLINFO lpsi);
162 int vertical_scroll_bar_min_handle;
163 int vertical_scroll_bar_top_border;
164 int vertical_scroll_bar_bottom_border;
166 int last_scroll_bar_drag_pos;
168 /* Mouse movement. */
170 /* Where the mouse was last time we reported a mouse event. */
172 static RECT last_mouse_glyph;
173 static Lisp_Object last_mouse_press_frame;
175 Lisp_Object Vw32_num_mouse_buttons;
177 Lisp_Object Vw32_swap_mouse_buttons;
179 /* Control whether x_raise_frame also sets input focus. */
180 Lisp_Object Vw32_grab_focus_on_raise;
182 /* Control whether Caps Lock affects non-ascii characters. */
183 Lisp_Object Vw32_capslock_is_shiftlock;
185 /* Control whether right-alt and left-ctrl should be recognized as AltGr. */
186 Lisp_Object Vw32_recognize_altgr;
188 /* The scroll bar in which the last motion event occurred.
190 If the last motion event occurred in a scroll bar, we set this
191 so w32_mouse_position can know whether to report a scroll bar motion or
192 an ordinary motion.
194 If the last motion event didn't occur in a scroll bar, we set this
195 to Qnil, to tell w32_mouse_position to return an ordinary motion event. */
196 static Lisp_Object last_mouse_scroll_bar;
197 static int last_mouse_scroll_bar_pos;
199 /* This is a hack. We would really prefer that w32_mouse_position would
200 return the time associated with the position it returns, but there
201 doesn't seem to be any way to wrest the time-stamp from the server
202 along with the position query. So, we just keep track of the time
203 of the last movement we received, and return that in hopes that
204 it's somewhat accurate. */
206 static Time last_mouse_movement_time;
208 /* Incremented by w32_read_socket whenever it really tries to read
209 events. */
211 #ifdef __STDC__
212 static int volatile input_signal_count;
213 #else
214 static int input_signal_count;
215 #endif
217 extern Lisp_Object Vcommand_line_args, Vsystem_name;
219 extern Lisp_Object Qface, Qmouse_face;
221 #ifndef USE_CRT_DLL
222 extern int errno;
223 #endif
225 /* A mask of extra modifier bits to put into every keyboard char. */
227 extern EMACS_INT extra_keyboard_modifiers;
229 static void x_update_window_end P_ ((struct window *, int, int));
230 void w32_delete_display P_ ((struct w32_display_info *));
231 static void w32_handle_tool_bar_click P_ ((struct frame *,
232 struct input_event *));
233 void w32_define_cursor P_ ((Window, Cursor));
235 void x_lower_frame P_ ((struct frame *));
236 void x_scroll_bar_clear P_ ((struct frame *));
237 void x_wm_set_size_hint P_ ((struct frame *, long, int));
238 void x_raise_frame P_ ((struct frame *));
239 void x_set_window_size P_ ((struct frame *, int, int, int));
240 void x_wm_set_window_state P_ ((struct frame *, int));
241 void x_wm_set_icon_pixmap P_ ((struct frame *, int));
242 void w32_initialize P_ ((void));
243 static void x_font_min_bounds P_ ((XFontStruct *, int *, int *));
244 int x_compute_min_glyph_bounds P_ ((struct frame *));
245 static void x_update_end P_ ((struct frame *));
246 static void w32_frame_up_to_date P_ ((struct frame *));
247 static void w32_set_terminal_modes P_ ((void));
248 static void w32_reset_terminal_modes P_ ((void));
249 static void x_clear_frame P_ ((void));
250 static void frame_highlight P_ ((struct frame *));
251 static void frame_unhighlight P_ ((struct frame *));
252 static void x_new_focus_frame P_ ((struct w32_display_info *,
253 struct frame *));
254 static void w32_frame_rehighlight P_ ((struct frame *));
255 static void x_frame_rehighlight P_ ((struct w32_display_info *));
256 static void x_draw_hollow_cursor P_ ((struct window *, struct glyph_row *));
257 static void x_draw_bar_cursor P_ ((struct window *, struct glyph_row *, int,
258 enum text_cursor_kinds));
259 static void w32_clip_to_row P_ ((struct window *, struct glyph_row *, HDC));
261 static Lisp_Object Qvendor_specific_keysyms;
264 /***********************************************************************
265 Debugging
266 ***********************************************************************/
268 #if 0
270 /* This is a function useful for recording debugging information about
271 the sequence of occurrences in this file. */
273 struct record
275 char *locus;
276 int type;
279 struct record event_record[100];
281 int event_record_index;
283 record_event (locus, type)
284 char *locus;
285 int type;
287 if (event_record_index == sizeof (event_record) / sizeof (struct record))
288 event_record_index = 0;
290 event_record[event_record_index].locus = locus;
291 event_record[event_record_index].type = type;
292 event_record_index++;
295 #endif /* 0 */
298 void
299 XChangeGC (void * ignore, XGCValues* gc, unsigned long mask,
300 XGCValues *xgcv)
302 if (mask & GCForeground)
303 gc->foreground = xgcv->foreground;
304 if (mask & GCBackground)
305 gc->background = xgcv->background;
306 if (mask & GCFont)
307 gc->font = xgcv->font;
310 XGCValues *XCreateGC (void * ignore, Window window, unsigned long mask,
311 XGCValues *xgcv)
313 XGCValues *gc = (XGCValues *) xmalloc (sizeof (XGCValues));
314 bzero (gc, sizeof (XGCValues));
316 XChangeGC (ignore, gc, mask, xgcv);
318 return gc;
321 void
322 XGetGCValues (void* ignore, XGCValues *gc,
323 unsigned long mask, XGCValues *xgcv)
325 XChangeGC (ignore, xgcv, mask, gc);
328 static void
329 w32_set_clip_rectangle (HDC hdc, RECT *rect)
331 if (rect)
333 HRGN clip_region = CreateRectRgnIndirect (rect);
334 SelectClipRgn (hdc, clip_region);
335 DeleteObject (clip_region);
337 else
338 SelectClipRgn (hdc, NULL);
342 /* Draw a hollow rectangle at the specified position. */
343 void
344 w32_draw_rectangle (HDC hdc, XGCValues *gc, int x, int y,
345 int width, int height)
347 HBRUSH hb, oldhb;
348 HPEN hp, oldhp;
350 hb = CreateSolidBrush (gc->background);
351 hp = CreatePen (PS_SOLID, 0, gc->foreground);
352 oldhb = SelectObject (hdc, hb);
353 oldhp = SelectObject (hdc, hp);
355 Rectangle (hdc, x, y, x + width, y + height);
357 SelectObject (hdc, oldhb);
358 SelectObject (hdc, oldhp);
359 DeleteObject (hb);
360 DeleteObject (hp);
363 /* Draw a filled rectangle at the specified position. */
364 void
365 w32_fill_rect (f, hdc, pix, lprect)
366 FRAME_PTR f;
367 HDC hdc;
368 COLORREF pix;
369 RECT * lprect;
371 HBRUSH hb;
373 hb = CreateSolidBrush (pix);
374 FillRect (hdc, lprect, hb);
375 DeleteObject (hb);
378 void
379 w32_clear_window (f)
380 FRAME_PTR f;
382 RECT rect;
383 HDC hdc = get_frame_dc (f);
385 /* Under certain conditions, this can be called at startup with
386 a console frame pointer before the GUI frame is created. An HDC
387 of 0 indicates this. */
388 if (hdc)
390 GetClientRect (FRAME_W32_WINDOW (f), &rect);
391 w32_clear_rect (f, hdc, &rect);
394 release_frame_dc (f, hdc);
398 /***********************************************************************
399 Starting and ending an update
400 ***********************************************************************/
402 /* Start an update of frame F. This function is installed as a hook
403 for update_begin, i.e. it is called when update_begin is called.
404 This function is called prior to calls to x_update_window_begin for
405 each window being updated. */
407 static void
408 x_update_begin (f)
409 struct frame *f;
411 struct w32_display_info *display_info = FRAME_W32_DISPLAY_INFO (f);
413 if (! FRAME_W32_P (f))
414 return;
416 /* Regenerate display palette before drawing if list of requested
417 colors has changed. */
418 if (display_info->regen_palette)
420 w32_regenerate_palette (f);
421 display_info->regen_palette = FALSE;
426 /* Start update of window W. Set the global variable updated_window
427 to the window being updated and set output_cursor to the cursor
428 position of W. */
430 static void
431 x_update_window_begin (w)
432 struct window *w;
434 struct frame *f = XFRAME (WINDOW_FRAME (w));
435 struct w32_display_info *display_info = FRAME_W32_DISPLAY_INFO (f);
437 /* Hide the system caret during an update. */
438 if (w32_use_visible_system_caret && w32_system_caret_hwnd)
440 SendMessage (w32_system_caret_hwnd, WM_EMACS_HIDE_CARET, 0, 0);
443 updated_window = w;
444 set_output_cursor (&w->cursor);
446 BLOCK_INPUT;
448 if (f == display_info->mouse_face_mouse_frame)
450 /* Don't do highlighting for mouse motion during the update. */
451 display_info->mouse_face_defer = 1;
453 /* If F needs to be redrawn, simply forget about any prior mouse
454 highlighting. */
455 if (FRAME_GARBAGED_P (f))
456 display_info->mouse_face_window = Qnil;
458 #if 0 /* Rows in a current matrix containing glyphs in mouse-face have
459 their mouse_face_p flag set, which means that they are always
460 unequal to rows in a desired matrix which never have that
461 flag set. So, rows containing mouse-face glyphs are never
462 scrolled, and we don't have to switch the mouse highlight off
463 here to prevent it from being scrolled. */
465 /* Can we tell that this update does not affect the window
466 where the mouse highlight is? If so, no need to turn off.
467 Likewise, don't do anything if the frame is garbaged;
468 in that case, the frame's current matrix that we would use
469 is all wrong, and we will redisplay that line anyway. */
470 if (!NILP (display_info->mouse_face_window)
471 && w == XWINDOW (display_info->mouse_face_window))
473 int i;
475 for (i = 0; i < w->desired_matrix->nrows; ++i)
476 if (MATRIX_ROW_ENABLED_P (w->desired_matrix, i))
477 break;
479 if (i < w->desired_matrix->nrows)
480 clear_mouse_face (display_info);
482 #endif /* 0 */
485 UNBLOCK_INPUT;
488 /* Draw a vertical window border from (x,y0) to (x,y1) */
490 static void
491 w32_draw_vertical_window_border (w, x, y0, y1)
492 struct window *w;
493 int x, y0, y1;
495 struct frame *f = XFRAME (WINDOW_FRAME (w));
496 RECT r;
497 HDC hdc;
499 r.left = x;
500 r.right = x + 1;
501 r.top = y0;
502 r.bottom = y1;
504 hdc = get_frame_dc (f);
505 w32_fill_rect (f, hdc, FRAME_FOREGROUND_PIXEL (f), &r);
506 release_frame_dc (f, hdc);
510 /* End update of window W (which is equal to updated_window).
512 Draw vertical borders between horizontally adjacent windows, and
513 display W's cursor if CURSOR_ON_P is non-zero.
515 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
516 glyphs in mouse-face were overwritten. In that case we have to
517 make sure that the mouse-highlight is properly redrawn.
519 W may be a menu bar pseudo-window in case we don't have X toolkit
520 support. Such windows don't have a cursor, so don't display it
521 here. */
523 static void
524 x_update_window_end (w, cursor_on_p, mouse_face_overwritten_p)
525 struct window *w;
526 int cursor_on_p, mouse_face_overwritten_p;
528 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (XFRAME (w->frame));
530 if (!w->pseudo_window_p)
532 BLOCK_INPUT;
534 if (cursor_on_p)
535 display_and_set_cursor (w, 1, output_cursor.hpos,
536 output_cursor.vpos,
537 output_cursor.x, output_cursor.y);
539 x_draw_vertical_border (w);
540 UNBLOCK_INPUT;
543 /* If a row with mouse-face was overwritten, arrange for
544 XTframe_up_to_date to redisplay the mouse highlight. */
545 if (mouse_face_overwritten_p)
547 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
548 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
549 dpyinfo->mouse_face_window = Qnil;
552 /* Unhide the caret. This won't actually show the cursor, unless it
553 was visible before the corresponding call to HideCaret in
554 x_update_window_begin. */
555 if (w32_use_visible_system_caret && w32_system_caret_hwnd)
557 SendMessage (w32_system_caret_hwnd, WM_EMACS_SHOW_CARET, 0, 0);
560 updated_window = NULL;
564 /* End update of frame F. This function is installed as a hook in
565 update_end. */
567 static void
568 x_update_end (f)
569 struct frame *f;
571 if (! FRAME_W32_P (f))
572 return;
574 /* Mouse highlight may be displayed again. */
575 FRAME_W32_DISPLAY_INFO (f)->mouse_face_defer = 0;
579 /* This function is called from various places in xdisp.c whenever a
580 complete update has been performed. The global variable
581 updated_window is not available here. */
583 static void
584 w32_frame_up_to_date (f)
585 struct frame *f;
587 if (FRAME_W32_P (f))
589 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
591 if (dpyinfo->mouse_face_deferred_gc
592 || f == dpyinfo->mouse_face_mouse_frame)
594 BLOCK_INPUT;
595 if (dpyinfo->mouse_face_mouse_frame)
596 note_mouse_highlight (dpyinfo->mouse_face_mouse_frame,
597 dpyinfo->mouse_face_mouse_x,
598 dpyinfo->mouse_face_mouse_y);
599 dpyinfo->mouse_face_deferred_gc = 0;
600 UNBLOCK_INPUT;
606 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
607 arrow bitmaps, or clear the fringes if no bitmaps are required
608 before DESIRED_ROW is made current. The window being updated is
609 found in updated_window. This function is called from
610 update_window_line only if it is known that there are differences
611 between bitmaps to be drawn between current row and DESIRED_ROW. */
613 static void
614 x_after_update_window_line (desired_row)
615 struct glyph_row *desired_row;
617 struct window *w = updated_window;
618 struct frame *f;
619 int width, height;
621 xassert (w);
623 if (!desired_row->mode_line_p && !w->pseudo_window_p)
625 BLOCK_INPUT;
626 draw_row_fringe_bitmaps (w, desired_row);
627 UNBLOCK_INPUT;
630 /* When a window has disappeared, make sure that no rest of
631 full-width rows stays visible in the internal border. Could
632 check here if updated_window is the leftmost/rightmost window,
633 but I guess it's not worth doing since vertically split windows
634 are almost never used, internal border is rarely set, and the
635 overhead is very small. */
636 if (windows_or_buffers_changed
637 && desired_row->full_width_p
638 && (f = XFRAME (w->frame),
639 width = FRAME_INTERNAL_BORDER_WIDTH (f),
640 width != 0)
641 && (height = desired_row->visible_height,
642 height > 0))
644 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
646 /* Internal border is drawn below the tool bar. */
647 if (WINDOWP (f->tool_bar_window)
648 && w == XWINDOW (f->tool_bar_window))
649 y -= width;
651 BLOCK_INPUT;
653 HDC hdc = get_frame_dc (f);
654 w32_clear_area (f, hdc, 0, y, width, height);
655 w32_clear_area (f, hdc, FRAME_PIXEL_WIDTH (f) - width,
656 y, width, height);
657 release_frame_dc (f, hdc);
659 UNBLOCK_INPUT;
664 /* Draw the bitmap WHICH in one of the left or right fringes of
665 window W. ROW is the glyph row for which to display the bitmap; it
666 determines the vertical position at which the bitmap has to be
667 drawn. */
669 static void
670 w32_draw_fringe_bitmap (w, row, p)
671 struct window *w;
672 struct glyph_row *row;
673 struct draw_fringe_bitmap_params *p;
675 struct frame *f = XFRAME (WINDOW_FRAME (w));
676 HDC hdc;
677 struct face *face = p->face;
679 hdc = get_frame_dc (f);
681 /* Must clip because of partially visible lines. */
682 w32_clip_to_row (w, row, hdc);
684 if (p->bx >= 0)
686 w32_fill_area (f, hdc, face->background,
687 p->bx, p->by, p->nx, p->ny);
690 if (p->which != NO_FRINGE_BITMAP)
692 HBITMAP pixmap = fringe_bmp[p->which];
693 HDC compat_hdc;
694 HANDLE horig_obj;
696 compat_hdc = CreateCompatibleDC (hdc);
697 SaveDC (hdc);
699 horig_obj = SelectObject (compat_hdc, pixmap);
700 SetTextColor (hdc, face->background);
701 SetBkColor (hdc, face->foreground);
703 BitBlt (hdc, p->x, p->y, p->wd, p->h,
704 compat_hdc, 0, p->dh,
705 SRCCOPY);
707 SelectObject (compat_hdc, horig_obj);
708 DeleteDC (compat_hdc);
709 RestoreDC (hdc, -1);
712 w32_set_clip_rectangle (hdc, NULL);
714 release_frame_dc (f, hdc);
718 /* This is called when starting Emacs and when restarting after
719 suspend. When starting Emacs, no window is mapped. And nothing
720 must be done to Emacs's own window if it is suspended (though that
721 rarely happens). */
723 static void
724 w32_set_terminal_modes (void)
728 /* This is called when exiting or suspending Emacs. Exiting will make
729 the W32 windows go away, and suspending requires no action. */
731 static void
732 w32_reset_terminal_modes (void)
738 /***********************************************************************
739 Display Iterator
740 ***********************************************************************/
742 /* Function prototypes of this page. */
744 static XCharStruct *w32_per_char_metric P_ ((XFontStruct *,
745 wchar_t *, int));
746 static int w32_encode_char P_ ((int, wchar_t *, struct font_info *, int *));
749 /* Get metrics of character CHAR2B in FONT. Value is always non-null.
750 If CHAR2B is not contained in FONT, the font's default character
751 metric is returned. */
753 static int
754 w32_bdf_per_char_metric (font, char2b, dim, pcm)
755 XFontStruct *font;
756 wchar_t *char2b;
757 int dim;
758 XCharStruct * pcm;
760 glyph_metric * bdf_metric;
761 char buf[2];
763 if (dim == 1)
764 buf[0] = (char)(*char2b);
765 else
767 buf[0] = XCHAR2B_BYTE1 (char2b);
768 buf[1] = XCHAR2B_BYTE2 (char2b);
771 bdf_metric = w32_BDF_TextMetric (font->bdf, buf, dim);
773 if (bdf_metric)
775 pcm->width = bdf_metric->dwidth;
776 pcm->lbearing = bdf_metric->bbox;
777 pcm->rbearing = bdf_metric->dwidth
778 - (bdf_metric->bbox + bdf_metric->bbw);
779 pcm->ascent = bdf_metric->bboy + bdf_metric->bbh;
780 pcm->descent = -bdf_metric->bboy;
782 return 1;
784 return 0;
788 static int
789 w32_native_per_char_metric (font, char2b, font_type, pcm)
790 XFontStruct *font;
791 wchar_t *char2b;
792 enum w32_char_font_type font_type;
793 XCharStruct * pcm;
795 HDC hdc = GetDC (NULL);
796 HFONT old_font;
797 BOOL retval = FALSE;
799 xassert (font && char2b);
800 xassert (font->hfont);
801 xassert (font_type == UNICODE_FONT || font_type == ANSI_FONT);
803 old_font = SelectObject (hdc, font->hfont);
805 if ((font->tm.tmPitchAndFamily & TMPF_TRUETYPE) != 0)
807 ABC char_widths;
809 if (font_type == UNICODE_FONT)
810 retval = GetCharABCWidthsW (hdc, *char2b, *char2b, &char_widths);
811 else
812 retval = GetCharABCWidthsA (hdc, *char2b, *char2b, &char_widths);
814 if (retval)
816 #if 0
817 /* Disabled until we can find a way to get the right results
818 on all versions of Windows. */
820 /* Don't trust the ABC widths. For synthesized fonts they are
821 wrong, and so is the result of GetCharWidth()! */
822 int real_width;
823 GetCharWidth (hdc, *char2b, *char2b, &real_width);
824 #endif
825 pcm->width = char_widths.abcA + char_widths.abcB + char_widths.abcC;
826 #if 0
827 /* As far as I can tell, this is the best way to determine what
828 ExtTextOut will do with the broken font. */
829 if (pcm->width != real_width)
830 pcm->width = (pcm->width + real_width) / 2;
831 #endif
832 pcm->lbearing = char_widths.abcA;
833 pcm->rbearing = char_widths.abcA + char_widths.abcB;
834 pcm->ascent = FONT_BASE (font);
835 pcm->descent = FONT_DESCENT (font);
839 if (!retval)
841 /* Either font is not a True-type font, or GetCharABCWidthsW
842 failed (it is not supported on Windows 9x for instance), so we
843 can't determine the full info we would like. All is not lost
844 though - we can call GetTextExtentPoint32 to get rbearing and
845 deduce width based on the font's per-string overhang. lbearing
846 is assumed to be zero. */
848 /* TODO: Some Thai characters (and other composites if Windows
849 supports them) do have lbearing, and report their total width
850 as zero. Need some way of handling them when
851 GetCharABCWidthsW fails. */
852 SIZE sz;
854 if (font_type == UNICODE_FONT)
855 retval = GetTextExtentPoint32W (hdc, char2b, 1, &sz);
856 else
857 retval = GetTextExtentPoint32A (hdc, (char*)char2b, 1, &sz);
859 if (retval)
861 pcm->width = sz.cx - font->tm.tmOverhang;
862 pcm->rbearing = sz.cx;
863 pcm->lbearing = 0;
864 pcm->ascent = FONT_BASE (font);
865 pcm->descent = FONT_DESCENT (font);
870 if (pcm->width == 0 && (pcm->rbearing - pcm->lbearing) == 0)
872 retval = FALSE;
875 SelectObject (hdc, old_font);
876 ReleaseDC (NULL, hdc);
878 return retval;
882 static XCharStruct *
883 w32_per_char_metric (font, char2b, font_type)
884 XFontStruct *font;
885 wchar_t *char2b;
886 int /* enum w32_char_font_type */ font_type;
888 /* The result metric information. */
889 XCharStruct *pcm;
890 BOOL retval;
892 xassert (font && char2b);
893 xassert (font_type != UNKNOWN_FONT);
895 /* Handle the common cases quickly. */
896 if (!font->bdf && font->per_char == NULL)
897 /* TODO: determine whether char2b exists in font? */
898 return &font->max_bounds;
899 else if (!font->bdf && *char2b < 128)
900 return &font->per_char[*char2b];
902 pcm = &font->scratch;
904 if (font_type == BDF_1D_FONT)
905 retval = w32_bdf_per_char_metric (font, char2b, 1, pcm);
906 else if (font_type == BDF_2D_FONT)
907 retval = w32_bdf_per_char_metric (font, char2b, 2, pcm);
908 else
909 retval = w32_native_per_char_metric (font, char2b, font_type, pcm);
911 if (retval)
912 return pcm;
914 return NULL;
917 void
918 w32_cache_char_metrics (font)
919 XFontStruct *font;
921 wchar_t char2b = L'x';
923 /* Cache char metrics for the common cases. */
924 if (font->bdf)
926 /* TODO: determine whether font is fixed-pitch. */
927 if (!w32_bdf_per_char_metric (font, &char2b, 1, &font->max_bounds))
929 /* Use the font width and height as max bounds, as not all BDF
930 fonts contain the letter 'x'. */
931 font->max_bounds.width = FONT_MAX_WIDTH (font);
932 font->max_bounds.lbearing = -font->bdf->llx;
933 font->max_bounds.rbearing = FONT_MAX_WIDTH (font) - font->bdf->urx;
934 font->max_bounds.ascent = FONT_BASE (font);
935 font->max_bounds.descent = FONT_DESCENT (font);
938 else
940 if (((font->tm.tmPitchAndFamily & TMPF_FIXED_PITCH) != 0)
941 /* Some fonts (eg DBCS fonts) are marked as fixed width even
942 though they contain characters of different widths. */
943 || (font->tm.tmMaxCharWidth != font->tm.tmAveCharWidth))
945 /* Font is not fixed pitch, so cache per_char info for the
946 ASCII characters. It would be much more work, and probably
947 not worth it, to cache other chars, since we may change
948 between using Unicode and ANSI text drawing functions at
949 run-time. */
950 int i;
952 font->per_char = xmalloc (128 * sizeof(XCharStruct));
953 for (i = 0; i < 128; i++)
955 char2b = i;
956 w32_native_per_char_metric (font, &char2b, ANSI_FONT,
957 &font->per_char[i]);
960 else
961 w32_native_per_char_metric (font, &char2b, ANSI_FONT,
962 &font->max_bounds);
967 /* Determine if a font is double byte. */
968 int w32_font_is_double_byte (XFontStruct *font)
970 return font->double_byte_p;
974 static BOOL
975 w32_use_unicode_for_codepage (codepage)
976 int codepage;
978 /* If the current codepage is supported, use Unicode for output. */
979 return (w32_enable_unicode_output
980 && codepage != CP_8BIT
981 && (codepage == CP_UNICODE || IsValidCodePage (codepage)));
984 /* Encode CHAR2B using encoding information from FONT_INFO. CHAR2B is
985 the two-byte form of C. Encoding is returned in *CHAR2B. */
987 static int /* enum w32_char_font_type */
988 w32_encode_char (c, char2b, font_info, two_byte_p)
989 int c;
990 wchar_t *char2b;
991 struct font_info *font_info;
992 int * two_byte_p;
994 int charset = CHAR_CHARSET (c);
995 int codepage;
996 int unicode_p = 0;
997 int internal_two_byte_p = 0;
999 XFontStruct *font = font_info->font;
1001 internal_two_byte_p = w32_font_is_double_byte (font);
1003 /* FONT_INFO may define a scheme by which to encode byte1 and byte2.
1004 This may be either a program in a special encoder language or a
1005 fixed encoding. */
1006 if (font_info->font_encoder)
1008 /* It's a program. */
1009 struct ccl_program *ccl = font_info->font_encoder;
1011 if (CHARSET_DIMENSION (charset) == 1)
1013 ccl->reg[0] = charset;
1014 ccl->reg[1] = XCHAR2B_BYTE2 (char2b);
1015 ccl->reg[2] = -1;
1017 else
1019 ccl->reg[0] = charset;
1020 ccl->reg[1] = XCHAR2B_BYTE1 (char2b);
1021 ccl->reg[2] = XCHAR2B_BYTE2 (char2b);
1024 ccl_driver (ccl, NULL, NULL, 0, 0, NULL);
1026 /* We assume that MSBs are appropriately set/reset by CCL
1027 program. */
1028 if (!internal_two_byte_p) /* 1-byte font */
1029 STORE_XCHAR2B (char2b, 0, ccl->reg[1]);
1030 else
1031 STORE_XCHAR2B (char2b, ccl->reg[1], ccl->reg[2]);
1033 else if (font_info->encoding[charset])
1035 /* Fixed encoding scheme. See fontset.h for the meaning of the
1036 encoding numbers. */
1037 int enc = font_info->encoding[charset];
1039 if ((enc == 1 || enc == 2)
1040 && CHARSET_DIMENSION (charset) == 2)
1041 STORE_XCHAR2B (char2b, XCHAR2B_BYTE1 (char2b) | 0x80, XCHAR2B_BYTE2 (char2b));
1043 if (enc == 1 || enc == 3
1044 || (enc == 4 && CHARSET_DIMENSION (charset) == 1))
1045 STORE_XCHAR2B (char2b, XCHAR2B_BYTE1 (char2b), XCHAR2B_BYTE2 (char2b) | 0x80);
1046 else if (enc == 4)
1048 int sjis1, sjis2;
1050 ENCODE_SJIS (XCHAR2B_BYTE1 (char2b), XCHAR2B_BYTE2 (char2b),
1051 sjis1, sjis2);
1052 STORE_XCHAR2B (char2b, sjis1, sjis2);
1055 codepage = font_info->codepage;
1057 /* If charset is not ASCII or Latin-1, may need to move it into
1058 Unicode space. */
1059 if ( font && !font->bdf && w32_use_unicode_for_codepage (codepage)
1060 && charset != CHARSET_ASCII && charset != charset_latin_iso8859_1
1061 && charset != CHARSET_8_BIT_CONTROL && charset != CHARSET_8_BIT_GRAPHIC)
1063 char temp[3];
1064 temp[0] = XCHAR2B_BYTE1 (char2b);
1065 temp[1] = XCHAR2B_BYTE2 (char2b);
1066 temp[2] = '\0';
1067 if (codepage != CP_UNICODE)
1069 if (temp[0])
1070 MultiByteToWideChar (codepage, 0, temp, 2, char2b, 1);
1071 else
1072 MultiByteToWideChar (codepage, 0, temp+1, 1, char2b, 1);
1074 unicode_p = 1;
1075 internal_two_byte_p = 1;
1078 if (two_byte_p)
1079 *two_byte_p = internal_two_byte_p;
1081 if (!font)
1082 return UNKNOWN_FONT;
1083 else if (font->bdf && CHARSET_DIMENSION (charset) == 1)
1084 return BDF_1D_FONT;
1085 else if (font->bdf)
1086 return BDF_2D_FONT;
1087 else if (unicode_p)
1088 return UNICODE_FONT;
1089 else
1090 return ANSI_FONT;
1095 /***********************************************************************
1096 Glyph display
1097 ***********************************************************************/
1100 /* Encapsulate the different ways of displaying text under W32. */
1102 static void
1103 w32_text_out (s, x, y,chars,nchars)
1104 struct glyph_string * s;
1105 int x, y;
1106 wchar_t * chars;
1107 int nchars;
1109 int charset_dim = w32_font_is_double_byte (s->gc->font) ? 2 : 1;
1110 if (s->gc->font->bdf)
1111 w32_BDF_TextOut (s->gc->font->bdf, s->hdc,
1112 x, y, (char *) chars, charset_dim,
1113 nchars * charset_dim, 0);
1114 else if (s->first_glyph->font_type == UNICODE_FONT)
1115 ExtTextOutW (s->hdc, x, y, 0, NULL, chars, nchars, NULL);
1116 else
1117 ExtTextOutA (s->hdc, x, y, 0, NULL, (char *) chars,
1118 nchars * charset_dim, NULL);
1123 static void x_set_glyph_string_clipping P_ ((struct glyph_string *));
1124 static void x_set_glyph_string_gc P_ ((struct glyph_string *));
1125 static void x_draw_glyph_string_background P_ ((struct glyph_string *,
1126 int));
1127 static void x_draw_glyph_string_foreground P_ ((struct glyph_string *));
1128 static void x_draw_composite_glyph_string_foreground P_ ((struct glyph_string *));
1129 static void x_draw_glyph_string_box P_ ((struct glyph_string *));
1130 static void x_draw_glyph_string P_ ((struct glyph_string *));
1131 static void x_set_cursor_gc P_ ((struct glyph_string *));
1132 static void x_set_mode_line_face_gc P_ ((struct glyph_string *));
1133 static void x_set_mouse_face_gc P_ ((struct glyph_string *));
1134 static int w32_alloc_lighter_color (struct frame *, COLORREF *, double, int);
1135 static void w32_setup_relief_color P_ ((struct frame *, struct relief *,
1136 double, int, COLORREF));
1137 static void x_setup_relief_colors P_ ((struct glyph_string *));
1138 static void x_draw_image_glyph_string P_ ((struct glyph_string *));
1139 static void x_draw_image_relief P_ ((struct glyph_string *));
1140 static void x_draw_image_foreground P_ ((struct glyph_string *));
1141 static void w32_draw_image_foreground_1 P_ ((struct glyph_string *, HBITMAP));
1142 static void x_clear_glyph_string_rect P_ ((struct glyph_string *, int,
1143 int, int, int));
1144 static void w32_draw_relief_rect P_ ((struct frame *, int, int, int, int,
1145 int, int, int, int, RECT *));
1146 static void w32_draw_box_rect P_ ((struct glyph_string *, int, int, int, int,
1147 int, int, int, RECT *));
1149 #if GLYPH_DEBUG
1150 static void x_check_font P_ ((struct frame *, XFontStruct *));
1151 #endif
1154 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
1155 face. */
1157 static void
1158 x_set_cursor_gc (s)
1159 struct glyph_string *s;
1161 if (s->font == FRAME_FONT (s->f)
1162 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
1163 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
1164 && !s->cmp)
1165 s->gc = s->f->output_data.w32->cursor_gc;
1166 else
1168 /* Cursor on non-default face: must merge. */
1169 XGCValues xgcv;
1170 unsigned long mask;
1172 xgcv.background = s->f->output_data.w32->cursor_pixel;
1173 xgcv.foreground = s->face->background;
1175 /* If the glyph would be invisible, try a different foreground. */
1176 if (xgcv.foreground == xgcv.background)
1177 xgcv.foreground = s->face->foreground;
1178 if (xgcv.foreground == xgcv.background)
1179 xgcv.foreground = s->f->output_data.w32->cursor_foreground_pixel;
1180 if (xgcv.foreground == xgcv.background)
1181 xgcv.foreground = s->face->foreground;
1183 /* Make sure the cursor is distinct from text in this face. */
1184 if (xgcv.background == s->face->background
1185 && xgcv.foreground == s->face->foreground)
1187 xgcv.background = s->face->foreground;
1188 xgcv.foreground = s->face->background;
1191 IF_DEBUG (x_check_font (s->f, s->font));
1192 xgcv.font = s->font;
1193 mask = GCForeground | GCBackground | GCFont;
1195 if (FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc)
1196 XChangeGC (NULL, FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc,
1197 mask, &xgcv);
1198 else
1199 FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc
1200 = XCreateGC (NULL, s->window, mask, &xgcv);
1202 s->gc = FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc;
1207 /* Set up S->gc of glyph string S for drawing text in mouse face. */
1209 static void
1210 x_set_mouse_face_gc (s)
1211 struct glyph_string *s;
1213 int face_id;
1214 struct face *face;
1216 /* What face has to be used last for the mouse face? */
1217 face_id = FRAME_W32_DISPLAY_INFO (s->f)->mouse_face_face_id;
1218 face = FACE_FROM_ID (s->f, face_id);
1219 if (face == NULL)
1220 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
1222 if (s->first_glyph->type == CHAR_GLYPH)
1223 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch);
1224 else
1225 face_id = FACE_FOR_CHAR (s->f, face, 0);
1226 s->face = FACE_FROM_ID (s->f, face_id);
1227 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
1229 /* If font in this face is same as S->font, use it. */
1230 if (s->font == s->face->font)
1231 s->gc = s->face->gc;
1232 else
1234 /* Otherwise construct scratch_cursor_gc with values from FACE
1235 but font FONT. */
1236 XGCValues xgcv;
1237 unsigned long mask;
1239 xgcv.background = s->face->background;
1240 xgcv.foreground = s->face->foreground;
1241 IF_DEBUG (x_check_font (s->f, s->font));
1242 xgcv.font = s->font;
1243 mask = GCForeground | GCBackground | GCFont;
1245 if (FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc)
1246 XChangeGC (NULL, FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc,
1247 mask, &xgcv);
1248 else
1249 FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc
1250 = XCreateGC (NULL, s->window, mask, &xgcv);
1252 s->gc = FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc;
1255 xassert (s->gc != 0);
1259 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
1260 Faces to use in the mode line have already been computed when the
1261 matrix was built, so there isn't much to do, here. */
1263 static INLINE void
1264 x_set_mode_line_face_gc (s)
1265 struct glyph_string *s;
1267 s->gc = s->face->gc;
1271 /* Set S->gc of glyph string S for drawing that glyph string. Set
1272 S->stippled_p to a non-zero value if the face of S has a stipple
1273 pattern. */
1275 static INLINE void
1276 x_set_glyph_string_gc (s)
1277 struct glyph_string *s;
1279 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
1281 if (s->hl == DRAW_NORMAL_TEXT)
1283 s->gc = s->face->gc;
1284 s->stippled_p = s->face->stipple != 0;
1286 else if (s->hl == DRAW_INVERSE_VIDEO)
1288 x_set_mode_line_face_gc (s);
1289 s->stippled_p = s->face->stipple != 0;
1291 else if (s->hl == DRAW_CURSOR)
1293 x_set_cursor_gc (s);
1294 s->stippled_p = 0;
1296 else if (s->hl == DRAW_MOUSE_FACE)
1298 x_set_mouse_face_gc (s);
1299 s->stippled_p = s->face->stipple != 0;
1301 else if (s->hl == DRAW_IMAGE_RAISED
1302 || s->hl == DRAW_IMAGE_SUNKEN)
1304 s->gc = s->face->gc;
1305 s->stippled_p = s->face->stipple != 0;
1307 else
1309 s->gc = s->face->gc;
1310 s->stippled_p = s->face->stipple != 0;
1313 /* GC must have been set. */
1314 xassert (s->gc != 0);
1318 /* Set clipping for output of glyph string S. S may be part of a mode
1319 line or menu if we don't have X toolkit support. */
1321 static INLINE void
1322 x_set_glyph_string_clipping (s)
1323 struct glyph_string *s;
1325 RECT r;
1326 get_glyph_string_clip_rect (s, &r);
1327 w32_set_clip_rectangle (s->hdc, &r);
1331 /* RIF:
1332 Compute left and right overhang of glyph string S. If S is a glyph
1333 string for a composition, assume overhangs don't exist. */
1335 static void
1336 w32_compute_glyph_string_overhangs (s)
1337 struct glyph_string *s;
1339 /* TODO: Windows does not appear to have a method for
1340 getting this info without getting the ABC widths for each
1341 individual character and working it out manually. */
1345 static void
1346 w32_get_glyph_overhangs (glyph, f, left, right)
1347 struct glyph *glyph;
1348 struct frame *f;
1349 int *left, *right;
1351 HDC hdc = get_frame_dc (f);
1352 /* Convert to unicode! */
1353 x_get_glyph_overhangs (glyph, f, left, right);
1354 release_frame_dc (f, hdc);
1358 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
1360 static INLINE void
1361 x_clear_glyph_string_rect (s, x, y, w, h)
1362 struct glyph_string *s;
1363 int x, y, w, h;
1365 int real_x = x;
1366 int real_y = y;
1367 int real_w = w;
1368 int real_h = h;
1369 #if 0
1370 /* Take clipping into account. */
1371 if (s->gc->clip_mask == Rect)
1373 real_x = max (real_x, s->gc->clip_rectangle.left);
1374 real_y = max (real_y, s->gc->clip_rectangle.top);
1375 real_w = min (real_w, s->gc->clip_rectangle.right
1376 - s->gc->clip_rectangle.left);
1377 real_h = min (real_h, s->gc->clip_rectangle.bottom
1378 - s->gc->clip_rectangle.top);
1380 #endif
1381 w32_fill_area (s->f, s->hdc, s->gc->background, real_x, real_y,
1382 real_w, real_h);
1386 /* Draw the background of glyph_string S. If S->background_filled_p
1387 is non-zero don't draw it. FORCE_P non-zero means draw the
1388 background even if it wouldn't be drawn normally. This is used
1389 when a string preceding S draws into the background of S, or S
1390 contains the first component of a composition. */
1392 static void
1393 x_draw_glyph_string_background (s, force_p)
1394 struct glyph_string *s;
1395 int force_p;
1397 /* Nothing to do if background has already been drawn or if it
1398 shouldn't be drawn in the first place. */
1399 if (!s->background_filled_p)
1401 int box_line_width = max (s->face->box_line_width, 0);
1403 #if 0 /* TODO: stipple */
1404 if (s->stippled_p)
1406 /* Fill background with a stipple pattern. */
1407 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
1408 XFillRectangle (s->display, s->window, s->gc, s->x,
1409 s->y + box_line_width,
1410 s->background_width,
1411 s->height - 2 * box_line_width);
1412 XSetFillStyle (s->display, s->gc, FillSolid);
1413 s->background_filled_p = 1;
1415 else
1416 #endif
1417 if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
1418 || s->font_not_found_p
1419 || s->extends_to_end_of_line_p
1420 || s->font->bdf
1421 || force_p)
1423 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
1424 s->background_width,
1425 s->height - 2 * box_line_width);
1426 s->background_filled_p = 1;
1432 /* Draw the foreground of glyph string S. */
1434 static void
1435 x_draw_glyph_string_foreground (s)
1436 struct glyph_string *s;
1438 int i, x;
1439 HFONT old_font;
1441 /* If first glyph of S has a left box line, start drawing the text
1442 of S to the right of that box line. */
1443 if (s->face->box != FACE_NO_BOX
1444 && s->first_glyph->left_box_line_p)
1445 x = s->x + abs (s->face->box_line_width);
1446 else
1447 x = s->x;
1449 if (s->for_overlaps_p || (s->background_filled_p && s->hl != DRAW_CURSOR))
1450 SetBkMode (s->hdc, TRANSPARENT);
1451 else
1452 SetBkMode (s->hdc, OPAQUE);
1454 SetTextColor (s->hdc, s->gc->foreground);
1455 SetBkColor (s->hdc, s->gc->background);
1456 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
1458 if (s->font && s->font->hfont)
1459 old_font = SelectObject (s->hdc, s->font->hfont);
1461 /* Draw characters of S as rectangles if S's font could not be
1462 loaded. */
1463 if (s->font_not_found_p)
1465 for (i = 0; i < s->nchars; ++i)
1467 struct glyph *g = s->first_glyph + i;
1469 w32_draw_rectangle (s->hdc, s->gc, x, s->y, g->pixel_width - 1,
1470 s->height - 1);
1471 x += g->pixel_width;
1474 else
1476 char *char1b = (char *) s->char2b;
1477 int boff = s->font_info->baseline_offset;
1479 if (s->font_info->vertical_centering)
1480 boff = VCENTER_BASELINE_OFFSET (s->font, s->f) - boff;
1482 /* If we can use 8-bit functions, condense S->char2b. */
1483 if (!s->two_byte_p)
1484 for (i = 0; i < s->nchars; ++i)
1485 char1b[i] = XCHAR2B_BYTE2 (&s->char2b[i]);
1487 /* Draw text with TextOut and friends. */
1488 w32_text_out (s, x, s->ybase - boff, s->char2b, s->nchars);
1490 if (s->face->overstrike)
1492 /* For overstriking (to simulate bold-face), draw the
1493 characters again shifted to the right by one pixel. */
1494 w32_text_out (s, x + 1, s->ybase - boff, s->char2b, s->nchars);
1497 if (s->font && s->font->hfont)
1498 SelectObject (s->hdc, old_font);
1501 /* Draw the foreground of composite glyph string S. */
1503 static void
1504 x_draw_composite_glyph_string_foreground (s)
1505 struct glyph_string *s;
1507 int i, x;
1508 HFONT old_font;
1510 /* If first glyph of S has a left box line, start drawing the text
1511 of S to the right of that box line. */
1512 if (s->face->box != FACE_NO_BOX
1513 && s->first_glyph->left_box_line_p)
1514 x = s->x + abs (s->face->box_line_width);
1515 else
1516 x = s->x;
1518 /* S is a glyph string for a composition. S->gidx is the index of
1519 the first character drawn for glyphs of this composition.
1520 S->gidx == 0 means we are drawing the very first character of
1521 this composition. */
1523 SetTextColor (s->hdc, s->gc->foreground);
1524 SetBkColor (s->hdc, s->gc->background);
1525 SetBkMode (s->hdc, TRANSPARENT);
1526 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
1528 if (s->font && s->font->hfont)
1529 old_font = SelectObject (s->hdc, s->font->hfont);
1531 /* Draw a rectangle for the composition if the font for the very
1532 first character of the composition could not be loaded. */
1533 if (s->font_not_found_p)
1535 if (s->gidx == 0)
1536 w32_draw_rectangle (s->hdc, s->gc, x, s->y, s->width - 1,
1537 s->height - 1);
1539 else
1541 for (i = 0; i < s->nchars; i++, ++s->gidx)
1543 w32_text_out (s, x + s->cmp->offsets[s->gidx * 2],
1544 s->ybase - s->cmp->offsets[s->gidx * 2 + 1],
1545 s->char2b + i, 1);
1546 if (s->face->overstrike)
1547 w32_text_out (s, x + s->cmp->offsets[s->gidx * 2] + 1,
1548 s->ybase - s->cmp->offsets[s->gidx * 2 + 1],
1549 s->char2b + i, 1);
1553 if (s->font && s->font->hfont)
1554 SelectObject (s->hdc, old_font);
1558 /* Brightness beyond which a color won't have its highlight brightness
1559 boosted.
1561 Nominally, highlight colors for `3d' faces are calculated by
1562 brightening an object's color by a constant scale factor, but this
1563 doesn't yield good results for dark colors, so for colors who's
1564 brightness is less than this value (on a scale of 0-255) have to
1565 use an additional additive factor.
1567 The value here is set so that the default menu-bar/mode-line color
1568 (grey75) will not have its highlights changed at all. */
1569 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 187
1572 /* Allocate a color which is lighter or darker than *COLOR by FACTOR
1573 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1574 If this produces the same color as COLOR, try a color where all RGB
1575 values have DELTA added. Return the allocated color in *COLOR.
1576 DISPLAY is the X display, CMAP is the colormap to operate on.
1577 Value is non-zero if successful. */
1579 static int
1580 w32_alloc_lighter_color (f, color, factor, delta)
1581 struct frame *f;
1582 COLORREF *color;
1583 double factor;
1584 int delta;
1586 COLORREF new;
1587 long bright;
1589 /* On Windows, RGB values are 0-255, not 0-65535, so scale delta. */
1590 delta /= 256;
1592 /* Change RGB values by specified FACTOR. Avoid overflow! */
1593 xassert (factor >= 0);
1594 new = PALETTERGB (min (0xff, factor * GetRValue (*color)),
1595 min (0xff, factor * GetGValue (*color)),
1596 min (0xff, factor * GetBValue (*color)));
1598 /* Calculate brightness of COLOR. */
1599 bright = (2 * GetRValue (*color) + 3 * GetGValue (*color)
1600 + GetBValue (*color)) / 6;
1602 /* We only boost colors that are darker than
1603 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
1604 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
1605 /* Make an additive adjustment to NEW, because it's dark enough so
1606 that scaling by FACTOR alone isn't enough. */
1608 /* How far below the limit this color is (0 - 1, 1 being darker). */
1609 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
1610 /* The additive adjustment. */
1611 int min_delta = delta * dimness * factor / 2;
1613 if (factor < 1)
1614 new = PALETTERGB (max (0, min (0xff, min_delta - GetRValue (*color))),
1615 max (0, min (0xff, min_delta - GetGValue (*color))),
1616 max (0, min (0xff, min_delta - GetBValue (*color))));
1617 else
1618 new = PALETTERGB (max (0, min (0xff, min_delta + GetRValue (*color))),
1619 max (0, min (0xff, min_delta + GetGValue (*color))),
1620 max (0, min (0xff, min_delta + GetBValue (*color))));
1623 if (new == *color)
1624 new = PALETTERGB (max (0, min (0xff, delta + GetRValue (*color))),
1625 max (0, min (0xff, delta + GetGValue (*color))),
1626 max (0, min (0xff, delta + GetBValue (*color))));
1628 /* TODO: Map to palette and retry with delta if same? */
1629 /* TODO: Free colors (if using palette)? */
1631 if (new == *color)
1632 return 0;
1634 *color = new;
1636 return 1;
1640 /* Set up the foreground color for drawing relief lines of glyph
1641 string S. RELIEF is a pointer to a struct relief containing the GC
1642 with which lines will be drawn. Use a color that is FACTOR or
1643 DELTA lighter or darker than the relief's background which is found
1644 in S->f->output_data.x->relief_background. If such a color cannot
1645 be allocated, use DEFAULT_PIXEL, instead. */
1647 static void
1648 w32_setup_relief_color (f, relief, factor, delta, default_pixel)
1649 struct frame *f;
1650 struct relief *relief;
1651 double factor;
1652 int delta;
1653 COLORREF default_pixel;
1655 XGCValues xgcv;
1656 struct w32_output *di = f->output_data.w32;
1657 unsigned long mask = GCForeground;
1658 COLORREF pixel;
1659 COLORREF background = di->relief_background;
1660 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
1662 /* TODO: Free colors (if using palette)? */
1664 /* Allocate new color. */
1665 xgcv.foreground = default_pixel;
1666 pixel = background;
1667 if (w32_alloc_lighter_color (f, &pixel, factor, delta))
1669 relief->allocated_p = 1;
1670 xgcv.foreground = relief->pixel = pixel;
1673 if (relief->gc == 0)
1675 #if 0 /* TODO: stipple */
1676 xgcv.stipple = dpyinfo->gray;
1677 mask |= GCStipple;
1678 #endif
1679 relief->gc = XCreateGC (NULL, FRAME_W32_WINDOW (f), mask, &xgcv);
1681 else
1682 XChangeGC (NULL, relief->gc, mask, &xgcv);
1686 /* Set up colors for the relief lines around glyph string S. */
1688 static void
1689 x_setup_relief_colors (s)
1690 struct glyph_string *s;
1692 struct w32_output *di = s->f->output_data.w32;
1693 COLORREF color;
1695 if (s->face->use_box_color_for_shadows_p)
1696 color = s->face->box_color;
1697 else if (s->first_glyph->type == IMAGE_GLYPH
1698 && s->img->pixmap
1699 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
1700 color = IMAGE_BACKGROUND (s->img, s->f, 0);
1701 else
1702 color = s->gc->background;
1704 if (di->white_relief.gc == 0
1705 || color != di->relief_background)
1707 di->relief_background = color;
1708 w32_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
1709 WHITE_PIX_DEFAULT (s->f));
1710 w32_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
1711 BLACK_PIX_DEFAULT (s->f));
1716 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
1717 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
1718 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
1719 relief. LEFT_P non-zero means draw a relief on the left side of
1720 the rectangle. RIGHT_P non-zero means draw a relief on the right
1721 side of the rectangle. CLIP_RECT is the clipping rectangle to use
1722 when drawing. */
1724 static void
1725 w32_draw_relief_rect (f, left_x, top_y, right_x, bottom_y, width,
1726 raised_p, left_p, right_p, clip_rect)
1727 struct frame *f;
1728 int left_x, top_y, right_x, bottom_y, width, left_p, right_p, raised_p;
1729 RECT *clip_rect;
1731 int i;
1732 XGCValues gc;
1733 HDC hdc = get_frame_dc (f);
1735 if (raised_p)
1736 gc.foreground = f->output_data.w32->white_relief.gc->foreground;
1737 else
1738 gc.foreground = f->output_data.w32->black_relief.gc->foreground;
1740 w32_set_clip_rectangle (hdc, clip_rect);
1742 /* Top. */
1743 for (i = 0; i < width; ++i)
1744 w32_fill_area (f, hdc, gc.foreground,
1745 left_x + i * left_p, top_y + i,
1746 right_x - left_x - i * (left_p + right_p ) + 1, 1);
1748 /* Left. */
1749 if (left_p)
1750 for (i = 0; i < width; ++i)
1751 w32_fill_area (f, hdc, gc.foreground,
1752 left_x + i, top_y + i, 1,
1753 bottom_y - top_y - 2 * i + 1);
1755 if (raised_p)
1756 gc.foreground = f->output_data.w32->black_relief.gc->foreground;
1757 else
1758 gc.foreground = f->output_data.w32->white_relief.gc->foreground;
1760 /* Bottom. */
1761 for (i = 0; i < width; ++i)
1762 w32_fill_area (f, hdc, gc.foreground,
1763 left_x + i * left_p, bottom_y - i,
1764 right_x - left_x - i * (left_p + right_p) + 1, 1);
1766 /* Right. */
1767 if (right_p)
1768 for (i = 0; i < width; ++i)
1769 w32_fill_area (f, hdc, gc.foreground,
1770 right_x - i, top_y + i + 1, 1,
1771 bottom_y - top_y - 2 * i - 1);
1773 w32_set_clip_rectangle (hdc, NULL);
1775 release_frame_dc (f, hdc);
1779 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
1780 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
1781 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
1782 left side of the rectangle. RIGHT_P non-zero means draw a line
1783 on the right side of the rectangle. CLIP_RECT is the clipping
1784 rectangle to use when drawing. */
1786 static void
1787 w32_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
1788 left_p, right_p, clip_rect)
1789 struct glyph_string *s;
1790 int left_x, top_y, right_x, bottom_y, width, left_p, right_p;
1791 RECT *clip_rect;
1793 w32_set_clip_rectangle (s->hdc, clip_rect);
1795 /* Top. */
1796 w32_fill_area (s->f, s->hdc, s->face->box_color,
1797 left_x, top_y, right_x - left_x + 1, width);
1799 /* Left. */
1800 if (left_p)
1802 w32_fill_area (s->f, s->hdc, s->face->box_color,
1803 left_x, top_y, width, bottom_y - top_y + 1);
1806 /* Bottom. */
1807 w32_fill_area (s->f, s->hdc, s->face->box_color,
1808 left_x, bottom_y - width + 1, right_x - left_x + 1, width);
1810 /* Right. */
1811 if (right_p)
1813 w32_fill_area (s->f, s->hdc, s->face->box_color,
1814 right_x - width + 1, top_y, width, bottom_y - top_y + 1);
1817 w32_set_clip_rectangle (s->hdc, NULL);
1821 /* Draw a box around glyph string S. */
1823 static void
1824 x_draw_glyph_string_box (s)
1825 struct glyph_string *s;
1827 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
1828 int left_p, right_p;
1829 struct glyph *last_glyph;
1830 RECT clip_rect;
1832 last_x = window_box_right (s->w, s->area);
1833 if (s->row->full_width_p
1834 && !s->w->pseudo_window_p)
1836 last_x += WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH (s->w);
1837 if (s->area != RIGHT_MARGIN_AREA
1838 || WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (s->w))
1839 last_x += WINDOW_RIGHT_FRINGE_WIDTH (s->w);
1842 /* The glyph that may have a right box line. */
1843 last_glyph = (s->cmp || s->img
1844 ? s->first_glyph
1845 : s->first_glyph + s->nchars - 1);
1847 width = abs (s->face->box_line_width);
1848 raised_p = s->face->box == FACE_RAISED_BOX;
1849 left_x = s->x;
1850 right_x = ((s->row->full_width_p && s->extends_to_end_of_line_p
1851 ? last_x - 1
1852 : min (last_x, s->x + s->background_width) - 1));
1853 top_y = s->y;
1854 bottom_y = top_y + s->height - 1;
1856 left_p = (s->first_glyph->left_box_line_p
1857 || (s->hl == DRAW_MOUSE_FACE
1858 && (s->prev == NULL
1859 || s->prev->hl != s->hl)));
1860 right_p = (last_glyph->right_box_line_p
1861 || (s->hl == DRAW_MOUSE_FACE
1862 && (s->next == NULL
1863 || s->next->hl != s->hl)));
1865 get_glyph_string_clip_rect (s, &clip_rect);
1867 if (s->face->box == FACE_SIMPLE_BOX)
1868 w32_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
1869 left_p, right_p, &clip_rect);
1870 else
1872 x_setup_relief_colors (s);
1873 w32_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
1874 width, raised_p, left_p, right_p, &clip_rect);
1879 /* Draw foreground of image glyph string S. */
1881 static void
1882 x_draw_image_foreground (s)
1883 struct glyph_string *s;
1885 int x;
1886 int y = s->ybase - image_ascent (s->img, s->face);
1888 /* If first glyph of S has a left box line, start drawing it to the
1889 right of that line. */
1890 if (s->face->box != FACE_NO_BOX
1891 && s->first_glyph->left_box_line_p)
1892 x = s->x + abs (s->face->box_line_width);
1893 else
1894 x = s->x;
1896 /* If there is a margin around the image, adjust x- and y-position
1897 by that margin. */
1898 x += s->img->hmargin;
1899 y += s->img->vmargin;
1901 SaveDC (s->hdc);
1903 if (s->img->pixmap)
1905 HDC compat_hdc = CreateCompatibleDC (s->hdc);
1906 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
1907 HBRUSH orig_brush = SelectObject (s->hdc, fg_brush);
1908 HGDIOBJ orig_obj = SelectObject (compat_hdc, s->img->pixmap);
1909 SetBkColor (compat_hdc, RGB (255, 255, 255));
1910 SetTextColor (s->hdc, RGB (0, 0, 0));
1911 x_set_glyph_string_clipping (s);
1913 if (s->img->mask)
1915 HDC mask_dc = CreateCompatibleDC (s->hdc);
1916 HGDIOBJ mask_orig_obj = SelectObject (mask_dc, s->img->mask);
1918 SetTextColor (s->hdc, RGB (255, 255, 255));
1919 SetBkColor (s->hdc, RGB (0, 0, 0));
1921 BitBlt (s->hdc, x, y, s->img->width, s->img->height,
1922 compat_hdc, 0, 0, SRCINVERT);
1923 BitBlt (s->hdc, x, y, s->img->width, s->img->height,
1924 mask_dc, 0, 0, SRCAND);
1925 BitBlt (s->hdc, x, y, s->img->width, s->img->height,
1926 compat_hdc, 0, 0, SRCINVERT);
1928 SelectObject (mask_dc, mask_orig_obj);
1929 DeleteDC (mask_dc);
1931 else
1933 SetTextColor (s->hdc, s->gc->foreground);
1934 SetBkColor (s->hdc, s->gc->background);
1936 BitBlt (s->hdc, x, y, s->img->width, s->img->height,
1937 compat_hdc, 0, 0, SRCCOPY);
1939 /* When the image has a mask, we can expect that at
1940 least part of a mouse highlight or a block cursor will
1941 be visible. If the image doesn't have a mask, make
1942 a block cursor visible by drawing a rectangle around
1943 the image. I believe it's looking better if we do
1944 nothing here for mouse-face. */
1945 if (s->hl == DRAW_CURSOR)
1947 int r = s->img->relief;
1948 if (r < 0) r = -r;
1949 w32_draw_rectangle (s->hdc, s->gc, x - r, y - r ,
1950 s->img->width + r*2 - 1, s->img->height + r*2 - 1);
1954 w32_set_clip_rectangle (s->hdc, NULL);
1955 SelectObject (s->hdc, orig_brush);
1956 DeleteObject (fg_brush);
1957 SelectObject (compat_hdc, orig_obj);
1958 DeleteDC (compat_hdc);
1960 else
1961 w32_draw_rectangle (s->hdc, s->gc, x, y, s->img->width -1,
1962 s->img->height - 1);
1964 RestoreDC (s->hdc ,-1);
1969 /* Draw a relief around the image glyph string S. */
1971 static void
1972 x_draw_image_relief (s)
1973 struct glyph_string *s;
1975 int x0, y0, x1, y1, thick, raised_p;
1976 RECT r;
1977 int x;
1978 int y = s->ybase - image_ascent (s->img, s->face);
1980 /* If first glyph of S has a left box line, start drawing it to the
1981 right of that line. */
1982 if (s->face->box != FACE_NO_BOX
1983 && s->first_glyph->left_box_line_p)
1984 x = s->x + abs (s->face->box_line_width);
1985 else
1986 x = s->x;
1988 /* If there is a margin around the image, adjust x- and y-position
1989 by that margin. */
1990 x += s->img->hmargin;
1991 y += s->img->vmargin;
1993 if (s->hl == DRAW_IMAGE_SUNKEN
1994 || s->hl == DRAW_IMAGE_RAISED)
1996 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
1997 raised_p = s->hl == DRAW_IMAGE_RAISED;
1999 else
2001 thick = abs (s->img->relief);
2002 raised_p = s->img->relief > 0;
2005 x0 = x - thick;
2006 y0 = y - thick;
2007 x1 = x + s->img->width + thick - 1;
2008 y1 = y + s->img->height + thick - 1;
2010 x_setup_relief_colors (s);
2011 get_glyph_string_clip_rect (s, &r);
2012 w32_draw_relief_rect (s->f, x0, y0, x1, y1, thick, raised_p, 1, 1, &r);
2016 /* Draw the foreground of image glyph string S to PIXMAP. */
2018 static void
2019 w32_draw_image_foreground_1 (s, pixmap)
2020 struct glyph_string *s;
2021 HBITMAP pixmap;
2023 HDC hdc = CreateCompatibleDC (s->hdc);
2024 HGDIOBJ orig_hdc_obj = SelectObject (hdc, pixmap);
2025 int x;
2026 int y = s->ybase - s->y - image_ascent (s->img, s->face);
2028 /* If first glyph of S has a left box line, start drawing it to the
2029 right of that line. */
2030 if (s->face->box != FACE_NO_BOX
2031 && s->first_glyph->left_box_line_p)
2032 x = abs (s->face->box_line_width);
2033 else
2034 x = 0;
2036 /* If there is a margin around the image, adjust x- and y-position
2037 by that margin. */
2038 x += s->img->hmargin;
2039 y += s->img->vmargin;
2041 if (s->img->pixmap)
2043 HDC compat_hdc = CreateCompatibleDC (hdc);
2044 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
2045 HBRUSH orig_brush = SelectObject (hdc, fg_brush);
2046 HGDIOBJ orig_obj = SelectObject (compat_hdc, s->img->pixmap);
2048 if (s->img->mask)
2050 HDC mask_dc = CreateCompatibleDC (hdc);
2051 HGDIOBJ mask_orig_obj = SelectObject (mask_dc, s->img->mask);
2053 SetTextColor (hdc, RGB (0, 0, 0));
2054 SetBkColor (hdc, RGB (255, 255, 255));
2055 BitBlt (hdc, x, y, s->img->width, s->img->height,
2056 compat_hdc, 0, 0, SRCINVERT);
2057 BitBlt (hdc, x, y, s->img->width, s->img->height,
2058 mask_dc, 0, 0, SRCAND);
2059 BitBlt (hdc, x, y, s->img->width, s->img->height,
2060 compat_hdc, 0, 0, SRCINVERT);
2062 SelectObject (mask_dc, mask_orig_obj);
2063 DeleteDC (mask_dc);
2065 else
2067 SetTextColor (hdc, s->gc->foreground);
2068 SetBkColor (hdc, s->gc->background);
2070 BitBlt (hdc, x, y, s->img->width, s->img->height,
2071 compat_hdc, 0, 0, SRCCOPY);
2073 /* When the image has a mask, we can expect that at
2074 least part of a mouse highlight or a block cursor will
2075 be visible. If the image doesn't have a mask, make
2076 a block cursor visible by drawing a rectangle around
2077 the image. I believe it's looking better if we do
2078 nothing here for mouse-face. */
2079 if (s->hl == DRAW_CURSOR)
2081 int r = s->img->relief;
2082 if (r < 0) r = -r;
2083 w32_draw_rectangle (hdc, s->gc, x - r, y - r ,
2084 s->img->width + r*2 - 1, s->img->height + r*2 - 1);
2088 SelectObject (hdc, orig_brush);
2089 DeleteObject (fg_brush);
2090 SelectObject (compat_hdc, orig_obj);
2091 DeleteDC (compat_hdc);
2093 else
2094 w32_draw_rectangle (hdc, s->gc, x, y, s->img->width - 1,
2095 s->img->height - 1);
2097 SelectObject (hdc, orig_hdc_obj);
2098 DeleteDC (hdc);
2102 /* Draw part of the background of glyph string S. X, Y, W, and H
2103 give the rectangle to draw. */
2105 static void
2106 x_draw_glyph_string_bg_rect (s, x, y, w, h)
2107 struct glyph_string *s;
2108 int x, y, w, h;
2110 #if 0 /* TODO: stipple */
2111 if (s->stippled_p)
2113 /* Fill background with a stipple pattern. */
2114 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2115 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
2116 XSetFillStyle (s->display, s->gc, FillSolid);
2118 else
2119 #endif
2120 x_clear_glyph_string_rect (s, x, y, w, h);
2124 /* Draw image glyph string S.
2126 s->y
2127 s->x +-------------------------
2128 | s->face->box
2130 | +-------------------------
2131 | | s->img->vmargin
2133 | | +-------------------
2134 | | | the image
2138 static void
2139 x_draw_image_glyph_string (s)
2140 struct glyph_string *s;
2142 int x, y;
2143 int box_line_hwidth = abs (s->face->box_line_width);
2144 int box_line_vwidth = max (s->face->box_line_width, 0);
2145 int height;
2146 HBITMAP pixmap = 0;
2148 height = s->height - 2 * box_line_vwidth;
2150 /* Fill background with face under the image. Do it only if row is
2151 taller than image or if image has a clip mask to reduce
2152 flickering. */
2153 s->stippled_p = s->face->stipple != 0;
2154 if (height > s->img->height
2155 || s->img->hmargin
2156 || s->img->vmargin
2157 || s->img->mask
2158 || s->img->pixmap == 0
2159 || s->width != s->background_width)
2161 if (box_line_hwidth && s->first_glyph->left_box_line_p)
2162 x = s->x + box_line_hwidth;
2163 else
2164 x = s->x;
2166 y = s->y + box_line_vwidth;
2167 #if 0 /* TODO: figure out if we need to do this on Windows. */
2168 if (s->img->mask)
2170 /* Create a pixmap as large as the glyph string. Fill it
2171 with the background color. Copy the image to it, using
2172 its mask. Copy the temporary pixmap to the display. */
2173 Screen *screen = FRAME_X_SCREEN (s->f);
2174 int depth = DefaultDepthOfScreen (screen);
2176 /* Create a pixmap as large as the glyph string. */
2177 pixmap = XCreatePixmap (s->display, s->window,
2178 s->background_width,
2179 s->height, depth);
2181 /* Don't clip in the following because we're working on the
2182 pixmap. */
2183 XSetClipMask (s->display, s->gc, None);
2185 /* Fill the pixmap with the background color/stipple. */
2186 if (s->stippled_p)
2188 /* Fill background with a stipple pattern. */
2189 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2190 XFillRectangle (s->display, pixmap, s->gc,
2191 0, 0, s->background_width, s->height);
2192 XSetFillStyle (s->display, s->gc, FillSolid);
2194 else
2196 XGCValues xgcv;
2197 XGetGCValues (s->display, s->gc, GCForeground | GCBackground,
2198 &xgcv);
2199 XSetForeground (s->display, s->gc, xgcv.background);
2200 XFillRectangle (s->display, pixmap, s->gc,
2201 0, 0, s->background_width, s->height);
2202 XSetForeground (s->display, s->gc, xgcv.foreground);
2205 else
2206 #endif
2207 x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
2209 s->background_filled_p = 1;
2212 /* Draw the foreground. */
2213 if (pixmap != 0)
2215 w32_draw_image_foreground_1 (s, pixmap);
2216 x_set_glyph_string_clipping (s);
2218 HDC compat_hdc = CreateCompatibleDC (s->hdc);
2219 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
2220 HBRUSH orig_brush = SelectObject (s->hdc, fg_brush);
2221 HGDIOBJ orig_obj = SelectObject (compat_hdc, pixmap);
2223 SetTextColor (s->hdc, s->gc->foreground);
2224 SetBkColor (s->hdc, s->gc->background);
2225 BitBlt (s->hdc, s->x, s->y, s->background_width, s->height,
2226 compat_hdc, 0, 0, SRCCOPY);
2228 SelectObject (s->hdc, orig_brush);
2229 DeleteObject (fg_brush);
2230 SelectObject (compat_hdc, orig_obj);
2231 DeleteDC (compat_hdc);
2233 DeleteObject (pixmap);
2234 pixmap = 0;
2236 else
2237 x_draw_image_foreground (s);
2239 /* If we must draw a relief around the image, do it. */
2240 if (s->img->relief
2241 || s->hl == DRAW_IMAGE_RAISED
2242 || s->hl == DRAW_IMAGE_SUNKEN)
2243 x_draw_image_relief (s);
2247 /* Draw stretch glyph string S. */
2249 static void
2250 x_draw_stretch_glyph_string (s)
2251 struct glyph_string *s;
2253 xassert (s->first_glyph->type == STRETCH_GLYPH);
2254 s->stippled_p = s->face->stipple != 0;
2256 if (s->hl == DRAW_CURSOR
2257 && !x_stretch_cursor_p)
2259 /* If `x-stretch-block-cursor' is nil, don't draw a block cursor
2260 as wide as the stretch glyph. */
2261 int width = min (FRAME_COLUMN_WIDTH (s->f), s->background_width);
2263 /* Draw cursor. */
2264 x_draw_glyph_string_bg_rect (s, s->x, s->y, width, s->height);
2266 /* Clear rest using the GC of the original non-cursor face. */
2267 if (width < s->background_width)
2269 XGCValues *gc = s->face->gc;
2270 int x = s->x + width, y = s->y;
2271 int w = s->background_width - width, h = s->height;
2272 RECT r;
2273 HDC hdc = s->hdc;
2275 if (s->row->mouse_face_p
2276 && cursor_in_mouse_face_p (s->w))
2278 x_set_mouse_face_gc (s);
2279 gc = s->gc;
2281 else
2282 gc = s->face->gc;
2284 get_glyph_string_clip_rect (s, &r);
2285 w32_set_clip_rectangle (hdc, &r);
2287 #if 0 /* TODO: stipple */
2288 if (s->face->stipple)
2290 /* Fill background with a stipple pattern. */
2291 XSetFillStyle (s->display, gc, FillOpaqueStippled);
2292 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2293 XSetFillStyle (s->display, gc, FillSolid);
2295 else
2296 #endif
2298 w32_fill_area (s->f, s->hdc, gc->background, x, y, w, h);
2302 else if (!s->background_filled_p)
2303 x_draw_glyph_string_bg_rect (s, s->x, s->y, s->background_width,
2304 s->height);
2306 s->background_filled_p = 1;
2310 /* Draw glyph string S. */
2312 static void
2313 x_draw_glyph_string (s)
2314 struct glyph_string *s;
2316 int relief_drawn_p = 0;
2318 /* If S draws into the background of its successor, draw the
2319 background of the successor first so that S can draw into it.
2320 This makes S->next use XDrawString instead of XDrawImageString. */
2321 if (s->next && s->right_overhang && !s->for_overlaps_p)
2323 xassert (s->next->img == NULL);
2324 x_set_glyph_string_gc (s->next);
2325 x_set_glyph_string_clipping (s->next);
2326 x_draw_glyph_string_background (s->next, 1);
2329 /* Set up S->gc, set clipping and draw S. */
2330 x_set_glyph_string_gc (s);
2332 /* Draw relief (if any) in advance for char/composition so that the
2333 glyph string can be drawn over it. */
2334 if (!s->for_overlaps_p
2335 && s->face->box != FACE_NO_BOX
2336 && (s->first_glyph->type == CHAR_GLYPH
2337 || s->first_glyph->type == COMPOSITE_GLYPH))
2340 x_set_glyph_string_clipping (s);
2341 x_draw_glyph_string_background (s, 1);
2342 x_draw_glyph_string_box (s);
2343 x_set_glyph_string_clipping (s);
2344 relief_drawn_p = 1;
2346 else
2347 x_set_glyph_string_clipping (s);
2349 switch (s->first_glyph->type)
2351 case IMAGE_GLYPH:
2352 x_draw_image_glyph_string (s);
2353 break;
2355 case STRETCH_GLYPH:
2356 x_draw_stretch_glyph_string (s);
2357 break;
2359 case CHAR_GLYPH:
2360 if (s->for_overlaps_p)
2361 s->background_filled_p = 1;
2362 else
2363 x_draw_glyph_string_background (s, 0);
2364 x_draw_glyph_string_foreground (s);
2365 break;
2367 case COMPOSITE_GLYPH:
2368 if (s->for_overlaps_p || s->gidx > 0)
2369 s->background_filled_p = 1;
2370 else
2371 x_draw_glyph_string_background (s, 1);
2372 x_draw_composite_glyph_string_foreground (s);
2373 break;
2375 default:
2376 abort ();
2379 if (!s->for_overlaps_p)
2381 /* Draw underline. */
2382 if (s->face->underline_p
2383 && (s->font->bdf || !s->font->tm.tmUnderlined))
2385 unsigned long h = 1;
2386 unsigned long dy = s->height - h;
2388 /* TODO: Use font information for positioning and thickness
2389 of underline. See OUTLINETEXTMETRIC, and xterm.c. */
2390 if (s->face->underline_defaulted_p)
2392 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x,
2393 s->y + dy, s->width, 1);
2395 else
2397 w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x,
2398 s->y + dy, s->width, 1);
2402 /* Draw overline. */
2403 if (s->face->overline_p)
2405 unsigned long dy = 0, h = 1;
2407 if (s->face->overline_color_defaulted_p)
2409 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x,
2410 s->y + dy, s->width, h);
2412 else
2414 w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x,
2415 s->y + dy, s->width, h);
2419 /* Draw strike-through. */
2420 if (s->face->strike_through_p
2421 && (s->font->bdf || !s->font->tm.tmStruckOut))
2423 unsigned long h = 1;
2424 unsigned long dy = (s->height - h) / 2;
2426 if (s->face->strike_through_color_defaulted_p)
2428 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x, s->y + dy,
2429 s->width, h);
2431 else
2433 w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x,
2434 s->y + dy, s->width, h);
2438 /* Draw relief. */
2439 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
2440 x_draw_glyph_string_box (s);
2443 /* Reset clipping. */
2444 w32_set_clip_rectangle (s->hdc, NULL);
2448 /* Shift display to make room for inserted glyphs. */
2450 void
2451 w32_shift_glyphs_for_insert (f, x, y, width, height, shift_by)
2452 struct frame *f;
2453 int x, y, width, height, shift_by;
2455 HDC hdc;
2457 hdc = get_frame_dc (f);
2458 BitBlt (hdc, x + shift_by, y, width, height,
2459 hdc, x, y, SRCCOPY);
2461 release_frame_dc (f, hdc);
2465 /* Delete N glyphs at the nominal cursor position. Not implemented
2466 for X frames. */
2468 static void
2469 x_delete_glyphs (n)
2470 register int n;
2472 struct frame *f;
2474 if (updating_frame)
2475 f = updating_frame;
2476 else
2477 f = SELECTED_FRAME ();
2479 if (! FRAME_W32_P (f))
2480 return;
2482 abort ();
2486 /* Clear entire frame. If updating_frame is non-null, clear that
2487 frame. Otherwise clear the selected frame. */
2489 static void
2490 x_clear_frame ()
2492 struct frame *f;
2494 if (updating_frame)
2495 f = updating_frame;
2496 else
2497 f = SELECTED_FRAME ();
2499 if (! FRAME_W32_P (f))
2500 return;
2502 /* Clearing the frame will erase any cursor, so mark them all as no
2503 longer visible. */
2504 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
2505 output_cursor.hpos = output_cursor.vpos = 0;
2506 output_cursor.x = -1;
2508 /* We don't set the output cursor here because there will always
2509 follow an explicit cursor_to. */
2510 BLOCK_INPUT;
2512 w32_clear_window (f);
2514 /* We have to clear the scroll bars, too. If we have changed
2515 colors or something like that, then they should be notified. */
2516 x_scroll_bar_clear (f);
2518 UNBLOCK_INPUT;
2522 /* Make audible bell. */
2524 static void
2525 w32_ring_bell (void)
2527 struct frame *f;
2529 f = SELECTED_FRAME ();
2531 BLOCK_INPUT;
2533 if (FRAME_W32_P (f) && visible_bell)
2535 int i;
2536 HWND hwnd = FRAME_W32_WINDOW (SELECTED_FRAME ());
2538 for (i = 0; i < 5; i++)
2540 FlashWindow (hwnd, TRUE);
2541 Sleep (10);
2543 FlashWindow (hwnd, FALSE);
2545 else
2546 w32_sys_ring_bell ();
2548 UNBLOCK_INPUT;
2552 /* Specify how many text lines, from the top of the window,
2553 should be affected by insert-lines and delete-lines operations.
2554 This, and those operations, are used only within an update
2555 that is bounded by calls to x_update_begin and x_update_end. */
2557 static void
2558 w32_set_terminal_window (n)
2559 register int n;
2561 /* This function intentionally left blank. */
2565 /***********************************************************************
2566 Line Dance
2567 ***********************************************************************/
2569 /* Perform an insert-lines or delete-lines operation, inserting N
2570 lines or deleting -N lines at vertical position VPOS. */
2572 static void
2573 x_ins_del_lines (vpos, n)
2574 int vpos, n;
2576 struct frame *f;
2578 if (updating_frame)
2579 f = updating_frame;
2580 else
2581 f = SELECTED_FRAME ();
2583 if (! FRAME_W32_P (f))
2584 return;
2586 abort ();
2590 /* Scroll part of the display as described by RUN. */
2592 static void
2593 x_scroll_run (w, run)
2594 struct window *w;
2595 struct run *run;
2597 struct frame *f = XFRAME (w->frame);
2598 int x, y, width, height, from_y, to_y, bottom_y;
2599 HWND hwnd = FRAME_W32_WINDOW (f);
2600 HRGN expect_dirty;
2602 /* Get frame-relative bounding box of the text display area of W,
2603 without mode lines. Include in this box the left and right
2604 fringes of W. */
2605 window_box (w, -1, &x, &y, &width, &height);
2607 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
2608 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
2609 bottom_y = y + height;
2611 if (to_y < from_y)
2613 /* Scrolling up. Make sure we don't copy part of the mode
2614 line at the bottom. */
2615 if (from_y + run->height > bottom_y)
2616 height = bottom_y - from_y;
2617 else
2618 height = run->height;
2619 expect_dirty = CreateRectRgn (x, y + height, x + width, bottom_y);
2621 else
2623 /* Scolling down. Make sure we don't copy over the mode line.
2624 at the bottom. */
2625 if (to_y + run->height > bottom_y)
2626 height = bottom_y - to_y;
2627 else
2628 height = run->height;
2629 expect_dirty = CreateRectRgn (x, y, x + width, to_y);
2632 BLOCK_INPUT;
2634 /* Cursor off. Will be switched on again in x_update_window_end. */
2635 updated_window = w;
2636 x_clear_cursor (w);
2639 RECT from;
2640 RECT to;
2641 HRGN dirty = CreateRectRgn (0, 0, 0, 0);
2642 HRGN combined = CreateRectRgn (0, 0, 0, 0);
2644 from.left = to.left = x;
2645 from.right = to.right = x + width;
2646 from.top = from_y;
2647 from.bottom = from_y + height;
2648 to.top = y;
2649 to.bottom = bottom_y;
2651 ScrollWindowEx (hwnd, 0, to_y - from_y, &from, &to, dirty,
2652 NULL, SW_INVALIDATE);
2654 /* Combine this with what we expect to be dirty. This covers the
2655 case where not all of the region we expect is actually dirty. */
2656 CombineRgn (combined, dirty, expect_dirty, RGN_OR);
2658 /* If the dirty region is not what we expected, redraw the entire frame. */
2659 if (!EqualRgn (combined, expect_dirty))
2660 SET_FRAME_GARBAGED (f);
2663 UNBLOCK_INPUT;
2668 /***********************************************************************
2669 Exposure Events
2670 ***********************************************************************/
2672 static void
2673 frame_highlight (f)
2674 struct frame *f;
2676 x_update_cursor (f, 1);
2679 static void
2680 frame_unhighlight (f)
2681 struct frame *f;
2683 x_update_cursor (f, 1);
2686 /* The focus has changed. Update the frames as necessary to reflect
2687 the new situation. Note that we can't change the selected frame
2688 here, because the Lisp code we are interrupting might become confused.
2689 Each event gets marked with the frame in which it occurred, so the
2690 Lisp code can tell when the switch took place by examining the events. */
2692 static void
2693 x_new_focus_frame (dpyinfo, frame)
2694 struct w32_display_info *dpyinfo;
2695 struct frame *frame;
2697 struct frame *old_focus = dpyinfo->w32_focus_frame;
2699 if (frame != dpyinfo->w32_focus_frame)
2701 /* Set this before calling other routines, so that they see
2702 the correct value of w32_focus_frame. */
2703 dpyinfo->w32_focus_frame = frame;
2705 if (old_focus && old_focus->auto_lower)
2706 x_lower_frame (old_focus);
2716 if (dpyinfo->w32_focus_frame && dpyinfo->w32_focus_frame->auto_raise)
2717 pending_autoraise_frame = dpyinfo->w32_focus_frame;
2718 else
2719 pending_autoraise_frame = 0;
2722 x_frame_rehighlight (dpyinfo);
2725 /* Handle an event saying the mouse has moved out of an Emacs frame. */
2727 void
2728 x_mouse_leave (dpyinfo)
2729 struct w32_display_info *dpyinfo;
2731 x_new_focus_frame (dpyinfo, dpyinfo->w32_focus_event_frame);
2734 /* The focus has changed, or we have redirected a frame's focus to
2735 another frame (this happens when a frame uses a surrogate
2736 mini-buffer frame). Shift the highlight as appropriate.
2738 The FRAME argument doesn't necessarily have anything to do with which
2739 frame is being highlighted or un-highlighted; we only use it to find
2740 the appropriate X display info. */
2742 static void
2743 w32_frame_rehighlight (frame)
2744 struct frame *frame;
2746 if (! FRAME_W32_P (frame))
2747 return;
2748 x_frame_rehighlight (FRAME_W32_DISPLAY_INFO (frame));
2751 static void
2752 x_frame_rehighlight (dpyinfo)
2753 struct w32_display_info *dpyinfo;
2755 struct frame *old_highlight = dpyinfo->x_highlight_frame;
2757 if (dpyinfo->w32_focus_frame)
2759 dpyinfo->x_highlight_frame
2760 = ((GC_FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame)))
2761 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame))
2762 : dpyinfo->w32_focus_frame);
2763 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
2765 FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame) = Qnil;
2766 dpyinfo->x_highlight_frame = dpyinfo->w32_focus_frame;
2769 else
2770 dpyinfo->x_highlight_frame = 0;
2772 if (dpyinfo->x_highlight_frame != old_highlight)
2774 if (old_highlight)
2775 frame_unhighlight (old_highlight);
2776 if (dpyinfo->x_highlight_frame)
2777 frame_highlight (dpyinfo->x_highlight_frame);
2781 /* Keyboard processing - modifier keys, etc. */
2783 /* Convert a keysym to its name. */
2785 char *
2786 x_get_keysym_name (keysym)
2787 int keysym;
2789 /* Make static so we can always return it */
2790 static char value[100];
2792 BLOCK_INPUT;
2793 GetKeyNameText (keysym, value, 100);
2794 UNBLOCK_INPUT;
2796 return value;
2801 /* Mouse clicks and mouse movement. Rah. */
2803 /* Parse a button MESSAGE. The button index is returned in PBUTTON, and
2804 the state in PUP. XBUTTON provides extra information for extended mouse
2805 button messages. Returns FALSE if unable to parse the message. */
2806 BOOL
2807 parse_button (message, xbutton, pbutton, pup)
2808 int message;
2809 int xbutton;
2810 int * pbutton;
2811 int * pup;
2813 int button = 0;
2814 int up = 0;
2816 switch (message)
2818 case WM_LBUTTONDOWN:
2819 button = 0;
2820 up = 0;
2821 break;
2822 case WM_LBUTTONUP:
2823 button = 0;
2824 up = 1;
2825 break;
2826 case WM_MBUTTONDOWN:
2827 if (NILP (Vw32_swap_mouse_buttons))
2828 button = 1;
2829 else
2830 button = 2;
2831 up = 0;
2832 break;
2833 case WM_MBUTTONUP:
2834 if (NILP (Vw32_swap_mouse_buttons))
2835 button = 1;
2836 else
2837 button = 2;
2838 up = 1;
2839 break;
2840 case WM_RBUTTONDOWN:
2841 if (NILP (Vw32_swap_mouse_buttons))
2842 button = 2;
2843 else
2844 button = 1;
2845 up = 0;
2846 break;
2847 case WM_RBUTTONUP:
2848 if (NILP (Vw32_swap_mouse_buttons))
2849 button = 2;
2850 else
2851 button = 1;
2852 up = 1;
2853 break;
2854 case WM_XBUTTONDOWN:
2855 button = xbutton + 2;
2856 up = 0;
2857 break;
2858 case WM_XBUTTONUP:
2859 button = xbutton + 2;
2860 up = 1;
2861 break;
2862 default:
2863 return (FALSE);
2866 if (pup) *pup = up;
2867 if (pbutton) *pbutton = button;
2869 return (TRUE);
2873 /* Prepare a mouse-event in *RESULT for placement in the input queue.
2875 If the event is a button press, then note that we have grabbed
2876 the mouse. */
2878 static Lisp_Object
2879 construct_mouse_click (result, msg, f)
2880 struct input_event *result;
2881 W32Msg *msg;
2882 struct frame *f;
2884 int button;
2885 int up;
2887 parse_button (msg->msg.message, HIWORD (msg->msg.wParam),
2888 &button, &up);
2890 /* Make the event type NO_EVENT; we'll change that when we decide
2891 otherwise. */
2892 result->kind = MOUSE_CLICK_EVENT;
2893 result->code = button;
2894 result->timestamp = msg->msg.time;
2895 result->modifiers = (msg->dwModifiers
2896 | (up
2897 ? up_modifier
2898 : down_modifier));
2900 XSETINT (result->x, LOWORD (msg->msg.lParam));
2901 XSETINT (result->y, HIWORD (msg->msg.lParam));
2902 XSETFRAME (result->frame_or_window, f);
2903 result->arg = Qnil;
2904 return Qnil;
2907 static Lisp_Object
2908 construct_mouse_wheel (result, msg, f)
2909 struct input_event *result;
2910 W32Msg *msg;
2911 struct frame *f;
2913 POINT p;
2914 result->kind = MOUSE_CLICK_EVENT;
2915 result->code = (GET_WHEEL_DELTA_WPARAM (msg->msg.wParam) < 0) ? 4 : 3;
2916 result->timestamp = msg->msg.time;
2917 result->modifiers = msg->dwModifiers;
2918 p.x = LOWORD (msg->msg.lParam);
2919 p.y = HIWORD (msg->msg.lParam);
2920 ScreenToClient (msg->msg.hwnd, &p);
2921 XSETINT (result->x, p.x);
2922 XSETINT (result->y, p.y);
2923 XSETFRAME (result->frame_or_window, f);
2924 result->arg = Qnil;
2925 return Qnil;
2928 static Lisp_Object
2929 construct_drag_n_drop (result, msg, f)
2930 struct input_event *result;
2931 W32Msg *msg;
2932 struct frame *f;
2934 Lisp_Object files;
2935 Lisp_Object frame;
2936 HDROP hdrop;
2937 POINT p;
2938 WORD num_files;
2939 char *name;
2940 int i, len;
2942 result->kind = DRAG_N_DROP_EVENT;
2943 result->code = 0;
2944 result->timestamp = msg->msg.time;
2945 result->modifiers = msg->dwModifiers;
2947 hdrop = (HDROP) msg->msg.wParam;
2948 DragQueryPoint (hdrop, &p);
2950 #if 0
2951 p.x = LOWORD (msg->msg.lParam);
2952 p.y = HIWORD (msg->msg.lParam);
2953 ScreenToClient (msg->msg.hwnd, &p);
2954 #endif
2956 XSETINT (result->x, p.x);
2957 XSETINT (result->y, p.y);
2959 num_files = DragQueryFile (hdrop, 0xFFFFFFFF, NULL, 0);
2960 files = Qnil;
2962 for (i = 0; i < num_files; i++)
2964 len = DragQueryFile (hdrop, i, NULL, 0);
2965 if (len <= 0)
2966 continue;
2967 name = alloca (len + 1);
2968 DragQueryFile (hdrop, i, name, len + 1);
2969 files = Fcons (DECODE_FILE (build_string (name)), files);
2972 DragFinish (hdrop);
2974 XSETFRAME (frame, f);
2975 result->frame_or_window = Fcons (frame, files);
2976 result->arg = Qnil;
2977 return Qnil;
2981 /* Function to report a mouse movement to the mainstream Emacs code.
2982 The input handler calls this.
2984 We have received a mouse movement event, which is given in *event.
2985 If the mouse is over a different glyph than it was last time, tell
2986 the mainstream emacs code by setting mouse_moved. If not, ask for
2987 another motion event, so we can check again the next time it moves. */
2989 static MSG last_mouse_motion_event;
2990 static Lisp_Object last_mouse_motion_frame;
2992 static void remember_mouse_glyph P_ ((struct frame *, int, int));
2994 static void
2995 note_mouse_movement (frame, msg)
2996 FRAME_PTR frame;
2997 MSG *msg;
2999 int mouse_x = LOWORD (msg->lParam);
3000 int mouse_y = HIWORD (msg->lParam);
3002 last_mouse_movement_time = msg->time;
3003 memcpy (&last_mouse_motion_event, msg, sizeof (last_mouse_motion_event));
3004 XSETFRAME (last_mouse_motion_frame, frame);
3006 if (msg->hwnd != FRAME_W32_WINDOW (frame))
3008 frame->mouse_moved = 1;
3009 last_mouse_scroll_bar = Qnil;
3010 note_mouse_highlight (frame, -1, -1);
3013 /* Has the mouse moved off the glyph it was on at the last sighting? */
3014 else if (mouse_x < last_mouse_glyph.left
3015 || mouse_x > last_mouse_glyph.right
3016 || mouse_y < last_mouse_glyph.top
3017 || mouse_y > last_mouse_glyph.bottom)
3019 frame->mouse_moved = 1;
3020 last_mouse_scroll_bar = Qnil;
3021 note_mouse_highlight (frame, mouse_x, mouse_y);
3022 /* Remember the mouse position here, as w32_mouse_position only
3023 gets called when mouse tracking is enabled but we also need
3024 to keep track of the mouse for help_echo and highlighting at
3025 other times. */
3026 remember_mouse_glyph (frame, mouse_x, mouse_y);
3031 /************************************************************************
3032 Mouse Face
3033 ************************************************************************/
3035 static struct scroll_bar *x_window_to_scroll_bar ();
3036 static void x_scroll_bar_report_motion ();
3037 static void x_check_fullscreen P_ ((struct frame *));
3038 static void x_check_fullscreen_move P_ ((struct frame *));
3039 static int glyph_rect P_ ((struct frame *f, int, int, RECT *));
3042 static void
3043 redo_mouse_highlight ()
3045 if (!NILP (last_mouse_motion_frame)
3046 && FRAME_LIVE_P (XFRAME (last_mouse_motion_frame)))
3047 note_mouse_highlight (XFRAME (last_mouse_motion_frame),
3048 LOWORD (last_mouse_motion_event.lParam),
3049 HIWORD (last_mouse_motion_event.lParam));
3052 void
3053 w32_define_cursor (window, cursor)
3054 Window window;
3055 Cursor cursor;
3057 PostMessage (window, WM_EMACS_SETCURSOR, (WPARAM) cursor, 0);
3060 /* Try to determine frame pixel position and size of the glyph under
3061 frame pixel coordinates X/Y on frame F . Return the position and
3062 size in *RECT. Value is non-zero if we could compute these
3063 values. */
3065 static int
3066 glyph_rect (f, x, y, rect)
3067 struct frame *f;
3068 int x, y;
3069 RECT *rect;
3071 Lisp_Object window;
3073 window = window_from_coordinates (f, x, y, 0, &x, &y, 0);
3075 if (!NILP (window))
3077 struct window *w = XWINDOW (window);
3078 struct glyph_row *r = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
3079 struct glyph_row *end = r + w->current_matrix->nrows - 1;
3081 for (; r < end && r->enabled_p; ++r)
3082 if (r->y <= y && r->y + r->height > y)
3084 /* Found the row at y. */
3085 struct glyph *g = r->glyphs[TEXT_AREA];
3086 struct glyph *end = g + r->used[TEXT_AREA];
3087 int gx;
3089 rect->top = WINDOW_TO_FRAME_PIXEL_Y (w, r->y);
3090 rect->bottom = rect->top + r->height;
3092 if (x < r->x)
3094 /* x is to the left of the first glyph in the row. */
3095 /* Shouldn't this be a pixel value?
3096 WINDOW_LEFT_EDGE_X (w) seems to be the right value.
3097 ++KFS */
3098 rect->left = WINDOW_LEFT_EDGE_COL (w);
3099 rect->right = WINDOW_TO_FRAME_PIXEL_X (w, r->x);
3100 return 1;
3103 for (gx = r->x; g < end; gx += g->pixel_width, ++g)
3104 if (gx <= x && gx + g->pixel_width > x)
3106 /* x is on a glyph. */
3107 rect->left = WINDOW_TO_FRAME_PIXEL_X (w, gx);
3108 rect->right = rect->left + g->pixel_width;
3109 return 1;
3112 /* x is to the right of the last glyph in the row. */
3113 rect->left = WINDOW_TO_FRAME_PIXEL_X (w, gx);
3114 /* Shouldn't this be a pixel value?
3115 WINDOW_RIGHT_EDGE_X (w) seems to be the right value.
3116 ++KFS */
3117 rect->right = WINDOW_RIGHT_EDGE_COL (w);
3118 return 1;
3122 /* The y is not on any row. */
3123 return 0;
3126 /* Record the position of the mouse in last_mouse_glyph. */
3127 static void
3128 remember_mouse_glyph (f1, gx, gy)
3129 struct frame * f1;
3130 int gx, gy;
3132 if (!glyph_rect (f1, gx, gy, &last_mouse_glyph))
3134 int width = FRAME_SMALLEST_CHAR_WIDTH (f1);
3135 int height = FRAME_SMALLEST_FONT_HEIGHT (f1);
3137 /* Arrange for the division in FRAME_PIXEL_X_TO_COL etc. to
3138 round down even for negative values. */
3139 if (gx < 0)
3140 gx -= width - 1;
3141 if (gy < 0)
3142 gy -= height - 1;
3143 #if 0
3144 /* This was the original code from XTmouse_position, but it seems
3145 to give the position of the glyph diagonally next to the one
3146 the mouse is over. */
3147 gx = (gx + width - 1) / width * width;
3148 gy = (gy + height - 1) / height * height;
3149 #else
3150 gx = gx / width * width;
3151 gy = gy / height * height;
3152 #endif
3154 last_mouse_glyph.left = gx;
3155 last_mouse_glyph.top = gy;
3156 last_mouse_glyph.right = gx + width;
3157 last_mouse_glyph.bottom = gy + height;
3161 /* Return the current position of the mouse.
3162 *fp should be a frame which indicates which display to ask about.
3164 If the mouse movement started in a scroll bar, set *fp, *bar_window,
3165 and *part to the frame, window, and scroll bar part that the mouse
3166 is over. Set *x and *y to the portion and whole of the mouse's
3167 position on the scroll bar.
3169 If the mouse movement started elsewhere, set *fp to the frame the
3170 mouse is on, *bar_window to nil, and *x and *y to the character cell
3171 the mouse is over.
3173 Set *time to the server time-stamp for the time at which the mouse
3174 was at this position.
3176 Don't store anything if we don't have a valid set of values to report.
3178 This clears the mouse_moved flag, so we can wait for the next mouse
3179 movement. */
3181 static void
3182 w32_mouse_position (fp, insist, bar_window, part, x, y, time)
3183 FRAME_PTR *fp;
3184 int insist;
3185 Lisp_Object *bar_window;
3186 enum scroll_bar_part *part;
3187 Lisp_Object *x, *y;
3188 unsigned long *time;
3190 FRAME_PTR f1;
3192 BLOCK_INPUT;
3194 if (! NILP (last_mouse_scroll_bar) && insist == 0)
3195 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
3196 else
3198 POINT pt;
3200 Lisp_Object frame, tail;
3202 /* Clear the mouse-moved flag for every frame on this display. */
3203 FOR_EACH_FRAME (tail, frame)
3204 XFRAME (frame)->mouse_moved = 0;
3206 last_mouse_scroll_bar = Qnil;
3208 GetCursorPos (&pt);
3210 /* Now we have a position on the root; find the innermost window
3211 containing the pointer. */
3213 if (FRAME_W32_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
3214 && FRAME_LIVE_P (last_mouse_frame))
3216 /* If mouse was grabbed on a frame, give coords for that frame
3217 even if the mouse is now outside it. */
3218 f1 = last_mouse_frame;
3220 else
3222 /* Is window under mouse one of our frames? */
3223 f1 = x_any_window_to_frame (FRAME_W32_DISPLAY_INFO (*fp),
3224 WindowFromPoint (pt));
3227 /* If not, is it one of our scroll bars? */
3228 if (! f1)
3230 struct scroll_bar *bar
3231 = x_window_to_scroll_bar (WindowFromPoint (pt));
3233 if (bar)
3235 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3239 if (f1 == 0 && insist > 0)
3240 f1 = SELECTED_FRAME ();
3242 if (f1)
3244 /* Ok, we found a frame. Store all the values.
3245 last_mouse_glyph is a rectangle used to reduce the
3246 generation of mouse events. To not miss any motion
3247 events, we must divide the frame into rectangles of the
3248 size of the smallest character that could be displayed
3249 on it, i.e. into the same rectangles that matrices on
3250 the frame are divided into. */
3252 #if OLD_REDISPLAY_CODE
3253 int ignore1, ignore2;
3255 ScreenToClient (FRAME_W32_WINDOW (f1), &pt);
3257 pixel_to_glyph_coords (f1, pt.x, pt.y, &ignore1, &ignore2,
3258 &last_mouse_glyph,
3259 FRAME_W32_DISPLAY_INFO (f1)->grabbed
3260 || insist);
3261 #else
3262 ScreenToClient (FRAME_W32_WINDOW (f1), &pt);
3263 remember_mouse_glyph (f1, pt.x, pt.y);
3264 #endif
3266 *bar_window = Qnil;
3267 *part = 0;
3268 *fp = f1;
3269 XSETINT (*x, pt.x);
3270 XSETINT (*y, pt.y);
3271 *time = last_mouse_movement_time;
3276 UNBLOCK_INPUT;
3280 /***********************************************************************
3281 Tool-bars
3282 ***********************************************************************/
3284 /* Handle mouse button event on the tool-bar of frame F, at
3285 frame-relative coordinates X/Y. EVENT_TYPE is either ButtionPress
3286 or ButtonRelase. */
3288 static void
3289 w32_handle_tool_bar_click (f, button_event)
3290 struct frame *f;
3291 struct input_event *button_event;
3293 int x = XFASTINT (button_event->x);
3294 int y = XFASTINT (button_event->y);
3296 if (button_event->modifiers & down_modifier)
3297 handle_tool_bar_click (f, x, y, 1, 0);
3298 else
3299 handle_tool_bar_click (f, x, y, 0,
3300 button_event->modifiers & ~up_modifier);
3305 /***********************************************************************
3306 Scroll bars
3307 ***********************************************************************/
3309 /* Scroll bar support. */
3311 /* Given a window ID, find the struct scroll_bar which manages it.
3312 This can be called in GC, so we have to make sure to strip off mark
3313 bits. */
3315 static struct scroll_bar *
3316 x_window_to_scroll_bar (window_id)
3317 Window window_id;
3319 Lisp_Object tail;
3321 for (tail = Vframe_list;
3322 XGCTYPE (tail) == Lisp_Cons;
3323 tail = XCDR (tail))
3325 Lisp_Object frame, bar, condemned;
3327 frame = XCAR (tail);
3328 /* All elements of Vframe_list should be frames. */
3329 if (! GC_FRAMEP (frame))
3330 abort ();
3332 /* Scan this frame's scroll bar list for a scroll bar with the
3333 right window ID. */
3334 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
3335 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
3336 /* This trick allows us to search both the ordinary and
3337 condemned scroll bar lists with one loop. */
3338 ! GC_NILP (bar) || (bar = condemned,
3339 condemned = Qnil,
3340 ! GC_NILP (bar));
3341 bar = XSCROLL_BAR (bar)->next)
3342 if (SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar)) == window_id)
3343 return XSCROLL_BAR (bar);
3346 return 0;
3351 /* Set the thumb size and position of scroll bar BAR. We are currently
3352 displaying PORTION out of a whole WHOLE, and our position POSITION. */
3354 static void
3355 w32_set_scroll_bar_thumb (bar, portion, position, whole)
3356 struct scroll_bar *bar;
3357 int portion, position, whole;
3359 Window w = SCROLL_BAR_W32_WINDOW (bar);
3360 double range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
3361 int sb_page, sb_pos;
3362 BOOL draggingp = !NILP (bar->dragging) ? TRUE : FALSE;
3364 if (whole)
3366 /* Position scroll bar at rock bottom if the bottom of the
3367 buffer is visible. This avoids shinking the thumb away
3368 to nothing if it is held at the bottom of the buffer. */
3369 if (position + portion >= whole)
3371 sb_page = range * (whole - position) / whole
3372 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3373 sb_pos = range;
3376 sb_page = portion * range / whole + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3377 sb_pos = position * range / whole;
3379 else
3381 sb_page = range;
3382 sb_pos = 0;
3385 BLOCK_INPUT;
3387 if (pfnSetScrollInfo)
3389 SCROLLINFO si;
3391 si.cbSize = sizeof (si);
3392 /* Only update page size if currently dragging, to reduce
3393 flicker effects. */
3394 if (draggingp)
3395 si.fMask = SIF_PAGE;
3396 else
3397 si.fMask = SIF_PAGE | SIF_POS;
3398 si.nPage = sb_page;
3399 si.nPos = sb_pos;
3401 pfnSetScrollInfo (w, SB_CTL, &si, !draggingp);
3403 else
3404 SetScrollPos (w, SB_CTL, sb_pos, !draggingp);
3406 UNBLOCK_INPUT;
3410 /************************************************************************
3411 Scroll bars, general
3412 ************************************************************************/
3414 HWND
3415 my_create_scrollbar (f, bar)
3416 struct frame * f;
3417 struct scroll_bar * bar;
3419 return (HWND) SendMessage (FRAME_W32_WINDOW (f),
3420 WM_EMACS_CREATESCROLLBAR, (WPARAM) f,
3421 (LPARAM) bar);
3424 /*#define ATTACH_THREADS*/
3426 BOOL
3427 my_show_window (FRAME_PTR f, HWND hwnd, int how)
3429 #ifndef ATTACH_THREADS
3430 return SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_SHOWWINDOW,
3431 (WPARAM) hwnd, (LPARAM) how);
3432 #else
3433 return ShowWindow (hwnd, how);
3434 #endif
3437 void
3438 my_set_window_pos (HWND hwnd, HWND hwndAfter,
3439 int x, int y, int cx, int cy, UINT flags)
3441 #ifndef ATTACH_THREADS
3442 WINDOWPOS pos;
3443 pos.hwndInsertAfter = hwndAfter;
3444 pos.x = x;
3445 pos.y = y;
3446 pos.cx = cx;
3447 pos.cy = cy;
3448 pos.flags = flags;
3449 SendMessage (hwnd, WM_EMACS_SETWINDOWPOS, (WPARAM) &pos, 0);
3450 #else
3451 SetWindowPos (hwnd, hwndAfter, x, y, cx, cy, flags);
3452 #endif
3455 void
3456 my_set_focus (f, hwnd)
3457 struct frame * f;
3458 HWND hwnd;
3460 SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_SETFOCUS,
3461 (WPARAM) hwnd, 0);
3464 void
3465 my_set_foreground_window (hwnd)
3466 HWND hwnd;
3468 SendMessage (hwnd, WM_EMACS_SETFOREGROUND, (WPARAM) hwnd, 0);
3471 void
3472 my_destroy_window (f, hwnd)
3473 struct frame * f;
3474 HWND hwnd;
3476 SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_DESTROYWINDOW,
3477 (WPARAM) hwnd, 0);
3480 /* Create a scroll bar and return the scroll bar vector for it. W is
3481 the Emacs window on which to create the scroll bar. TOP, LEFT,
3482 WIDTH and HEIGHT are.the pixel coordinates and dimensions of the
3483 scroll bar. */
3485 static struct scroll_bar *
3486 x_scroll_bar_create (w, top, left, width, height)
3487 struct window *w;
3488 int top, left, width, height;
3490 struct frame *f = XFRAME (WINDOW_FRAME (w));
3491 HWND hwnd;
3492 struct scroll_bar *bar
3493 = XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE), Qnil));
3495 BLOCK_INPUT;
3497 XSETWINDOW (bar->window, w);
3498 XSETINT (bar->top, top);
3499 XSETINT (bar->left, left);
3500 XSETINT (bar->width, width);
3501 XSETINT (bar->height, height);
3502 XSETINT (bar->start, 0);
3503 XSETINT (bar->end, 0);
3504 bar->dragging = Qnil;
3506 /* Requires geometry to be set before call to create the real window */
3508 hwnd = my_create_scrollbar (f, bar);
3510 if (pfnSetScrollInfo)
3512 SCROLLINFO si;
3514 si.cbSize = sizeof (si);
3515 si.fMask = SIF_ALL;
3516 si.nMin = 0;
3517 si.nMax = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height)
3518 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3519 si.nPage = si.nMax;
3520 si.nPos = 0;
3522 pfnSetScrollInfo (hwnd, SB_CTL, &si, FALSE);
3524 else
3526 SetScrollRange (hwnd, SB_CTL, 0,
3527 VERTICAL_SCROLL_BAR_TOP_RANGE (f, height), FALSE);
3528 SetScrollPos (hwnd, SB_CTL, 0, FALSE);
3531 SET_SCROLL_BAR_W32_WINDOW (bar, hwnd);
3533 /* Add bar to its frame's list of scroll bars. */
3534 bar->next = FRAME_SCROLL_BARS (f);
3535 bar->prev = Qnil;
3536 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
3537 if (! NILP (bar->next))
3538 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
3540 UNBLOCK_INPUT;
3542 return bar;
3546 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
3547 nil. */
3549 static void
3550 x_scroll_bar_remove (bar)
3551 struct scroll_bar *bar;
3553 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3555 BLOCK_INPUT;
3557 /* Destroy the window. */
3558 my_destroy_window (f, SCROLL_BAR_W32_WINDOW (bar));
3560 /* Disassociate this scroll bar from its window. */
3561 XWINDOW (bar->window)->vertical_scroll_bar = Qnil;
3563 UNBLOCK_INPUT;
3566 /* Set the handle of the vertical scroll bar for WINDOW to indicate
3567 that we are displaying PORTION characters out of a total of WHOLE
3568 characters, starting at POSITION. If WINDOW has no scroll bar,
3569 create one. */
3570 static void
3571 w32_set_vertical_scroll_bar (w, portion, whole, position)
3572 struct window *w;
3573 int portion, whole, position;
3575 struct frame *f = XFRAME (w->frame);
3576 struct scroll_bar *bar;
3577 int top, height, left, sb_left, width, sb_width;
3578 int window_y, window_height;
3580 /* Get window dimensions. */
3581 window_box (w, -1, 0, &window_y, 0, &window_height);
3582 top = window_y;
3583 width = WINDOW_CONFIG_SCROLL_BAR_COLS (w) * FRAME_COLUMN_WIDTH (f);
3584 height = window_height;
3586 /* Compute the left edge of the scroll bar area. */
3587 left = WINDOW_SCROLL_BAR_AREA_X (w);
3589 /* Compute the width of the scroll bar which might be less than
3590 the width of the area reserved for the scroll bar. */
3591 if (WINDOW_CONFIG_SCROLL_BAR_WIDTH (w) > 0)
3592 sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
3593 else
3594 sb_width = width;
3596 /* Compute the left edge of the scroll bar. */
3597 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
3598 sb_left = left + width - sb_width - (width - sb_width) / 2;
3599 else
3600 sb_left = left + (width - sb_width) / 2;
3602 /* Does the scroll bar exist yet? */
3603 if (NILP (w->vertical_scroll_bar))
3605 HDC hdc;
3606 BLOCK_INPUT;
3607 if (width > 0 && height > 0)
3609 hdc = get_frame_dc (f);
3610 w32_clear_area (f, hdc, left, top, width, height);
3611 release_frame_dc (f, hdc);
3613 UNBLOCK_INPUT;
3615 bar = x_scroll_bar_create (w, top, sb_left, sb_width, height);
3617 else
3619 /* It may just need to be moved and resized. */
3620 HWND hwnd;
3622 bar = XSCROLL_BAR (w->vertical_scroll_bar);
3623 hwnd = SCROLL_BAR_W32_WINDOW (bar);
3625 /* If already correctly positioned, do nothing. */
3626 if ( XINT (bar->left) == sb_left
3627 && XINT (bar->top) == top
3628 && XINT (bar->width) == sb_width
3629 && XINT (bar->height) == height )
3631 /* Redraw after clear_frame. */
3632 if (!my_show_window (f, hwnd, SW_NORMAL))
3633 InvalidateRect (hwnd, NULL, FALSE);
3635 else
3637 HDC hdc;
3638 BLOCK_INPUT;
3639 if (width && height)
3641 hdc = get_frame_dc (f);
3642 /* Since Windows scroll bars are smaller than the space reserved
3643 for them on the frame, we have to clear "under" them. */
3644 w32_clear_area (f, hdc,
3645 left,
3646 top,
3647 width,
3648 height);
3649 release_frame_dc (f, hdc);
3651 /* Make sure scroll bar is "visible" before moving, to ensure the
3652 area of the parent window now exposed will be refreshed. */
3653 my_show_window (f, hwnd, SW_HIDE);
3654 MoveWindow (hwnd, sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
3655 top, sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
3656 max (height, 1), TRUE);
3657 if (pfnSetScrollInfo)
3659 SCROLLINFO si;
3661 si.cbSize = sizeof (si);
3662 si.fMask = SIF_RANGE;
3663 si.nMin = 0;
3664 si.nMax = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height)
3665 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3667 pfnSetScrollInfo (hwnd, SB_CTL, &si, FALSE);
3669 else
3670 SetScrollRange (hwnd, SB_CTL, 0,
3671 VERTICAL_SCROLL_BAR_TOP_RANGE (f, height), FALSE);
3672 my_show_window (f, hwnd, SW_NORMAL);
3673 /* InvalidateRect (w, NULL, FALSE); */
3675 /* Remember new settings. */
3676 XSETINT (bar->left, sb_left);
3677 XSETINT (bar->top, top);
3678 XSETINT (bar->width, sb_width);
3679 XSETINT (bar->height, height);
3681 UNBLOCK_INPUT;
3684 w32_set_scroll_bar_thumb (bar, portion, position, whole);
3686 XSETVECTOR (w->vertical_scroll_bar, bar);
3690 /* The following three hooks are used when we're doing a thorough
3691 redisplay of the frame. We don't explicitly know which scroll bars
3692 are going to be deleted, because keeping track of when windows go
3693 away is a real pain - "Can you say set-window-configuration, boys
3694 and girls?" Instead, we just assert at the beginning of redisplay
3695 that *all* scroll bars are to be removed, and then save a scroll bar
3696 from the fiery pit when we actually redisplay its window. */
3698 /* Arrange for all scroll bars on FRAME to be removed at the next call
3699 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
3700 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
3702 static void
3703 w32_condemn_scroll_bars (frame)
3704 FRAME_PTR frame;
3706 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
3707 while (! NILP (FRAME_SCROLL_BARS (frame)))
3709 Lisp_Object bar;
3710 bar = FRAME_SCROLL_BARS (frame);
3711 FRAME_SCROLL_BARS (frame) = XSCROLL_BAR (bar)->next;
3712 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
3713 XSCROLL_BAR (bar)->prev = Qnil;
3714 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
3715 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
3716 FRAME_CONDEMNED_SCROLL_BARS (frame) = bar;
3721 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
3722 Note that WINDOW isn't necessarily condemned at all. */
3724 static void
3725 w32_redeem_scroll_bar (window)
3726 struct window *window;
3728 struct scroll_bar *bar;
3729 struct frame *f;
3731 /* We can't redeem this window's scroll bar if it doesn't have one. */
3732 if (NILP (window->vertical_scroll_bar))
3733 abort ();
3735 bar = XSCROLL_BAR (window->vertical_scroll_bar);
3737 /* Unlink it from the condemned list. */
3738 f = XFRAME (WINDOW_FRAME (window));
3739 if (NILP (bar->prev))
3741 /* If the prev pointer is nil, it must be the first in one of
3742 the lists. */
3743 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
3744 /* It's not condemned. Everything's fine. */
3745 return;
3746 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
3747 window->vertical_scroll_bar))
3748 FRAME_CONDEMNED_SCROLL_BARS (f) = bar->next;
3749 else
3750 /* If its prev pointer is nil, it must be at the front of
3751 one or the other! */
3752 abort ();
3754 else
3755 XSCROLL_BAR (bar->prev)->next = bar->next;
3757 if (! NILP (bar->next))
3758 XSCROLL_BAR (bar->next)->prev = bar->prev;
3760 bar->next = FRAME_SCROLL_BARS (f);
3761 bar->prev = Qnil;
3762 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
3763 if (! NILP (bar->next))
3764 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
3767 /* Remove all scroll bars on FRAME that haven't been saved since the
3768 last call to `*condemn_scroll_bars_hook'. */
3770 static void
3771 w32_judge_scroll_bars (f)
3772 FRAME_PTR f;
3774 Lisp_Object bar, next;
3776 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
3778 /* Clear out the condemned list now so we won't try to process any
3779 more events on the hapless scroll bars. */
3780 FRAME_CONDEMNED_SCROLL_BARS (f) = Qnil;
3782 for (; ! NILP (bar); bar = next)
3784 struct scroll_bar *b = XSCROLL_BAR (bar);
3786 x_scroll_bar_remove (b);
3788 next = b->next;
3789 b->next = b->prev = Qnil;
3792 /* Now there should be no references to the condemned scroll bars,
3793 and they should get garbage-collected. */
3796 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
3797 is set to something other than NO_EVENT, it is enqueued.
3799 This may be called from a signal handler, so we have to ignore GC
3800 mark bits. */
3802 static int
3803 w32_scroll_bar_handle_click (bar, msg, emacs_event)
3804 struct scroll_bar *bar;
3805 W32Msg *msg;
3806 struct input_event *emacs_event;
3808 if (! GC_WINDOWP (bar->window))
3809 abort ();
3811 emacs_event->kind = W32_SCROLL_BAR_CLICK_EVENT;
3812 emacs_event->code = 0;
3813 /* not really meaningful to distinguish up/down */
3814 emacs_event->modifiers = msg->dwModifiers;
3815 emacs_event->frame_or_window = bar->window;
3816 emacs_event->arg = Qnil;
3817 emacs_event->timestamp = msg->msg.time;
3820 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
3821 int y;
3822 int dragging = !NILP (bar->dragging);
3824 if (pfnGetScrollInfo)
3826 SCROLLINFO si;
3828 si.cbSize = sizeof (si);
3829 si.fMask = SIF_POS;
3831 pfnGetScrollInfo ((HWND) msg->msg.lParam, SB_CTL, &si);
3832 y = si.nPos;
3834 else
3835 y = GetScrollPos ((HWND) msg->msg.lParam, SB_CTL);
3837 bar->dragging = Qnil;
3840 last_mouse_scroll_bar_pos = msg->msg.wParam;
3842 switch (LOWORD (msg->msg.wParam))
3844 case SB_LINEDOWN:
3845 emacs_event->part = scroll_bar_down_arrow;
3846 break;
3847 case SB_LINEUP:
3848 emacs_event->part = scroll_bar_up_arrow;
3849 break;
3850 case SB_PAGEUP:
3851 emacs_event->part = scroll_bar_above_handle;
3852 break;
3853 case SB_PAGEDOWN:
3854 emacs_event->part = scroll_bar_below_handle;
3855 break;
3856 case SB_TOP:
3857 emacs_event->part = scroll_bar_handle;
3858 y = 0;
3859 break;
3860 case SB_BOTTOM:
3861 emacs_event->part = scroll_bar_handle;
3862 y = top_range;
3863 break;
3864 case SB_THUMBTRACK:
3865 case SB_THUMBPOSITION:
3866 if (VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height)) <= 0xffff)
3867 y = HIWORD (msg->msg.wParam);
3868 bar->dragging = Qt;
3869 emacs_event->part = scroll_bar_handle;
3871 /* "Silently" update current position. */
3872 if (pfnSetScrollInfo)
3874 SCROLLINFO si;
3876 si.cbSize = sizeof (si);
3877 si.fMask = SIF_POS;
3878 si.nPos = y;
3879 /* Remember apparent position (we actually lag behind the real
3880 position, so don't set that directly. */
3881 last_scroll_bar_drag_pos = y;
3883 pfnSetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, FALSE);
3885 else
3886 SetScrollPos (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, y, FALSE);
3887 break;
3888 case SB_ENDSCROLL:
3889 /* If this is the end of a drag sequence, then reset the scroll
3890 handle size to normal and do a final redraw. Otherwise do
3891 nothing. */
3892 if (dragging)
3894 if (pfnSetScrollInfo)
3896 SCROLLINFO si;
3897 int start = XINT (bar->start);
3898 int end = XINT (bar->end);
3900 si.cbSize = sizeof (si);
3901 si.fMask = SIF_PAGE | SIF_POS;
3902 si.nPage = end - start + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3903 si.nPos = last_scroll_bar_drag_pos;
3904 pfnSetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, TRUE);
3906 else
3907 SetScrollPos (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, y, TRUE);
3909 /* fall through */
3910 default:
3911 emacs_event->kind = NO_EVENT;
3912 return FALSE;
3915 XSETINT (emacs_event->x, y);
3916 XSETINT (emacs_event->y, top_range);
3918 return TRUE;
3922 /* Return information to the user about the current position of the mouse
3923 on the scroll bar. */
3925 static void
3926 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time)
3927 FRAME_PTR *fp;
3928 Lisp_Object *bar_window;
3929 enum scroll_bar_part *part;
3930 Lisp_Object *x, *y;
3931 unsigned long *time;
3933 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
3934 Window w = SCROLL_BAR_W32_WINDOW (bar);
3935 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3936 int pos;
3937 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
3939 BLOCK_INPUT;
3941 *fp = f;
3942 *bar_window = bar->window;
3944 if (pfnGetScrollInfo)
3946 SCROLLINFO si;
3948 si.cbSize = sizeof (si);
3949 si.fMask = SIF_POS | SIF_PAGE | SIF_RANGE;
3951 pfnGetScrollInfo (w, SB_CTL, &si);
3952 pos = si.nPos;
3953 top_range = si.nMax - si.nPage + 1;
3955 else
3956 pos = GetScrollPos (w, SB_CTL);
3958 switch (LOWORD (last_mouse_scroll_bar_pos))
3960 case SB_THUMBPOSITION:
3961 case SB_THUMBTRACK:
3962 *part = scroll_bar_handle;
3963 if (VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height)) <= 0xffff)
3964 pos = HIWORD (last_mouse_scroll_bar_pos);
3965 break;
3966 case SB_LINEDOWN:
3967 *part = scroll_bar_handle;
3968 pos++;
3969 break;
3970 default:
3971 *part = scroll_bar_handle;
3972 break;
3975 XSETINT (*x, pos);
3976 XSETINT (*y, top_range);
3978 f->mouse_moved = 0;
3979 last_mouse_scroll_bar = Qnil;
3981 *time = last_mouse_movement_time;
3983 UNBLOCK_INPUT;
3987 /* The screen has been cleared so we may have changed foreground or
3988 background colors, and the scroll bars may need to be redrawn.
3989 Clear out the scroll bars, and ask for expose events, so we can
3990 redraw them. */
3992 void
3993 x_scroll_bar_clear (f)
3994 FRAME_PTR f;
3996 Lisp_Object bar;
3998 /* We can have scroll bars even if this is 0,
3999 if we just turned off scroll bar mode.
4000 But in that case we should not clear them. */
4001 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
4002 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
4003 bar = XSCROLL_BAR (bar)->next)
4005 HWND window = SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar));
4006 HDC hdc = GetDC (window);
4007 RECT rect;
4009 /* Hide scroll bar until ready to repaint. x_scroll_bar_move
4010 arranges to refresh the scroll bar if hidden. */
4011 my_show_window (f, window, SW_HIDE);
4013 GetClientRect (window, &rect);
4014 select_palette (f, hdc);
4015 w32_clear_rect (f, hdc, &rect);
4016 deselect_palette (f, hdc);
4018 ReleaseDC (window, hdc);
4023 /* The main W32 event-reading loop - w32_read_socket. */
4025 /* Record the last 100 characters stored
4026 to help debug the loss-of-chars-during-GC problem. */
4028 static int temp_index;
4029 static short temp_buffer[100];
4032 /* Read events coming from the W32 shell.
4033 This routine is called by the SIGIO handler.
4034 We return as soon as there are no more events to be read.
4036 Events representing keys are stored in buffer BUFP,
4037 which can hold up to NUMCHARS characters.
4038 We return the number of characters stored into the buffer,
4039 thus pretending to be `read'.
4041 EXPECTED is nonzero if the caller knows input is available.
4043 Some of these messages are reposted back to the message queue since the
4044 system calls the windows proc directly in a context where we cannot return
4045 the data nor can we guarantee the state we are in. So if we dispatch them
4046 we will get into an infinite loop. To prevent this from ever happening we
4047 will set a variable to indicate we are in the read_socket call and indicate
4048 which message we are processing since the windows proc gets called
4049 recursively with different messages by the system.
4053 w32_read_socket (sd, bufp, numchars, expected)
4054 register int sd;
4055 /* register */ struct input_event *bufp;
4056 /* register */ int numchars;
4057 int expected;
4059 int count = 0;
4060 int check_visibility = 0;
4061 W32Msg msg;
4062 struct frame *f;
4063 struct w32_display_info *dpyinfo = &one_w32_display_info;
4065 if (interrupt_input_blocked)
4067 interrupt_input_pending = 1;
4068 return -1;
4071 interrupt_input_pending = 0;
4072 BLOCK_INPUT;
4074 /* So people can tell when we have read the available input. */
4075 input_signal_count++;
4077 if (numchars <= 0)
4078 abort (); /* Don't think this happens. */
4080 /* TODO: tool-bars, ghostscript integration, mouse
4081 cursors. */
4082 while (get_next_msg (&msg, FALSE))
4084 switch (msg.msg.message)
4086 case WM_PAINT:
4087 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4089 if (f)
4091 if (msg.rect.right == msg.rect.left ||
4092 msg.rect.bottom == msg.rect.top)
4094 /* We may get paint messages even though the client
4095 area is clipped - these are not expose events. */
4096 DebPrint (("clipped frame %p (%s) got WM_PAINT - ignored\n", f,
4097 SDATA (f->name)));
4099 else if (f->async_visible != 1)
4101 /* Definitely not obscured, so mark as visible. */
4102 f->async_visible = 1;
4103 f->async_iconified = 0;
4104 SET_FRAME_GARBAGED (f);
4105 DebPrint (("frame %p (%s) reexposed by WM_PAINT\n", f,
4106 SDATA (f->name)));
4108 /* WM_PAINT serves as MapNotify as well, so report
4109 visibility changes properly. */
4110 if (f->iconified)
4112 bufp->kind = DEICONIFY_EVENT;
4113 XSETFRAME (bufp->frame_or_window, f);
4114 bufp->arg = Qnil;
4115 bufp++;
4116 count++;
4117 numchars--;
4119 else if (! NILP (Vframe_list)
4120 && ! NILP (XCDR (Vframe_list)))
4121 /* Force a redisplay sooner or later to update the
4122 frame titles in case this is the second frame. */
4123 record_asynch_buffer_change ();
4125 else
4127 HDC hdc = get_frame_dc (f);
4129 /* Erase background again for safety. */
4130 w32_clear_rect (f, hdc, &msg.rect);
4131 release_frame_dc (f, hdc);
4132 expose_frame (f,
4133 msg.rect.left,
4134 msg.rect.top,
4135 msg.rect.right - msg.rect.left,
4136 msg.rect.bottom - msg.rect.top);
4139 break;
4141 case WM_INPUTLANGCHANGE:
4142 /* Generate a language change event. */
4143 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4145 if (f)
4147 if (numchars == 0)
4148 abort ();
4150 bufp->kind = LANGUAGE_CHANGE_EVENT;
4151 XSETFRAME (bufp->frame_or_window, f);
4152 bufp->arg = Qnil;
4153 bufp->code = msg.msg.wParam;
4154 bufp->modifiers = msg.msg.lParam & 0xffff;
4155 bufp++;
4156 count++;
4157 numchars--;
4159 break;
4161 case WM_KEYDOWN:
4162 case WM_SYSKEYDOWN:
4163 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4165 if (f && !f->iconified)
4167 if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight))
4169 dpyinfo->mouse_face_hidden = 1;
4170 clear_mouse_face (dpyinfo);
4173 if (temp_index == sizeof temp_buffer / sizeof (short))
4174 temp_index = 0;
4175 temp_buffer[temp_index++] = msg.msg.wParam;
4176 bufp->kind = NON_ASCII_KEYSTROKE_EVENT;
4177 bufp->code = msg.msg.wParam;
4178 bufp->modifiers = msg.dwModifiers;
4179 XSETFRAME (bufp->frame_or_window, f);
4180 bufp->arg = Qnil;
4181 bufp->timestamp = msg.msg.time;
4182 bufp++;
4183 numchars--;
4184 count++;
4186 break;
4188 case WM_SYSCHAR:
4189 case WM_CHAR:
4190 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4192 if (f && !f->iconified)
4194 if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight))
4196 dpyinfo->mouse_face_hidden = 1;
4197 clear_mouse_face (dpyinfo);
4200 if (temp_index == sizeof temp_buffer / sizeof (short))
4201 temp_index = 0;
4202 temp_buffer[temp_index++] = msg.msg.wParam;
4203 bufp->kind = ASCII_KEYSTROKE_EVENT;
4204 bufp->code = msg.msg.wParam;
4205 bufp->modifiers = msg.dwModifiers;
4206 XSETFRAME (bufp->frame_or_window, f);
4207 bufp->arg = Qnil;
4208 bufp->timestamp = msg.msg.time;
4209 bufp++;
4210 numchars--;
4211 count++;
4213 break;
4215 case WM_MOUSEMOVE:
4216 /* Ignore non-movement. */
4218 int x = LOWORD (msg.msg.lParam);
4219 int y = HIWORD (msg.msg.lParam);
4220 if (x == last_mousemove_x && y == last_mousemove_y)
4221 break;
4222 last_mousemove_x = x;
4223 last_mousemove_y = y;
4226 previous_help_echo_string = help_echo_string;
4228 if (dpyinfo->grabbed && last_mouse_frame
4229 && FRAME_LIVE_P (last_mouse_frame))
4230 f = last_mouse_frame;
4231 else
4232 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4234 if (dpyinfo->mouse_face_hidden)
4236 dpyinfo->mouse_face_hidden = 0;
4237 clear_mouse_face (dpyinfo);
4240 if (f)
4242 /* Generate SELECT_WINDOW_EVENTs when needed. */
4243 if (mouse_autoselect_window)
4245 Lisp_Object window;
4246 int x = LOWORD (msg.msg.lParam);
4247 int y = HIWORD (msg.msg.lParam);
4249 window = window_from_coordinates (f, x, y, 0, 0, 0, 0);
4251 /* Window will be selected only when it is not
4252 selected now and last mouse movement event was
4253 not in it. Minibuffer window will be selected
4254 iff it is active. */
4255 if (WINDOWP(window)
4256 && !EQ (window, last_window)
4257 && !EQ (window, selected_window)
4258 && numchars > 0)
4260 bufp->kind = SELECT_WINDOW_EVENT;
4261 bufp->frame_or_window = window;
4262 bufp->arg = Qnil;
4263 ++bufp, ++count, --numchars;
4266 last_window=window;
4268 note_mouse_movement (f, &msg.msg);
4270 else
4272 /* If we move outside the frame, then we're
4273 certainly no longer on any text in the frame. */
4274 clear_mouse_face (dpyinfo);
4277 /* If the contents of the global variable help_echo_string
4278 has changed, generate a HELP_EVENT. */
4279 if (help_echo_string != previous_help_echo_string ||
4280 (!NILP (help_echo_string) && !STRINGP (help_echo_string) && f->mouse_moved))
4282 Lisp_Object frame;
4283 int n;
4285 if (help_echo_string == Qnil)
4287 help_echo_object = help_echo_window = Qnil;
4288 help_echo_pos = -1;
4291 if (f)
4292 XSETFRAME (frame, f);
4293 else
4294 frame = Qnil;
4296 any_help_event_p = 1;
4297 n = gen_help_event (bufp, numchars, help_echo_string, frame,
4298 help_echo_window, help_echo_object,
4299 help_echo_pos);
4300 bufp += n, count += n, numchars -= n;
4302 break;
4304 case WM_LBUTTONDOWN:
4305 case WM_LBUTTONUP:
4306 case WM_MBUTTONDOWN:
4307 case WM_MBUTTONUP:
4308 case WM_RBUTTONDOWN:
4309 case WM_RBUTTONUP:
4310 case WM_XBUTTONDOWN:
4311 case WM_XBUTTONUP:
4313 /* If we decide we want to generate an event to be seen
4314 by the rest of Emacs, we put it here. */
4315 struct input_event emacs_event;
4316 int tool_bar_p = 0;
4317 int button;
4318 int up;
4320 emacs_event.kind = NO_EVENT;
4322 if (dpyinfo->grabbed && last_mouse_frame
4323 && FRAME_LIVE_P (last_mouse_frame))
4324 f = last_mouse_frame;
4325 else
4326 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4328 if (f)
4330 construct_mouse_click (&emacs_event, &msg, f);
4332 /* Is this in the tool-bar? */
4333 if (WINDOWP (f->tool_bar_window)
4334 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)))
4336 Lisp_Object window;
4337 int x = XFASTINT (emacs_event.x);
4338 int y = XFASTINT (emacs_event.y);
4340 window = window_from_coordinates (f, x, y, 0, 0, 0, 1);
4342 if (EQ (window, f->tool_bar_window))
4344 w32_handle_tool_bar_click (f, &emacs_event);
4345 tool_bar_p = 1;
4349 if (!tool_bar_p)
4350 if (!dpyinfo->w32_focus_frame
4351 || f == dpyinfo->w32_focus_frame
4352 && (numchars >= 1))
4354 construct_mouse_click (bufp, &msg, f);
4355 bufp++;
4356 count++;
4357 numchars--;
4361 parse_button (msg.msg.message, HIWORD (msg.msg.wParam),
4362 &button, &up);
4364 if (up)
4366 dpyinfo->grabbed &= ~ (1 << button);
4368 else
4370 dpyinfo->grabbed |= (1 << button);
4371 last_mouse_frame = f;
4372 /* Ignore any mouse motion that happened
4373 before this event; any subsequent mouse-movement
4374 Emacs events should reflect only motion after
4375 the ButtonPress. */
4376 if (f != 0)
4377 f->mouse_moved = 0;
4379 if (!tool_bar_p)
4380 last_tool_bar_item = -1;
4382 break;
4385 case WM_MOUSEWHEEL:
4387 /* Convert each Windows mouse wheel event in a couple of
4388 Emacs mouse click down/up events. Scrolling the wheel up
4389 is associated to mouse button 4 and scrolling the wheel
4390 down to the mouse button 5. */
4391 int button;
4392 int up;
4394 up = msg.dwModifiers & up_modifier;
4396 if (dpyinfo->grabbed && last_mouse_frame
4397 && FRAME_LIVE_P (last_mouse_frame))
4398 f = last_mouse_frame;
4399 else
4400 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4402 if (f)
4404 Lisp_Object window;
4405 POINT p;
4406 int x, y;
4408 p.x = LOWORD (msg.msg.lParam);
4409 p.y = HIWORD (msg.msg.lParam);
4410 ScreenToClient (msg.msg.hwnd, &p);
4411 x = XFASTINT (p.x);
4412 y = XFASTINT (p.y);
4414 window = window_from_coordinates (f, x, y, 0, 0, 0, 0);
4416 /* Ignore mouse wheel events not in a window. */
4417 if (!WINDOWP(window))
4418 break;
4420 if ((!dpyinfo->w32_focus_frame
4421 || f == dpyinfo->w32_focus_frame)
4422 && (numchars >= 1))
4424 if ( !up )
4426 /* Emit an Emacs mouse down message. */
4427 msg.dwModifiers |= down_modifier;
4428 construct_mouse_wheel (bufp, &msg, f);
4429 bufp++;
4430 count++;
4431 numchars--;
4433 /* Push a simulated WM_MOUSEWHEEL up message. */
4434 msg.dwModifiers &= ~down_modifier;
4435 msg.dwModifiers |= up_modifier;
4436 prepend_msg (&msg);
4438 else
4440 /* Emit an Emacs mouse up message. */
4441 construct_mouse_wheel (bufp, &msg, f);
4442 bufp++;
4443 count++;
4444 numchars--;
4449 button = ( GET_WHEEL_DELTA_WPARAM (msg.msg.wParam) < 0 )? 4 : 3;
4451 if (up)
4453 dpyinfo->grabbed &= ~ (1 << button);
4455 else
4457 dpyinfo->grabbed |= (1 << button);
4458 last_mouse_frame = f;
4459 /* Ignore any mouse motion that happened
4460 before this event; any subsequent mouse-movement
4461 Emacs events should reflect only motion after
4462 the ButtonPress. */
4463 if (f != 0)
4464 f->mouse_moved = 0;
4466 last_tool_bar_item = -1;
4469 break;
4471 case WM_DROPFILES:
4472 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4474 if (f)
4476 construct_drag_n_drop (bufp, &msg, f);
4477 bufp++;
4478 count++;
4479 numchars--;
4481 break;
4483 case WM_VSCROLL:
4485 struct scroll_bar *bar =
4486 x_window_to_scroll_bar ((HWND)msg.msg.lParam);
4488 if (bar && numchars >= 1)
4490 if (w32_scroll_bar_handle_click (bar, &msg, bufp))
4492 bufp++;
4493 count++;
4494 numchars--;
4497 break;
4500 case WM_WINDOWPOSCHANGED:
4501 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4502 if (f)
4504 x_check_fullscreen_move(f);
4505 if (f->want_fullscreen & FULLSCREEN_WAIT)
4506 f->want_fullscreen &= ~(FULLSCREEN_WAIT|FULLSCREEN_BOTH);
4508 check_visibility = 1;
4509 break;
4511 case WM_ACTIVATE:
4512 case WM_ACTIVATEAPP:
4513 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4514 if (f)
4515 x_check_fullscreen (f);
4516 check_visibility = 1;
4517 break;
4519 case WM_MOVE:
4520 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4522 if (f && !f->async_iconified)
4524 int x, y;
4526 x_real_positions (f, &x, &y);
4527 f->left_pos = x;
4528 f->top_pos = y;
4531 check_visibility = 1;
4532 break;
4534 case WM_SHOWWINDOW:
4535 /* wParam non-zero means Window is about to be shown, 0 means
4536 about to be hidden. */
4537 /* Redo the mouse-highlight after the tooltip has gone. */
4538 if (!msg.msg.wParam && msg.msg.hwnd == tip_window)
4540 tip_window = NULL;
4541 redo_mouse_highlight ();
4544 /* If window has been obscured or exposed by another window
4545 being maximised or minimised/restored, then recheck
4546 visibility of all frames. Direct changes to our own
4547 windows get handled by WM_SIZE. */
4548 #if 0
4549 if (msg.msg.lParam != 0)
4550 check_visibility = 1;
4551 else
4553 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4554 f->async_visible = msg.msg.wParam;
4556 #endif
4558 check_visibility = 1;
4559 break;
4561 case WM_SIZE:
4562 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4564 /* Inform lisp of whether frame has been iconified etc. */
4565 if (f)
4567 switch (msg.msg.wParam)
4569 case SIZE_MINIMIZED:
4570 f->async_visible = 0;
4571 f->async_iconified = 1;
4573 bufp->kind = ICONIFY_EVENT;
4574 XSETFRAME (bufp->frame_or_window, f);
4575 bufp->arg = Qnil;
4576 bufp++;
4577 count++;
4578 numchars--;
4579 break;
4581 case SIZE_MAXIMIZED:
4582 case SIZE_RESTORED:
4583 f->async_visible = 1;
4584 f->async_iconified = 0;
4586 /* wait_reading_process_input will notice this and update
4587 the frame's display structures. */
4588 SET_FRAME_GARBAGED (f);
4590 if (f->iconified)
4592 int x, y;
4594 /* Reset top and left positions of the Window
4595 here since Windows sends a WM_MOVE message
4596 BEFORE telling us the Window is minimized
4597 when the Window is iconified, with 3000,3000
4598 as the co-ords. */
4599 x_real_positions (f, &x, &y);
4600 f->left_pos = x;
4601 f->top_pos = y;
4603 bufp->kind = DEICONIFY_EVENT;
4604 XSETFRAME (bufp->frame_or_window, f);
4605 bufp->arg = Qnil;
4606 bufp++;
4607 count++;
4608 numchars--;
4610 else if (! NILP (Vframe_list)
4611 && ! NILP (XCDR (Vframe_list)))
4612 /* Force a redisplay sooner or later
4613 to update the frame titles
4614 in case this is the second frame. */
4615 record_asynch_buffer_change ();
4616 break;
4620 if (f && !f->async_iconified && msg.msg.wParam != SIZE_MINIMIZED)
4622 RECT rect;
4623 int rows;
4624 int columns;
4625 int width;
4626 int height;
4628 GetClientRect (msg.msg.hwnd, &rect);
4630 height = rect.bottom - rect.top;
4631 width = rect.right - rect.left;
4633 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, height);
4634 columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, width);
4636 /* TODO: Clip size to the screen dimensions. */
4638 /* Even if the number of character rows and columns has
4639 not changed, the font size may have changed, so we need
4640 to check the pixel dimensions as well. */
4642 if (columns != FRAME_COLS (f)
4643 || rows != FRAME_LINES (f)
4644 || width != FRAME_PIXEL_WIDTH (f)
4645 || height != FRAME_PIXEL_HEIGHT (f))
4647 change_frame_size (f, rows, columns, 0, 1, 0);
4648 SET_FRAME_GARBAGED (f);
4649 cancel_mouse_face (f);
4650 FRAME_PIXEL_WIDTH (f) = width;
4651 FRAME_PIXEL_HEIGHT (f) = height;
4652 f->win_gravity = NorthWestGravity;
4656 check_visibility = 1;
4657 break;
4659 case WM_MOUSELEAVE:
4660 f = x_any_window_to_frame (dpyinfo, msg.msg.hwnd);
4661 if (f)
4663 if (f == dpyinfo->mouse_face_mouse_frame)
4665 /* If we move outside the frame, then we're
4666 certainly no longer on any text in the frame. */
4667 clear_mouse_face (dpyinfo);
4668 dpyinfo->mouse_face_mouse_frame = 0;
4671 /* Generate a nil HELP_EVENT to cancel a help-echo.
4672 Do it only if there's something to cancel.
4673 Otherwise, the startup message is cleared when
4674 the mouse leaves the frame. */
4675 if (any_help_event_p)
4677 Lisp_Object frame;
4678 int n;
4680 XSETFRAME (frame, f);
4681 help_echo_string = Qnil;
4682 n = gen_help_event (bufp, numchars,
4683 Qnil, frame, Qnil, Qnil, 0);
4684 bufp += n, count += n, numchars -= n;
4687 break;
4689 case WM_SETFOCUS:
4690 /* TODO: Port this change:
4691 2002-06-28 Jan D. <jan.h.d@swipnet.se>
4692 * xterm.h (struct x_output): Add focus_state.
4693 * xterm.c (x_focus_changed): New function.
4694 (x_detect_focus_change): New function.
4695 (XTread_socket): Call x_detect_focus_change for FocusIn/FocusOut
4696 EnterNotify and LeaveNotify to track X focus changes.
4698 f = x_any_window_to_frame (dpyinfo, msg.msg.hwnd);
4700 dpyinfo->w32_focus_event_frame = f;
4702 if (f)
4703 x_new_focus_frame (dpyinfo, f);
4706 dpyinfo->grabbed = 0;
4707 check_visibility = 1;
4708 break;
4710 case WM_KILLFOCUS:
4711 /* TODO: some of this belongs in MOUSE_LEAVE */
4712 f = x_top_window_to_frame (dpyinfo, msg.msg.hwnd);
4714 if (f)
4716 if (f == dpyinfo->w32_focus_event_frame)
4717 dpyinfo->w32_focus_event_frame = 0;
4719 if (f == dpyinfo->w32_focus_frame)
4720 x_new_focus_frame (dpyinfo, 0);
4722 if (f == dpyinfo->mouse_face_mouse_frame)
4724 /* If we move outside the frame, then we're
4725 certainly no longer on any text in the frame. */
4726 clear_mouse_face (dpyinfo);
4727 dpyinfo->mouse_face_mouse_frame = 0;
4730 /* Generate a nil HELP_EVENT to cancel a help-echo.
4731 Do it only if there's something to cancel.
4732 Otherwise, the startup message is cleared when
4733 the mouse leaves the frame. */
4734 if (any_help_event_p)
4736 Lisp_Object frame;
4737 int n;
4739 XSETFRAME (frame, f);
4740 help_echo_string = Qnil;
4741 n = gen_help_event (bufp, numchars,
4742 Qnil, frame, Qnil, Qnil, 0);
4743 bufp += n, count += n, numchars -=n;
4747 dpyinfo->grabbed = 0;
4748 check_visibility = 1;
4749 break;
4751 case WM_CLOSE:
4752 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4754 if (f)
4756 if (numchars == 0)
4757 abort ();
4759 bufp->kind = DELETE_WINDOW_EVENT;
4760 XSETFRAME (bufp->frame_or_window, f);
4761 bufp->arg = Qnil;
4762 bufp++;
4763 count++;
4764 numchars--;
4766 break;
4768 case WM_INITMENU:
4769 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4771 if (f)
4773 if (numchars == 0)
4774 abort ();
4776 bufp->kind = MENU_BAR_ACTIVATE_EVENT;
4777 XSETFRAME (bufp->frame_or_window, f);
4778 bufp->arg = Qnil;
4779 bufp++;
4780 count++;
4781 numchars--;
4783 break;
4785 case WM_COMMAND:
4786 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4788 if (f)
4790 extern void menubar_selection_callback
4791 (FRAME_PTR f, void * client_data);
4792 menubar_selection_callback (f, (void *)msg.msg.wParam);
4795 check_visibility = 1;
4796 break;
4798 case WM_DISPLAYCHANGE:
4799 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4801 if (f)
4803 dpyinfo->width = (short) LOWORD (msg.msg.lParam);
4804 dpyinfo->height = (short) HIWORD (msg.msg.lParam);
4805 dpyinfo->n_cbits = msg.msg.wParam;
4806 DebPrint (("display change: %d %d\n", dpyinfo->width,
4807 dpyinfo->height));
4810 check_visibility = 1;
4811 break;
4813 default:
4814 /* Check for messages registered at runtime. */
4815 if (msg.msg.message == msh_mousewheel)
4817 if (dpyinfo->grabbed && last_mouse_frame
4818 && FRAME_LIVE_P (last_mouse_frame))
4819 f = last_mouse_frame;
4820 else
4821 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4823 if (f)
4825 if ((!dpyinfo->w32_focus_frame
4826 || f == dpyinfo->w32_focus_frame)
4827 && (numchars >= 1))
4829 construct_mouse_wheel (bufp, &msg, f);
4830 bufp++;
4831 count++;
4832 numchars--;
4836 break;
4840 /* If the focus was just given to an autoraising frame,
4841 raise it now. */
4842 /* ??? This ought to be able to handle more than one such frame. */
4843 if (pending_autoraise_frame)
4845 x_raise_frame (pending_autoraise_frame);
4846 pending_autoraise_frame = 0;
4849 /* Check which frames are still visisble, if we have enqueued any user
4850 events or been notified of events that may affect visibility. We
4851 do this here because there doesn't seem to be any direct
4852 notification from Windows that the visibility of a window has
4853 changed (at least, not in all cases). */
4854 if (count > 0 || check_visibility)
4856 Lisp_Object tail, frame;
4858 FOR_EACH_FRAME (tail, frame)
4860 FRAME_PTR f = XFRAME (frame);
4861 /* The tooltip has been drawn already. Avoid the
4862 SET_FRAME_GARBAGED below. */
4863 if (EQ (frame, tip_frame))
4864 continue;
4866 /* Check "visible" frames and mark each as obscured or not.
4867 Note that async_visible is nonzero for unobscured and
4868 obscured frames, but zero for hidden and iconified frames. */
4869 if (FRAME_W32_P (f) && f->async_visible)
4871 RECT clipbox;
4872 HDC hdc;
4874 enter_crit ();
4875 /* Query clipping rectangle for the entire window area
4876 (GetWindowDC), not just the client portion (GetDC).
4877 Otherwise, the scrollbars and menubar aren't counted as
4878 part of the visible area of the frame, and we may think
4879 the frame is obscured when really a scrollbar is still
4880 visible and gets WM_PAINT messages above. */
4881 hdc = GetWindowDC (FRAME_W32_WINDOW (f));
4882 GetClipBox (hdc, &clipbox);
4883 ReleaseDC (FRAME_W32_WINDOW (f), hdc);
4884 leave_crit ();
4886 if (clipbox.right == clipbox.left
4887 || clipbox.bottom == clipbox.top)
4889 /* Frame has become completely obscured so mark as
4890 such (we do this by setting async_visible to 2 so
4891 that FRAME_VISIBLE_P is still true, but redisplay
4892 will skip it). */
4893 f->async_visible = 2;
4895 if (!FRAME_OBSCURED_P (f))
4897 DebPrint (("frame %p (%s) obscured\n", f,
4898 SDATA (f->name)));
4901 else
4903 /* Frame is not obscured, so mark it as such. */
4904 f->async_visible = 1;
4906 if (FRAME_OBSCURED_P (f))
4908 SET_FRAME_GARBAGED (f);
4909 DebPrint (("obscured frame %p (%s) found to be visible\n", f,
4910 SDATA (f->name)));
4912 /* Force a redisplay sooner or later. */
4913 record_asynch_buffer_change ();
4920 UNBLOCK_INPUT;
4921 return count;
4927 /***********************************************************************
4928 Text Cursor
4929 ***********************************************************************/
4931 /* Set clipping for output in glyph row ROW. W is the window in which
4932 we operate. GC is the graphics context to set clipping in.
4934 ROW may be a text row or, e.g., a mode line. Text rows must be
4935 clipped to the interior of the window dedicated to text display,
4936 mode lines must be clipped to the whole window. */
4938 static void
4939 w32_clip_to_row (w, row, hdc)
4940 struct window *w;
4941 struct glyph_row *row;
4942 HDC hdc;
4944 struct frame *f = XFRAME (WINDOW_FRAME (w));
4945 RECT clip_rect;
4946 int window_y, window_width;
4948 window_box (w, -1, 0, &window_y, &window_width, 0);
4950 clip_rect.left = WINDOW_TO_FRAME_PIXEL_X (w, 0);
4951 clip_rect.top = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
4952 clip_rect.top = max (clip_rect.top, window_y);
4953 clip_rect.right = clip_rect.left + window_width;
4954 clip_rect.bottom = clip_rect.top + row->visible_height;
4956 w32_set_clip_rectangle (hdc, &clip_rect);
4960 /* Draw a hollow box cursor on window W in glyph row ROW. */
4962 static void
4963 x_draw_hollow_cursor (w, row)
4964 struct window *w;
4965 struct glyph_row *row;
4967 struct frame *f = XFRAME (WINDOW_FRAME (w));
4968 HDC hdc;
4969 RECT rect;
4970 int wd;
4971 struct glyph *cursor_glyph;
4972 HBRUSH hb = CreateSolidBrush (f->output_data.w32->cursor_pixel);
4974 /* Compute frame-relative coordinates from window-relative
4975 coordinates. */
4976 rect.left = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
4977 rect.top = (WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y)
4978 + row->ascent - w->phys_cursor_ascent);
4979 rect.bottom = rect.top + row->height;
4981 /* Get the glyph the cursor is on. If we can't tell because
4982 the current matrix is invalid or such, give up. */
4983 cursor_glyph = get_phys_cursor_glyph (w);
4984 if (cursor_glyph == NULL)
4985 return;
4987 /* Compute the width of the rectangle to draw. If on a stretch
4988 glyph, and `x-stretch-block-cursor' is nil, don't draw a
4989 rectangle as wide as the glyph, but use a canonical character
4990 width instead. */
4991 wd = cursor_glyph->pixel_width;
4992 if (cursor_glyph->type == STRETCH_GLYPH
4993 && !x_stretch_cursor_p)
4994 wd = min (FRAME_COLUMN_WIDTH (f), wd);
4995 w->phys_cursor_width = wd;
4997 rect.right = rect.left + wd;
4998 hdc = get_frame_dc (f);
4999 /* Set clipping, draw the rectangle, and reset clipping again. */
5000 w32_clip_to_row (w, row, hdc);
5001 FrameRect (hdc, &rect, hb);
5002 DeleteObject (hb);
5003 w32_set_clip_rectangle (hdc, NULL);
5004 release_frame_dc (f, hdc);
5008 /* Draw a bar cursor on window W in glyph row ROW.
5010 Implementation note: One would like to draw a bar cursor with an
5011 angle equal to the one given by the font property XA_ITALIC_ANGLE.
5012 Unfortunately, I didn't find a font yet that has this property set.
5013 --gerd. */
5015 static void
5016 x_draw_bar_cursor (w, row, width, kind)
5017 struct window *w;
5018 struct glyph_row *row;
5019 int width;
5020 enum text_cursor_kinds kind;
5022 struct frame *f = XFRAME (w->frame);
5023 struct glyph *cursor_glyph;
5024 int x;
5025 HDC hdc;
5027 /* If cursor is out of bounds, don't draw garbage. This can happen
5028 in mini-buffer windows when switching between echo area glyphs
5029 and mini-buffer. */
5030 cursor_glyph = get_phys_cursor_glyph (w);
5031 if (cursor_glyph == NULL)
5032 return;
5034 /* If on an image, draw like a normal cursor. That's usually better
5035 visible than drawing a bar, esp. if the image is large so that
5036 the bar might not be in the window. */
5037 if (cursor_glyph->type == IMAGE_GLYPH)
5039 struct glyph_row *row;
5040 row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
5041 draw_phys_cursor_glyph (w, row, DRAW_CURSOR);
5043 else
5045 COLORREF cursor_color = f->output_data.w32->cursor_pixel;
5046 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
5048 /* If the glyph's background equals the color we normally draw
5049 the bar cursor in, the bar cursor in its normal color is
5050 invisible. Use the glyph's foreground color instead in this
5051 case, on the assumption that the glyph's colors are chosen so
5052 that the glyph is legible. */
5053 if (face->background == cursor_color)
5054 cursor_color = face->foreground;
5056 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
5058 if (width < 0)
5059 width = FRAME_CURSOR_WIDTH (f);
5060 width = min (cursor_glyph->pixel_width, width);
5062 w->phys_cursor_width = width;
5065 hdc = get_frame_dc (f);
5066 w32_clip_to_row (w, row, hdc);
5068 if (kind == BAR_CURSOR)
5070 w32_fill_area (f, hdc, cursor_color, x,
5071 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
5072 width, row->height);
5074 else
5076 w32_fill_area (f, hdc, cursor_color, x,
5077 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
5078 row->height - width),
5079 cursor_glyph->pixel_width, width);
5082 w32_set_clip_rectangle (hdc, NULL);
5083 release_frame_dc (f, hdc);
5088 /* RIF: Define cursor CURSOR on frame F. */
5090 static void
5091 w32_define_frame_cursor (f, cursor)
5092 struct frame *f;
5093 Cursor cursor;
5095 w32_define_cursor (FRAME_W32_WINDOW (f), cursor);
5099 /* RIF: Clear area on frame F. */
5101 static void
5102 w32_clear_frame_area (f, x, y, width, height)
5103 struct frame *f;
5104 int x, y, width, height;
5106 HDC hdc;
5108 hdc = get_frame_dc (f);
5109 w32_clear_area (f, hdc, x, y, width, height);
5110 release_frame_dc (f, hdc);
5113 /* RIF: Draw or clear cursor on window W. */
5115 static void
5116 w32_draw_window_cursor (w, glyph_row, x, y, cursor_type, cursor_width, on_p, active_p)
5117 struct window *w;
5118 struct glyph_row *glyph_row;
5119 int x, y;
5120 int cursor_type, cursor_width;
5121 int on_p, active_p;
5123 if (on_p)
5125 /* If the user wants to use the system caret, make sure our own
5126 cursor remains invisible. */
5127 if (w32_use_visible_system_caret)
5129 if (w->phys_cursor_type != NO_CURSOR)
5130 erase_phys_cursor (w);
5132 cursor_type = w->phys_cursor_type = NO_CURSOR;
5133 w->phys_cursor_width = -1;
5135 else
5137 w->phys_cursor_type = cursor_type;
5140 w->phys_cursor_on_p = 1;
5142 /* If this is the active cursor, we need to track it with the
5143 system caret, so third party software like screen magnifiers
5144 and speech synthesizers can follow the cursor. */
5145 if (active_p)
5147 struct frame *f = XFRAME (WINDOW_FRAME (w));
5148 HWND hwnd = FRAME_W32_WINDOW (f);
5150 w32_system_caret_x
5151 = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
5152 w32_system_caret_y
5153 = (WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y)
5154 + glyph_row->ascent - w->phys_cursor_ascent);
5156 /* If the size of the active cursor changed, destroy the old
5157 system caret. */
5158 if (w32_system_caret_hwnd
5159 && (w32_system_caret_height != w->phys_cursor_height))
5160 PostMessage (hwnd, WM_EMACS_DESTROY_CARET, 0, 0);
5162 w32_system_caret_height = w->phys_cursor_height;
5164 /* Move the system caret. */
5165 PostMessage (hwnd, WM_EMACS_TRACK_CARET, 0, 0);
5168 switch (cursor_type)
5170 case HOLLOW_BOX_CURSOR:
5171 x_draw_hollow_cursor (w, glyph_row);
5172 break;
5174 case FILLED_BOX_CURSOR:
5175 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
5176 break;
5178 case BAR_CURSOR:
5179 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
5180 break;
5182 case HBAR_CURSOR:
5183 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
5184 break;
5186 case NO_CURSOR:
5187 w->phys_cursor_width = 0;
5188 break;
5190 default:
5191 abort ();
5198 /* Icons. */
5201 x_bitmap_icon (f, icon)
5202 struct frame *f;
5203 Lisp_Object icon;
5205 HANDLE hicon;
5207 if (FRAME_W32_WINDOW (f) == 0)
5208 return 1;
5210 if (NILP (icon))
5211 hicon = LoadIcon (hinst, EMACS_CLASS);
5212 else if (STRINGP (icon))
5213 hicon = LoadImage (NULL, (LPCTSTR) SDATA (icon), IMAGE_ICON, 0, 0,
5214 LR_DEFAULTSIZE | LR_LOADFROMFILE);
5215 else if (SYMBOLP (icon))
5217 LPCTSTR name;
5219 if (EQ (icon, intern ("application")))
5220 name = (LPCTSTR) IDI_APPLICATION;
5221 else if (EQ (icon, intern ("hand")))
5222 name = (LPCTSTR) IDI_HAND;
5223 else if (EQ (icon, intern ("question")))
5224 name = (LPCTSTR) IDI_QUESTION;
5225 else if (EQ (icon, intern ("exclamation")))
5226 name = (LPCTSTR) IDI_EXCLAMATION;
5227 else if (EQ (icon, intern ("asterisk")))
5228 name = (LPCTSTR) IDI_ASTERISK;
5229 else if (EQ (icon, intern ("winlogo")))
5230 name = (LPCTSTR) IDI_WINLOGO;
5231 else
5232 return 1;
5234 hicon = LoadIcon (NULL, name);
5236 else
5237 return 1;
5239 if (hicon == NULL)
5240 return 1;
5242 PostMessage (FRAME_W32_WINDOW (f), WM_SETICON, (WPARAM) ICON_BIG,
5243 (LPARAM) hicon);
5245 return 0;
5249 /************************************************************************
5250 Handling X errors
5251 ************************************************************************/
5253 /* Display Error Handling functions not used on W32. Listing them here
5254 helps diff stay in step when comparing w32term.c with xterm.c.
5256 x_error_catcher (display, error)
5257 x_catch_errors (dpy)
5258 x_catch_errors_unwind (old_val)
5259 x_check_errors (dpy, format)
5260 x_had_errors_p (dpy)
5261 x_clear_errors (dpy)
5262 x_uncatch_errors (dpy, count)
5263 x_trace_wire ()
5264 x_connection_signal (signalnum)
5265 x_connection_closed (dpy, error_message)
5266 x_error_quitter (display, error)
5267 x_error_handler (display, error)
5268 x_io_error_quitter (display)
5273 /* Changing the font of the frame. */
5275 /* Give frame F the font named FONTNAME as its default font, and
5276 return the full name of that font. FONTNAME may be a wildcard
5277 pattern; in that case, we choose some font that fits the pattern.
5278 The return value shows which font we chose. */
5280 Lisp_Object
5281 x_new_font (f, fontname)
5282 struct frame *f;
5283 register char *fontname;
5285 struct font_info *fontp
5286 = FS_LOAD_FONT (f, 0, fontname, -1);
5288 if (!fontp)
5289 return Qnil;
5291 FRAME_FONT (f) = (XFontStruct *) (fontp->font);
5292 FRAME_BASELINE_OFFSET (f) = fontp->baseline_offset;
5293 FRAME_FONTSET (f) = -1;
5295 FRAME_COLUMN_WIDTH (f) = FONT_WIDTH (FRAME_FONT (f));
5296 FRAME_LINE_HEIGHT (f) = FONT_HEIGHT (FRAME_FONT (f));
5298 compute_fringe_widths (f, 1);
5300 /* Compute the scroll bar width in character columns. */
5301 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
5303 int wid = FRAME_COLUMN_WIDTH (f);
5304 FRAME_CONFIG_SCROLL_BAR_COLS (f)
5305 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + wid-1) / wid;
5307 else
5309 int wid = FRAME_COLUMN_WIDTH (f);
5310 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
5313 /* Now make the frame display the given font. */
5314 if (FRAME_W32_WINDOW (f) != 0)
5316 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
5317 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
5320 return build_string (fontp->full_name);
5323 /* Give frame F the fontset named FONTSETNAME as its default font, and
5324 return the full name of that fontset. FONTSETNAME may be a wildcard
5325 pattern; in that case, we choose some fontset that fits the pattern.
5326 The return value shows which fontset we chose. */
5328 Lisp_Object
5329 x_new_fontset (f, fontsetname)
5330 struct frame *f;
5331 char *fontsetname;
5333 int fontset = fs_query_fontset (build_string (fontsetname), 0);
5334 Lisp_Object result;
5336 if (fontset < 0)
5337 return Qnil;
5339 if (FRAME_FONTSET (f) == fontset)
5340 /* This fontset is already set in frame F. There's nothing more
5341 to do. */
5342 return fontset_name (fontset);
5344 result = x_new_font (f, (SDATA (fontset_ascii (fontset))));
5346 if (!STRINGP (result))
5347 /* Can't load ASCII font. */
5348 return Qnil;
5350 /* Since x_new_font doesn't update any fontset information, do it now. */
5351 FRAME_FONTSET(f) = fontset;
5353 return build_string (fontsetname);
5357 /***********************************************************************
5358 TODO: W32 Input Methods
5359 ***********************************************************************/
5360 /* Listing missing functions from xterm.c helps diff stay in step.
5362 xim_destroy_callback (xim, client_data, call_data)
5363 xim_open_dpy (dpyinfo, resource_name)
5364 struct xim_inst_t
5365 xim_instantiate_callback (display, client_data, call_data)
5366 xim_initialize (dpyinfo, resource_name)
5367 xim_close_dpy (dpyinfo)
5372 /* Calculate the absolute position in frame F
5373 from its current recorded position values and gravity. */
5375 void
5376 x_calc_absolute_position (f)
5377 struct frame *f;
5379 POINT pt;
5380 int flags = f->size_hint_flags;
5382 pt.x = pt.y = 0;
5384 /* Find the position of the outside upper-left corner of
5385 the inner window, with respect to the outer window.
5386 But do this only if we will need the results. */
5387 if (f->output_data.w32->parent_desc != FRAME_W32_DISPLAY_INFO (f)->root_window)
5389 BLOCK_INPUT;
5390 MapWindowPoints (FRAME_W32_WINDOW (f),
5391 f->output_data.w32->parent_desc,
5392 &pt, 1);
5393 UNBLOCK_INPUT;
5397 RECT rt;
5398 rt.left = rt.right = rt.top = rt.bottom = 0;
5400 BLOCK_INPUT;
5401 AdjustWindowRect(&rt, f->output_data.w32->dwStyle,
5402 FRAME_EXTERNAL_MENU_BAR (f));
5403 UNBLOCK_INPUT;
5405 pt.x += (rt.right - rt.left);
5406 pt.y += (rt.bottom - rt.top);
5409 /* Treat negative positions as relative to the leftmost bottommost
5410 position that fits on the screen. */
5411 if (flags & XNegative)
5412 f->left_pos = (FRAME_W32_DISPLAY_INFO (f)->width
5413 - 2 * f->border_width - pt.x
5414 - FRAME_PIXEL_WIDTH (f)
5415 + f->left_pos);
5417 if (flags & YNegative)
5418 f->top_pos = (FRAME_W32_DISPLAY_INFO (f)->height
5419 - 2 * f->border_width - pt.y
5420 - FRAME_PIXEL_HEIGHT (f)
5421 + f->top_pos);
5422 /* The left_pos and top_pos
5423 are now relative to the top and left screen edges,
5424 so the flags should correspond. */
5425 f->size_hint_flags &= ~ (XNegative | YNegative);
5428 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
5429 to really change the position, and 0 when calling from
5430 x_make_frame_visible (in that case, XOFF and YOFF are the current
5431 position values). It is -1 when calling from x_set_frame_parameters,
5432 which means, do adjust for borders but don't change the gravity. */
5434 void
5435 x_set_offset (f, xoff, yoff, change_gravity)
5436 struct frame *f;
5437 register int xoff, yoff;
5438 int change_gravity;
5440 int modified_top, modified_left;
5442 if (change_gravity > 0)
5444 f->top_pos = yoff;
5445 f->left_pos = xoff;
5446 f->size_hint_flags &= ~ (XNegative | YNegative);
5447 if (xoff < 0)
5448 f->size_hint_flags |= XNegative;
5449 if (yoff < 0)
5450 f->size_hint_flags |= YNegative;
5451 f->win_gravity = NorthWestGravity;
5453 x_calc_absolute_position (f);
5455 BLOCK_INPUT;
5456 x_wm_set_size_hint (f, (long) 0, 0);
5458 modified_left = f->left_pos;
5459 modified_top = f->top_pos;
5461 my_set_window_pos (FRAME_W32_WINDOW (f),
5462 NULL,
5463 modified_left, modified_top,
5464 0, 0,
5465 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
5466 UNBLOCK_INPUT;
5470 /* Check if we need to resize the frame due to a fullscreen request.
5471 If so needed, resize the frame. */
5472 static void
5473 x_check_fullscreen (f)
5474 struct frame *f;
5476 if (f->want_fullscreen & FULLSCREEN_BOTH)
5478 int width, height, ign;
5480 x_real_positions (f, &f->left_pos, &f->top_pos);
5482 x_fullscreen_adjust (f, &width, &height, &ign, &ign);
5484 /* We do not need to move the window, it shall be taken care of
5485 when setting WM manager hints.
5486 If the frame is visible already, the position is checked by
5487 x_check_fullscreen_move. */
5488 if (FRAME_COLS (f) != width || FRAME_LINES (f) != height)
5490 change_frame_size (f, height, width, 0, 1, 0);
5491 SET_FRAME_GARBAGED (f);
5492 cancel_mouse_face (f);
5494 /* Wait for the change of frame size to occur */
5495 f->want_fullscreen |= FULLSCREEN_WAIT;
5500 /* If frame parameters are set after the frame is mapped, we need to move
5501 the window. This is done in xfns.c.
5502 Some window managers moves the window to the right position, some
5503 moves the outer window manager window to the specified position.
5504 Here we check that we are in the right spot. If not, make a second
5505 move, assuming we are dealing with the second kind of window manager. */
5506 static void
5507 x_check_fullscreen_move (f)
5508 struct frame *f;
5510 if (f->want_fullscreen & FULLSCREEN_MOVE_WAIT)
5512 int expect_top = f->top_pos;
5513 int expect_left = f->left_pos;
5515 if (f->want_fullscreen & FULLSCREEN_HEIGHT)
5516 expect_top = 0;
5517 if (f->want_fullscreen & FULLSCREEN_WIDTH)
5518 expect_left = 0;
5520 if (expect_top != f->top_pos
5521 || expect_left != f->left_pos)
5522 x_set_offset (f, expect_left, expect_top, 1);
5524 /* Just do this once */
5525 f->want_fullscreen &= ~FULLSCREEN_MOVE_WAIT;
5530 /* Call this to change the size of frame F's x-window.
5531 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
5532 for this size change and subsequent size changes.
5533 Otherwise we leave the window gravity unchanged. */
5535 void
5536 x_set_window_size (f, change_gravity, cols, rows)
5537 struct frame *f;
5538 int change_gravity;
5539 int cols, rows;
5541 int pixelwidth, pixelheight;
5543 BLOCK_INPUT;
5545 check_frame_size (f, &rows, &cols);
5546 f->scroll_bar_actual_width
5547 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
5549 compute_fringe_widths (f, 0);
5551 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols);
5552 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows);
5554 f->win_gravity = NorthWestGravity;
5555 x_wm_set_size_hint (f, (long) 0, 0);
5558 RECT rect;
5560 rect.left = rect.top = 0;
5561 rect.right = pixelwidth;
5562 rect.bottom = pixelheight;
5564 AdjustWindowRect(&rect, f->output_data.w32->dwStyle,
5565 FRAME_EXTERNAL_MENU_BAR (f));
5567 my_set_window_pos (FRAME_W32_WINDOW (f),
5568 NULL,
5569 0, 0,
5570 rect.right - rect.left,
5571 rect.bottom - rect.top,
5572 SWP_NOZORDER | SWP_NOMOVE | SWP_NOACTIVATE);
5575 /* Now, strictly speaking, we can't be sure that this is accurate,
5576 but the window manager will get around to dealing with the size
5577 change request eventually, and we'll hear how it went when the
5578 ConfigureNotify event gets here.
5580 We could just not bother storing any of this information here,
5581 and let the ConfigureNotify event set everything up, but that
5582 might be kind of confusing to the Lisp code, since size changes
5583 wouldn't be reported in the frame parameters until some random
5584 point in the future when the ConfigureNotify event arrives.
5586 We pass 1 for DELAY since we can't run Lisp code inside of
5587 a BLOCK_INPUT. */
5588 change_frame_size (f, rows, cols, 0, 1, 0);
5589 FRAME_PIXEL_WIDTH (f) = pixelwidth;
5590 FRAME_PIXEL_HEIGHT (f) = pixelheight;
5592 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
5593 receive in the ConfigureNotify event; if we get what we asked
5594 for, then the event won't cause the screen to become garbaged, so
5595 we have to make sure to do it here. */
5596 SET_FRAME_GARBAGED (f);
5598 /* If cursor was outside the new size, mark it as off. */
5599 mark_window_cursors_off (XWINDOW (f->root_window));
5601 /* Clear out any recollection of where the mouse highlighting was,
5602 since it might be in a place that's outside the new frame size.
5603 Actually checking whether it is outside is a pain in the neck,
5604 so don't try--just let the highlighting be done afresh with new size. */
5605 cancel_mouse_face (f);
5607 UNBLOCK_INPUT;
5610 /* Mouse warping. */
5612 void x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y);
5614 void
5615 x_set_mouse_position (f, x, y)
5616 struct frame *f;
5617 int x, y;
5619 int pix_x, pix_y;
5621 pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2;
5622 pix_y = FRAME_LINE_TO_PIXEL_Y (f, y) + FRAME_LINE_HEIGHT (f) / 2;
5624 if (pix_x < 0) pix_x = 0;
5625 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
5627 if (pix_y < 0) pix_y = 0;
5628 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
5630 x_set_mouse_pixel_position (f, pix_x, pix_y);
5633 void
5634 x_set_mouse_pixel_position (f, pix_x, pix_y)
5635 struct frame *f;
5636 int pix_x, pix_y;
5638 RECT rect;
5639 POINT pt;
5641 BLOCK_INPUT;
5643 GetClientRect (FRAME_W32_WINDOW (f), &rect);
5644 pt.x = rect.left + pix_x;
5645 pt.y = rect.top + pix_y;
5646 ClientToScreen (FRAME_W32_WINDOW (f), &pt);
5648 SetCursorPos (pt.x, pt.y);
5650 UNBLOCK_INPUT;
5654 /* focus shifting, raising and lowering. */
5656 void
5657 x_focus_on_frame (f)
5658 struct frame *f;
5660 struct w32_display_info *dpyinfo = &one_w32_display_info;
5662 /* Give input focus to frame. */
5663 BLOCK_INPUT;
5664 #if 0
5665 /* Try not to change its Z-order if possible. */
5666 if (x_window_to_frame (dpyinfo, GetForegroundWindow ()))
5667 my_set_focus (f, FRAME_W32_WINDOW (f));
5668 else
5669 #endif
5670 my_set_foreground_window (FRAME_W32_WINDOW (f));
5671 UNBLOCK_INPUT;
5674 void
5675 x_unfocus_frame (f)
5676 struct frame *f;
5680 /* Raise frame F. */
5681 void
5682 x_raise_frame (f)
5683 struct frame *f;
5685 BLOCK_INPUT;
5687 /* Strictly speaking, raise-frame should only change the frame's Z
5688 order, leaving input focus unchanged. This is reasonable behaviour
5689 on X where the usual policy is point-to-focus. However, this
5690 behaviour would be very odd on Windows where the usual policy is
5691 click-to-focus.
5693 On X, if the mouse happens to be over the raised frame, it gets
5694 input focus anyway (so the window with focus will never be
5695 completely obscured) - if not, then just moving the mouse over it
5696 is sufficient to give it focus. On Windows, the user must actually
5697 click on the frame (preferrably the title bar so as not to move
5698 point), which is more awkward. Also, no other Windows program
5699 raises a window to the top but leaves another window (possibly now
5700 completely obscured) with input focus.
5702 Because there is a system setting on Windows that allows the user
5703 to choose the point to focus policy, we make the strict semantics
5704 optional, but by default we grab focus when raising. */
5706 if (NILP (Vw32_grab_focus_on_raise))
5708 /* The obvious call to my_set_window_pos doesn't work if Emacs is
5709 not already the foreground application: the frame is raised
5710 above all other frames belonging to us, but not above the
5711 current top window. To achieve that, we have to resort to this
5712 more cumbersome method. */
5714 HDWP handle = BeginDeferWindowPos (2);
5715 if (handle)
5717 DeferWindowPos (handle,
5718 FRAME_W32_WINDOW (f),
5719 HWND_TOP,
5720 0, 0, 0, 0,
5721 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
5723 DeferWindowPos (handle,
5724 GetForegroundWindow (),
5725 FRAME_W32_WINDOW (f),
5726 0, 0, 0, 0,
5727 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
5729 EndDeferWindowPos (handle);
5732 else
5734 my_set_foreground_window (FRAME_W32_WINDOW (f));
5737 UNBLOCK_INPUT;
5740 /* Lower frame F. */
5741 void
5742 x_lower_frame (f)
5743 struct frame *f;
5745 BLOCK_INPUT;
5746 my_set_window_pos (FRAME_W32_WINDOW (f),
5747 HWND_BOTTOM,
5748 0, 0, 0, 0,
5749 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
5750 UNBLOCK_INPUT;
5753 static void
5754 w32_frame_raise_lower (f, raise_flag)
5755 FRAME_PTR f;
5756 int raise_flag;
5758 if (! FRAME_W32_P (f))
5759 return;
5761 if (raise_flag)
5762 x_raise_frame (f);
5763 else
5764 x_lower_frame (f);
5767 /* Change of visibility. */
5769 /* This tries to wait until the frame is really visible.
5770 However, if the window manager asks the user where to position
5771 the frame, this will return before the user finishes doing that.
5772 The frame will not actually be visible at that time,
5773 but it will become visible later when the window manager
5774 finishes with it. */
5776 void
5777 x_make_frame_visible (f)
5778 struct frame *f;
5780 Lisp_Object type;
5782 BLOCK_INPUT;
5784 type = x_icon_type (f);
5785 if (!NILP (type))
5786 x_bitmap_icon (f, type);
5788 if (! FRAME_VISIBLE_P (f))
5790 /* We test FRAME_GARBAGED_P here to make sure we don't
5791 call x_set_offset a second time
5792 if we get to x_make_frame_visible a second time
5793 before the window gets really visible. */
5794 if (! FRAME_ICONIFIED_P (f)
5795 && ! f->output_data.w32->asked_for_visible)
5796 x_set_offset (f, f->left_pos, f->top_pos, 0);
5798 f->output_data.w32->asked_for_visible = 1;
5800 /* my_show_window (f, FRAME_W32_WINDOW (f), f->async_iconified ? SW_RESTORE : SW_SHOW); */
5801 my_show_window (f, FRAME_W32_WINDOW (f), SW_SHOWNORMAL);
5804 /* Synchronize to ensure Emacs knows the frame is visible
5805 before we do anything else. We do this loop with input not blocked
5806 so that incoming events are handled. */
5808 Lisp_Object frame;
5809 int count;
5811 /* This must come after we set COUNT. */
5812 UNBLOCK_INPUT;
5814 XSETFRAME (frame, f);
5816 /* Wait until the frame is visible. Process X events until a
5817 MapNotify event has been seen, or until we think we won't get a
5818 MapNotify at all.. */
5819 for (count = input_signal_count + 10;
5820 input_signal_count < count && !FRAME_VISIBLE_P (f);)
5822 /* Force processing of queued events. */
5823 /* TODO: x_sync equivalent? */
5825 /* Machines that do polling rather than SIGIO have been observed
5826 to go into a busy-wait here. So we'll fake an alarm signal
5827 to let the handler know that there's something to be read.
5828 We used to raise a real alarm, but it seems that the handler
5829 isn't always enabled here. This is probably a bug. */
5830 if (input_polling_used ())
5832 /* It could be confusing if a real alarm arrives while processing
5833 the fake one. Turn it off and let the handler reset it. */
5834 int old_poll_suppress_count = poll_suppress_count;
5835 poll_suppress_count = 1;
5836 poll_for_input_1 ();
5837 poll_suppress_count = old_poll_suppress_count;
5840 FRAME_SAMPLE_VISIBILITY (f);
5844 /* Change from mapped state to withdrawn state. */
5846 /* Make the frame visible (mapped and not iconified). */
5848 x_make_frame_invisible (f)
5849 struct frame *f;
5851 /* Don't keep the highlight on an invisible frame. */
5852 if (FRAME_W32_DISPLAY_INFO (f)->x_highlight_frame == f)
5853 FRAME_W32_DISPLAY_INFO (f)->x_highlight_frame = 0;
5855 BLOCK_INPUT;
5857 my_show_window (f, FRAME_W32_WINDOW (f), SW_HIDE);
5859 /* We can't distinguish this from iconification
5860 just by the event that we get from the server.
5861 So we can't win using the usual strategy of letting
5862 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
5863 and synchronize with the server to make sure we agree. */
5864 f->visible = 0;
5865 FRAME_ICONIFIED_P (f) = 0;
5866 f->async_visible = 0;
5867 f->async_iconified = 0;
5869 UNBLOCK_INPUT;
5872 /* Change window state from mapped to iconified. */
5874 void
5875 x_iconify_frame (f)
5876 struct frame *f;
5878 Lisp_Object type;
5880 /* Don't keep the highlight on an invisible frame. */
5881 if (FRAME_W32_DISPLAY_INFO (f)->x_highlight_frame == f)
5882 FRAME_W32_DISPLAY_INFO (f)->x_highlight_frame = 0;
5884 if (f->async_iconified)
5885 return;
5887 BLOCK_INPUT;
5889 type = x_icon_type (f);
5890 if (!NILP (type))
5891 x_bitmap_icon (f, type);
5893 /* Simulate the user minimizing the frame. */
5894 SendMessage (FRAME_W32_WINDOW (f), WM_SYSCOMMAND, SC_MINIMIZE, 0);
5896 UNBLOCK_INPUT;
5900 /* Free X resources of frame F. */
5902 void
5903 x_free_frame_resources (f)
5904 struct frame *f;
5906 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
5908 BLOCK_INPUT;
5910 if (FRAME_W32_WINDOW (f))
5911 my_destroy_window (f, FRAME_W32_WINDOW (f));
5913 free_frame_menubar (f);
5915 unload_color (f, f->output_data.x->foreground_pixel);
5916 unload_color (f, f->output_data.x->background_pixel);
5917 unload_color (f, f->output_data.w32->cursor_pixel);
5918 unload_color (f, f->output_data.w32->cursor_foreground_pixel);
5919 unload_color (f, f->output_data.w32->border_pixel);
5920 unload_color (f, f->output_data.w32->mouse_pixel);
5921 if (f->output_data.w32->white_relief.allocated_p)
5922 unload_color (f, f->output_data.w32->white_relief.pixel);
5923 if (f->output_data.w32->black_relief.allocated_p)
5924 unload_color (f, f->output_data.w32->black_relief.pixel);
5926 if (FRAME_FACE_CACHE (f))
5927 free_frame_faces (f);
5929 xfree (f->output_data.w32);
5930 f->output_data.w32 = NULL;
5932 if (f == dpyinfo->w32_focus_frame)
5933 dpyinfo->w32_focus_frame = 0;
5934 if (f == dpyinfo->w32_focus_event_frame)
5935 dpyinfo->w32_focus_event_frame = 0;
5936 if (f == dpyinfo->x_highlight_frame)
5937 dpyinfo->x_highlight_frame = 0;
5939 if (f == dpyinfo->mouse_face_mouse_frame)
5941 dpyinfo->mouse_face_beg_row
5942 = dpyinfo->mouse_face_beg_col = -1;
5943 dpyinfo->mouse_face_end_row
5944 = dpyinfo->mouse_face_end_col = -1;
5945 dpyinfo->mouse_face_window = Qnil;
5946 dpyinfo->mouse_face_deferred_gc = 0;
5947 dpyinfo->mouse_face_mouse_frame = 0;
5950 UNBLOCK_INPUT;
5954 /* Destroy the window of frame F. */
5956 x_destroy_window (f)
5957 struct frame *f;
5959 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
5961 x_free_frame_resources (f);
5963 dpyinfo->reference_count--;
5967 /* Setting window manager hints. */
5969 /* Set the normal size hints for the window manager, for frame F.
5970 FLAGS is the flags word to use--or 0 meaning preserve the flags
5971 that the window now has.
5972 If USER_POSITION is nonzero, we set the USPosition
5973 flag (this is useful when FLAGS is 0). */
5974 void
5975 x_wm_set_size_hint (f, flags, user_position)
5976 struct frame *f;
5977 long flags;
5978 int user_position;
5980 Window window = FRAME_W32_WINDOW (f);
5982 enter_crit ();
5984 SetWindowLong (window, WND_FONTWIDTH_INDEX, FRAME_COLUMN_WIDTH (f));
5985 SetWindowLong (window, WND_LINEHEIGHT_INDEX, FRAME_LINE_HEIGHT (f));
5986 SetWindowLong (window, WND_BORDER_INDEX, FRAME_INTERNAL_BORDER_WIDTH (f));
5987 SetWindowLong (window, WND_SCROLLBAR_INDEX, f->scroll_bar_actual_width);
5989 leave_crit ();
5992 /* Window manager things */
5993 void
5994 x_wm_set_icon_position (f, icon_x, icon_y)
5995 struct frame *f;
5996 int icon_x, icon_y;
5998 #if 0
5999 Window window = FRAME_W32_WINDOW (f);
6001 f->display.x->wm_hints.flags |= IconPositionHint;
6002 f->display.x->wm_hints.icon_x = icon_x;
6003 f->display.x->wm_hints.icon_y = icon_y;
6005 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->display.x->wm_hints);
6006 #endif
6010 /***********************************************************************
6011 Fonts
6012 ***********************************************************************/
6014 /* The following functions are listed here to help diff stay in step
6015 with xterm.c. See w32fns.c for definitions.
6017 x_get_font_info (f, font_idx)
6018 x_list_fonts (f, pattern, size, maxnames)
6022 #if GLYPH_DEBUG
6024 /* Check that FONT is valid on frame F. It is if it can be found in F's
6025 font table. */
6027 static void
6028 x_check_font (f, font)
6029 struct frame *f;
6030 XFontStruct *font;
6032 int i;
6033 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
6035 xassert (font != NULL);
6037 for (i = 0; i < dpyinfo->n_fonts; i++)
6038 if (dpyinfo->font_table[i].name
6039 && font == dpyinfo->font_table[i].font)
6040 break;
6042 xassert (i < dpyinfo->n_fonts);
6045 #endif /* GLYPH_DEBUG != 0 */
6047 /* Set *W to the minimum width, *H to the minimum font height of FONT.
6048 Note: There are (broken) X fonts out there with invalid XFontStruct
6049 min_bounds contents. For example, handa@etl.go.jp reports that
6050 "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1" fonts
6051 have font->min_bounds.width == 0. */
6053 static INLINE void
6054 x_font_min_bounds (font, w, h)
6055 XFontStruct *font;
6056 int *w, *h;
6059 * TODO: Windows does not appear to offer min bound, only
6060 * average and maximum width, and maximum height.
6062 *h = FONT_HEIGHT (font);
6063 *w = FONT_WIDTH (font);
6067 /* Compute the smallest character width and smallest font height over
6068 all fonts available on frame F. Set the members smallest_char_width
6069 and smallest_font_height in F's x_display_info structure to
6070 the values computed. Value is non-zero if smallest_font_height or
6071 smallest_char_width become smaller than they were before. */
6074 x_compute_min_glyph_bounds (f)
6075 struct frame *f;
6077 int i;
6078 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
6079 XFontStruct *font;
6080 int old_width = dpyinfo->smallest_char_width;
6081 int old_height = dpyinfo->smallest_font_height;
6083 dpyinfo->smallest_font_height = 100000;
6084 dpyinfo->smallest_char_width = 100000;
6086 for (i = 0; i < dpyinfo->n_fonts; ++i)
6087 if (dpyinfo->font_table[i].name)
6089 struct font_info *fontp = dpyinfo->font_table + i;
6090 int w, h;
6092 font = (XFontStruct *) fontp->font;
6093 xassert (font != (XFontStruct *) ~0);
6094 x_font_min_bounds (font, &w, &h);
6096 dpyinfo->smallest_font_height = min (dpyinfo->smallest_font_height, h);
6097 dpyinfo->smallest_char_width = min (dpyinfo->smallest_char_width, w);
6100 xassert (dpyinfo->smallest_char_width > 0
6101 && dpyinfo->smallest_font_height > 0);
6103 return (dpyinfo->n_fonts == 1
6104 || dpyinfo->smallest_char_width < old_width
6105 || dpyinfo->smallest_font_height < old_height);
6108 /* The following functions are listed here to help diff stay in step
6109 with xterm.c. See w32fns.c for definitions.
6111 x_load_font (f, fontname, size)
6112 x_query_font (f, fontname)
6113 x_find_ccl_program (fontp)
6117 /***********************************************************************
6118 Initialization
6119 ***********************************************************************/
6121 static int w32_initialized = 0;
6123 void
6124 w32_initialize_display_info (display_name)
6125 Lisp_Object display_name;
6127 struct w32_display_info *dpyinfo = &one_w32_display_info;
6129 bzero (dpyinfo, sizeof (*dpyinfo));
6131 /* Put it on w32_display_name_list. */
6132 w32_display_name_list = Fcons (Fcons (display_name, Qnil),
6133 w32_display_name_list);
6134 dpyinfo->name_list_element = XCAR (w32_display_name_list);
6136 dpyinfo->w32_id_name
6137 = (char *) xmalloc (SCHARS (Vinvocation_name)
6138 + SCHARS (Vsystem_name)
6139 + 2);
6140 sprintf (dpyinfo->w32_id_name, "%s@%s",
6141 SDATA (Vinvocation_name), SDATA (Vsystem_name));
6143 /* Default Console mode values - overridden when running in GUI mode
6144 with values obtained from system metrics. */
6145 dpyinfo->resx = 1;
6146 dpyinfo->resy = 1;
6147 dpyinfo->height_in = 1;
6148 dpyinfo->width_in = 1;
6149 dpyinfo->n_planes = 1;
6150 dpyinfo->n_cbits = 4;
6151 dpyinfo->n_fonts = 0;
6152 dpyinfo->smallest_font_height = 1;
6153 dpyinfo->smallest_char_width = 1;
6155 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
6156 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
6157 dpyinfo->mouse_face_face_id = DEFAULT_FACE_ID;
6158 dpyinfo->mouse_face_window = Qnil;
6159 dpyinfo->mouse_face_overlay = Qnil;
6160 dpyinfo->mouse_face_hidden = 0;
6162 dpyinfo->vertical_scroll_bar_cursor = w32_load_cursor (IDC_ARROW);
6163 /* TODO: dpyinfo->gray */
6167 /* Create an xrdb-style database of resources to supercede registry settings.
6168 The database is just a concatenation of C strings, finished by an additional
6169 \0. The string are submitted to some basic normalization, so
6171 [ *]option[ *]:[ *]value...
6173 becomes
6175 option:value...
6177 but any whitespace following value is not removed. */
6179 static char *
6180 w32_make_rdb (xrm_option)
6181 char *xrm_option;
6183 char *buffer = xmalloc (strlen (xrm_option) + 2);
6184 char *current = buffer;
6185 char ch;
6186 int in_option = 1;
6187 int before_value = 0;
6189 do {
6190 ch = *xrm_option++;
6192 if (ch == '\n')
6194 *current++ = '\0';
6195 in_option = 1;
6196 before_value = 0;
6198 else if (ch != ' ')
6200 *current++ = ch;
6201 if (in_option && (ch == ':'))
6203 in_option = 0;
6204 before_value = 1;
6206 else if (before_value)
6208 before_value = 0;
6211 else if (!(in_option || before_value))
6213 *current++ = ch;
6215 } while (ch);
6217 *current = '\0';
6219 return buffer;
6222 struct w32_display_info *
6223 w32_term_init (display_name, xrm_option, resource_name)
6224 Lisp_Object display_name;
6225 char *xrm_option;
6226 char *resource_name;
6228 struct w32_display_info *dpyinfo;
6229 HDC hdc;
6231 BLOCK_INPUT;
6233 if (!w32_initialized)
6235 w32_initialize ();
6236 w32_initialized = 1;
6239 w32_initialize_display_info (display_name);
6241 dpyinfo = &one_w32_display_info;
6243 dpyinfo->xrdb = xrm_option ? w32_make_rdb (xrm_option) : NULL;
6245 /* Put this display on the chain. */
6246 dpyinfo->next = x_display_list;
6247 x_display_list = dpyinfo;
6249 hdc = GetDC (GetDesktopWindow ());
6251 dpyinfo->height = GetDeviceCaps (hdc, VERTRES);
6252 dpyinfo->width = GetDeviceCaps (hdc, HORZRES);
6253 dpyinfo->root_window = GetDesktopWindow ();
6254 dpyinfo->n_planes = GetDeviceCaps (hdc, PLANES);
6255 dpyinfo->n_cbits = GetDeviceCaps (hdc, BITSPIXEL);
6256 dpyinfo->resx = GetDeviceCaps (hdc, LOGPIXELSX);
6257 dpyinfo->resy = GetDeviceCaps (hdc, LOGPIXELSY);
6258 dpyinfo->has_palette = GetDeviceCaps (hdc, RASTERCAPS) & RC_PALETTE;
6259 dpyinfo->image_cache = make_image_cache ();
6260 dpyinfo->height_in = dpyinfo->height / dpyinfo->resx;
6261 dpyinfo->width_in = dpyinfo->width / dpyinfo->resy;
6262 ReleaseDC (GetDesktopWindow (), hdc);
6264 /* initialise palette with white and black */
6266 XColor color;
6267 w32_defined_color (0, "white", &color, 1);
6268 w32_defined_color (0, "black", &color, 1);
6271 /* Create Fringe Bitmaps and store them for later use.
6273 On W32, bitmaps are all unsigned short, as Windows requires
6274 bitmap data to be Word aligned. For some reason they are
6275 horizontally reflected compared to how they appear on X, so we
6276 need to bitswap and convert to unsigned shorts before creating
6277 the bitmaps. */
6279 int i, j;
6281 for (i = NO_FRINGE_BITMAP + 1; i < MAX_FRINGE_BITMAPS; i++)
6283 int h = fringe_bitmaps[i].height;
6284 int wd = fringe_bitmaps[i].width;
6285 unsigned short *w32bits
6286 = (unsigned short *)alloca (h * sizeof (unsigned short));
6287 unsigned short *wb = w32bits;
6288 unsigned char *bits = fringe_bitmaps[i].bits;
6289 for (j = 0; j < h; j++)
6291 static unsigned char swap_nibble[16]
6292 = { 0x0, 0x8, 0x4, 0xc, /* 0000 1000 0100 1100 */
6293 0x2, 0xa, 0x6, 0xe, /* 0010 1010 0110 1110 */
6294 0x1, 0x9, 0x5, 0xd, /* 0001 1001 0101 1101 */
6295 0x3, 0xb, 0x7, 0xf }; /* 0011 1011 0111 1111 */
6297 unsigned char b = *bits++;
6298 *wb++ = (unsigned short)((swap_nibble[b & 0xf]<<4)
6299 | (swap_nibble[(b>>4) & 0xf]));
6301 fringe_bmp[i] = CreateBitmap (wd, h, 1, 1, w32bits);
6305 #ifndef F_SETOWN_BUG
6306 #ifdef F_SETOWN
6307 #ifdef F_SETOWN_SOCK_NEG
6308 /* stdin is a socket here */
6309 fcntl (connection, F_SETOWN, -getpid ());
6310 #else /* ! defined (F_SETOWN_SOCK_NEG) */
6311 fcntl (connection, F_SETOWN, getpid ());
6312 #endif /* ! defined (F_SETOWN_SOCK_NEG) */
6313 #endif /* ! defined (F_SETOWN) */
6314 #endif /* F_SETOWN_BUG */
6316 #ifdef SIGIO
6317 if (interrupt_input)
6318 init_sigio (connection);
6319 #endif /* ! defined (SIGIO) */
6321 UNBLOCK_INPUT;
6323 return dpyinfo;
6326 /* Get rid of display DPYINFO, assuming all frames are already gone. */
6328 void
6329 x_delete_display (dpyinfo)
6330 struct w32_display_info *dpyinfo;
6332 /* Discard this display from w32_display_name_list and w32_display_list.
6333 We can't use Fdelq because that can quit. */
6334 if (! NILP (w32_display_name_list)
6335 && EQ (XCAR (w32_display_name_list), dpyinfo->name_list_element))
6336 w32_display_name_list = XCDR (w32_display_name_list);
6337 else
6339 Lisp_Object tail;
6341 tail = w32_display_name_list;
6342 while (CONSP (tail) && CONSP (XCDR (tail)))
6344 if (EQ (XCAR (XCDR (tail)), dpyinfo->name_list_element))
6346 XSETCDR (tail, XCDR (XCDR (tail)));
6347 break;
6349 tail = XCDR (tail);
6353 /* free palette table */
6355 struct w32_palette_entry * plist;
6357 plist = dpyinfo->color_list;
6358 while (plist)
6360 struct w32_palette_entry * pentry = plist;
6361 plist = plist->next;
6362 xfree (pentry);
6364 dpyinfo->color_list = NULL;
6365 if (dpyinfo->palette)
6366 DeleteObject(dpyinfo->palette);
6368 xfree (dpyinfo->font_table);
6369 xfree (dpyinfo->w32_id_name);
6371 /* Destroy row bitmaps. */
6373 int i;
6375 for (i = NO_FRINGE_BITMAP + 1; i < MAX_FRINGE_BITMAPS; i++)
6376 DeleteObject (fringe_bmp[i]);
6380 /* Set up use of W32. */
6382 DWORD w32_msg_worker ();
6384 void
6385 x_flush (struct frame * f)
6386 { /* Nothing to do */ }
6388 extern frame_parm_handler w32_frame_parm_handlers[];
6390 static struct redisplay_interface w32_redisplay_interface =
6392 w32_frame_parm_handlers,
6393 x_produce_glyphs,
6394 x_write_glyphs,
6395 x_insert_glyphs,
6396 x_clear_end_of_line,
6397 x_scroll_run,
6398 x_after_update_window_line,
6399 x_update_window_begin,
6400 x_update_window_end,
6401 x_cursor_to,
6402 x_flush,
6403 0, /* flush_display_optional */
6404 x_clear_window_mouse_face,
6405 w32_get_glyph_overhangs,
6406 x_fix_overlapping_area,
6407 w32_draw_fringe_bitmap,
6408 w32_per_char_metric,
6409 w32_encode_char,
6410 NULL, /* w32_compute_glyph_string_overhangs */
6411 x_draw_glyph_string,
6412 w32_define_frame_cursor,
6413 w32_clear_frame_area,
6414 w32_draw_window_cursor,
6415 w32_draw_vertical_window_border,
6416 w32_shift_glyphs_for_insert
6419 void
6420 w32_initialize ()
6422 rif = &w32_redisplay_interface;
6424 /* MSVC does not type K&R functions with no arguments correctly, and
6425 so we must explicitly cast them. */
6426 clear_frame_hook = (void (*)(void)) x_clear_frame;
6427 ring_bell_hook = (void (*)(void)) w32_ring_bell;
6428 update_begin_hook = x_update_begin;
6429 update_end_hook = x_update_end;
6431 read_socket_hook = w32_read_socket;
6433 frame_up_to_date_hook = w32_frame_up_to_date;
6435 mouse_position_hook = w32_mouse_position;
6436 frame_rehighlight_hook = w32_frame_rehighlight;
6437 frame_raise_lower_hook = w32_frame_raise_lower;
6438 set_vertical_scroll_bar_hook = w32_set_vertical_scroll_bar;
6439 condemn_scroll_bars_hook = w32_condemn_scroll_bars;
6440 redeem_scroll_bar_hook = w32_redeem_scroll_bar;
6441 judge_scroll_bars_hook = w32_judge_scroll_bars;
6443 scroll_region_ok = 1; /* we'll scroll partial frames */
6444 char_ins_del_ok = 1;
6445 line_ins_del_ok = 1; /* we'll just blt 'em */
6446 fast_clear_end_of_line = 1; /* X does this well */
6447 memory_below_frame = 0; /* we don't remember what scrolls
6448 off the bottom */
6449 baud_rate = 19200;
6451 w32_system_caret_hwnd = NULL;
6452 w32_system_caret_height = 0;
6453 w32_system_caret_x = 0;
6454 w32_system_caret_y = 0;
6456 last_tool_bar_item = -1;
6457 any_help_event_p = 0;
6459 /* Initialize input mode: interrupt_input off, no flow control, allow
6460 8 bit character input, standard quit char. */
6461 Fset_input_mode (Qnil, Qnil, make_number (2), Qnil);
6463 /* Create the window thread - it will terminate itself or when the app terminates */
6465 init_crit ();
6467 dwMainThreadId = GetCurrentThreadId ();
6468 DuplicateHandle (GetCurrentProcess (), GetCurrentThread (),
6469 GetCurrentProcess (), &hMainThread, 0, TRUE, DUPLICATE_SAME_ACCESS);
6471 /* Wait for thread to start */
6474 MSG msg;
6476 PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE);
6478 hWindowsThread = CreateThread (NULL, 0,
6479 (LPTHREAD_START_ROUTINE) w32_msg_worker,
6480 0, 0, &dwWindowsThreadId);
6482 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
6485 /* It is desirable that mainThread should have the same notion of
6486 focus window and active window as windowsThread. Unfortunately, the
6487 following call to AttachThreadInput, which should do precisely what
6488 we need, causes major problems when Emacs is linked as a console
6489 program. Unfortunately, we have good reasons for doing that, so
6490 instead we need to send messages to windowsThread to make some API
6491 calls for us (ones that affect, or depend on, the active/focus
6492 window state. */
6493 #ifdef ATTACH_THREADS
6494 AttachThreadInput (dwMainThreadId, dwWindowsThreadId, TRUE);
6495 #endif
6497 /* Dynamically link to optional system components. */
6499 HANDLE user_lib = LoadLibrary ("user32.dll");
6501 #define LOAD_PROC(fn) pfn##fn = (void *) GetProcAddress (user_lib, #fn)
6503 /* New proportional scroll bar functions. */
6504 LOAD_PROC (SetScrollInfo);
6505 LOAD_PROC (GetScrollInfo);
6507 #undef LOAD_PROC
6509 FreeLibrary (user_lib);
6511 /* If using proportional scroll bars, ensure handle is at least 5 pixels;
6512 otherwise use the fixed height. */
6513 vertical_scroll_bar_min_handle = (pfnSetScrollInfo != NULL) ? 5 :
6514 GetSystemMetrics (SM_CYVTHUMB);
6516 /* For either kind of scroll bar, take account of the arrows; these
6517 effectively form the border of the main scroll bar range. */
6518 vertical_scroll_bar_top_border = vertical_scroll_bar_bottom_border
6519 = GetSystemMetrics (SM_CYVSCROLL);
6523 void
6524 syms_of_w32term ()
6526 staticpro (&w32_display_name_list);
6527 w32_display_name_list = Qnil;
6529 staticpro (&last_mouse_scroll_bar);
6530 last_mouse_scroll_bar = Qnil;
6532 staticpro (&Qvendor_specific_keysyms);
6533 Qvendor_specific_keysyms = intern ("vendor-specific-keysyms");
6535 DEFVAR_INT ("w32-num-mouse-buttons",
6536 &Vw32_num_mouse_buttons,
6537 doc: /* Number of physical mouse buttons. */);
6538 Vw32_num_mouse_buttons = Qnil;
6540 DEFVAR_LISP ("w32-swap-mouse-buttons",
6541 &Vw32_swap_mouse_buttons,
6542 doc: /* Swap the mapping of middle and right mouse buttons.
6543 When nil, middle button is mouse-2 and right button is mouse-3. */);
6544 Vw32_swap_mouse_buttons = Qnil;
6546 DEFVAR_LISP ("w32-grab-focus-on-raise",
6547 &Vw32_grab_focus_on_raise,
6548 doc: /* Raised frame grabs input focus.
6549 When t, `raise-frame' grabs input focus as well. This fits well
6550 with the normal Windows click-to-focus policy, but might not be
6551 desirable when using a point-to-focus policy. */);
6552 Vw32_grab_focus_on_raise = Qt;
6554 DEFVAR_LISP ("w32-capslock-is-shiftlock",
6555 &Vw32_capslock_is_shiftlock,
6556 doc: /* Apply CapsLock state to non character input keys.
6557 When nil, CapsLock only affects normal character input keys. */);
6558 Vw32_capslock_is_shiftlock = Qnil;
6560 DEFVAR_LISP ("w32-recognize-altgr",
6561 &Vw32_recognize_altgr,
6562 doc: /* Recognize right-alt and left-ctrl as AltGr.
6563 When nil, the right-alt and left-ctrl key combination is
6564 interpreted normally. */);
6565 Vw32_recognize_altgr = Qt;
6567 DEFVAR_BOOL ("w32-enable-unicode-output",
6568 &w32_enable_unicode_output,
6569 doc: /* Enable the use of Unicode for text output if non-nil.
6570 Unicode output may prevent some third party applications for displaying
6571 Far-East Languages on Windows 95/98 from working properly.
6572 NT uses Unicode internally anyway, so this flag will probably have no
6573 affect on NT machines. */);
6574 w32_enable_unicode_output = 1;
6576 DEFVAR_BOOL ("w32-use-visible-system-caret",
6577 &w32_use_visible_system_caret,
6578 doc: /* Flag to make the system caret visible.
6579 When this is non-nil, Emacs will indicate the position of point by
6580 using the system caret instead of drawing its own cursor. Some screen
6581 reader software does not track the system cursor properly when it is
6582 invisible, and gets confused by Emacs drawing its own cursor, so this
6583 variable is initialized to t when Emacs detects that screen reader
6584 software is running as it starts up.
6586 When this variable is set, other variables affecting the appearance of
6587 the cursor have no effect. */);
6589 /* Initialize w32_use_visible_system_caret based on whether a screen
6590 reader is in use. */
6591 if (!SystemParametersInfo (SPI_GETSCREENREADER, 0,
6592 &w32_use_visible_system_caret, 0))
6593 w32_use_visible_system_caret = 0;
6595 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars,
6596 doc: /* If not nil, Emacs uses toolkit scroll bars. */);
6597 Vx_toolkit_scroll_bars = Qt;
6599 staticpro (&last_mouse_motion_frame);
6600 last_mouse_motion_frame = Qnil;