Fix permissions handling (CVE-2010-0825).
[emacs.git] / src / w32term.c
blob4ed7beda233c2e8b367e68da3191368f1dacb6cf
1 /* Implementation of GUI terminal on the Microsoft W32 API.
2 Copyright (C) 1989, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #include <config.h>
22 #include <signal.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <setjmp.h>
26 #include "lisp.h"
27 #include "blockinput.h"
28 #include "w32term.h"
30 #include "systty.h"
31 #include "systime.h"
33 #include <ctype.h>
34 #include <errno.h>
35 #include <sys/stat.h>
36 #include <imm.h>
38 #include "charset.h"
39 #include "character.h"
40 #include "coding.h"
41 #include "ccl.h"
42 #include "frame.h"
43 #include "dispextern.h"
44 #include "fontset.h"
45 #include "termhooks.h"
46 #include "termopts.h"
47 #include "termchar.h"
48 #include "disptab.h"
49 #include "buffer.h"
50 #include "window.h"
51 #include "keyboard.h"
52 #include "intervals.h"
53 #include "process.h"
54 #include "atimer.h"
55 #include "keymap.h"
57 #include "w32heap.h"
58 #include <shellapi.h>
60 #include "font.h"
61 #include "w32font.h"
63 /* Fringe bitmaps. */
65 static int max_fringe_bmp = 0;
66 static HBITMAP *fringe_bmp = 0;
68 /* Non-nil means Emacs uses toolkit scroll bars. */
70 Lisp_Object Vx_toolkit_scroll_bars;
72 /* Temporary variables for w32_read_socket. */
74 static int last_mousemove_x = 0;
75 static int last_mousemove_y = 0;
77 /* Define GET_WHEEL_DELTA_WPARAM macro if system headers don't. */
78 #ifndef GET_WHEEL_DELTA_WPARAM
79 #define GET_WHEEL_DELTA_WPARAM(wparam) ((short)HIWORD (wparam))
80 #endif
82 /* Non-zero means that a HELP_EVENT has been generated since Emacs
83 start. */
85 static int any_help_event_p;
87 /* Last window where we saw the mouse. Used by mouse-autoselect-window. */
88 static Lisp_Object last_window;
90 /* Non-zero means make use of UNDERLINE_POSITION font properties. */
91 int x_use_underline_position_properties;
93 /* Non-zero means to draw the underline at the same place as the descent line. */
95 int x_underline_at_descent_line;
97 extern unsigned int msh_mousewheel;
99 extern void free_frame_menubar ();
101 extern int w32_codepage_for_font (char *fontname);
102 extern Cursor w32_load_cursor (LPCTSTR name);
104 extern Lisp_Object Vwindow_system;
106 #define x_any_window_to_frame x_window_to_frame
107 #define x_top_window_to_frame x_window_to_frame
110 /* This is display since w32 does not support multiple ones. */
111 struct w32_display_info one_w32_display_info;
112 struct w32_display_info *x_display_list;
114 /* This is a list of cons cells, each of the form (NAME . FONT-LIST-CACHE),
115 one for each element of w32_display_list and in the same order.
116 NAME is the name of the frame.
117 FONT-LIST-CACHE records previous values returned by x-list-fonts. */
118 Lisp_Object w32_display_name_list;
121 #ifndef GLYPHSET
122 /* Pre Windows 2000, this was not available, but define it here so
123 that Emacs compiled on such a platform will run on newer versions. */
125 typedef struct tagWCRANGE
127 WCHAR wcLow;
128 USHORT cGlyphs;
129 } WCRANGE;
131 typedef struct tagGLYPHSET
133 DWORD cbThis;
134 DWORD flAccel;
135 DWORD cGlyphsSupported;
136 DWORD cRanges;
137 WCRANGE ranges[1];
138 } GLYPHSET;
140 #endif
142 /* Dynamic linking to SetLayeredWindowAttribute (only since 2000). */
143 BOOL (WINAPI *pfnSetLayeredWindowAttributes) (HWND, COLORREF, BYTE, DWORD);
145 #ifndef LWA_ALPHA
146 #define LWA_ALPHA 0x02
147 #endif
148 /* WS_EX_LAYERED is defined unconditionally by MingW, but only for W2K and
149 later targets by MSVC headers. */
150 #ifndef WS_EX_LAYERED
151 #define WS_EX_LAYERED 0x80000
152 #endif
154 /* Frame being updated by update_frame. This is declared in term.c.
155 This is set by update_begin and looked at by all the
156 w32 functions. It is zero while not inside an update.
157 In that case, the w32 functions assume that `SELECTED_FRAME ()'
158 is the frame to apply to. */
159 extern struct frame *updating_frame;
161 /* This is a frame waiting to be autoraised, within w32_read_socket. */
162 struct frame *pending_autoraise_frame;
164 /* The handle of the frame that currently owns the system caret. */
165 HWND w32_system_caret_hwnd;
166 int w32_system_caret_height;
167 int w32_system_caret_x;
168 int w32_system_caret_y;
169 int w32_use_visible_system_caret;
171 DWORD dwWindowsThreadId = 0;
172 HANDLE hWindowsThread = NULL;
173 DWORD dwMainThreadId = 0;
174 HANDLE hMainThread = NULL;
176 int vertical_scroll_bar_min_handle;
177 int vertical_scroll_bar_top_border;
178 int vertical_scroll_bar_bottom_border;
180 int last_scroll_bar_drag_pos;
182 /* Mouse movement. */
184 /* Where the mouse was last time we reported a mouse event. */
185 static RECT last_mouse_glyph;
186 static FRAME_PTR last_mouse_glyph_frame;
187 static Lisp_Object last_mouse_press_frame;
189 int w32_num_mouse_buttons;
191 Lisp_Object Vw32_swap_mouse_buttons;
193 /* Control whether x_raise_frame also sets input focus. */
194 Lisp_Object Vw32_grab_focus_on_raise;
196 /* Control whether Caps Lock affects non-ascii characters. */
197 Lisp_Object Vw32_capslock_is_shiftlock;
199 /* Control whether right-alt and left-ctrl should be recognized as AltGr. */
200 Lisp_Object Vw32_recognize_altgr;
202 /* The scroll bar in which the last motion event occurred.
204 If the last motion event occurred in a scroll bar, we set this
205 so w32_mouse_position can know whether to report a scroll bar motion or
206 an ordinary motion.
208 If the last motion event didn't occur in a scroll bar, we set this
209 to Qnil, to tell w32_mouse_position to return an ordinary motion event. */
210 static Lisp_Object last_mouse_scroll_bar;
211 static int last_mouse_scroll_bar_pos;
213 /* This is a hack. We would really prefer that w32_mouse_position would
214 return the time associated with the position it returns, but there
215 doesn't seem to be any way to wrest the time-stamp from the server
216 along with the position query. So, we just keep track of the time
217 of the last movement we received, and return that in hopes that
218 it's somewhat accurate. */
219 static Time last_mouse_movement_time;
221 /* Incremented by w32_read_socket whenever it really tries to read
222 events. */
223 #ifdef __STDC__
224 static int volatile input_signal_count;
225 #else
226 static int input_signal_count;
227 #endif
229 extern Lisp_Object Vcommand_line_args, Vsystem_name;
231 #ifndef USE_CRT_DLL
232 extern int errno;
233 #endif
235 /* A mask of extra modifier bits to put into every keyboard char. */
236 extern EMACS_INT extra_keyboard_modifiers;
238 /* Keyboard code page - may be changed by language-change events. */
239 static int keyboard_codepage;
241 static void x_update_window_end P_ ((struct window *, int, int));
242 static void w32_handle_tool_bar_click P_ ((struct frame *,
243 struct input_event *));
244 static void w32_define_cursor P_ ((Window, Cursor));
246 void x_lower_frame P_ ((struct frame *));
247 void x_scroll_bar_clear P_ ((struct frame *));
248 void x_wm_set_size_hint P_ ((struct frame *, long, int));
249 void x_raise_frame P_ ((struct frame *));
250 void x_set_window_size P_ ((struct frame *, int, int, int));
251 void x_wm_set_window_state P_ ((struct frame *, int));
252 void x_wm_set_icon_pixmap P_ ((struct frame *, int));
253 static void w32_initialize P_ ((void));
254 static void x_update_end P_ ((struct frame *));
255 static void w32_frame_up_to_date P_ ((struct frame *));
256 static void w32_set_terminal_modes P_ ((struct terminal *));
257 static void w32_reset_terminal_modes P_ ((struct terminal *));
258 static void x_clear_frame P_ ((struct frame *));
259 static void frame_highlight P_ ((struct frame *));
260 static void frame_unhighlight P_ ((struct frame *));
261 static void x_new_focus_frame P_ ((struct w32_display_info *,
262 struct frame *));
263 static void x_focus_changed P_ ((int, int, struct w32_display_info *,
264 struct frame *, struct input_event *));
265 static void w32_detect_focus_change P_ ((struct w32_display_info *,
266 W32Msg *, struct input_event *));
267 static void w32_frame_rehighlight P_ ((struct frame *));
268 static void x_frame_rehighlight P_ ((struct w32_display_info *));
269 static void x_draw_hollow_cursor P_ ((struct window *, struct glyph_row *));
270 static void x_draw_bar_cursor P_ ((struct window *, struct glyph_row *, int,
271 enum text_cursor_kinds));
272 static void w32_clip_to_row P_ ((struct window *, struct glyph_row *, int, HDC));
273 static BOOL my_show_window P_ ((struct frame *, HWND, int));
274 static void my_set_window_pos P_ ((HWND, HWND, int, int, int, int, UINT));
275 static void my_set_focus P_ ((struct frame *, HWND));
276 static void my_set_foreground_window P_ ((HWND));
277 static void my_destroy_window P_ ((struct frame *, HWND));
279 static Lisp_Object Qvendor_specific_keysyms;
282 /***********************************************************************
283 Debugging
284 ***********************************************************************/
286 #if 0
288 /* This is a function useful for recording debugging information about
289 the sequence of occurrences in this file. */
291 struct record
293 char *locus;
294 int type;
297 struct record event_record[100];
299 int event_record_index;
301 record_event (locus, type)
302 char *locus;
303 int type;
305 if (event_record_index == sizeof (event_record) / sizeof (struct record))
306 event_record_index = 0;
308 event_record[event_record_index].locus = locus;
309 event_record[event_record_index].type = type;
310 event_record_index++;
313 #endif /* 0 */
316 void
317 XChangeGC (void * ignore, XGCValues* gc, unsigned long mask,
318 XGCValues *xgcv)
320 if (mask & GCForeground)
321 gc->foreground = xgcv->foreground;
322 if (mask & GCBackground)
323 gc->background = xgcv->background;
324 if (mask & GCFont)
325 gc->font = xgcv->font;
328 XGCValues *XCreateGC (void * ignore, Window window, unsigned long mask,
329 XGCValues *xgcv)
331 XGCValues *gc = (XGCValues *) xmalloc (sizeof (XGCValues));
332 bzero (gc, sizeof (XGCValues));
334 XChangeGC (ignore, gc, mask, xgcv);
336 return gc;
339 void
340 XGetGCValues (void* ignore, XGCValues *gc,
341 unsigned long mask, XGCValues *xgcv)
343 XChangeGC (ignore, xgcv, mask, gc);
346 static void
347 w32_set_clip_rectangle (HDC hdc, RECT *rect)
349 if (rect)
351 HRGN clip_region = CreateRectRgnIndirect (rect);
352 SelectClipRgn (hdc, clip_region);
353 DeleteObject (clip_region);
355 else
356 SelectClipRgn (hdc, NULL);
360 /* Draw a hollow rectangle at the specified position. */
361 void
362 w32_draw_rectangle (HDC hdc, XGCValues *gc, int x, int y,
363 int width, int height)
365 HBRUSH hb, oldhb;
366 HPEN hp, oldhp;
368 hb = CreateSolidBrush (gc->background);
369 hp = CreatePen (PS_SOLID, 0, gc->foreground);
370 oldhb = SelectObject (hdc, hb);
371 oldhp = SelectObject (hdc, hp);
373 Rectangle (hdc, x, y, x + width, y + height);
375 SelectObject (hdc, oldhb);
376 SelectObject (hdc, oldhp);
377 DeleteObject (hb);
378 DeleteObject (hp);
381 /* Draw a filled rectangle at the specified position. */
382 void
383 w32_fill_rect (f, hdc, pix, lprect)
384 FRAME_PTR f;
385 HDC hdc;
386 COLORREF pix;
387 RECT * lprect;
389 HBRUSH hb;
391 hb = CreateSolidBrush (pix);
392 FillRect (hdc, lprect, hb);
393 DeleteObject (hb);
396 void
397 w32_clear_window (f)
398 FRAME_PTR f;
400 RECT rect;
401 HDC hdc = get_frame_dc (f);
403 /* Under certain conditions, this can be called at startup with
404 a console frame pointer before the GUI frame is created. An HDC
405 of 0 indicates this. */
406 if (hdc)
408 GetClientRect (FRAME_W32_WINDOW (f), &rect);
409 w32_clear_rect (f, hdc, &rect);
412 release_frame_dc (f, hdc);
415 #define OPAQUE_FRAME 255
417 void
418 x_set_frame_alpha (f)
419 struct frame *f;
421 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
422 double alpha = 1.0;
423 double alpha_min = 1.0;
424 BYTE opac;
425 LONG ex_style;
426 HWND window = FRAME_W32_WINDOW (f);
428 /* Older versions of Windows do not support transparency. */
429 if (!pfnSetLayeredWindowAttributes)
430 return;
432 if (dpyinfo->x_highlight_frame == f)
433 alpha = f->alpha[0];
434 else
435 alpha = f->alpha[1];
437 if (FLOATP (Vframe_alpha_lower_limit))
438 alpha_min = XFLOAT_DATA (Vframe_alpha_lower_limit);
439 else if (INTEGERP (Vframe_alpha_lower_limit))
440 alpha_min = (XINT (Vframe_alpha_lower_limit)) / 100.0;
442 if (alpha < 0.0)
443 return;
444 else if (alpha > 1.0)
445 alpha = 1.0;
446 else if (alpha < alpha_min && alpha_min <= 1.0)
447 alpha = alpha_min;
449 opac = alpha * OPAQUE_FRAME;
451 ex_style = GetWindowLong (window, GWL_EXSTYLE);
453 if (opac == OPAQUE_FRAME)
454 ex_style &= ~WS_EX_LAYERED;
455 else
456 ex_style |= WS_EX_LAYERED;
458 SetWindowLong (window, GWL_EXSTYLE, ex_style);
460 if (opac != OPAQUE_FRAME)
461 pfnSetLayeredWindowAttributes (window, 0, opac, LWA_ALPHA);
465 x_display_pixel_height (dpyinfo)
466 struct w32_display_info *dpyinfo;
468 HDC dc = GetDC (NULL);
469 int pixels = GetDeviceCaps (dc, VERTRES);
470 ReleaseDC (NULL, dc);
471 return pixels;
475 x_display_pixel_width (dpyinfo)
476 struct w32_display_info *dpyinfo;
478 HDC dc = GetDC (NULL);
479 int pixels = GetDeviceCaps (dc, HORZRES);
480 ReleaseDC (NULL, dc);
481 return pixels;
485 /***********************************************************************
486 Starting and ending an update
487 ***********************************************************************/
489 /* Start an update of frame F. This function is installed as a hook
490 for update_begin, i.e. it is called when update_begin is called.
491 This function is called prior to calls to x_update_window_begin for
492 each window being updated. */
494 static void
495 x_update_begin (f)
496 struct frame *f;
498 struct w32_display_info *display_info = FRAME_W32_DISPLAY_INFO (f);
500 if (! FRAME_W32_P (f))
501 return;
503 /* Regenerate display palette before drawing if list of requested
504 colors has changed. */
505 if (display_info->regen_palette)
507 w32_regenerate_palette (f);
508 display_info->regen_palette = FALSE;
513 /* Start update of window W. Set the global variable updated_window
514 to the window being updated and set output_cursor to the cursor
515 position of W. */
517 static void
518 x_update_window_begin (w)
519 struct window *w;
521 struct frame *f = XFRAME (WINDOW_FRAME (w));
522 struct w32_display_info *display_info = FRAME_W32_DISPLAY_INFO (f);
524 /* Hide the system caret during an update. */
525 if (w32_use_visible_system_caret && w32_system_caret_hwnd)
527 SendMessage (w32_system_caret_hwnd, WM_EMACS_HIDE_CARET, 0, 0);
530 updated_window = w;
531 set_output_cursor (&w->cursor);
533 BLOCK_INPUT;
535 if (f == display_info->mouse_face_mouse_frame)
537 /* Don't do highlighting for mouse motion during the update. */
538 display_info->mouse_face_defer = 1;
540 /* If F needs to be redrawn, simply forget about any prior mouse
541 highlighting. */
542 if (FRAME_GARBAGED_P (f))
543 display_info->mouse_face_window = Qnil;
545 #if 0 /* Rows in a current matrix containing glyphs in mouse-face have
546 their mouse_face_p flag set, which means that they are always
547 unequal to rows in a desired matrix which never have that
548 flag set. So, rows containing mouse-face glyphs are never
549 scrolled, and we don't have to switch the mouse highlight off
550 here to prevent it from being scrolled. */
552 /* Can we tell that this update does not affect the window
553 where the mouse highlight is? If so, no need to turn off.
554 Likewise, don't do anything if the frame is garbaged;
555 in that case, the frame's current matrix that we would use
556 is all wrong, and we will redisplay that line anyway. */
557 if (!NILP (display_info->mouse_face_window)
558 && w == XWINDOW (display_info->mouse_face_window))
560 int i;
562 for (i = 0; i < w->desired_matrix->nrows; ++i)
563 if (MATRIX_ROW_ENABLED_P (w->desired_matrix, i))
564 break;
566 if (i < w->desired_matrix->nrows)
567 clear_mouse_face (display_info);
569 #endif /* 0 */
572 UNBLOCK_INPUT;
575 /* Draw a vertical window border from (x,y0) to (x,y1) */
577 static void
578 w32_draw_vertical_window_border (w, x, y0, y1)
579 struct window *w;
580 int x, y0, y1;
582 struct frame *f = XFRAME (WINDOW_FRAME (w));
583 RECT r;
584 HDC hdc;
585 struct face *face;
587 r.left = x;
588 r.right = x + 1;
589 r.top = y0;
590 r.bottom = y1;
592 hdc = get_frame_dc (f);
593 face = FACE_FROM_ID (f, VERTICAL_BORDER_FACE_ID);
594 if (face)
595 w32_fill_rect (f, hdc, face->foreground, &r);
596 else
597 w32_fill_rect (f, hdc, FRAME_FOREGROUND_PIXEL (f), &r);
599 release_frame_dc (f, hdc);
603 /* End update of window W (which is equal to updated_window).
605 Draw vertical borders between horizontally adjacent windows, and
606 display W's cursor if CURSOR_ON_P is non-zero.
608 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
609 glyphs in mouse-face were overwritten. In that case we have to
610 make sure that the mouse-highlight is properly redrawn.
612 W may be a menu bar pseudo-window in case we don't have X toolkit
613 support. Such windows don't have a cursor, so don't display it
614 here. */
616 static void
617 x_update_window_end (w, cursor_on_p, mouse_face_overwritten_p)
618 struct window *w;
619 int cursor_on_p, mouse_face_overwritten_p;
621 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (XFRAME (w->frame));
623 if (!w->pseudo_window_p)
625 BLOCK_INPUT;
627 if (cursor_on_p)
628 display_and_set_cursor (w, 1, output_cursor.hpos,
629 output_cursor.vpos,
630 output_cursor.x, output_cursor.y);
632 if (draw_window_fringes (w, 1))
633 x_draw_vertical_border (w);
635 UNBLOCK_INPUT;
638 /* If a row with mouse-face was overwritten, arrange for
639 XTframe_up_to_date to redisplay the mouse highlight. */
640 if (mouse_face_overwritten_p)
642 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
643 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
644 dpyinfo->mouse_face_window = Qnil;
647 /* Unhide the caret. This won't actually show the cursor, unless it
648 was visible before the corresponding call to HideCaret in
649 x_update_window_begin. */
650 if (w32_use_visible_system_caret && w32_system_caret_hwnd)
652 SendMessage (w32_system_caret_hwnd, WM_EMACS_SHOW_CARET, 0, 0);
655 updated_window = NULL;
659 /* End update of frame F. This function is installed as a hook in
660 update_end. */
662 static void
663 x_update_end (f)
664 struct frame *f;
666 if (! FRAME_W32_P (f))
667 return;
669 /* Mouse highlight may be displayed again. */
670 FRAME_W32_DISPLAY_INFO (f)->mouse_face_defer = 0;
674 /* This function is called from various places in xdisp.c whenever a
675 complete update has been performed. The global variable
676 updated_window is not available here. */
678 static void
679 w32_frame_up_to_date (f)
680 struct frame *f;
682 if (FRAME_W32_P (f))
684 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
686 if (dpyinfo->mouse_face_deferred_gc
687 || f == dpyinfo->mouse_face_mouse_frame)
689 BLOCK_INPUT;
690 if (dpyinfo->mouse_face_mouse_frame)
691 note_mouse_highlight (dpyinfo->mouse_face_mouse_frame,
692 dpyinfo->mouse_face_mouse_x,
693 dpyinfo->mouse_face_mouse_y);
694 dpyinfo->mouse_face_deferred_gc = 0;
695 UNBLOCK_INPUT;
701 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
702 arrow bitmaps, or clear the fringes if no bitmaps are required
703 before DESIRED_ROW is made current. The window being updated is
704 found in updated_window. This function is called from
705 update_window_line only if it is known that there are differences
706 between bitmaps to be drawn between current row and DESIRED_ROW. */
708 static void
709 x_after_update_window_line (desired_row)
710 struct glyph_row *desired_row;
712 struct window *w = updated_window;
713 struct frame *f;
714 int width, height;
716 xassert (w);
718 if (!desired_row->mode_line_p && !w->pseudo_window_p)
719 desired_row->redraw_fringe_bitmaps_p = 1;
721 /* When a window has disappeared, make sure that no rest of
722 full-width rows stays visible in the internal border. Could
723 check here if updated_window is the leftmost/rightmost window,
724 but I guess it's not worth doing since vertically split windows
725 are almost never used, internal border is rarely set, and the
726 overhead is very small. */
727 if (windows_or_buffers_changed
728 && desired_row->full_width_p
729 && (f = XFRAME (w->frame),
730 width = FRAME_INTERNAL_BORDER_WIDTH (f),
731 width != 0)
732 && (height = desired_row->visible_height,
733 height > 0))
735 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
737 BLOCK_INPUT;
739 HDC hdc = get_frame_dc (f);
740 w32_clear_area (f, hdc, 0, y, width, height);
741 w32_clear_area (f, hdc, FRAME_PIXEL_WIDTH (f) - width,
742 y, width, height);
743 release_frame_dc (f, hdc);
745 UNBLOCK_INPUT;
750 /* Draw the bitmap WHICH in one of the left or right fringes of
751 window W. ROW is the glyph row for which to display the bitmap; it
752 determines the vertical position at which the bitmap has to be
753 drawn. */
755 static void
756 w32_draw_fringe_bitmap (w, row, p)
757 struct window *w;
758 struct glyph_row *row;
759 struct draw_fringe_bitmap_params *p;
761 struct frame *f = XFRAME (WINDOW_FRAME (w));
762 HDC hdc;
763 struct face *face = p->face;
764 int rowY;
766 hdc = get_frame_dc (f);
768 if (!p->overlay_p)
770 int bx = p->bx, by = p->by, nx = p->nx, ny = p->ny;
772 /* If the fringe is adjacent to the left (right) scroll bar of a
773 leftmost (rightmost, respectively) window, then extend its
774 background to the gap between the fringe and the bar. */
775 if ((WINDOW_LEFTMOST_P (w)
776 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
777 || (WINDOW_RIGHTMOST_P (w)
778 && WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w)))
780 int sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
782 if (sb_width > 0)
784 int left = WINDOW_SCROLL_BAR_AREA_X (w);
785 int width = (WINDOW_CONFIG_SCROLL_BAR_COLS (w)
786 * FRAME_COLUMN_WIDTH (f));
788 if (bx < 0)
790 /* Bitmap fills the fringe. */
791 if (left + width == p->x)
792 bx = left + sb_width;
793 else if (p->x + p->wd == left)
794 bx = left;
795 if (bx >= 0)
797 int header_line_height = WINDOW_HEADER_LINE_HEIGHT (w);
799 nx = width - sb_width;
800 by = WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height,
801 row->y));
802 ny = row->visible_height;
805 else
807 if (left + width == bx)
809 bx = left + sb_width;
810 nx += width - sb_width;
812 else if (bx + nx == left)
813 nx += width - sb_width;
818 if (bx >= 0 && nx > 0)
819 w32_fill_area (f, hdc, face->background, bx, by, nx, ny);
822 /* Must clip because of partially visible lines. */
823 rowY = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
824 if (p->y < rowY)
826 /* Adjust position of "bottom aligned" bitmap on partially
827 visible last row. */
828 int oldY = row->y;
829 int oldVH = row->visible_height;
830 row->visible_height = p->h;
831 row->y -= rowY - p->y;
832 w32_clip_to_row (w, row, -1, hdc);
833 row->y = oldY;
834 row->visible_height = oldVH;
836 else
837 w32_clip_to_row (w, row, -1, hdc);
839 if (p->which && p->which < max_fringe_bmp)
841 HBITMAP pixmap = fringe_bmp[p->which];
842 HDC compat_hdc;
843 HANDLE horig_obj;
845 compat_hdc = CreateCompatibleDC (hdc);
847 SaveDC (hdc);
849 horig_obj = SelectObject (compat_hdc, pixmap);
851 /* Paint overlays transparently. */
852 if (p->overlay_p)
854 HBRUSH h_brush, h_orig_brush;
856 SetTextColor (hdc, BLACK_PIX_DEFAULT (f));
857 SetBkColor (hdc, WHITE_PIX_DEFAULT (f));
858 h_brush = CreateSolidBrush (face->foreground);
859 h_orig_brush = SelectObject (hdc, h_brush);
861 BitBlt (hdc, p->x, p->y, p->wd, p->h,
862 compat_hdc, 0, p->dh,
863 DSTINVERT);
864 BitBlt (hdc, p->x, p->y, p->wd, p->h,
865 compat_hdc, 0, p->dh,
866 0x2E064A);
867 BitBlt (hdc, p->x, p->y, p->wd, p->h,
868 compat_hdc, 0, p->dh,
869 DSTINVERT);
871 SelectObject (hdc, h_orig_brush);
872 DeleteObject (h_brush);
874 else
876 SetTextColor (hdc, face->background);
877 SetBkColor (hdc, (p->cursor_p
878 ? f->output_data.w32->cursor_pixel
879 : face->foreground));
881 BitBlt (hdc, p->x, p->y, p->wd, p->h,
882 compat_hdc, 0, p->dh,
883 SRCCOPY);
886 SelectObject (compat_hdc, horig_obj);
887 DeleteDC (compat_hdc);
888 RestoreDC (hdc, -1);
891 w32_set_clip_rectangle (hdc, NULL);
893 release_frame_dc (f, hdc);
896 static void
897 w32_define_fringe_bitmap (which, bits, h, wd)
898 int which;
899 unsigned short *bits;
900 int h, wd;
902 if (which >= max_fringe_bmp)
904 int i = max_fringe_bmp;
905 max_fringe_bmp = which + 20;
906 fringe_bmp = (HBITMAP *) xrealloc (fringe_bmp, max_fringe_bmp * sizeof (HBITMAP));
907 while (i < max_fringe_bmp)
908 fringe_bmp[i++] = 0;
911 fringe_bmp[which] = CreateBitmap (wd, h, 1, 1, bits);
914 static void
915 w32_destroy_fringe_bitmap (which)
916 int which;
918 if (which >= max_fringe_bmp)
919 return;
921 if (fringe_bmp[which])
922 DeleteObject (fringe_bmp[which]);
923 fringe_bmp[which] = 0;
928 /* This is called when starting Emacs and when restarting after
929 suspend. When starting Emacs, no window is mapped. And nothing
930 must be done to Emacs's own window if it is suspended (though that
931 rarely happens). */
933 static void
934 w32_set_terminal_modes (struct terminal *term)
938 /* This is called when exiting or suspending Emacs. Exiting will make
939 the W32 windows go away, and suspending requires no action. */
941 static void
942 w32_reset_terminal_modes (struct terminal *term)
948 /***********************************************************************
949 Display Iterator
950 ***********************************************************************/
952 /* Function prototypes of this page. */
954 static void x_set_glyph_string_clipping P_ ((struct glyph_string *));
955 static void x_set_glyph_string_gc P_ ((struct glyph_string *));
956 static void x_draw_glyph_string_background P_ ((struct glyph_string *,
957 int));
958 static void x_draw_glyph_string_foreground P_ ((struct glyph_string *));
959 static void x_draw_composite_glyph_string_foreground P_ ((struct glyph_string *));
960 static void x_draw_glyph_string_box P_ ((struct glyph_string *));
961 static void x_draw_glyph_string P_ ((struct glyph_string *));
962 static void x_set_cursor_gc P_ ((struct glyph_string *));
963 static void x_set_mode_line_face_gc P_ ((struct glyph_string *));
964 static void x_set_mouse_face_gc P_ ((struct glyph_string *));
965 static int w32_alloc_lighter_color (struct frame *, COLORREF *, double, int);
966 static void w32_setup_relief_color P_ ((struct frame *, struct relief *,
967 double, int, COLORREF));
968 static void x_setup_relief_colors P_ ((struct glyph_string *));
969 static void x_draw_image_glyph_string P_ ((struct glyph_string *));
970 static void x_draw_image_relief P_ ((struct glyph_string *));
971 static void x_draw_image_foreground P_ ((struct glyph_string *));
972 static void w32_draw_image_foreground_1 P_ ((struct glyph_string *, HBITMAP));
973 static void x_clear_glyph_string_rect P_ ((struct glyph_string *, int,
974 int, int, int));
975 static void w32_draw_relief_rect P_ ((struct frame *, int, int, int, int,
976 int, int, int, int, int, int,
977 RECT *));
978 static void w32_draw_box_rect P_ ((struct glyph_string *, int, int, int, int,
979 int, int, int, RECT *));
982 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
983 face. */
985 static void
986 x_set_cursor_gc (s)
987 struct glyph_string *s;
989 if (s->font == FRAME_FONT (s->f)
990 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
991 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
992 && !s->cmp)
993 s->gc = s->f->output_data.w32->cursor_gc;
994 else
996 /* Cursor on non-default face: must merge. */
997 XGCValues xgcv;
998 unsigned long mask;
1000 xgcv.background = s->f->output_data.w32->cursor_pixel;
1001 xgcv.foreground = s->face->background;
1003 /* If the glyph would be invisible, try a different foreground. */
1004 if (xgcv.foreground == xgcv.background)
1005 xgcv.foreground = s->face->foreground;
1006 if (xgcv.foreground == xgcv.background)
1007 xgcv.foreground = s->f->output_data.w32->cursor_foreground_pixel;
1008 if (xgcv.foreground == xgcv.background)
1009 xgcv.foreground = s->face->foreground;
1011 /* Make sure the cursor is distinct from text in this face. */
1012 if (xgcv.background == s->face->background
1013 && xgcv.foreground == s->face->foreground)
1015 xgcv.background = s->face->foreground;
1016 xgcv.foreground = s->face->background;
1019 IF_DEBUG (x_check_font (s->f, s->font));
1020 xgcv.font = s->font;
1021 mask = GCForeground | GCBackground | GCFont;
1023 if (FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc)
1024 XChangeGC (NULL, FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc,
1025 mask, &xgcv);
1026 else
1027 FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc
1028 = XCreateGC (NULL, s->window, mask, &xgcv);
1030 s->gc = FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc;
1035 /* Set up S->gc of glyph string S for drawing text in mouse face. */
1037 static void
1038 x_set_mouse_face_gc (s)
1039 struct glyph_string *s;
1041 int face_id;
1042 struct face *face;
1044 /* What face has to be used last for the mouse face? */
1045 face_id = FRAME_W32_DISPLAY_INFO (s->f)->mouse_face_face_id;
1046 face = FACE_FROM_ID (s->f, face_id);
1047 if (face == NULL)
1048 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
1050 if (s->first_glyph->type == CHAR_GLYPH)
1051 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch, -1, Qnil);
1052 else
1053 face_id = FACE_FOR_CHAR (s->f, face, 0, -1, Qnil);
1054 s->face = FACE_FROM_ID (s->f, face_id);
1055 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
1057 /* If font in this face is same as S->font, use it. */
1058 if (s->font == s->face->font)
1059 s->gc = s->face->gc;
1060 else
1062 /* Otherwise construct scratch_cursor_gc with values from FACE
1063 but font FONT. */
1064 XGCValues xgcv;
1065 unsigned long mask;
1067 xgcv.background = s->face->background;
1068 xgcv.foreground = s->face->foreground;
1069 IF_DEBUG (x_check_font (s->f, s->font));
1070 xgcv.font = s->font;
1071 mask = GCForeground | GCBackground | GCFont;
1073 if (FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc)
1074 XChangeGC (NULL, FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc,
1075 mask, &xgcv);
1076 else
1077 FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc
1078 = XCreateGC (NULL, s->window, mask, &xgcv);
1080 s->gc = FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc;
1083 xassert (s->gc != 0);
1087 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
1088 Faces to use in the mode line have already been computed when the
1089 matrix was built, so there isn't much to do, here. */
1091 static INLINE void
1092 x_set_mode_line_face_gc (s)
1093 struct glyph_string *s;
1095 s->gc = s->face->gc;
1099 /* Set S->gc of glyph string S for drawing that glyph string. Set
1100 S->stippled_p to a non-zero value if the face of S has a stipple
1101 pattern. */
1103 static INLINE void
1104 x_set_glyph_string_gc (s)
1105 struct glyph_string *s;
1107 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
1109 if (s->hl == DRAW_NORMAL_TEXT)
1111 s->gc = s->face->gc;
1112 s->stippled_p = s->face->stipple != 0;
1114 else if (s->hl == DRAW_INVERSE_VIDEO)
1116 x_set_mode_line_face_gc (s);
1117 s->stippled_p = s->face->stipple != 0;
1119 else if (s->hl == DRAW_CURSOR)
1121 x_set_cursor_gc (s);
1122 s->stippled_p = 0;
1124 else if (s->hl == DRAW_MOUSE_FACE)
1126 x_set_mouse_face_gc (s);
1127 s->stippled_p = s->face->stipple != 0;
1129 else if (s->hl == DRAW_IMAGE_RAISED
1130 || s->hl == DRAW_IMAGE_SUNKEN)
1132 s->gc = s->face->gc;
1133 s->stippled_p = s->face->stipple != 0;
1135 else
1137 s->gc = s->face->gc;
1138 s->stippled_p = s->face->stipple != 0;
1141 /* GC must have been set. */
1142 xassert (s->gc != 0);
1146 /* Set clipping for output of glyph string S. S may be part of a mode
1147 line or menu if we don't have X toolkit support. */
1149 static INLINE void
1150 x_set_glyph_string_clipping (s)
1151 struct glyph_string *s;
1153 RECT *r = s->clip;
1154 int n = get_glyph_string_clip_rects (s, r, 2);
1156 if (n == 1)
1157 w32_set_clip_rectangle (s->hdc, r);
1158 else if (n > 1)
1160 HRGN full_clip, clip1, clip2;
1161 clip1 = CreateRectRgnIndirect (r);
1162 clip2 = CreateRectRgnIndirect (r + 1);
1163 if (CombineRgn (full_clip, clip1, clip2, RGN_OR) != ERROR)
1165 SelectClipRgn (s->hdc, full_clip);
1167 DeleteObject (clip1);
1168 DeleteObject (clip2);
1169 DeleteObject (full_clip);
1171 s->num_clips = n;
1174 /* Set SRC's clipping for output of glyph string DST. This is called
1175 when we are drawing DST's left_overhang or right_overhang only in
1176 the area of SRC. */
1178 static void
1179 x_set_glyph_string_clipping_exactly (src, dst)
1180 struct glyph_string *src, *dst;
1182 RECT r;
1184 r.left = src->x;
1185 r.right = r.left + src->width;
1186 r.top = src->y;
1187 r.bottom = r.top + src->height;
1188 dst->clip[0] = r;
1189 dst->num_clips = 1;
1190 w32_set_clip_rectangle (dst->hdc, &r);
1193 /* RIF:
1194 Compute left and right overhang of glyph string S. */
1196 static void
1197 w32_compute_glyph_string_overhangs (s)
1198 struct glyph_string *s;
1200 if (s->cmp == NULL
1201 && s->first_glyph->type == CHAR_GLYPH
1202 && !s->font_not_found_p)
1204 unsigned *code = alloca (sizeof (unsigned) * s->nchars);
1205 struct font *font = s->font;
1206 struct font_metrics metrics;
1207 int i;
1209 for (i = 0; i < s->nchars; i++)
1210 code[i] = s->char2b[i];
1211 font->driver->text_extents (font, code, s->nchars, &metrics);
1212 s->right_overhang = (metrics.rbearing > metrics.width
1213 ? metrics.rbearing - metrics.width : 0);
1214 s->left_overhang = metrics.lbearing < 0 ? -metrics.lbearing : 0;
1216 else if (s->cmp)
1218 s->right_overhang = s->cmp->rbearing - s->cmp->pixel_width;
1219 s->left_overhang = -s->cmp->lbearing;
1223 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
1225 static INLINE void
1226 x_clear_glyph_string_rect (s, x, y, w, h)
1227 struct glyph_string *s;
1228 int x, y, w, h;
1230 int real_x = x;
1231 int real_y = y;
1232 int real_w = w;
1233 int real_h = h;
1234 #if 0
1235 /* Take clipping into account. */
1236 if (s->gc->clip_mask == Rect)
1238 real_x = max (real_x, s->gc->clip_rectangle.left);
1239 real_y = max (real_y, s->gc->clip_rectangle.top);
1240 real_w = min (real_w, s->gc->clip_rectangle.right
1241 - s->gc->clip_rectangle.left);
1242 real_h = min (real_h, s->gc->clip_rectangle.bottom
1243 - s->gc->clip_rectangle.top);
1245 #endif
1246 w32_fill_area (s->f, s->hdc, s->gc->background, real_x, real_y,
1247 real_w, real_h);
1251 /* Draw the background of glyph_string S. If S->background_filled_p
1252 is non-zero don't draw it. FORCE_P non-zero means draw the
1253 background even if it wouldn't be drawn normally. This is used
1254 when a string preceding S draws into the background of S, or S
1255 contains the first component of a composition. */
1257 static void
1258 x_draw_glyph_string_background (s, force_p)
1259 struct glyph_string *s;
1260 int force_p;
1262 /* Nothing to do if background has already been drawn or if it
1263 shouldn't be drawn in the first place. */
1264 if (!s->background_filled_p)
1266 int box_line_width = max (s->face->box_line_width, 0);
1268 #if 0 /* TODO: stipple */
1269 if (s->stippled_p)
1271 /* Fill background with a stipple pattern. */
1272 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
1273 XFillRectangle (s->display, s->window, s->gc, s->x,
1274 s->y + box_line_width,
1275 s->background_width,
1276 s->height - 2 * box_line_width);
1277 XSetFillStyle (s->display, s->gc, FillSolid);
1278 s->background_filled_p = 1;
1280 else
1281 #endif
1282 if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
1283 || s->font_not_found_p
1284 || s->extends_to_end_of_line_p
1285 || force_p)
1287 x_clear_glyph_string_rect (s, s->x, s->y + box_line_width,
1288 s->background_width,
1289 s->height - 2 * box_line_width);
1290 s->background_filled_p = 1;
1296 /* Draw the foreground of glyph string S. */
1298 static void
1299 x_draw_glyph_string_foreground (s)
1300 struct glyph_string *s;
1302 int i, x;
1304 /* If first glyph of S has a left box line, start drawing the text
1305 of S to the right of that box line. */
1306 if (s->face->box != FACE_NO_BOX
1307 && s->first_glyph->left_box_line_p)
1308 x = s->x + eabs (s->face->box_line_width);
1309 else
1310 x = s->x;
1312 SetTextColor (s->hdc, s->gc->foreground);
1313 SetBkColor (s->hdc, s->gc->background);
1314 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
1316 /* Draw characters of S as rectangles if S's font could not be
1317 loaded. */
1318 if (s->font_not_found_p)
1320 for (i = 0; i < s->nchars; ++i)
1322 struct glyph *g = s->first_glyph + i;
1324 w32_draw_rectangle (s->hdc, s->gc, x, s->y, g->pixel_width - 1,
1325 s->height - 1);
1326 x += g->pixel_width;
1329 else
1331 struct font *font = s->font;
1332 int boff = font->baseline_offset;
1333 int y;
1334 HFONT old_font;
1336 old_font = SelectObject (s->hdc, FONT_HANDLE (font));
1338 if (font->vertical_centering)
1339 boff = VCENTER_BASELINE_OFFSET (font, s->f) - boff;
1341 y = s->ybase - boff;
1342 if (s->for_overlaps
1343 || (s->background_filled_p && s->hl != DRAW_CURSOR))
1344 font->driver->draw (s, 0, s->nchars, x, y, 0);
1345 else
1346 font->driver->draw (s, 0, s->nchars, x, y, 1);
1347 if (s->face->overstrike)
1348 font->driver->draw (s, 0, s->nchars, x + 1, y, 0);
1350 SelectObject (s->hdc, old_font);
1354 /* Draw the foreground of composite glyph string S. */
1356 static void
1357 x_draw_composite_glyph_string_foreground (s)
1358 struct glyph_string *s;
1360 int i, j, x;
1361 struct font *font = s->font;
1363 /* If first glyph of S has a left box line, start drawing the text
1364 of S to the right of that box line. */
1365 if (s->face && s->face->box != FACE_NO_BOX
1366 && s->first_glyph->left_box_line_p)
1367 x = s->x + eabs (s->face->box_line_width);
1368 else
1369 x = s->x;
1371 /* S is a glyph string for a composition. S->cmp_from is the index
1372 of the first character drawn for glyphs of this composition.
1373 S->cmp_from == 0 means we are drawing the very first character of
1374 this composition. */
1376 SetTextColor (s->hdc, s->gc->foreground);
1377 SetBkColor (s->hdc, s->gc->background);
1378 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
1380 /* Draw a rectangle for the composition if the font for the very
1381 first character of the composition could not be loaded. */
1382 if (s->font_not_found_p)
1384 if (s->cmp_from == 0)
1385 w32_draw_rectangle (s->hdc, s->gc, x, s->y, s->width - 1,
1386 s->height - 1);
1388 else if (! s->first_glyph->u.cmp.automatic)
1390 int y = s->ybase;
1391 int width = 0;
1392 HFONT old_font;
1394 old_font = SelectObject (s->hdc, FONT_HANDLE (font));
1396 for (i = 0, j = s->cmp_from; i < s->nchars; i++, j++)
1397 if (COMPOSITION_GLYPH (s->cmp, j) != '\t')
1399 int xx = x + s->cmp->offsets[j * 2];
1400 int yy = y - s->cmp->offsets[j * 2 + 1];
1402 font->driver->draw (s, j, j + 1, xx, yy, 0);
1403 if (s->face->overstrike)
1404 font->driver->draw (s, j, j + 1, xx + 1, yy, 0);
1406 SelectObject (s->hdc, old_font);
1408 else
1410 Lisp_Object gstring = composition_gstring_from_id (s->cmp_id);
1411 Lisp_Object glyph;
1412 int y = s->ybase;
1413 int width = 0;
1414 HFONT old_font;
1416 old_font = SelectObject (s->hdc, FONT_HANDLE (font));
1418 for (i = j = s->cmp_from; i < s->cmp_to; i++)
1420 glyph = LGSTRING_GLYPH (gstring, i);
1421 if (NILP (LGLYPH_ADJUSTMENT (glyph)))
1422 width += LGLYPH_WIDTH (glyph);
1423 else
1425 int xoff, yoff, wadjust;
1427 if (j < i)
1429 font->driver->draw (s, j, i, x, y, 0);
1430 x += width;
1432 xoff = LGLYPH_XOFF (glyph);
1433 yoff = LGLYPH_YOFF (glyph);
1434 wadjust = LGLYPH_WADJUST (glyph);
1435 font->driver->draw (s, i, i + 1, x + xoff, y + yoff, 0);
1436 x += wadjust;
1437 j = i + 1;
1438 width = 0;
1441 if (j < i)
1442 font->driver->draw (s, j, i, x, y, 0);
1444 SelectObject (s->hdc, old_font);
1449 /* Brightness beyond which a color won't have its highlight brightness
1450 boosted.
1452 Nominally, highlight colors for `3d' faces are calculated by
1453 brightening an object's color by a constant scale factor, but this
1454 doesn't yield good results for dark colors, so for colors who's
1455 brightness is less than this value (on a scale of 0-255) have to
1456 use an additional additive factor.
1458 The value here is set so that the default menu-bar/mode-line color
1459 (grey75) will not have its highlights changed at all. */
1460 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 187
1463 /* Allocate a color which is lighter or darker than *COLOR by FACTOR
1464 or DELTA. Try a color with RGB values multiplied by FACTOR first.
1465 If this produces the same color as COLOR, try a color where all RGB
1466 values have DELTA added. Return the allocated color in *COLOR.
1467 DISPLAY is the X display, CMAP is the colormap to operate on.
1468 Value is non-zero if successful. */
1470 static int
1471 w32_alloc_lighter_color (f, color, factor, delta)
1472 struct frame *f;
1473 COLORREF *color;
1474 double factor;
1475 int delta;
1477 COLORREF new;
1478 long bright;
1480 /* On Windows, RGB values are 0-255, not 0-65535, so scale delta. */
1481 delta /= 256;
1483 /* Change RGB values by specified FACTOR. Avoid overflow! */
1484 xassert (factor >= 0);
1485 new = PALETTERGB (min (0xff, factor * GetRValue (*color)),
1486 min (0xff, factor * GetGValue (*color)),
1487 min (0xff, factor * GetBValue (*color)));
1489 /* Calculate brightness of COLOR. */
1490 bright = (2 * GetRValue (*color) + 3 * GetGValue (*color)
1491 + GetBValue (*color)) / 6;
1493 /* We only boost colors that are darker than
1494 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
1495 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
1496 /* Make an additive adjustment to NEW, because it's dark enough so
1497 that scaling by FACTOR alone isn't enough. */
1499 /* How far below the limit this color is (0 - 1, 1 being darker). */
1500 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
1501 /* The additive adjustment. */
1502 int min_delta = delta * dimness * factor / 2;
1504 if (factor < 1)
1505 new = PALETTERGB (max (0, min (0xff, min_delta - GetRValue (*color))),
1506 max (0, min (0xff, min_delta - GetGValue (*color))),
1507 max (0, min (0xff, min_delta - GetBValue (*color))));
1508 else
1509 new = PALETTERGB (max (0, min (0xff, min_delta + GetRValue (*color))),
1510 max (0, min (0xff, min_delta + GetGValue (*color))),
1511 max (0, min (0xff, min_delta + GetBValue (*color))));
1514 if (new == *color)
1515 new = PALETTERGB (max (0, min (0xff, delta + GetRValue (*color))),
1516 max (0, min (0xff, delta + GetGValue (*color))),
1517 max (0, min (0xff, delta + GetBValue (*color))));
1519 /* TODO: Map to palette and retry with delta if same? */
1520 /* TODO: Free colors (if using palette)? */
1522 if (new == *color)
1523 return 0;
1525 *color = new;
1527 return 1;
1530 /* On frame F, translate pixel colors to RGB values for the NCOLORS
1531 colors in COLORS. On W32, we no longer try to map colors to
1532 a palette. */
1533 void
1534 x_query_colors (f, colors, ncolors)
1535 struct frame *f;
1536 XColor *colors;
1537 int ncolors;
1539 int i;
1541 for (i = 0; i < ncolors; i++)
1543 DWORD pixel = colors[i].pixel;
1544 /* Convert to a 16 bit value in range 0 - 0xffff. */
1545 colors[i].red = GetRValue (pixel) * 257;
1546 colors[i].green = GetGValue (pixel) * 257;
1547 colors[i].blue = GetBValue (pixel) * 257;
1551 void
1552 x_query_color (f, color)
1553 struct frame *f;
1554 XColor *color;
1556 x_query_colors (f, color, 1);
1560 /* Set up the foreground color for drawing relief lines of glyph
1561 string S. RELIEF is a pointer to a struct relief containing the GC
1562 with which lines will be drawn. Use a color that is FACTOR or
1563 DELTA lighter or darker than the relief's background which is found
1564 in S->f->output_data.x->relief_background. If such a color cannot
1565 be allocated, use DEFAULT_PIXEL, instead. */
1567 static void
1568 w32_setup_relief_color (f, relief, factor, delta, default_pixel)
1569 struct frame *f;
1570 struct relief *relief;
1571 double factor;
1572 int delta;
1573 COLORREF default_pixel;
1575 XGCValues xgcv;
1576 struct w32_output *di = f->output_data.w32;
1577 unsigned long mask = GCForeground;
1578 COLORREF pixel;
1579 COLORREF background = di->relief_background;
1580 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
1582 /* TODO: Free colors (if using palette)? */
1584 /* Allocate new color. */
1585 xgcv.foreground = default_pixel;
1586 pixel = background;
1587 if (w32_alloc_lighter_color (f, &pixel, factor, delta))
1589 relief->allocated_p = 1;
1590 xgcv.foreground = relief->pixel = pixel;
1593 if (relief->gc == 0)
1595 #if 0 /* TODO: stipple */
1596 xgcv.stipple = dpyinfo->gray;
1597 mask |= GCStipple;
1598 #endif
1599 relief->gc = XCreateGC (NULL, FRAME_W32_WINDOW (f), mask, &xgcv);
1601 else
1602 XChangeGC (NULL, relief->gc, mask, &xgcv);
1606 /* Set up colors for the relief lines around glyph string S. */
1608 static void
1609 x_setup_relief_colors (s)
1610 struct glyph_string *s;
1612 struct w32_output *di = s->f->output_data.w32;
1613 COLORREF color;
1615 if (s->face->use_box_color_for_shadows_p)
1616 color = s->face->box_color;
1617 else if (s->first_glyph->type == IMAGE_GLYPH
1618 && s->img->pixmap
1619 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
1620 color = IMAGE_BACKGROUND (s->img, s->f, 0);
1621 else
1622 color = s->gc->background;
1624 if (di->white_relief.gc == 0
1625 || color != di->relief_background)
1627 di->relief_background = color;
1628 w32_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
1629 WHITE_PIX_DEFAULT (s->f));
1630 w32_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
1631 BLACK_PIX_DEFAULT (s->f));
1636 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
1637 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
1638 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
1639 relief. LEFT_P non-zero means draw a relief on the left side of
1640 the rectangle. RIGHT_P non-zero means draw a relief on the right
1641 side of the rectangle. CLIP_RECT is the clipping rectangle to use
1642 when drawing. */
1644 static void
1645 w32_draw_relief_rect (f, left_x, top_y, right_x, bottom_y, width,
1646 raised_p, top_p, bot_p, left_p, right_p, clip_rect)
1647 struct frame *f;
1648 int left_x, top_y, right_x, bottom_y, width;
1649 int top_p, bot_p, left_p, right_p, raised_p;
1650 RECT *clip_rect;
1652 int i;
1653 XGCValues gc;
1654 HDC hdc = get_frame_dc (f);
1656 if (raised_p)
1657 gc.foreground = f->output_data.w32->white_relief.gc->foreground;
1658 else
1659 gc.foreground = f->output_data.w32->black_relief.gc->foreground;
1661 w32_set_clip_rectangle (hdc, clip_rect);
1663 /* Top. */
1664 if (top_p)
1665 for (i = 0; i < width; ++i)
1666 w32_fill_area (f, hdc, gc.foreground,
1667 left_x + i * left_p, top_y + i,
1668 right_x - left_x - i * (left_p + right_p ) + 1, 1);
1670 /* Left. */
1671 if (left_p)
1672 for (i = 0; i < width; ++i)
1673 w32_fill_area (f, hdc, gc.foreground,
1674 left_x + i, top_y + i, 1,
1675 bottom_y - top_y - 2 * i + 1);
1677 if (raised_p)
1678 gc.foreground = f->output_data.w32->black_relief.gc->foreground;
1679 else
1680 gc.foreground = f->output_data.w32->white_relief.gc->foreground;
1682 /* Bottom. */
1683 if (bot_p)
1684 for (i = 0; i < width; ++i)
1685 w32_fill_area (f, hdc, gc.foreground,
1686 left_x + i * left_p, bottom_y - i,
1687 right_x - left_x - i * (left_p + right_p) + 1, 1);
1689 /* Right. */
1690 if (right_p)
1691 for (i = 0; i < width; ++i)
1692 w32_fill_area (f, hdc, gc.foreground,
1693 right_x - i, top_y + i + 1, 1,
1694 bottom_y - top_y - 2 * i - 1);
1696 w32_set_clip_rectangle (hdc, NULL);
1698 release_frame_dc (f, hdc);
1702 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
1703 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
1704 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
1705 left side of the rectangle. RIGHT_P non-zero means draw a line
1706 on the right side of the rectangle. CLIP_RECT is the clipping
1707 rectangle to use when drawing. */
1709 static void
1710 w32_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
1711 left_p, right_p, clip_rect)
1712 struct glyph_string *s;
1713 int left_x, top_y, right_x, bottom_y, width, left_p, right_p;
1714 RECT *clip_rect;
1716 w32_set_clip_rectangle (s->hdc, clip_rect);
1718 /* Top. */
1719 w32_fill_area (s->f, s->hdc, s->face->box_color,
1720 left_x, top_y, right_x - left_x + 1, width);
1722 /* Left. */
1723 if (left_p)
1725 w32_fill_area (s->f, s->hdc, s->face->box_color,
1726 left_x, top_y, width, bottom_y - top_y + 1);
1729 /* Bottom. */
1730 w32_fill_area (s->f, s->hdc, s->face->box_color,
1731 left_x, bottom_y - width + 1, right_x - left_x + 1, width);
1733 /* Right. */
1734 if (right_p)
1736 w32_fill_area (s->f, s->hdc, s->face->box_color,
1737 right_x - width + 1, top_y, width, bottom_y - top_y + 1);
1740 w32_set_clip_rectangle (s->hdc, NULL);
1744 /* Draw a box around glyph string S. */
1746 static void
1747 x_draw_glyph_string_box (s)
1748 struct glyph_string *s;
1750 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
1751 int left_p, right_p;
1752 struct glyph *last_glyph;
1753 RECT clip_rect;
1755 last_x = ((s->row->full_width_p && !s->w->pseudo_window_p)
1756 ? WINDOW_RIGHT_EDGE_X (s->w)
1757 : window_box_right (s->w, s->area));
1759 /* The glyph that may have a right box line. */
1760 last_glyph = (s->cmp || s->img
1761 ? s->first_glyph
1762 : s->first_glyph + s->nchars - 1);
1764 width = eabs (s->face->box_line_width);
1765 raised_p = s->face->box == FACE_RAISED_BOX;
1766 left_x = s->x;
1767 right_x = ((s->row->full_width_p && s->extends_to_end_of_line_p
1768 ? last_x - 1
1769 : min (last_x, s->x + s->background_width) - 1));
1770 top_y = s->y;
1771 bottom_y = top_y + s->height - 1;
1773 left_p = (s->first_glyph->left_box_line_p
1774 || (s->hl == DRAW_MOUSE_FACE
1775 && (s->prev == NULL
1776 || s->prev->hl != s->hl)));
1777 right_p = (last_glyph->right_box_line_p
1778 || (s->hl == DRAW_MOUSE_FACE
1779 && (s->next == NULL
1780 || s->next->hl != s->hl)));
1782 get_glyph_string_clip_rect (s, &clip_rect);
1784 if (s->face->box == FACE_SIMPLE_BOX)
1785 w32_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
1786 left_p, right_p, &clip_rect);
1787 else
1789 x_setup_relief_colors (s);
1790 w32_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
1791 width, raised_p, 1, 1, left_p, right_p, &clip_rect);
1796 /* Draw foreground of image glyph string S. */
1798 static void
1799 x_draw_image_foreground (s)
1800 struct glyph_string *s;
1802 int x = s->x;
1803 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
1805 /* If first glyph of S has a left box line, start drawing it to the
1806 right of that line. */
1807 if (s->face->box != FACE_NO_BOX
1808 && s->first_glyph->left_box_line_p
1809 && s->slice.x == 0)
1810 x += eabs (s->face->box_line_width);
1812 /* If there is a margin around the image, adjust x- and y-position
1813 by that margin. */
1814 if (s->slice.x == 0)
1815 x += s->img->hmargin;
1816 if (s->slice.y == 0)
1817 y += s->img->vmargin;
1819 SaveDC (s->hdc);
1821 if (s->img->pixmap)
1823 HDC compat_hdc = CreateCompatibleDC (s->hdc);
1824 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
1825 HBRUSH orig_brush = SelectObject (s->hdc, fg_brush);
1826 HGDIOBJ orig_obj = SelectObject (compat_hdc, s->img->pixmap);
1827 SetBkColor (compat_hdc, RGB (255, 255, 255));
1828 SetTextColor (s->hdc, RGB (0, 0, 0));
1829 x_set_glyph_string_clipping (s);
1831 if (s->img->mask)
1833 HDC mask_dc = CreateCompatibleDC (s->hdc);
1834 HGDIOBJ mask_orig_obj = SelectObject (mask_dc, s->img->mask);
1836 SetTextColor (s->hdc, RGB (255, 255, 255));
1837 SetBkColor (s->hdc, RGB (0, 0, 0));
1839 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
1840 compat_hdc, s->slice.x, s->slice.y, SRCINVERT);
1841 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
1842 mask_dc, s->slice.x, s->slice.y, SRCAND);
1843 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
1844 compat_hdc, s->slice.x, s->slice.y, SRCINVERT);
1846 SelectObject (mask_dc, mask_orig_obj);
1847 DeleteDC (mask_dc);
1849 else
1851 SetTextColor (s->hdc, s->gc->foreground);
1852 SetBkColor (s->hdc, s->gc->background);
1854 BitBlt (s->hdc, x, y, s->slice.width, s->slice.height,
1855 compat_hdc, s->slice.x, s->slice.y, SRCCOPY);
1857 /* When the image has a mask, we can expect that at
1858 least part of a mouse highlight or a block cursor will
1859 be visible. If the image doesn't have a mask, make
1860 a block cursor visible by drawing a rectangle around
1861 the image. I believe it's looking better if we do
1862 nothing here for mouse-face. */
1863 if (s->hl == DRAW_CURSOR)
1865 int r = s->img->relief;
1866 if (r < 0) r = -r;
1867 w32_draw_rectangle (s->hdc, s->gc, x - r, y - r ,
1868 s->slice.width + r*2 - 1,
1869 s->slice.height + r*2 - 1);
1873 w32_set_clip_rectangle (s->hdc, NULL);
1874 SelectObject (s->hdc, orig_brush);
1875 DeleteObject (fg_brush);
1876 SelectObject (compat_hdc, orig_obj);
1877 DeleteDC (compat_hdc);
1879 else
1880 w32_draw_rectangle (s->hdc, s->gc, x, y,
1881 s->slice.width - 1, s->slice.height - 1);
1883 RestoreDC (s->hdc ,-1);
1887 /* Draw a relief around the image glyph string S. */
1889 static void
1890 x_draw_image_relief (s)
1891 struct glyph_string *s;
1893 int x0, y0, x1, y1, thick, raised_p;
1894 RECT r;
1895 int x = s->x;
1896 int y = s->ybase - image_ascent (s->img, s->face, &s->slice);
1898 /* If first glyph of S has a left box line, start drawing it to the
1899 right of that line. */
1900 if (s->face->box != FACE_NO_BOX
1901 && s->first_glyph->left_box_line_p
1902 && s->slice.x == 0)
1903 x += eabs (s->face->box_line_width);
1905 /* If there is a margin around the image, adjust x- and y-position
1906 by that margin. */
1907 if (s->slice.x == 0)
1908 x += s->img->hmargin;
1909 if (s->slice.y == 0)
1910 y += s->img->vmargin;
1912 if (s->hl == DRAW_IMAGE_SUNKEN
1913 || s->hl == DRAW_IMAGE_RAISED)
1915 thick = tool_bar_button_relief >= 0 ? tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
1916 raised_p = s->hl == DRAW_IMAGE_RAISED;
1918 else
1920 thick = eabs (s->img->relief);
1921 raised_p = s->img->relief > 0;
1924 x0 = x - thick;
1925 y0 = y - thick;
1926 x1 = x + s->slice.width + thick - 1;
1927 y1 = y + s->slice.height + thick - 1;
1929 x_setup_relief_colors (s);
1930 get_glyph_string_clip_rect (s, &r);
1931 w32_draw_relief_rect (s->f, x0, y0, x1, y1, thick, raised_p,
1932 s->slice.y == 0,
1933 s->slice.y + s->slice.height == s->img->height,
1934 s->slice.x == 0,
1935 s->slice.x + s->slice.width == s->img->width,
1936 &r);
1940 /* Draw the foreground of image glyph string S to PIXMAP. */
1942 static void
1943 w32_draw_image_foreground_1 (s, pixmap)
1944 struct glyph_string *s;
1945 HBITMAP pixmap;
1947 HDC hdc = CreateCompatibleDC (s->hdc);
1948 HGDIOBJ orig_hdc_obj = SelectObject (hdc, pixmap);
1949 int x = 0;
1950 int y = s->ybase - s->y - image_ascent (s->img, s->face, &s->slice);
1952 /* If first glyph of S has a left box line, start drawing it to the
1953 right of that line. */
1954 if (s->face->box != FACE_NO_BOX
1955 && s->first_glyph->left_box_line_p
1956 && s->slice.x == 0)
1957 x += eabs (s->face->box_line_width);
1959 /* If there is a margin around the image, adjust x- and y-position
1960 by that margin. */
1961 if (s->slice.x == 0)
1962 x += s->img->hmargin;
1963 if (s->slice.y == 0)
1964 y += s->img->vmargin;
1966 if (s->img->pixmap)
1968 HDC compat_hdc = CreateCompatibleDC (hdc);
1969 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
1970 HBRUSH orig_brush = SelectObject (hdc, fg_brush);
1971 HGDIOBJ orig_obj = SelectObject (compat_hdc, s->img->pixmap);
1973 if (s->img->mask)
1975 HDC mask_dc = CreateCompatibleDC (hdc);
1976 HGDIOBJ mask_orig_obj = SelectObject (mask_dc, s->img->mask);
1978 SetTextColor (hdc, RGB (0, 0, 0));
1979 SetBkColor (hdc, RGB (255, 255, 255));
1980 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
1981 compat_hdc, s->slice.x, s->slice.y, SRCINVERT);
1982 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
1983 mask_dc, s->slice.x, s->slice.y, SRCAND);
1984 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
1985 compat_hdc, s->slice.x, s->slice.y, SRCINVERT);
1987 SelectObject (mask_dc, mask_orig_obj);
1988 DeleteDC (mask_dc);
1990 else
1992 SetTextColor (hdc, s->gc->foreground);
1993 SetBkColor (hdc, s->gc->background);
1995 BitBlt (hdc, x, y, s->slice.width, s->slice.height,
1996 compat_hdc, s->slice.x, s->slice.y, SRCCOPY);
1998 /* When the image has a mask, we can expect that at
1999 least part of a mouse highlight or a block cursor will
2000 be visible. If the image doesn't have a mask, make
2001 a block cursor visible by drawing a rectangle around
2002 the image. I believe it's looking better if we do
2003 nothing here for mouse-face. */
2004 if (s->hl == DRAW_CURSOR)
2006 int r = s->img->relief;
2007 if (r < 0) r = -r;
2008 w32_draw_rectangle (hdc, s->gc, x - r, y - r,
2009 s->slice.width + r*2 - 1,
2010 s->slice.height + r*2 - 1);
2014 SelectObject (hdc, orig_brush);
2015 DeleteObject (fg_brush);
2016 SelectObject (compat_hdc, orig_obj);
2017 DeleteDC (compat_hdc);
2019 else
2020 w32_draw_rectangle (hdc, s->gc, x, y,
2021 s->slice.width - 1, s->slice.height - 1);
2023 SelectObject (hdc, orig_hdc_obj);
2024 DeleteDC (hdc);
2028 /* Draw part of the background of glyph string S. X, Y, W, and H
2029 give the rectangle to draw. */
2031 static void
2032 x_draw_glyph_string_bg_rect (s, x, y, w, h)
2033 struct glyph_string *s;
2034 int x, y, w, h;
2036 #if 0 /* TODO: stipple */
2037 if (s->stippled_p)
2039 /* Fill background with a stipple pattern. */
2040 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2041 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
2042 XSetFillStyle (s->display, s->gc, FillSolid);
2044 else
2045 #endif
2046 x_clear_glyph_string_rect (s, x, y, w, h);
2050 /* Draw image glyph string S.
2052 s->y
2053 s->x +-------------------------
2054 | s->face->box
2056 | +-------------------------
2057 | | s->img->vmargin
2059 | | +-------------------
2060 | | | the image
2064 static void
2065 x_draw_image_glyph_string (s)
2066 struct glyph_string *s;
2068 int x, y;
2069 int box_line_hwidth = eabs (s->face->box_line_width);
2070 int box_line_vwidth = max (s->face->box_line_width, 0);
2071 int height;
2072 HBITMAP pixmap = 0;
2074 height = s->height - 2 * box_line_vwidth;
2076 /* Fill background with face under the image. Do it only if row is
2077 taller than image or if image has a clip mask to reduce
2078 flickering. */
2079 s->stippled_p = s->face->stipple != 0;
2080 if (height > s->slice.height
2081 || s->img->hmargin
2082 || s->img->vmargin
2083 || s->img->mask
2084 || s->img->pixmap == 0
2085 || s->width != s->background_width)
2087 x = s->x;
2088 if (s->first_glyph->left_box_line_p
2089 && s->slice.x == 0)
2090 x += box_line_hwidth;
2092 y = s->y;
2093 if (s->slice.y == 0)
2094 y += box_line_vwidth;
2096 #if 0 /* TODO: figure out if we need to do this on Windows. */
2097 if (s->img->mask)
2099 /* Create a pixmap as large as the glyph string. Fill it
2100 with the background color. Copy the image to it, using
2101 its mask. Copy the temporary pixmap to the display. */
2102 Screen *screen = FRAME_X_SCREEN (s->f);
2103 int depth = DefaultDepthOfScreen (screen);
2105 /* Create a pixmap as large as the glyph string. */
2106 pixmap = XCreatePixmap (s->display, s->window,
2107 s->background_width,
2108 s->height, depth);
2110 /* Don't clip in the following because we're working on the
2111 pixmap. */
2112 XSetClipMask (s->display, s->gc, None);
2114 /* Fill the pixmap with the background color/stipple. */
2115 if (s->stippled_p)
2117 /* Fill background with a stipple pattern. */
2118 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
2119 XFillRectangle (s->display, pixmap, s->gc,
2120 0, 0, s->background_width, s->height);
2121 XSetFillStyle (s->display, s->gc, FillSolid);
2123 else
2125 XGCValues xgcv;
2126 XGetGCValues (s->display, s->gc, GCForeground | GCBackground,
2127 &xgcv);
2128 XSetForeground (s->display, s->gc, xgcv.background);
2129 XFillRectangle (s->display, pixmap, s->gc,
2130 0, 0, s->background_width, s->height);
2131 XSetForeground (s->display, s->gc, xgcv.foreground);
2134 else
2135 #endif
2136 x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
2138 s->background_filled_p = 1;
2141 /* Draw the foreground. */
2142 if (pixmap != 0)
2144 w32_draw_image_foreground_1 (s, pixmap);
2145 x_set_glyph_string_clipping (s);
2147 HDC compat_hdc = CreateCompatibleDC (s->hdc);
2148 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
2149 HBRUSH orig_brush = SelectObject (s->hdc, fg_brush);
2150 HGDIOBJ orig_obj = SelectObject (compat_hdc, pixmap);
2152 SetTextColor (s->hdc, s->gc->foreground);
2153 SetBkColor (s->hdc, s->gc->background);
2154 BitBlt (s->hdc, s->x, s->y, s->background_width, s->height,
2155 compat_hdc, 0, 0, SRCCOPY);
2157 SelectObject (s->hdc, orig_brush);
2158 DeleteObject (fg_brush);
2159 SelectObject (compat_hdc, orig_obj);
2160 DeleteDC (compat_hdc);
2162 DeleteObject (pixmap);
2163 pixmap = 0;
2165 else
2166 x_draw_image_foreground (s);
2168 /* If we must draw a relief around the image, do it. */
2169 if (s->img->relief
2170 || s->hl == DRAW_IMAGE_RAISED
2171 || s->hl == DRAW_IMAGE_SUNKEN)
2172 x_draw_image_relief (s);
2176 /* Draw stretch glyph string S. */
2178 static void
2179 x_draw_stretch_glyph_string (s)
2180 struct glyph_string *s;
2182 xassert (s->first_glyph->type == STRETCH_GLYPH);
2184 if (s->hl == DRAW_CURSOR
2185 && !x_stretch_cursor_p)
2187 /* If `x-stretch-block-cursor' is nil, don't draw a block cursor
2188 as wide as the stretch glyph. */
2189 int width, background_width = s->background_width;
2190 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
2192 if (x < left_x)
2194 background_width -= left_x - x;
2195 x = left_x;
2197 width = min (FRAME_COLUMN_WIDTH (s->f), background_width);
2199 /* Draw cursor. */
2200 x_draw_glyph_string_bg_rect (s, x, s->y, width, s->height);
2202 /* Clear rest using the GC of the original non-cursor face. */
2203 if (width < background_width)
2205 XGCValues *gc = s->face->gc;
2206 int y = s->y;
2207 int w = background_width - width, h = s->height;
2208 RECT r;
2209 HDC hdc = s->hdc;
2211 x += width;
2212 if (s->row->mouse_face_p
2213 && cursor_in_mouse_face_p (s->w))
2215 x_set_mouse_face_gc (s);
2216 gc = s->gc;
2218 else
2219 gc = s->face->gc;
2221 get_glyph_string_clip_rect (s, &r);
2222 w32_set_clip_rectangle (hdc, &r);
2224 #if 0 /* TODO: stipple */
2225 if (s->face->stipple)
2227 /* Fill background with a stipple pattern. */
2228 XSetFillStyle (s->display, gc, FillOpaqueStippled);
2229 XFillRectangle (s->display, s->window, gc, x, y, w, h);
2230 XSetFillStyle (s->display, gc, FillSolid);
2232 else
2233 #endif
2235 w32_fill_area (s->f, s->hdc, gc->background, x, y, w, h);
2239 else if (!s->background_filled_p)
2241 int background_width = s->background_width;
2242 int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
2244 /* Don't draw into left margin, fringe or scrollbar area
2245 except for header line and mode line. */
2246 if (x < left_x && !s->row->mode_line_p)
2248 background_width -= left_x - x;
2249 x = left_x;
2251 if (background_width > 0)
2252 x_draw_glyph_string_bg_rect (s, x, s->y, background_width, s->height);
2255 s->background_filled_p = 1;
2259 /* Draw glyph string S. */
2261 static void
2262 x_draw_glyph_string (s)
2263 struct glyph_string *s;
2265 int relief_drawn_p = 0;
2267 /* If S draws into the background of its successor, draw the
2268 background of the successor first so that S can draw into it.
2269 This makes S->next use XDrawString instead of XDrawImageString. */
2270 if (s->next && s->right_overhang && !s->for_overlaps)
2272 int width;
2273 struct glyph_string *next;
2274 for (width = 0, next = s->next;
2275 next && width < s->right_overhang;
2276 width += next->width, next = next->next)
2277 if (next->first_glyph->type != IMAGE_GLYPH)
2279 x_set_glyph_string_gc (next);
2280 x_set_glyph_string_clipping (next);
2281 if (next->first_glyph->type == STRETCH_GLYPH)
2282 x_draw_stretch_glyph_string (next);
2283 else
2284 x_draw_glyph_string_background (next, 1);
2285 next->num_clips = 0;
2289 /* Set up S->gc, set clipping and draw S. */
2290 x_set_glyph_string_gc (s);
2292 /* Draw relief (if any) in advance for char/composition so that the
2293 glyph string can be drawn over it. */
2294 if (!s->for_overlaps
2295 && s->face->box != FACE_NO_BOX
2296 && (s->first_glyph->type == CHAR_GLYPH
2297 || s->first_glyph->type == COMPOSITE_GLYPH))
2300 x_set_glyph_string_clipping (s);
2301 x_draw_glyph_string_background (s, 1);
2302 x_draw_glyph_string_box (s);
2303 x_set_glyph_string_clipping (s);
2304 relief_drawn_p = 1;
2306 else if (!s->clip_head /* draw_glyphs didn't specify a clip mask. */
2307 && !s->clip_tail
2308 && ((s->prev && s->prev->hl != s->hl && s->left_overhang)
2309 || (s->next && s->next->hl != s->hl && s->right_overhang)))
2310 /* We must clip just this glyph. left_overhang part has already
2311 drawn when s->prev was drawn, and right_overhang part will be
2312 drawn later when s->next is drawn. */
2313 x_set_glyph_string_clipping_exactly (s, s);
2314 else
2315 x_set_glyph_string_clipping (s);
2317 switch (s->first_glyph->type)
2319 case IMAGE_GLYPH:
2320 x_draw_image_glyph_string (s);
2321 break;
2323 case STRETCH_GLYPH:
2324 x_draw_stretch_glyph_string (s);
2325 break;
2327 case CHAR_GLYPH:
2328 if (s->for_overlaps)
2329 s->background_filled_p = 1;
2330 else
2331 x_draw_glyph_string_background (s, 0);
2332 x_draw_glyph_string_foreground (s);
2333 break;
2335 case COMPOSITE_GLYPH:
2336 if (s->for_overlaps || (s->cmp_from > 0
2337 && ! s->first_glyph->u.cmp.automatic))
2338 s->background_filled_p = 1;
2339 else
2340 x_draw_glyph_string_background (s, 1);
2341 x_draw_composite_glyph_string_foreground (s);
2342 break;
2344 default:
2345 abort ();
2348 if (!s->for_overlaps)
2350 /* Draw underline. */
2351 if (s->face->underline_p)
2353 unsigned long thickness, position;
2354 int y;
2356 if (s->prev && s->prev->face->underline_p)
2358 /* We use the same underline style as the previous one. */
2359 thickness = s->prev->underline_thickness;
2360 position = s->prev->underline_position;
2362 else
2364 /* Get the underline thickness. Default is 1 pixel. */
2365 if (s->font && s->font->underline_thickness > 0)
2366 thickness = s->font->underline_thickness;
2367 else
2368 thickness = 1;
2369 if (x_underline_at_descent_line)
2370 position = (s->height - thickness) - (s->ybase - s->y);
2371 else
2373 /* Get the underline position. This is the recommended
2374 vertical offset in pixels from the baseline to the top of
2375 the underline. This is a signed value according to the
2376 specs, and its default is
2378 ROUND ((maximum_descent) / 2), with
2379 ROUND (x) = floor (x + 0.5) */
2381 if (x_use_underline_position_properties
2382 && s->font && s->font->underline_position >= 0)
2383 position = s->font->underline_position;
2384 else if (s->font)
2385 position = (s->font->descent + 1) / 2;
2387 position = max (position, underline_minimum_offset);
2389 /* Check the sanity of thickness and position. We should
2390 avoid drawing underline out of the current line area. */
2391 if (s->y + s->height <= s->ybase + position)
2392 position = (s->height - 1) - (s->ybase - s->y);
2393 if (s->y + s->height < s->ybase + position + thickness)
2394 thickness = (s->y + s->height) - (s->ybase + position);
2395 s->underline_thickness = thickness;
2396 s->underline_position =position;
2397 y = s->ybase + position;
2398 if (s->face->underline_defaulted_p)
2400 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x,
2401 y, s->width, 1);
2403 else
2405 w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x,
2406 y, s->width, 1);
2409 /* Draw overline. */
2410 if (s->face->overline_p)
2412 unsigned long dy = 0, h = 1;
2414 if (s->face->overline_color_defaulted_p)
2416 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x,
2417 s->y + dy, s->width, h);
2419 else
2421 w32_fill_area (s->f, s->hdc, s->face->overline_color, s->x,
2422 s->y + dy, s->width, h);
2426 /* Draw strike-through. */
2427 if (s->face->strike_through_p
2428 && !FONT_TEXTMETRIC(s->font).tmStruckOut)
2430 unsigned long h = 1;
2431 unsigned long dy = (s->height - h) / 2;
2433 if (s->face->strike_through_color_defaulted_p)
2435 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x, s->y + dy,
2436 s->width, h);
2438 else
2440 w32_fill_area (s->f, s->hdc, s->face->strike_through_color, s->x,
2441 s->y + dy, s->width, h);
2445 /* Draw relief if not yet drawn. */
2446 if (!relief_drawn_p && s->face->box != FACE_NO_BOX)
2447 x_draw_glyph_string_box (s);
2449 if (s->prev)
2451 struct glyph_string *prev;
2453 for (prev = s->prev; prev; prev = prev->prev)
2454 if (prev->hl != s->hl
2455 && prev->x + prev->width + prev->right_overhang > s->x)
2457 /* As prev was drawn while clipped to its own area, we
2458 must draw the right_overhang part using s->hl now. */
2459 enum draw_glyphs_face save = prev->hl;
2461 prev->hl = s->hl;
2462 x_set_glyph_string_gc (prev);
2463 x_set_glyph_string_clipping_exactly (s, prev);
2464 if (prev->first_glyph->type == CHAR_GLYPH)
2465 x_draw_glyph_string_foreground (prev);
2466 else
2467 x_draw_composite_glyph_string_foreground (prev);
2468 w32_set_clip_rectangle (prev->hdc, NULL);
2469 prev->hl = save;
2470 prev->num_clips = 0;
2474 if (s->next)
2476 struct glyph_string *next;
2478 for (next = s->next; next; next = next->next)
2479 if (next->hl != s->hl
2480 && next->x - next->left_overhang < s->x + s->width)
2482 /* As next will be drawn while clipped to its own area,
2483 we must draw the left_overhang part using s->hl now. */
2484 enum draw_glyphs_face save = next->hl;
2486 next->hl = s->hl;
2487 x_set_glyph_string_gc (next);
2488 x_set_glyph_string_clipping_exactly (s, next);
2489 if (next->first_glyph->type == CHAR_GLYPH)
2490 x_draw_glyph_string_foreground (next);
2491 else
2492 x_draw_composite_glyph_string_foreground (next);
2493 w32_set_clip_rectangle (next->hdc, NULL);
2494 next->hl = save;
2495 next->num_clips = 0;
2500 /* Reset clipping. */
2501 w32_set_clip_rectangle (s->hdc, NULL);
2502 s->num_clips = 0;
2506 /* Shift display to make room for inserted glyphs. */
2508 void
2509 w32_shift_glyphs_for_insert (f, x, y, width, height, shift_by)
2510 struct frame *f;
2511 int x, y, width, height, shift_by;
2513 HDC hdc;
2515 hdc = get_frame_dc (f);
2516 BitBlt (hdc, x + shift_by, y, width, height,
2517 hdc, x, y, SRCCOPY);
2519 release_frame_dc (f, hdc);
2523 /* Delete N glyphs at the nominal cursor position. Not implemented
2524 for X frames. */
2526 static void
2527 x_delete_glyphs (f, n)
2528 struct frame *f;
2529 register int n;
2531 if (! FRAME_W32_P (f))
2532 return;
2534 abort ();
2538 /* Clear entire frame. If updating_frame is non-null, clear that
2539 frame. Otherwise clear the selected frame. */
2541 static void
2542 x_clear_frame (struct frame *f)
2544 if (! FRAME_W32_P (f))
2545 return;
2547 /* Clearing the frame will erase any cursor, so mark them all as no
2548 longer visible. */
2549 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
2550 output_cursor.hpos = output_cursor.vpos = 0;
2551 output_cursor.x = -1;
2553 /* We don't set the output cursor here because there will always
2554 follow an explicit cursor_to. */
2555 BLOCK_INPUT;
2557 w32_clear_window (f);
2559 /* We have to clear the scroll bars, too. If we have changed
2560 colors or something like that, then they should be notified. */
2561 x_scroll_bar_clear (f);
2563 UNBLOCK_INPUT;
2567 /* Make audible bell. */
2569 static void
2570 w32_ring_bell (struct frame *f)
2572 BLOCK_INPUT;
2574 if (FRAME_W32_P (f) && visible_bell)
2576 int i;
2577 HWND hwnd = FRAME_W32_WINDOW (f);
2579 for (i = 0; i < 5; i++)
2581 FlashWindow (hwnd, TRUE);
2582 Sleep (10);
2584 FlashWindow (hwnd, FALSE);
2586 else
2587 w32_sys_ring_bell (f);
2589 UNBLOCK_INPUT;
2593 /* Specify how many text lines, from the top of the window,
2594 should be affected by insert-lines and delete-lines operations.
2595 This, and those operations, are used only within an update
2596 that is bounded by calls to x_update_begin and x_update_end. */
2598 static void
2599 w32_set_terminal_window (n)
2600 register int n;
2602 /* This function intentionally left blank. */
2606 /***********************************************************************
2607 Line Dance
2608 ***********************************************************************/
2610 /* Perform an insert-lines or delete-lines operation, inserting N
2611 lines or deleting -N lines at vertical position VPOS. */
2613 static void
2614 x_ins_del_lines (f, vpos, n)
2615 struct frame *f;
2616 int vpos, n;
2618 if (! FRAME_W32_P (f))
2619 return;
2621 abort ();
2625 /* Scroll part of the display as described by RUN. */
2627 static void
2628 x_scroll_run (w, run)
2629 struct window *w;
2630 struct run *run;
2632 struct frame *f = XFRAME (w->frame);
2633 int x, y, width, height, from_y, to_y, bottom_y;
2634 HWND hwnd = FRAME_W32_WINDOW (f);
2635 HRGN expect_dirty;
2637 /* Get frame-relative bounding box of the text display area of W,
2638 without mode lines. Include in this box the left and right
2639 fringes of W. */
2640 window_box (w, -1, &x, &y, &width, &height);
2642 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
2643 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
2644 bottom_y = y + height;
2646 if (to_y < from_y)
2648 /* Scrolling up. Make sure we don't copy part of the mode
2649 line at the bottom. */
2650 if (from_y + run->height > bottom_y)
2651 height = bottom_y - from_y;
2652 else
2653 height = run->height;
2654 expect_dirty = CreateRectRgn (x, y + height, x + width, bottom_y);
2656 else
2658 /* Scolling down. Make sure we don't copy over the mode line.
2659 at the bottom. */
2660 if (to_y + run->height > bottom_y)
2661 height = bottom_y - to_y;
2662 else
2663 height = run->height;
2664 expect_dirty = CreateRectRgn (x, y, x + width, to_y);
2667 BLOCK_INPUT;
2669 /* Cursor off. Will be switched on again in x_update_window_end. */
2670 updated_window = w;
2671 x_clear_cursor (w);
2674 RECT from;
2675 RECT to;
2676 HRGN dirty = CreateRectRgn (0, 0, 0, 0);
2677 HRGN combined = CreateRectRgn (0, 0, 0, 0);
2679 from.left = to.left = x;
2680 from.right = to.right = x + width;
2681 from.top = from_y;
2682 from.bottom = from_y + height;
2683 to.top = y;
2684 to.bottom = bottom_y;
2686 ScrollWindowEx (hwnd, 0, to_y - from_y, &from, &to, dirty,
2687 NULL, SW_INVALIDATE);
2689 /* Combine this with what we expect to be dirty. This covers the
2690 case where not all of the region we expect is actually dirty. */
2691 CombineRgn (combined, dirty, expect_dirty, RGN_OR);
2693 /* If the dirty region is not what we expected, redraw the entire frame. */
2694 if (!EqualRgn (combined, expect_dirty))
2695 SET_FRAME_GARBAGED (f);
2697 DeleteObject (dirty);
2698 DeleteObject (combined);
2701 UNBLOCK_INPUT;
2702 DeleteObject (expect_dirty);
2707 /***********************************************************************
2708 Exposure Events
2709 ***********************************************************************/
2711 static void
2712 frame_highlight (f)
2713 struct frame *f;
2715 x_update_cursor (f, 1);
2716 x_set_frame_alpha (f);
2719 static void
2720 frame_unhighlight (f)
2721 struct frame *f;
2723 x_update_cursor (f, 1);
2724 x_set_frame_alpha (f);
2727 /* The focus has changed. Update the frames as necessary to reflect
2728 the new situation. Note that we can't change the selected frame
2729 here, because the Lisp code we are interrupting might become confused.
2730 Each event gets marked with the frame in which it occurred, so the
2731 Lisp code can tell when the switch took place by examining the events. */
2733 static void
2734 x_new_focus_frame (dpyinfo, frame)
2735 struct w32_display_info *dpyinfo;
2736 struct frame *frame;
2738 struct frame *old_focus = dpyinfo->w32_focus_frame;
2740 if (frame != dpyinfo->w32_focus_frame)
2742 /* Set this before calling other routines, so that they see
2743 the correct value of w32_focus_frame. */
2744 dpyinfo->w32_focus_frame = frame;
2746 if (old_focus && old_focus->auto_lower)
2747 x_lower_frame (old_focus);
2749 if (dpyinfo->w32_focus_frame && dpyinfo->w32_focus_frame->auto_raise)
2750 pending_autoraise_frame = dpyinfo->w32_focus_frame;
2751 else
2752 pending_autoraise_frame = 0;
2755 x_frame_rehighlight (dpyinfo);
2759 /* Handle FocusIn and FocusOut state changes for FRAME.
2760 If FRAME has focus and there exists more than one frame, puts
2761 a FOCUS_IN_EVENT into *BUFP. */
2763 static void
2764 x_focus_changed (type, state, dpyinfo, frame, bufp)
2765 int type;
2766 int state;
2767 struct w32_display_info *dpyinfo;
2768 struct frame *frame;
2769 struct input_event *bufp;
2771 if (type == WM_SETFOCUS)
2773 if (dpyinfo->w32_focus_event_frame != frame)
2775 x_new_focus_frame (dpyinfo, frame);
2776 dpyinfo->w32_focus_event_frame = frame;
2778 /* Don't stop displaying the initial startup message
2779 for a switch-frame event we don't need. */
2780 if (NILP (Vterminal_frame)
2781 && CONSP (Vframe_list)
2782 && !NILP (XCDR (Vframe_list)))
2784 bufp->kind = FOCUS_IN_EVENT;
2785 XSETFRAME (bufp->frame_or_window, frame);
2789 frame->output_data.x->focus_state |= state;
2791 /* TODO: IME focus? */
2793 else if (type == WM_KILLFOCUS)
2795 frame->output_data.x->focus_state &= ~state;
2797 if (dpyinfo->w32_focus_event_frame == frame)
2799 dpyinfo->w32_focus_event_frame = 0;
2800 x_new_focus_frame (dpyinfo, 0);
2803 /* TODO: IME focus? */
2808 /* The focus may have changed. Figure out if it is a real focus change,
2809 by checking both FocusIn/Out and Enter/LeaveNotify events.
2811 Returns FOCUS_IN_EVENT event in *BUFP. */
2813 static void
2814 w32_detect_focus_change (dpyinfo, event, bufp)
2815 struct w32_display_info *dpyinfo;
2816 W32Msg *event;
2817 struct input_event *bufp;
2819 struct frame *frame;
2821 frame = x_any_window_to_frame (dpyinfo, event->msg.hwnd);
2822 if (! frame)
2823 return;
2825 /* On w32, this is only called from focus events, so no switch needed. */
2826 x_focus_changed (event->msg.message,
2827 (event->msg.message == WM_KILLFOCUS ?
2828 FOCUS_IMPLICIT : FOCUS_EXPLICIT),
2829 dpyinfo, frame, bufp);
2833 /* Handle an event saying the mouse has moved out of an Emacs frame. */
2835 void
2836 x_mouse_leave (dpyinfo)
2837 struct w32_display_info *dpyinfo;
2839 x_new_focus_frame (dpyinfo, dpyinfo->w32_focus_event_frame);
2842 /* The focus has changed, or we have redirected a frame's focus to
2843 another frame (this happens when a frame uses a surrogate
2844 mini-buffer frame). Shift the highlight as appropriate.
2846 The FRAME argument doesn't necessarily have anything to do with which
2847 frame is being highlighted or un-highlighted; we only use it to find
2848 the appropriate X display info. */
2850 static void
2851 w32_frame_rehighlight (frame)
2852 struct frame *frame;
2854 if (! FRAME_W32_P (frame))
2855 return;
2856 x_frame_rehighlight (FRAME_W32_DISPLAY_INFO (frame));
2859 static void
2860 x_frame_rehighlight (dpyinfo)
2861 struct w32_display_info *dpyinfo;
2863 struct frame *old_highlight = dpyinfo->x_highlight_frame;
2865 if (dpyinfo->w32_focus_frame)
2867 dpyinfo->x_highlight_frame
2868 = ((FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame)))
2869 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame))
2870 : dpyinfo->w32_focus_frame);
2871 if (! FRAME_LIVE_P (dpyinfo->x_highlight_frame))
2873 FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame) = Qnil;
2874 dpyinfo->x_highlight_frame = dpyinfo->w32_focus_frame;
2877 else
2878 dpyinfo->x_highlight_frame = 0;
2880 if (dpyinfo->x_highlight_frame != old_highlight)
2882 if (old_highlight)
2883 frame_unhighlight (old_highlight);
2884 if (dpyinfo->x_highlight_frame)
2885 frame_highlight (dpyinfo->x_highlight_frame);
2889 /* Keyboard processing - modifier keys, etc. */
2891 /* Convert a keysym to its name. */
2893 char *
2894 x_get_keysym_name (keysym)
2895 int keysym;
2897 /* Make static so we can always return it */
2898 static char value[100];
2900 BLOCK_INPUT;
2901 GetKeyNameText (keysym, value, 100);
2902 UNBLOCK_INPUT;
2904 return value;
2907 static int codepage_for_locale(LCID locale)
2909 char cp[20];
2911 if (GetLocaleInfo (locale, LOCALE_IDEFAULTANSICODEPAGE, cp, 20) > 0)
2912 return atoi (cp);
2913 else
2914 return CP_ACP;
2918 /* Mouse clicks and mouse movement. Rah. */
2920 /* Parse a button MESSAGE. The button index is returned in PBUTTON, and
2921 the state in PUP. XBUTTON provides extra information for extended mouse
2922 button messages. Returns FALSE if unable to parse the message. */
2923 BOOL
2924 parse_button (message, xbutton, pbutton, pup)
2925 int message;
2926 int xbutton;
2927 int * pbutton;
2928 int * pup;
2930 int button = 0;
2931 int up = 0;
2933 switch (message)
2935 case WM_LBUTTONDOWN:
2936 button = 0;
2937 up = 0;
2938 break;
2939 case WM_LBUTTONUP:
2940 button = 0;
2941 up = 1;
2942 break;
2943 case WM_MBUTTONDOWN:
2944 if (NILP (Vw32_swap_mouse_buttons))
2945 button = 1;
2946 else
2947 button = 2;
2948 up = 0;
2949 break;
2950 case WM_MBUTTONUP:
2951 if (NILP (Vw32_swap_mouse_buttons))
2952 button = 1;
2953 else
2954 button = 2;
2955 up = 1;
2956 break;
2957 case WM_RBUTTONDOWN:
2958 if (NILP (Vw32_swap_mouse_buttons))
2959 button = 2;
2960 else
2961 button = 1;
2962 up = 0;
2963 break;
2964 case WM_RBUTTONUP:
2965 if (NILP (Vw32_swap_mouse_buttons))
2966 button = 2;
2967 else
2968 button = 1;
2969 up = 1;
2970 break;
2971 case WM_XBUTTONDOWN:
2972 button = xbutton + 2;
2973 up = 0;
2974 break;
2975 case WM_XBUTTONUP:
2976 button = xbutton + 2;
2977 up = 1;
2978 break;
2979 default:
2980 return (FALSE);
2983 if (pup) *pup = up;
2984 if (pbutton) *pbutton = button;
2986 return (TRUE);
2990 /* Prepare a mouse-event in *RESULT for placement in the input queue.
2992 If the event is a button press, then note that we have grabbed
2993 the mouse. */
2995 static Lisp_Object
2996 construct_mouse_click (result, msg, f)
2997 struct input_event *result;
2998 W32Msg *msg;
2999 struct frame *f;
3001 int button;
3002 int up;
3004 parse_button (msg->msg.message, HIWORD (msg->msg.wParam),
3005 &button, &up);
3007 /* Make the event type NO_EVENT; we'll change that when we decide
3008 otherwise. */
3009 result->kind = MOUSE_CLICK_EVENT;
3010 result->code = button;
3011 result->timestamp = msg->msg.time;
3012 result->modifiers = (msg->dwModifiers
3013 | (up
3014 ? up_modifier
3015 : down_modifier));
3017 XSETINT (result->x, LOWORD (msg->msg.lParam));
3018 XSETINT (result->y, HIWORD (msg->msg.lParam));
3019 XSETFRAME (result->frame_or_window, f);
3020 result->arg = Qnil;
3021 return Qnil;
3024 static Lisp_Object
3025 construct_mouse_wheel (result, msg, f)
3026 struct input_event *result;
3027 W32Msg *msg;
3028 struct frame *f;
3030 POINT p;
3031 int delta;
3033 result->kind = msg->msg.message == WM_MOUSEHWHEEL ? HORIZ_WHEEL_EVENT
3034 : WHEEL_EVENT;
3035 result->code = 0;
3036 result->timestamp = msg->msg.time;
3038 /* A WHEEL_DELTA positive value indicates that the wheel was rotated
3039 forward, away from the user (up); a negative value indicates that
3040 the wheel was rotated backward, toward the user (down). */
3041 delta = GET_WHEEL_DELTA_WPARAM (msg->msg.wParam);
3043 /* The up and down modifiers indicate if the wheel was rotated up or
3044 down based on WHEEL_DELTA value. */
3045 result->modifiers = (msg->dwModifiers
3046 | ((delta < 0 ) ? down_modifier : up_modifier));
3048 /* With multiple monitors, we can legitimately get negative
3049 coordinates, so cast to short to interpret them correctly. */
3050 p.x = (short) LOWORD (msg->msg.lParam);
3051 p.y = (short) HIWORD (msg->msg.lParam);
3052 ScreenToClient (msg->msg.hwnd, &p);
3053 XSETINT (result->x, p.x);
3054 XSETINT (result->y, p.y);
3055 XSETFRAME (result->frame_or_window, f);
3056 result->arg = Qnil;
3057 return Qnil;
3060 static Lisp_Object
3061 construct_drag_n_drop (result, msg, f)
3062 struct input_event *result;
3063 W32Msg *msg;
3064 struct frame *f;
3066 Lisp_Object files;
3067 Lisp_Object frame;
3068 HDROP hdrop;
3069 POINT p;
3070 WORD num_files;
3071 char *name;
3072 int i, len;
3074 result->kind = DRAG_N_DROP_EVENT;
3075 result->code = 0;
3076 result->timestamp = msg->msg.time;
3077 result->modifiers = msg->dwModifiers;
3079 hdrop = (HDROP) msg->msg.wParam;
3080 DragQueryPoint (hdrop, &p);
3082 #if 0
3083 p.x = LOWORD (msg->msg.lParam);
3084 p.y = HIWORD (msg->msg.lParam);
3085 ScreenToClient (msg->msg.hwnd, &p);
3086 #endif
3088 XSETINT (result->x, p.x);
3089 XSETINT (result->y, p.y);
3091 num_files = DragQueryFile (hdrop, 0xFFFFFFFF, NULL, 0);
3092 files = Qnil;
3094 for (i = 0; i < num_files; i++)
3096 len = DragQueryFile (hdrop, i, NULL, 0);
3097 if (len <= 0)
3098 continue;
3099 name = alloca (len + 1);
3100 DragQueryFile (hdrop, i, name, len + 1);
3101 files = Fcons (DECODE_FILE (build_string (name)), files);
3104 DragFinish (hdrop);
3106 XSETFRAME (frame, f);
3107 result->frame_or_window = frame;
3108 result->arg = files;
3109 return Qnil;
3113 /* Function to report a mouse movement to the mainstream Emacs code.
3114 The input handler calls this.
3116 We have received a mouse movement event, which is given in *event.
3117 If the mouse is over a different glyph than it was last time, tell
3118 the mainstream emacs code by setting mouse_moved. If not, ask for
3119 another motion event, so we can check again the next time it moves. */
3121 static MSG last_mouse_motion_event;
3122 static Lisp_Object last_mouse_motion_frame;
3124 static int
3125 note_mouse_movement (frame, msg)
3126 FRAME_PTR frame;
3127 MSG *msg;
3129 int mouse_x = LOWORD (msg->lParam);
3130 int mouse_y = HIWORD (msg->lParam);
3132 last_mouse_movement_time = msg->time;
3133 memcpy (&last_mouse_motion_event, msg, sizeof (last_mouse_motion_event));
3134 XSETFRAME (last_mouse_motion_frame, frame);
3136 if (!FRAME_X_OUTPUT (frame))
3137 return 0;
3139 if (msg->hwnd != FRAME_W32_WINDOW (frame))
3141 frame->mouse_moved = 1;
3142 last_mouse_scroll_bar = Qnil;
3143 note_mouse_highlight (frame, -1, -1);
3144 last_mouse_glyph_frame = 0;
3145 return 1;
3148 /* Has the mouse moved off the glyph it was on at the last sighting? */
3149 if (frame != last_mouse_glyph_frame
3150 || mouse_x < last_mouse_glyph.left
3151 || mouse_x >= last_mouse_glyph.right
3152 || mouse_y < last_mouse_glyph.top
3153 || mouse_y >= last_mouse_glyph.bottom)
3155 frame->mouse_moved = 1;
3156 last_mouse_scroll_bar = Qnil;
3157 note_mouse_highlight (frame, mouse_x, mouse_y);
3158 /* Remember the mouse position here, as w32_mouse_position only
3159 gets called when mouse tracking is enabled but we also need
3160 to keep track of the mouse for help_echo and highlighting at
3161 other times. */
3162 remember_mouse_glyph (frame, mouse_x, mouse_y, &last_mouse_glyph);
3163 last_mouse_glyph_frame = frame;
3164 return 1;
3167 return 0;
3171 /************************************************************************
3172 Mouse Face
3173 ************************************************************************/
3175 static struct scroll_bar *x_window_to_scroll_bar ();
3176 static void x_scroll_bar_report_motion ();
3177 static void x_check_fullscreen P_ ((struct frame *));
3179 static void
3180 redo_mouse_highlight ()
3182 if (!NILP (last_mouse_motion_frame)
3183 && FRAME_LIVE_P (XFRAME (last_mouse_motion_frame)))
3184 note_mouse_highlight (XFRAME (last_mouse_motion_frame),
3185 LOWORD (last_mouse_motion_event.lParam),
3186 HIWORD (last_mouse_motion_event.lParam));
3189 static void
3190 w32_define_cursor (window, cursor)
3191 Window window;
3192 Cursor cursor;
3194 PostMessage (window, WM_EMACS_SETCURSOR, (WPARAM) cursor, 0);
3196 /* Return the current position of the mouse.
3197 *fp should be a frame which indicates which display to ask about.
3199 If the mouse movement started in a scroll bar, set *fp, *bar_window,
3200 and *part to the frame, window, and scroll bar part that the mouse
3201 is over. Set *x and *y to the portion and whole of the mouse's
3202 position on the scroll bar.
3204 If the mouse movement started elsewhere, set *fp to the frame the
3205 mouse is on, *bar_window to nil, and *x and *y to the character cell
3206 the mouse is over.
3208 Set *time to the server time-stamp for the time at which the mouse
3209 was at this position.
3211 Don't store anything if we don't have a valid set of values to report.
3213 This clears the mouse_moved flag, so we can wait for the next mouse
3214 movement. */
3216 static void
3217 w32_mouse_position (fp, insist, bar_window, part, x, y, time)
3218 FRAME_PTR *fp;
3219 int insist;
3220 Lisp_Object *bar_window;
3221 enum scroll_bar_part *part;
3222 Lisp_Object *x, *y;
3223 unsigned long *time;
3225 FRAME_PTR f1;
3227 BLOCK_INPUT;
3229 if (! NILP (last_mouse_scroll_bar) && insist == 0)
3230 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
3231 else
3233 POINT pt;
3235 Lisp_Object frame, tail;
3237 /* Clear the mouse-moved flag for every frame on this display. */
3238 FOR_EACH_FRAME (tail, frame)
3239 XFRAME (frame)->mouse_moved = 0;
3241 last_mouse_scroll_bar = Qnil;
3243 GetCursorPos (&pt);
3245 /* Now we have a position on the root; find the innermost window
3246 containing the pointer. */
3248 if (FRAME_W32_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
3249 && FRAME_LIVE_P (last_mouse_frame))
3251 /* If mouse was grabbed on a frame, give coords for that frame
3252 even if the mouse is now outside it. */
3253 f1 = last_mouse_frame;
3255 else
3257 /* Is window under mouse one of our frames? */
3258 f1 = x_any_window_to_frame (FRAME_W32_DISPLAY_INFO (*fp),
3259 WindowFromPoint (pt));
3262 /* If not, is it one of our scroll bars? */
3263 if (! f1)
3265 struct scroll_bar *bar
3266 = x_window_to_scroll_bar (WindowFromPoint (pt));
3268 if (bar)
3270 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3274 if (f1 == 0 && insist > 0)
3275 f1 = SELECTED_FRAME ();
3277 if (f1)
3279 /* Ok, we found a frame. Store all the values.
3280 last_mouse_glyph is a rectangle used to reduce the
3281 generation of mouse events. To not miss any motion
3282 events, we must divide the frame into rectangles of the
3283 size of the smallest character that could be displayed
3284 on it, i.e. into the same rectangles that matrices on
3285 the frame are divided into. */
3287 ScreenToClient (FRAME_W32_WINDOW (f1), &pt);
3288 remember_mouse_glyph (f1, pt.x, pt.y, &last_mouse_glyph);
3289 last_mouse_glyph_frame = f1;
3291 *bar_window = Qnil;
3292 *part = 0;
3293 *fp = f1;
3294 XSETINT (*x, pt.x);
3295 XSETINT (*y, pt.y);
3296 *time = last_mouse_movement_time;
3301 UNBLOCK_INPUT;
3305 /***********************************************************************
3306 Tool-bars
3307 ***********************************************************************/
3309 /* Handle mouse button event on the tool-bar of frame F, at
3310 frame-relative coordinates X/Y. EVENT_TYPE is either ButtionPress
3311 or ButtonRelase. */
3313 static void
3314 w32_handle_tool_bar_click (f, button_event)
3315 struct frame *f;
3316 struct input_event *button_event;
3318 int x = XFASTINT (button_event->x);
3319 int y = XFASTINT (button_event->y);
3321 if (button_event->modifiers & down_modifier)
3322 handle_tool_bar_click (f, x, y, 1, 0);
3323 else
3324 handle_tool_bar_click (f, x, y, 0,
3325 button_event->modifiers & ~up_modifier);
3330 /***********************************************************************
3331 Scroll bars
3332 ***********************************************************************/
3334 /* Scroll bar support. */
3336 /* Given a window ID, find the struct scroll_bar which manages it.
3337 This can be called in GC, so we have to make sure to strip off mark
3338 bits. */
3340 static struct scroll_bar *
3341 x_window_to_scroll_bar (window_id)
3342 Window window_id;
3344 Lisp_Object tail;
3346 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
3348 Lisp_Object frame, bar, condemned;
3350 frame = XCAR (tail);
3351 /* All elements of Vframe_list should be frames. */
3352 if (! FRAMEP (frame))
3353 abort ();
3355 /* Scan this frame's scroll bar list for a scroll bar with the
3356 right window ID. */
3357 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
3358 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
3359 /* This trick allows us to search both the ordinary and
3360 condemned scroll bar lists with one loop. */
3361 ! NILP (bar) || (bar = condemned,
3362 condemned = Qnil,
3363 ! NILP (bar));
3364 bar = XSCROLL_BAR (bar)->next)
3365 if (SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar)) == window_id)
3366 return XSCROLL_BAR (bar);
3369 return 0;
3374 /* Set the thumb size and position of scroll bar BAR. We are currently
3375 displaying PORTION out of a whole WHOLE, and our position POSITION. */
3377 static void
3378 w32_set_scroll_bar_thumb (bar, portion, position, whole)
3379 struct scroll_bar *bar;
3380 int portion, position, whole;
3382 Window w = SCROLL_BAR_W32_WINDOW (bar);
3383 /* We use the whole scroll-bar height in the calculations below, to
3384 avoid strange effects like scrolling backwards when just clicking
3385 on the handle (without moving it). */
3386 double range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height))
3387 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3388 int sb_page, sb_pos;
3389 BOOL draggingp = !NILP (bar->dragging) ? TRUE : FALSE;
3390 SCROLLINFO si;
3392 /* We used to change the nPage setting while dragging the handle,
3393 but that had very strange effects (such as scrolling backwards
3394 while dragging downwards).
3396 Now, we don't change the nPage setting while dragging unless we
3397 get near to the end of the buffer, in which case we often have to
3398 resize the handle to "go all the way". */
3400 if (draggingp)
3402 int near_bottom_p;
3403 BLOCK_INPUT;
3404 si.cbSize = sizeof (si);
3405 si.fMask = SIF_POS | SIF_PAGE;
3406 GetScrollInfo(w, SB_CTL, &si);
3407 near_bottom_p = si.nPos + si.nPage >= range;
3408 UNBLOCK_INPUT;
3409 if (!near_bottom_p)
3410 return;
3413 if (whole)
3415 /* Position scroll bar at rock bottom if the bottom of the
3416 buffer is visible. This avoids shinking the thumb away
3417 to nothing if it is held at the bottom of the buffer. */
3418 if (position + portion >= whole && !draggingp)
3420 sb_page = range * (whole - position) / whole;
3421 sb_pos = range;
3423 else
3425 sb_pos = position * range / whole;
3426 sb_page = (min (portion, (whole - position)) * range) / whole;
3429 else
3431 sb_page = range;
3432 sb_pos = 0;
3435 sb_page = max (sb_page, VERTICAL_SCROLL_BAR_MIN_HANDLE);
3437 BLOCK_INPUT;
3439 si.cbSize = sizeof (si);
3440 si.fMask = SIF_PAGE | SIF_POS;
3441 si.nPage = sb_page;
3442 si.nPos = sb_pos;
3444 SetScrollInfo (w, SB_CTL, &si, TRUE);
3446 UNBLOCK_INPUT;
3450 /************************************************************************
3451 Scroll bars, general
3452 ************************************************************************/
3454 static HWND
3455 my_create_scrollbar (f, bar)
3456 struct frame * f;
3457 struct scroll_bar * bar;
3459 return (HWND) SendMessage (FRAME_W32_WINDOW (f),
3460 WM_EMACS_CREATESCROLLBAR, (WPARAM) f,
3461 (LPARAM) bar);
3464 /*#define ATTACH_THREADS*/
3466 static BOOL
3467 my_show_window (FRAME_PTR f, HWND hwnd, int how)
3469 #ifndef ATTACH_THREADS
3470 return SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_SHOWWINDOW,
3471 (WPARAM) hwnd, (LPARAM) how);
3472 #else
3473 return ShowWindow (hwnd, how);
3474 #endif
3477 static void
3478 my_set_window_pos (HWND hwnd, HWND hwndAfter,
3479 int x, int y, int cx, int cy, UINT flags)
3481 #ifndef ATTACH_THREADS
3482 WINDOWPOS pos;
3483 pos.hwndInsertAfter = hwndAfter;
3484 pos.x = x;
3485 pos.y = y;
3486 pos.cx = cx;
3487 pos.cy = cy;
3488 pos.flags = flags;
3489 SendMessage (hwnd, WM_EMACS_SETWINDOWPOS, (WPARAM) &pos, 0);
3490 #else
3491 SetWindowPos (hwnd, hwndAfter, x, y, cx, cy, flags);
3492 #endif
3495 static void
3496 my_set_focus (f, hwnd)
3497 struct frame * f;
3498 HWND hwnd;
3500 SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_SETFOCUS,
3501 (WPARAM) hwnd, 0);
3504 static void
3505 my_set_foreground_window (hwnd)
3506 HWND hwnd;
3508 SendMessage (hwnd, WM_EMACS_SETFOREGROUND, (WPARAM) hwnd, 0);
3512 static void
3513 my_destroy_window (f, hwnd)
3514 struct frame * f;
3515 HWND hwnd;
3517 SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_DESTROYWINDOW,
3518 (WPARAM) hwnd, 0);
3521 /* Create a scroll bar and return the scroll bar vector for it. W is
3522 the Emacs window on which to create the scroll bar. TOP, LEFT,
3523 WIDTH and HEIGHT are.the pixel coordinates and dimensions of the
3524 scroll bar. */
3526 static struct scroll_bar *
3527 x_scroll_bar_create (w, top, left, width, height)
3528 struct window *w;
3529 int top, left, width, height;
3531 struct frame *f = XFRAME (WINDOW_FRAME (w));
3532 HWND hwnd;
3533 SCROLLINFO si;
3534 struct scroll_bar *bar
3535 = XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE), Qnil));
3537 BLOCK_INPUT;
3539 XSETWINDOW (bar->window, w);
3540 XSETINT (bar->top, top);
3541 XSETINT (bar->left, left);
3542 XSETINT (bar->width, width);
3543 XSETINT (bar->height, height);
3544 XSETINT (bar->start, 0);
3545 XSETINT (bar->end, 0);
3546 bar->dragging = Qnil;
3547 bar->fringe_extended_p = Qnil;
3549 /* Requires geometry to be set before call to create the real window */
3551 hwnd = my_create_scrollbar (f, bar);
3553 si.cbSize = sizeof (si);
3554 si.fMask = SIF_ALL;
3555 si.nMin = 0;
3556 si.nMax = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height)
3557 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3558 si.nPage = si.nMax;
3559 si.nPos = 0;
3561 SetScrollInfo (hwnd, SB_CTL, &si, FALSE);
3563 SET_SCROLL_BAR_W32_WINDOW (bar, hwnd);
3565 /* Add bar to its frame's list of scroll bars. */
3566 bar->next = FRAME_SCROLL_BARS (f);
3567 bar->prev = Qnil;
3568 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
3569 if (! NILP (bar->next))
3570 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
3572 UNBLOCK_INPUT;
3574 return bar;
3578 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
3579 nil. */
3581 static void
3582 x_scroll_bar_remove (bar)
3583 struct scroll_bar *bar;
3585 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3587 BLOCK_INPUT;
3589 /* Destroy the window. */
3590 my_destroy_window (f, SCROLL_BAR_W32_WINDOW (bar));
3592 /* Disassociate this scroll bar from its window. */
3593 XWINDOW (bar->window)->vertical_scroll_bar = Qnil;
3595 UNBLOCK_INPUT;
3598 /* Set the handle of the vertical scroll bar for WINDOW to indicate
3599 that we are displaying PORTION characters out of a total of WHOLE
3600 characters, starting at POSITION. If WINDOW has no scroll bar,
3601 create one. */
3602 static void
3603 w32_set_vertical_scroll_bar (w, portion, whole, position)
3604 struct window *w;
3605 int portion, whole, position;
3607 struct frame *f = XFRAME (w->frame);
3608 struct scroll_bar *bar;
3609 int top, height, left, sb_left, width, sb_width;
3610 int window_y, window_height;
3611 int fringe_extended_p;
3613 /* Get window dimensions. */
3614 window_box (w, -1, 0, &window_y, 0, &window_height);
3615 top = window_y;
3616 width = WINDOW_CONFIG_SCROLL_BAR_COLS (w) * FRAME_COLUMN_WIDTH (f);
3617 height = window_height;
3619 /* Compute the left edge of the scroll bar area. */
3620 left = WINDOW_SCROLL_BAR_AREA_X (w);
3622 /* Compute the width of the scroll bar which might be less than
3623 the width of the area reserved for the scroll bar. */
3624 if (WINDOW_CONFIG_SCROLL_BAR_WIDTH (w) > 0)
3625 sb_width = WINDOW_CONFIG_SCROLL_BAR_WIDTH (w);
3626 else
3627 sb_width = width;
3629 /* Compute the left edge of the scroll bar. */
3630 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT (w))
3631 sb_left = left + (WINDOW_RIGHTMOST_P (w) ? width - sb_width : 0);
3632 else
3633 sb_left = left + (WINDOW_LEFTMOST_P (w) ? 0 : width - sb_width);
3635 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w))
3636 fringe_extended_p = (WINDOW_LEFTMOST_P (w)
3637 && WINDOW_LEFT_FRINGE_WIDTH (w)
3638 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
3639 || WINDOW_LEFT_MARGIN_COLS (w) == 0));
3640 else
3641 fringe_extended_p = (WINDOW_RIGHTMOST_P (w)
3642 && WINDOW_RIGHT_FRINGE_WIDTH (w)
3643 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
3644 || WINDOW_RIGHT_MARGIN_COLS (w) == 0));
3646 /* Does the scroll bar exist yet? */
3647 if (NILP (w->vertical_scroll_bar))
3649 HDC hdc;
3650 BLOCK_INPUT;
3651 if (width > 0 && height > 0)
3653 hdc = get_frame_dc (f);
3654 if (fringe_extended_p)
3655 w32_clear_area (f, hdc, sb_left, top, sb_width, height);
3656 else
3657 w32_clear_area (f, hdc, left, top, width, height);
3658 release_frame_dc (f, hdc);
3660 UNBLOCK_INPUT;
3662 bar = x_scroll_bar_create (w, top, sb_left, sb_width, height);
3664 else
3666 /* It may just need to be moved and resized. */
3667 HWND hwnd;
3669 bar = XSCROLL_BAR (w->vertical_scroll_bar);
3670 hwnd = SCROLL_BAR_W32_WINDOW (bar);
3672 /* If already correctly positioned, do nothing. */
3673 if ( XINT (bar->left) == sb_left
3674 && XINT (bar->top) == top
3675 && XINT (bar->width) == sb_width
3676 && XINT (bar->height) == height
3677 && !NILP (bar->fringe_extended_p) == fringe_extended_p )
3679 /* Redraw after clear_frame. */
3680 if (!my_show_window (f, hwnd, SW_NORMAL))
3681 InvalidateRect (hwnd, NULL, FALSE);
3683 else
3685 HDC hdc;
3686 SCROLLINFO si;
3688 BLOCK_INPUT;
3689 if (width && height)
3691 hdc = get_frame_dc (f);
3692 /* Since Windows scroll bars are smaller than the space reserved
3693 for them on the frame, we have to clear "under" them. */
3694 if (fringe_extended_p)
3695 w32_clear_area (f, hdc, sb_left, top, sb_width, height);
3696 else
3697 w32_clear_area (f, hdc, left, top, width, height);
3698 release_frame_dc (f, hdc);
3700 /* Make sure scroll bar is "visible" before moving, to ensure the
3701 area of the parent window now exposed will be refreshed. */
3702 my_show_window (f, hwnd, SW_HIDE);
3703 MoveWindow (hwnd, sb_left + VERTICAL_SCROLL_BAR_WIDTH_TRIM,
3704 top, sb_width - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2,
3705 max (height, 1), TRUE);
3707 si.cbSize = sizeof (si);
3708 si.fMask = SIF_RANGE;
3709 si.nMin = 0;
3710 si.nMax = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height)
3711 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3713 SetScrollInfo (hwnd, SB_CTL, &si, FALSE);
3715 my_show_window (f, hwnd, SW_NORMAL);
3716 /* InvalidateRect (w, NULL, FALSE); */
3718 /* Remember new settings. */
3719 XSETINT (bar->left, sb_left);
3720 XSETINT (bar->top, top);
3721 XSETINT (bar->width, sb_width);
3722 XSETINT (bar->height, height);
3724 UNBLOCK_INPUT;
3727 bar->fringe_extended_p = fringe_extended_p ? Qt : Qnil;
3729 w32_set_scroll_bar_thumb (bar, portion, position, whole);
3731 XSETVECTOR (w->vertical_scroll_bar, bar);
3735 /* The following three hooks are used when we're doing a thorough
3736 redisplay of the frame. We don't explicitly know which scroll bars
3737 are going to be deleted, because keeping track of when windows go
3738 away is a real pain - "Can you say set-window-configuration, boys
3739 and girls?" Instead, we just assert at the beginning of redisplay
3740 that *all* scroll bars are to be removed, and then save a scroll bar
3741 from the fiery pit when we actually redisplay its window. */
3743 /* Arrange for all scroll bars on FRAME to be removed at the next call
3744 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
3745 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
3747 static void
3748 w32_condemn_scroll_bars (frame)
3749 FRAME_PTR frame;
3751 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
3752 while (! NILP (FRAME_SCROLL_BARS (frame)))
3754 Lisp_Object bar;
3755 bar = FRAME_SCROLL_BARS (frame);
3756 FRAME_SCROLL_BARS (frame) = XSCROLL_BAR (bar)->next;
3757 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
3758 XSCROLL_BAR (bar)->prev = Qnil;
3759 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
3760 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
3761 FRAME_CONDEMNED_SCROLL_BARS (frame) = bar;
3766 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
3767 Note that WINDOW isn't necessarily condemned at all. */
3769 static void
3770 w32_redeem_scroll_bar (window)
3771 struct window *window;
3773 struct scroll_bar *bar;
3774 struct frame *f;
3776 /* We can't redeem this window's scroll bar if it doesn't have one. */
3777 if (NILP (window->vertical_scroll_bar))
3778 abort ();
3780 bar = XSCROLL_BAR (window->vertical_scroll_bar);
3782 /* Unlink it from the condemned list. */
3783 f = XFRAME (WINDOW_FRAME (window));
3784 if (NILP (bar->prev))
3786 /* If the prev pointer is nil, it must be the first in one of
3787 the lists. */
3788 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
3789 /* It's not condemned. Everything's fine. */
3790 return;
3791 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
3792 window->vertical_scroll_bar))
3793 FRAME_CONDEMNED_SCROLL_BARS (f) = bar->next;
3794 else
3795 /* If its prev pointer is nil, it must be at the front of
3796 one or the other! */
3797 abort ();
3799 else
3800 XSCROLL_BAR (bar->prev)->next = bar->next;
3802 if (! NILP (bar->next))
3803 XSCROLL_BAR (bar->next)->prev = bar->prev;
3805 bar->next = FRAME_SCROLL_BARS (f);
3806 bar->prev = Qnil;
3807 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
3808 if (! NILP (bar->next))
3809 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
3812 /* Remove all scroll bars on FRAME that haven't been saved since the
3813 last call to `*condemn_scroll_bars_hook'. */
3815 static void
3816 w32_judge_scroll_bars (f)
3817 FRAME_PTR f;
3819 Lisp_Object bar, next;
3821 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
3823 /* Clear out the condemned list now so we won't try to process any
3824 more events on the hapless scroll bars. */
3825 FRAME_CONDEMNED_SCROLL_BARS (f) = Qnil;
3827 for (; ! NILP (bar); bar = next)
3829 struct scroll_bar *b = XSCROLL_BAR (bar);
3831 x_scroll_bar_remove (b);
3833 next = b->next;
3834 b->next = b->prev = Qnil;
3837 /* Now there should be no references to the condemned scroll bars,
3838 and they should get garbage-collected. */
3841 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
3842 is set to something other than NO_EVENT, it is enqueued.
3844 This may be called from a signal handler, so we have to ignore GC
3845 mark bits. */
3847 static int
3848 w32_scroll_bar_handle_click (bar, msg, emacs_event)
3849 struct scroll_bar *bar;
3850 W32Msg *msg;
3851 struct input_event *emacs_event;
3853 if (! WINDOWP (bar->window))
3854 abort ();
3856 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
3857 emacs_event->code = 0;
3858 /* not really meaningful to distinguish up/down */
3859 emacs_event->modifiers = msg->dwModifiers;
3860 emacs_event->frame_or_window = bar->window;
3861 emacs_event->arg = Qnil;
3862 emacs_event->timestamp = msg->msg.time;
3865 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
3866 int y;
3867 int dragging = !NILP (bar->dragging);
3868 SCROLLINFO si;
3870 si.cbSize = sizeof (si);
3871 si.fMask = SIF_POS;
3873 GetScrollInfo ((HWND) msg->msg.lParam, SB_CTL, &si);
3874 y = si.nPos;
3876 bar->dragging = Qnil;
3879 last_mouse_scroll_bar_pos = msg->msg.wParam;
3881 switch (LOWORD (msg->msg.wParam))
3883 case SB_LINEDOWN:
3884 emacs_event->part = scroll_bar_down_arrow;
3885 break;
3886 case SB_LINEUP:
3887 emacs_event->part = scroll_bar_up_arrow;
3888 break;
3889 case SB_PAGEUP:
3890 emacs_event->part = scroll_bar_above_handle;
3891 break;
3892 case SB_PAGEDOWN:
3893 emacs_event->part = scroll_bar_below_handle;
3894 break;
3895 case SB_TOP:
3896 emacs_event->part = scroll_bar_handle;
3897 y = 0;
3898 break;
3899 case SB_BOTTOM:
3900 emacs_event->part = scroll_bar_handle;
3901 y = top_range;
3902 break;
3903 case SB_THUMBTRACK:
3904 case SB_THUMBPOSITION:
3905 if (VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height)) <= 0xffff)
3906 y = HIWORD (msg->msg.wParam);
3907 bar->dragging = Qt;
3908 emacs_event->part = scroll_bar_handle;
3910 /* "Silently" update current position. */
3912 SCROLLINFO si;
3914 si.cbSize = sizeof (si);
3915 si.fMask = SIF_POS;
3916 si.nPos = y;
3917 /* Remember apparent position (we actually lag behind the real
3918 position, so don't set that directly. */
3919 last_scroll_bar_drag_pos = y;
3921 SetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, FALSE);
3923 break;
3924 case SB_ENDSCROLL:
3925 /* If this is the end of a drag sequence, then reset the scroll
3926 handle size to normal and do a final redraw. Otherwise do
3927 nothing. */
3928 if (dragging)
3930 SCROLLINFO si;
3931 int start = XINT (bar->start);
3932 int end = XINT (bar->end);
3934 si.cbSize = sizeof (si);
3935 si.fMask = SIF_PAGE | SIF_POS;
3936 si.nPage = end - start + VERTICAL_SCROLL_BAR_MIN_HANDLE;
3937 si.nPos = last_scroll_bar_drag_pos;
3938 SetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, TRUE);
3940 /* fall through */
3941 default:
3942 emacs_event->kind = NO_EVENT;
3943 return FALSE;
3946 XSETINT (emacs_event->x, y);
3947 XSETINT (emacs_event->y, top_range);
3949 return TRUE;
3953 /* Return information to the user about the current position of the mouse
3954 on the scroll bar. */
3956 static void
3957 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time)
3958 FRAME_PTR *fp;
3959 Lisp_Object *bar_window;
3960 enum scroll_bar_part *part;
3961 Lisp_Object *x, *y;
3962 unsigned long *time;
3964 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
3965 Window w = SCROLL_BAR_W32_WINDOW (bar);
3966 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
3967 int pos;
3968 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
3969 SCROLLINFO si;
3971 BLOCK_INPUT;
3973 *fp = f;
3974 *bar_window = bar->window;
3976 si.cbSize = sizeof (si);
3977 si.fMask = SIF_POS | SIF_PAGE | SIF_RANGE;
3979 GetScrollInfo (w, SB_CTL, &si);
3980 pos = si.nPos;
3981 top_range = si.nMax - si.nPage + 1;
3983 switch (LOWORD (last_mouse_scroll_bar_pos))
3985 case SB_THUMBPOSITION:
3986 case SB_THUMBTRACK:
3987 *part = scroll_bar_handle;
3988 if (VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height)) <= 0xffff)
3989 pos = HIWORD (last_mouse_scroll_bar_pos);
3990 break;
3991 case SB_LINEDOWN:
3992 *part = scroll_bar_handle;
3993 pos++;
3994 break;
3995 default:
3996 *part = scroll_bar_handle;
3997 break;
4000 XSETINT (*x, pos);
4001 XSETINT (*y, top_range);
4003 f->mouse_moved = 0;
4004 last_mouse_scroll_bar = Qnil;
4006 *time = last_mouse_movement_time;
4008 UNBLOCK_INPUT;
4012 /* The screen has been cleared so we may have changed foreground or
4013 background colors, and the scroll bars may need to be redrawn.
4014 Clear out the scroll bars, and ask for expose events, so we can
4015 redraw them. */
4017 void
4018 x_scroll_bar_clear (f)
4019 FRAME_PTR f;
4021 Lisp_Object bar;
4023 /* We can have scroll bars even if this is 0,
4024 if we just turned off scroll bar mode.
4025 But in that case we should not clear them. */
4026 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
4027 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
4028 bar = XSCROLL_BAR (bar)->next)
4030 HWND window = SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar));
4031 HDC hdc = GetDC (window);
4032 RECT rect;
4034 /* Hide scroll bar until ready to repaint. x_scroll_bar_move
4035 arranges to refresh the scroll bar if hidden. */
4036 my_show_window (f, window, SW_HIDE);
4038 GetClientRect (window, &rect);
4039 select_palette (f, hdc);
4040 w32_clear_rect (f, hdc, &rect);
4041 deselect_palette (f, hdc);
4043 ReleaseDC (window, hdc);
4048 /* The main W32 event-reading loop - w32_read_socket. */
4050 /* Record the last 100 characters stored
4051 to help debug the loss-of-chars-during-GC problem. */
4053 static int temp_index;
4054 static short temp_buffer[100];
4056 /* Temporarily store lead byte of DBCS input sequences. */
4057 static char dbcs_lead = 0;
4059 /* Read events coming from the W32 shell.
4060 This routine is called by the SIGIO handler.
4061 We return as soon as there are no more events to be read.
4063 We return the number of characters stored into the buffer,
4064 thus pretending to be `read'.
4066 EXPECTED is nonzero if the caller knows input is available.
4068 Some of these messages are reposted back to the message queue since the
4069 system calls the windows proc directly in a context where we cannot return
4070 the data nor can we guarantee the state we are in. So if we dispatch them
4071 we will get into an infinite loop. To prevent this from ever happening we
4072 will set a variable to indicate we are in the read_socket call and indicate
4073 which message we are processing since the windows proc gets called
4074 recursively with different messages by the system.
4078 w32_read_socket (sd, expected, hold_quit)
4079 register int sd;
4080 int expected;
4081 struct input_event *hold_quit;
4083 int count = 0;
4084 int check_visibility = 0;
4085 W32Msg msg;
4086 struct frame *f;
4087 struct w32_display_info *dpyinfo = &one_w32_display_info;
4089 if (interrupt_input_blocked)
4091 interrupt_input_pending = 1;
4092 return -1;
4095 interrupt_input_pending = 0;
4096 BLOCK_INPUT;
4098 /* So people can tell when we have read the available input. */
4099 input_signal_count++;
4101 /* TODO: ghostscript integration. */
4102 while (get_next_msg (&msg, FALSE))
4104 struct input_event inev;
4105 int do_help = 0;
4107 EVENT_INIT (inev);
4108 inev.kind = NO_EVENT;
4109 inev.arg = Qnil;
4111 switch (msg.msg.message)
4113 case WM_EMACS_PAINT:
4114 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4116 if (f)
4118 if (msg.rect.right == msg.rect.left ||
4119 msg.rect.bottom == msg.rect.top)
4121 /* We may get paint messages even though the client
4122 area is clipped - these are not expose events. */
4123 DebPrint (("clipped frame %p (%s) got WM_PAINT - ignored\n", f,
4124 SDATA (f->name)));
4126 else if (f->async_visible != 1)
4128 /* Definitely not obscured, so mark as visible. */
4129 f->async_visible = 1;
4130 f->async_iconified = 0;
4131 SET_FRAME_GARBAGED (f);
4132 DebPrint (("frame %p (%s) reexposed by WM_PAINT\n", f,
4133 SDATA (f->name)));
4135 /* WM_PAINT serves as MapNotify as well, so report
4136 visibility changes properly. */
4137 if (f->iconified)
4139 inev.kind = DEICONIFY_EVENT;
4140 XSETFRAME (inev.frame_or_window, f);
4142 else if (! NILP (Vframe_list)
4143 && ! NILP (XCDR (Vframe_list)))
4144 /* Force a redisplay sooner or later to update the
4145 frame titles in case this is the second frame. */
4146 record_asynch_buffer_change ();
4148 else
4150 HDC hdc = get_frame_dc (f);
4152 /* Erase background again for safety. */
4153 w32_clear_rect (f, hdc, &msg.rect);
4154 release_frame_dc (f, hdc);
4155 expose_frame (f,
4156 msg.rect.left,
4157 msg.rect.top,
4158 msg.rect.right - msg.rect.left,
4159 msg.rect.bottom - msg.rect.top);
4162 break;
4164 case WM_INPUTLANGCHANGE:
4165 /* Generate a language change event. */
4166 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4168 /* lParam contains the input lang ID. Use it to update our
4169 record of the keyboard codepage. */
4170 keyboard_codepage = codepage_for_locale ((LCID)(msg.msg.lParam
4171 & 0xffff));
4173 if (f)
4175 inev.kind = LANGUAGE_CHANGE_EVENT;
4176 XSETFRAME (inev.frame_or_window, f);
4177 inev.code = msg.msg.wParam;
4178 inev.modifiers = msg.msg.lParam & 0xffff;
4180 break;
4182 case WM_KEYDOWN:
4183 case WM_SYSKEYDOWN:
4184 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4186 if (f && !f->iconified)
4188 if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
4189 && !EQ (f->tool_bar_window, dpyinfo->mouse_face_window))
4191 clear_mouse_face (dpyinfo);
4192 dpyinfo->mouse_face_hidden = 1;
4195 if (temp_index == sizeof temp_buffer / sizeof (short))
4196 temp_index = 0;
4197 temp_buffer[temp_index++] = msg.msg.wParam;
4198 inev.kind = NON_ASCII_KEYSTROKE_EVENT;
4199 inev.code = msg.msg.wParam;
4200 inev.modifiers = msg.dwModifiers;
4201 XSETFRAME (inev.frame_or_window, f);
4202 inev.timestamp = msg.msg.time;
4204 break;
4206 case WM_UNICHAR:
4207 case WM_SYSCHAR:
4208 case WM_CHAR:
4209 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4211 if (f && !f->iconified)
4213 if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
4214 && !EQ (f->tool_bar_window, dpyinfo->mouse_face_window))
4216 clear_mouse_face (dpyinfo);
4217 dpyinfo->mouse_face_hidden = 1;
4220 if (temp_index == sizeof temp_buffer / sizeof (short))
4221 temp_index = 0;
4222 temp_buffer[temp_index++] = msg.msg.wParam;
4224 inev.modifiers = msg.dwModifiers;
4225 XSETFRAME (inev.frame_or_window, f);
4226 inev.timestamp = msg.msg.time;
4228 if (msg.msg.message == WM_UNICHAR)
4230 inev.code = msg.msg.wParam;
4232 else if (msg.msg.wParam < 256)
4234 wchar_t code;
4235 char dbcs[2];
4236 dbcs[0] = 0;
4237 dbcs[1] = (char) msg.msg.wParam;
4239 if (dbcs_lead)
4241 dbcs[0] = dbcs_lead;
4242 dbcs_lead = 0;
4243 if (!MultiByteToWideChar (keyboard_codepage, 0,
4244 dbcs, 2, &code, 1))
4246 /* Garbage */
4247 DebPrint (("Invalid DBCS sequence: %d %d\n",
4248 dbcs[0], dbcs[1]));
4249 inev.kind = NO_EVENT;
4250 break;
4253 else if (IsDBCSLeadByteEx (keyboard_codepage,
4254 (BYTE) msg.msg.wParam))
4256 dbcs_lead = (char) msg.msg.wParam;
4257 inev.kind = NO_EVENT;
4258 break;
4260 else
4262 if (!MultiByteToWideChar (keyboard_codepage, 0,
4263 &dbcs[1], 1, &code, 1))
4265 /* What to do with garbage? */
4266 DebPrint (("Invalid character: %d\n", dbcs[1]));
4267 inev.kind = NO_EVENT;
4268 break;
4271 inev.code = code;
4273 else
4275 /* Windows shouldn't generate WM_CHAR events above 0xFF
4276 in non-Unicode message handlers. */
4277 DebPrint (("Non-byte WM_CHAR: %d\n", msg.msg.wParam));
4278 inev.kind = NO_EVENT;
4279 break;
4281 inev.kind = inev.code < 128 ? ASCII_KEYSTROKE_EVENT
4282 : MULTIBYTE_CHAR_KEYSTROKE_EVENT;
4284 break;
4286 case WM_APPCOMMAND:
4287 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4289 if (f && !f->iconified)
4291 if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight)
4292 && !EQ (f->tool_bar_window, dpyinfo->mouse_face_window))
4294 clear_mouse_face (dpyinfo);
4295 dpyinfo->mouse_face_hidden = 1;
4298 if (temp_index == sizeof temp_buffer / sizeof (short))
4299 temp_index = 0;
4300 temp_buffer[temp_index++] = msg.msg.wParam;
4301 inev.kind = MULTIMEDIA_KEY_EVENT;
4302 inev.code = GET_APPCOMMAND_LPARAM(msg.msg.lParam);
4303 inev.modifiers = msg.dwModifiers;
4304 XSETFRAME (inev.frame_or_window, f);
4305 inev.timestamp = msg.msg.time;
4307 break;
4309 case WM_MOUSEMOVE:
4310 /* Ignore non-movement. */
4312 int x = LOWORD (msg.msg.lParam);
4313 int y = HIWORD (msg.msg.lParam);
4314 if (x == last_mousemove_x && y == last_mousemove_y)
4315 break;
4316 last_mousemove_x = x;
4317 last_mousemove_y = y;
4320 previous_help_echo_string = help_echo_string;
4321 help_echo_string = Qnil;
4323 if (dpyinfo->grabbed && last_mouse_frame
4324 && FRAME_LIVE_P (last_mouse_frame))
4325 f = last_mouse_frame;
4326 else
4327 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4329 if (dpyinfo->mouse_face_hidden)
4331 dpyinfo->mouse_face_hidden = 0;
4332 clear_mouse_face (dpyinfo);
4335 if (f)
4337 /* Generate SELECT_WINDOW_EVENTs when needed. */
4338 if (!NILP (Vmouse_autoselect_window))
4340 Lisp_Object window;
4341 int x = LOWORD (msg.msg.lParam);
4342 int y = HIWORD (msg.msg.lParam);
4344 window = window_from_coordinates (f, x, y, 0, 0, 0, 0);
4346 /* Window will be selected only when it is not
4347 selected now and last mouse movement event was
4348 not in it. Minibuffer window will be selected
4349 only when it is active. */
4350 if (WINDOWP(window)
4351 && !EQ (window, last_window)
4352 && !EQ (window, selected_window)
4353 /* For click-to-focus window managers
4354 create event iff we don't leave the
4355 selected frame. */
4356 && (focus_follows_mouse
4357 || (EQ (XWINDOW (window)->frame,
4358 XWINDOW (selected_window)->frame))))
4360 inev.kind = SELECT_WINDOW_EVENT;
4361 inev.frame_or_window = window;
4364 last_window=window;
4366 if (!note_mouse_movement (f, &msg.msg))
4367 help_echo_string = previous_help_echo_string;
4369 else
4371 /* If we move outside the frame, then we're
4372 certainly no longer on any text in the frame. */
4373 clear_mouse_face (dpyinfo);
4376 /* If the contents of the global variable help_echo_string
4377 has changed, generate a HELP_EVENT. */
4378 #if 0 /* The below is an invalid comparison when USE_LISP_UNION_TYPE.
4379 But it was originally changed to this to fix a bug, so I have
4380 not removed it completely in case the bug is still there. */
4381 if (help_echo_string != previous_help_echo_string ||
4382 (!NILP (help_echo_string) && !STRINGP (help_echo_string) && f->mouse_moved))
4383 #else /* This is what xterm.c does. */
4384 if (!NILP (help_echo_string)
4385 || !NILP (previous_help_echo_string))
4386 do_help = 1;
4387 #endif
4388 break;
4390 case WM_LBUTTONDOWN:
4391 case WM_LBUTTONUP:
4392 case WM_MBUTTONDOWN:
4393 case WM_MBUTTONUP:
4394 case WM_RBUTTONDOWN:
4395 case WM_RBUTTONUP:
4396 case WM_XBUTTONDOWN:
4397 case WM_XBUTTONUP:
4399 /* If we decide we want to generate an event to be seen
4400 by the rest of Emacs, we put it here. */
4401 int tool_bar_p = 0;
4402 int button;
4403 int up;
4405 if (dpyinfo->grabbed && last_mouse_frame
4406 && FRAME_LIVE_P (last_mouse_frame))
4407 f = last_mouse_frame;
4408 else
4409 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4411 if (f)
4413 construct_mouse_click (&inev, &msg, f);
4415 /* Is this in the tool-bar? */
4416 if (WINDOWP (f->tool_bar_window)
4417 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)))
4419 Lisp_Object window;
4420 int x = XFASTINT (inev.x);
4421 int y = XFASTINT (inev.y);
4423 window = window_from_coordinates (f, x, y, 0, 0, 0, 1);
4425 if (EQ (window, f->tool_bar_window))
4427 w32_handle_tool_bar_click (f, &inev);
4428 tool_bar_p = 1;
4432 if (tool_bar_p
4433 || (dpyinfo->w32_focus_frame
4434 && f != dpyinfo->w32_focus_frame))
4435 inev.kind = NO_EVENT;
4438 parse_button (msg.msg.message, HIWORD (msg.msg.wParam),
4439 &button, &up);
4441 if (up)
4443 dpyinfo->grabbed &= ~ (1 << button);
4445 else
4447 dpyinfo->grabbed |= (1 << button);
4448 last_mouse_frame = f;
4449 /* Ignore any mouse motion that happened
4450 before this event; any subsequent mouse-movement
4451 Emacs events should reflect only motion after
4452 the ButtonPress. */
4453 if (f != 0)
4454 f->mouse_moved = 0;
4456 if (!tool_bar_p)
4457 last_tool_bar_item = -1;
4459 break;
4462 case WM_MOUSEWHEEL:
4463 case WM_MOUSEHWHEEL:
4465 if (dpyinfo->grabbed && last_mouse_frame
4466 && FRAME_LIVE_P (last_mouse_frame))
4467 f = last_mouse_frame;
4468 else
4469 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4471 if (f)
4474 if (!dpyinfo->w32_focus_frame
4475 || f == dpyinfo->w32_focus_frame)
4477 /* Emit an Emacs wheel-up/down event. */
4478 construct_mouse_wheel (&inev, &msg, f);
4480 /* Ignore any mouse motion that happened before this
4481 event; any subsequent mouse-movement Emacs events
4482 should reflect only motion after the
4483 ButtonPress. */
4484 f->mouse_moved = 0;
4486 last_mouse_frame = f;
4487 last_tool_bar_item = -1;
4489 break;
4491 case WM_DROPFILES:
4492 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4494 if (f)
4495 construct_drag_n_drop (&inev, &msg, f);
4496 break;
4498 case WM_VSCROLL:
4500 struct scroll_bar *bar =
4501 x_window_to_scroll_bar ((HWND)msg.msg.lParam);
4503 if (bar)
4504 w32_scroll_bar_handle_click (bar, &msg, &inev);
4505 break;
4508 case WM_WINDOWPOSCHANGED:
4509 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4510 if (f)
4512 if (f->want_fullscreen & FULLSCREEN_WAIT)
4513 f->want_fullscreen &= ~(FULLSCREEN_WAIT|FULLSCREEN_BOTH);
4515 check_visibility = 1;
4516 break;
4518 case WM_ACTIVATE:
4519 case WM_ACTIVATEAPP:
4520 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4521 if (f)
4522 x_check_fullscreen (f);
4523 check_visibility = 1;
4524 break;
4526 case WM_MOVE:
4527 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4529 if (f && !f->async_iconified)
4531 int x, y;
4533 x_real_positions (f, &x, &y);
4534 f->left_pos = x;
4535 f->top_pos = y;
4538 check_visibility = 1;
4539 break;
4541 case WM_SHOWWINDOW:
4542 /* wParam non-zero means Window is about to be shown, 0 means
4543 about to be hidden. */
4544 /* Redo the mouse-highlight after the tooltip has gone. */
4545 if (!msg.msg.wParam && msg.msg.hwnd == tip_window)
4547 tip_window = NULL;
4548 redo_mouse_highlight ();
4551 /* If window has been obscured or exposed by another window
4552 being maximised or minimised/restored, then recheck
4553 visibility of all frames. Direct changes to our own
4554 windows get handled by WM_SIZE. */
4555 #if 0
4556 if (msg.msg.lParam != 0)
4557 check_visibility = 1;
4558 else
4560 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4561 f->async_visible = msg.msg.wParam;
4563 #endif
4565 check_visibility = 1;
4566 break;
4568 case WM_SIZE:
4569 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4571 /* Inform lisp of whether frame has been iconified etc. */
4572 if (f)
4574 switch (msg.msg.wParam)
4576 case SIZE_MINIMIZED:
4577 f->async_visible = 0;
4578 f->async_iconified = 1;
4580 inev.kind = ICONIFY_EVENT;
4581 XSETFRAME (inev.frame_or_window, f);
4582 break;
4584 case SIZE_MAXIMIZED:
4585 case SIZE_RESTORED:
4586 f->async_visible = 1;
4587 f->async_iconified = 0;
4589 /* wait_reading_process_output will notice this and update
4590 the frame's display structures. */
4591 SET_FRAME_GARBAGED (f);
4593 if (f->iconified)
4595 int x, y;
4597 /* Reset top and left positions of the Window
4598 here since Windows sends a WM_MOVE message
4599 BEFORE telling us the Window is minimized
4600 when the Window is iconified, with 3000,3000
4601 as the co-ords. */
4602 x_real_positions (f, &x, &y);
4603 f->left_pos = x;
4604 f->top_pos = y;
4606 inev.kind = DEICONIFY_EVENT;
4607 XSETFRAME (inev.frame_or_window, f);
4609 else if (! NILP (Vframe_list)
4610 && ! NILP (XCDR (Vframe_list)))
4611 /* Force a redisplay sooner or later
4612 to update the frame titles
4613 in case this is the second frame. */
4614 record_asynch_buffer_change ();
4615 break;
4619 if (f && !f->async_iconified && msg.msg.wParam != SIZE_MINIMIZED)
4621 RECT rect;
4622 int rows;
4623 int columns;
4624 int width;
4625 int height;
4627 GetClientRect (msg.msg.hwnd, &rect);
4629 height = rect.bottom - rect.top;
4630 width = rect.right - rect.left;
4632 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (f, height);
4633 columns = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (f, width);
4635 /* TODO: Clip size to the screen dimensions. */
4637 /* Even if the number of character rows and columns has
4638 not changed, the font size may have changed, so we need
4639 to check the pixel dimensions as well. */
4641 if (columns != FRAME_COLS (f)
4642 || rows != FRAME_LINES (f)
4643 || width != FRAME_PIXEL_WIDTH (f)
4644 || height != FRAME_PIXEL_HEIGHT (f))
4646 change_frame_size (f, rows, columns, 0, 1, 0);
4647 SET_FRAME_GARBAGED (f);
4648 cancel_mouse_face (f);
4649 FRAME_PIXEL_WIDTH (f) = width;
4650 FRAME_PIXEL_HEIGHT (f) = height;
4651 f->win_gravity = NorthWestGravity;
4655 check_visibility = 1;
4656 break;
4658 case WM_MOUSELEAVE:
4659 f = x_any_window_to_frame (dpyinfo, msg.msg.hwnd);
4660 if (f)
4662 if (f == dpyinfo->mouse_face_mouse_frame)
4664 /* If we move outside the frame, then we're
4665 certainly no longer on any text in the frame. */
4666 clear_mouse_face (dpyinfo);
4667 dpyinfo->mouse_face_mouse_frame = 0;
4670 /* Generate a nil HELP_EVENT to cancel a help-echo.
4671 Do it only if there's something to cancel.
4672 Otherwise, the startup message is cleared when
4673 the mouse leaves the frame. */
4674 if (any_help_event_p)
4675 do_help = -1;
4677 break;
4679 case WM_SETFOCUS:
4680 w32_detect_focus_change (dpyinfo, &msg, &inev);
4682 dpyinfo->grabbed = 0;
4683 check_visibility = 1;
4684 break;
4686 case WM_KILLFOCUS:
4687 f = x_top_window_to_frame (dpyinfo, msg.msg.hwnd);
4689 if (f)
4691 if (f == dpyinfo->w32_focus_event_frame)
4692 dpyinfo->w32_focus_event_frame = 0;
4694 if (f == dpyinfo->w32_focus_frame)
4695 x_new_focus_frame (dpyinfo, 0);
4697 if (f == dpyinfo->mouse_face_mouse_frame)
4699 /* If we move outside the frame, then we're
4700 certainly no longer on any text in the frame. */
4701 clear_mouse_face (dpyinfo);
4702 dpyinfo->mouse_face_mouse_frame = 0;
4705 /* Generate a nil HELP_EVENT to cancel a help-echo.
4706 Do it only if there's something to cancel.
4707 Otherwise, the startup message is cleared when
4708 the mouse leaves the frame. */
4709 if (any_help_event_p)
4710 do_help = -1;
4713 dpyinfo->grabbed = 0;
4714 check_visibility = 1;
4715 break;
4717 case WM_CLOSE:
4718 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4720 if (f)
4722 inev.kind = DELETE_WINDOW_EVENT;
4723 XSETFRAME (inev.frame_or_window, f);
4725 break;
4727 case WM_INITMENU:
4728 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4730 if (f)
4732 inev.kind = MENU_BAR_ACTIVATE_EVENT;
4733 XSETFRAME (inev.frame_or_window, f);
4735 break;
4737 case WM_COMMAND:
4738 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4740 if (f)
4742 extern void menubar_selection_callback
4743 (FRAME_PTR f, void * client_data);
4744 menubar_selection_callback (f, (void *)msg.msg.wParam);
4747 check_visibility = 1;
4748 break;
4750 case WM_DISPLAYCHANGE:
4751 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
4753 if (f)
4755 dpyinfo->n_cbits = msg.msg.wParam;
4756 DebPrint (("display change: %d %d\n",
4757 (short) LOWORD (msg.msg.lParam),
4758 (short) HIWORD (msg.msg.lParam)));
4761 check_visibility = 1;
4762 break;
4764 default:
4765 /* Check for messages registered at runtime. */
4766 if (msg.msg.message == msh_mousewheel)
4768 /* Forward MSH_MOUSEWHEEL as WM_MOUSEWHEEL. */
4769 msg.msg.message = WM_MOUSEWHEEL;
4770 prepend_msg (&msg);
4772 break;
4775 if (inev.kind != NO_EVENT)
4777 kbd_buffer_store_event_hold (&inev, hold_quit);
4778 count++;
4781 if (do_help
4782 && !(hold_quit && hold_quit->kind != NO_EVENT))
4784 Lisp_Object frame;
4786 if (f)
4787 XSETFRAME (frame, f);
4788 else
4789 frame = Qnil;
4791 if (do_help > 0)
4793 if (NILP (help_echo_string))
4795 help_echo_object = help_echo_window = Qnil;
4796 help_echo_pos = -1;
4799 any_help_event_p = 1;
4800 gen_help_event (help_echo_string, frame, help_echo_window,
4801 help_echo_object, help_echo_pos);
4803 else
4805 help_echo_string = Qnil;
4806 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
4808 count++;
4812 /* If the focus was just given to an autoraising frame,
4813 raise it now. */
4814 /* ??? This ought to be able to handle more than one such frame. */
4815 if (pending_autoraise_frame)
4817 x_raise_frame (pending_autoraise_frame);
4818 pending_autoraise_frame = 0;
4821 /* Check which frames are still visisble, if we have enqueued any user
4822 events or been notified of events that may affect visibility. We
4823 do this here because there doesn't seem to be any direct
4824 notification from Windows that the visibility of a window has
4825 changed (at least, not in all cases). */
4826 if (count > 0 || check_visibility)
4828 Lisp_Object tail, frame;
4830 FOR_EACH_FRAME (tail, frame)
4832 FRAME_PTR f = XFRAME (frame);
4833 /* The tooltip has been drawn already. Avoid the
4834 SET_FRAME_GARBAGED below. */
4835 if (EQ (frame, tip_frame))
4836 continue;
4838 /* Check "visible" frames and mark each as obscured or not.
4839 Note that async_visible is nonzero for unobscured and
4840 obscured frames, but zero for hidden and iconified frames. */
4841 if (FRAME_W32_P (f) && f->async_visible)
4843 RECT clipbox;
4844 HDC hdc;
4846 enter_crit ();
4847 /* Query clipping rectangle for the entire window area
4848 (GetWindowDC), not just the client portion (GetDC).
4849 Otherwise, the scrollbars and menubar aren't counted as
4850 part of the visible area of the frame, and we may think
4851 the frame is obscured when really a scrollbar is still
4852 visible and gets WM_PAINT messages above. */
4853 hdc = GetWindowDC (FRAME_W32_WINDOW (f));
4854 GetClipBox (hdc, &clipbox);
4855 ReleaseDC (FRAME_W32_WINDOW (f), hdc);
4856 leave_crit ();
4858 if (clipbox.right == clipbox.left
4859 || clipbox.bottom == clipbox.top)
4861 /* Frame has become completely obscured so mark as
4862 such (we do this by setting async_visible to 2 so
4863 that FRAME_VISIBLE_P is still true, but redisplay
4864 will skip it). */
4865 f->async_visible = 2;
4867 if (!FRAME_OBSCURED_P (f))
4869 DebPrint (("frame %p (%s) obscured\n", f,
4870 SDATA (f->name)));
4873 else
4875 /* Frame is not obscured, so mark it as such. */
4876 f->async_visible = 1;
4878 if (FRAME_OBSCURED_P (f))
4880 SET_FRAME_GARBAGED (f);
4881 DebPrint (("obscured frame %p (%s) found to be visible\n", f,
4882 SDATA (f->name)));
4884 /* Force a redisplay sooner or later. */
4885 record_asynch_buffer_change ();
4892 UNBLOCK_INPUT;
4893 return count;
4898 /***********************************************************************
4899 Text Cursor
4900 ***********************************************************************/
4902 /* Set clipping for output in glyph row ROW. W is the window in which
4903 we operate. GC is the graphics context to set clipping in.
4905 ROW may be a text row or, e.g., a mode line. Text rows must be
4906 clipped to the interior of the window dedicated to text display,
4907 mode lines must be clipped to the whole window. */
4909 static void
4910 w32_clip_to_row (w, row, area, hdc)
4911 struct window *w;
4912 struct glyph_row *row;
4913 int area;
4914 HDC hdc;
4916 struct frame *f = XFRAME (WINDOW_FRAME (w));
4917 RECT clip_rect;
4918 int window_x, window_y, window_width;
4920 window_box (w, area, &window_x, &window_y, &window_width, 0);
4922 clip_rect.left = window_x;
4923 clip_rect.top = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
4924 clip_rect.top = max (clip_rect.top, window_y);
4925 clip_rect.right = clip_rect.left + window_width;
4926 clip_rect.bottom = clip_rect.top + row->visible_height;
4928 w32_set_clip_rectangle (hdc, &clip_rect);
4932 /* Draw a hollow box cursor on window W in glyph row ROW. */
4934 static void
4935 x_draw_hollow_cursor (w, row)
4936 struct window *w;
4937 struct glyph_row *row;
4939 struct frame *f = XFRAME (WINDOW_FRAME (w));
4940 HDC hdc;
4941 RECT rect;
4942 int left, top, h;
4943 struct glyph *cursor_glyph;
4944 HBRUSH hb = CreateSolidBrush (f->output_data.w32->cursor_pixel);
4946 /* Get the glyph the cursor is on. If we can't tell because
4947 the current matrix is invalid or such, give up. */
4948 cursor_glyph = get_phys_cursor_glyph (w);
4949 if (cursor_glyph == NULL)
4950 return;
4952 /* Compute frame-relative coordinates for phys cursor. */
4953 get_phys_cursor_geometry (w, row, cursor_glyph, &left, &top, &h);
4954 rect.left = left;
4955 rect.top = top;
4956 rect.bottom = rect.top + h;
4957 rect.right = rect.left + w->phys_cursor_width;
4959 hdc = get_frame_dc (f);
4960 /* Set clipping, draw the rectangle, and reset clipping again. */
4961 w32_clip_to_row (w, row, TEXT_AREA, hdc);
4962 FrameRect (hdc, &rect, hb);
4963 DeleteObject (hb);
4964 w32_set_clip_rectangle (hdc, NULL);
4965 release_frame_dc (f, hdc);
4969 /* Draw a bar cursor on window W in glyph row ROW.
4971 Implementation note: One would like to draw a bar cursor with an
4972 angle equal to the one given by the font property XA_ITALIC_ANGLE.
4973 Unfortunately, I didn't find a font yet that has this property set.
4974 --gerd. */
4976 static void
4977 x_draw_bar_cursor (w, row, width, kind)
4978 struct window *w;
4979 struct glyph_row *row;
4980 int width;
4981 enum text_cursor_kinds kind;
4983 struct frame *f = XFRAME (w->frame);
4984 struct glyph *cursor_glyph;
4986 /* If cursor is out of bounds, don't draw garbage. This can happen
4987 in mini-buffer windows when switching between echo area glyphs
4988 and mini-buffer. */
4989 cursor_glyph = get_phys_cursor_glyph (w);
4990 if (cursor_glyph == NULL)
4991 return;
4993 /* If on an image, draw like a normal cursor. That's usually better
4994 visible than drawing a bar, esp. if the image is large so that
4995 the bar might not be in the window. */
4996 if (cursor_glyph->type == IMAGE_GLYPH)
4998 struct glyph_row *row;
4999 row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
5000 draw_phys_cursor_glyph (w, row, DRAW_CURSOR);
5002 else
5004 COLORREF cursor_color = f->output_data.w32->cursor_pixel;
5005 struct face *face = FACE_FROM_ID (f, cursor_glyph->face_id);
5006 int x;
5007 HDC hdc;
5009 /* If the glyph's background equals the color we normally draw
5010 the bar cursor in, the bar cursor in its normal color is
5011 invisible. Use the glyph's foreground color instead in this
5012 case, on the assumption that the glyph's colors are chosen so
5013 that the glyph is legible. */
5014 if (face->background == cursor_color)
5015 cursor_color = face->foreground;
5017 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
5019 hdc = get_frame_dc (f);
5020 w32_clip_to_row (w, row, TEXT_AREA, hdc);
5022 if (kind == BAR_CURSOR)
5024 if (width < 0)
5025 width = FRAME_CURSOR_WIDTH (f);
5026 width = min (cursor_glyph->pixel_width, width);
5028 w->phys_cursor_width = width;
5030 w32_fill_area (f, hdc, cursor_color, x,
5031 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
5032 width, row->height);
5034 else
5036 int dummy_x, dummy_y, dummy_h;
5038 if (width < 0)
5039 width = row->height;
5041 width = min (row->height, width);
5043 get_phys_cursor_geometry (w, row, cursor_glyph, &dummy_x,
5044 &dummy_y, &dummy_h);
5045 w32_fill_area (f, hdc, cursor_color, x,
5046 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y +
5047 row->height - width),
5048 w->phys_cursor_width, width);
5051 w32_set_clip_rectangle (hdc, NULL);
5052 release_frame_dc (f, hdc);
5057 /* RIF: Define cursor CURSOR on frame F. */
5059 static void
5060 w32_define_frame_cursor (f, cursor)
5061 struct frame *f;
5062 Cursor cursor;
5064 w32_define_cursor (FRAME_W32_WINDOW (f), cursor);
5068 /* RIF: Clear area on frame F. */
5070 static void
5071 w32_clear_frame_area (f, x, y, width, height)
5072 struct frame *f;
5073 int x, y, width, height;
5075 HDC hdc;
5077 hdc = get_frame_dc (f);
5078 w32_clear_area (f, hdc, x, y, width, height);
5079 release_frame_dc (f, hdc);
5082 /* RIF: Draw or clear cursor on window W. */
5084 static void
5085 w32_draw_window_cursor (w, glyph_row, x, y, cursor_type, cursor_width, on_p, active_p)
5086 struct window *w;
5087 struct glyph_row *glyph_row;
5088 int x, y;
5089 int cursor_type, cursor_width;
5090 int on_p, active_p;
5092 if (on_p)
5094 /* If the user wants to use the system caret, make sure our own
5095 cursor remains invisible. */
5096 if (w32_use_visible_system_caret)
5098 /* Call to erase_phys_cursor here seems to use the
5099 wrong values of w->phys_cursor, as they have been
5100 overwritten before this function was called. */
5101 if (w->phys_cursor_type != NO_CURSOR)
5102 erase_phys_cursor (w);
5104 cursor_type = w->phys_cursor_type = NO_CURSOR;
5105 w->phys_cursor_width = -1;
5107 else
5109 w->phys_cursor_type = cursor_type;
5112 w->phys_cursor_on_p = 1;
5114 /* If this is the active cursor, we need to track it with the
5115 system caret, so third party software like screen magnifiers
5116 and speech synthesizers can follow the cursor. */
5117 if (active_p)
5119 struct frame *f = XFRAME (WINDOW_FRAME (w));
5120 HWND hwnd = FRAME_W32_WINDOW (f);
5122 w32_system_caret_x
5123 = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
5124 w32_system_caret_y
5125 = (WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y)
5126 + glyph_row->ascent - w->phys_cursor_ascent);
5128 PostMessage (hwnd, WM_IME_STARTCOMPOSITION, 0, 0);
5130 /* If the size of the active cursor changed, destroy the old
5131 system caret. */
5132 if (w32_system_caret_hwnd
5133 && (w32_system_caret_height != w->phys_cursor_height))
5134 PostMessage (hwnd, WM_EMACS_DESTROY_CARET, 0, 0);
5136 w32_system_caret_height = w->phys_cursor_height;
5138 /* Move the system caret. */
5139 PostMessage (hwnd, WM_EMACS_TRACK_CARET, 0, 0);
5142 if (glyph_row->exact_window_width_line_p
5143 && w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])
5145 glyph_row->cursor_in_fringe_p = 1;
5146 draw_fringe_bitmap (w, glyph_row, 0);
5147 return;
5150 switch (cursor_type)
5152 case HOLLOW_BOX_CURSOR:
5153 x_draw_hollow_cursor (w, glyph_row);
5154 break;
5156 case FILLED_BOX_CURSOR:
5157 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
5158 break;
5160 case BAR_CURSOR:
5161 x_draw_bar_cursor (w, glyph_row, cursor_width, BAR_CURSOR);
5162 break;
5164 case HBAR_CURSOR:
5165 x_draw_bar_cursor (w, glyph_row, cursor_width, HBAR_CURSOR);
5166 break;
5168 case NO_CURSOR:
5169 w->phys_cursor_width = 0;
5170 break;
5172 default:
5173 abort ();
5180 /* Icons. */
5183 x_bitmap_icon (f, icon)
5184 struct frame *f;
5185 Lisp_Object icon;
5187 HANDLE main_icon;
5188 HANDLE small_icon = NULL;
5190 if (FRAME_W32_WINDOW (f) == 0)
5191 return 1;
5193 if (NILP (icon))
5194 main_icon = LoadIcon (hinst, EMACS_CLASS);
5195 else if (STRINGP (icon))
5197 /* Load the main icon from the named file. */
5198 main_icon = LoadImage (NULL, (LPCTSTR) SDATA (icon), IMAGE_ICON, 0, 0,
5199 LR_DEFAULTSIZE | LR_LOADFROMFILE);
5200 /* Try to load a small icon to go with it. */
5201 small_icon = LoadImage (NULL, (LPCSTR) SDATA (icon), IMAGE_ICON,
5202 GetSystemMetrics (SM_CXSMICON),
5203 GetSystemMetrics (SM_CYSMICON),
5204 LR_LOADFROMFILE);
5206 else if (SYMBOLP (icon))
5208 LPCTSTR name;
5210 if (EQ (icon, intern ("application")))
5211 name = (LPCTSTR) IDI_APPLICATION;
5212 else if (EQ (icon, intern ("hand")))
5213 name = (LPCTSTR) IDI_HAND;
5214 else if (EQ (icon, intern ("question")))
5215 name = (LPCTSTR) IDI_QUESTION;
5216 else if (EQ (icon, intern ("exclamation")))
5217 name = (LPCTSTR) IDI_EXCLAMATION;
5218 else if (EQ (icon, intern ("asterisk")))
5219 name = (LPCTSTR) IDI_ASTERISK;
5220 else if (EQ (icon, intern ("winlogo")))
5221 name = (LPCTSTR) IDI_WINLOGO;
5222 else
5223 return 1;
5225 main_icon = LoadIcon (NULL, name);
5227 else
5228 return 1;
5230 if (main_icon == NULL)
5231 return 1;
5233 PostMessage (FRAME_W32_WINDOW (f), WM_SETICON, (WPARAM) ICON_BIG,
5234 (LPARAM) main_icon);
5236 /* If there is a small icon that goes with it, set that too. */
5237 if (small_icon)
5238 PostMessage (FRAME_W32_WINDOW (f), WM_SETICON, (WPARAM) ICON_SMALL,
5239 (LPARAM) small_icon);
5241 return 0;
5245 /************************************************************************
5246 Handling X errors
5247 ************************************************************************/
5249 /* Display Error Handling functions not used on W32. Listing them here
5250 helps diff stay in step when comparing w32term.c with xterm.c.
5252 x_error_catcher (display, error)
5253 x_catch_errors (dpy)
5254 x_catch_errors_unwind (old_val)
5255 x_check_errors (dpy, format)
5256 x_fully_uncatch_errors ()
5257 x_catching_errors ()
5258 x_had_errors_p (dpy)
5259 x_clear_errors (dpy)
5260 x_uncatch_errors (dpy, count)
5261 x_trace_wire ()
5262 x_connection_signal (signalnum)
5263 x_connection_closed (dpy, error_message)
5264 x_error_quitter (display, error)
5265 x_error_handler (display, error)
5266 x_io_error_quitter (display)
5271 /* Changing the font of the frame. */
5273 Lisp_Object
5274 x_new_font (f, font_object, fontset)
5275 struct frame *f;
5276 Lisp_Object font_object;
5277 int fontset;
5279 struct font *font = XFONT_OBJECT (font_object);
5281 if (fontset < 0)
5282 fontset = fontset_from_font (font_object);
5283 FRAME_FONTSET (f) = fontset;
5284 if (FRAME_FONT (f) == font)
5285 /* This font is already set in frame F. There's nothing more to
5286 do. */
5287 return font_object;
5289 FRAME_FONT (f) = font;
5290 FRAME_BASELINE_OFFSET (f) = font->baseline_offset;
5291 FRAME_COLUMN_WIDTH (f) = font->average_width;
5292 FRAME_SPACE_WIDTH (f) = font->space_width;
5293 FRAME_LINE_HEIGHT (f) = font->height;
5295 compute_fringe_widths (f, 1);
5297 /* Compute the scroll bar width in character columns. */
5298 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
5300 int wid = FRAME_COLUMN_WIDTH (f);
5301 FRAME_CONFIG_SCROLL_BAR_COLS (f)
5302 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + wid - 1) / wid;
5304 else
5306 int wid = FRAME_COLUMN_WIDTH (f);
5307 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
5310 /* Now make the frame display the given font. */
5311 if (FRAME_X_WINDOW (f) != 0)
5313 /* Don't change the size of a tip frame; there's no point in
5314 doing it because it's done in Fx_show_tip, and it leads to
5315 problems because the tip frame has no widget. */
5316 if (NILP (tip_frame) || XFRAME (tip_frame) != f)
5317 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
5320 /* X version sets font of input methods here also. */
5322 return font_object;
5326 /***********************************************************************
5327 TODO: W32 Input Methods
5328 ***********************************************************************/
5329 /* Listing missing functions from xterm.c helps diff stay in step.
5331 xim_destroy_callback (xim, client_data, call_data)
5332 xim_open_dpy (dpyinfo, resource_name)
5333 struct xim_inst_t
5334 xim_instantiate_callback (display, client_data, call_data)
5335 xim_initialize (dpyinfo, resource_name)
5336 xim_close_dpy (dpyinfo)
5341 /* Calculate the absolute position in frame F
5342 from its current recorded position values and gravity. */
5344 void
5345 x_calc_absolute_position (f)
5346 struct frame *f;
5348 int flags = f->size_hint_flags;
5350 /* The sum of the widths of the frame's left and right borders, and
5351 the sum of the heights of the frame's top and bottom borders (in
5352 pixels) drawn by Windows. */
5353 unsigned int left_right_borders_width, top_bottom_borders_height;
5355 /* Try to get the actual values of these two variables. We compute
5356 the border width (height) by subtracting the width (height) of
5357 the frame's client area from the width (height) of the frame's
5358 entire window. */
5359 WINDOWPLACEMENT wp = { 0 };
5360 RECT client_rect = { 0 };
5362 if (GetWindowPlacement (FRAME_W32_WINDOW (f), &wp)
5363 && GetClientRect (FRAME_W32_WINDOW (f), &client_rect))
5365 left_right_borders_width =
5366 (wp.rcNormalPosition.right - wp.rcNormalPosition.left) -
5367 (client_rect.right - client_rect.left);
5369 top_bottom_borders_height =
5370 (wp.rcNormalPosition.bottom - wp.rcNormalPosition.top) -
5371 (client_rect.bottom - client_rect.top);
5373 else
5375 /* Use sensible default values. */
5376 left_right_borders_width = 8;
5377 top_bottom_borders_height = 32;
5380 /* Treat negative positions as relative to the rightmost bottommost
5381 position that fits on the screen. */
5382 if (flags & XNegative)
5383 f->left_pos = (x_display_pixel_width (FRAME_W32_DISPLAY_INFO (f))
5384 - FRAME_PIXEL_WIDTH (f)
5385 + f->left_pos
5386 - (left_right_borders_width - 1));
5388 if (flags & YNegative)
5389 f->top_pos = (x_display_pixel_height (FRAME_W32_DISPLAY_INFO (f))
5390 - FRAME_PIXEL_HEIGHT (f)
5391 + f->top_pos
5392 - (top_bottom_borders_height - 1));
5394 /* The left_pos and top_pos are now relative to the top and left
5395 screen edges, so the flags should correspond. */
5396 f->size_hint_flags &= ~ (XNegative | YNegative);
5399 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
5400 to really change the position, and 0 when calling from
5401 x_make_frame_visible (in that case, XOFF and YOFF are the current
5402 position values). It is -1 when calling from x_set_frame_parameters,
5403 which means, do adjust for borders but don't change the gravity. */
5405 void
5406 x_set_offset (f, xoff, yoff, change_gravity)
5407 struct frame *f;
5408 register int xoff, yoff;
5409 int change_gravity;
5411 int modified_top, modified_left;
5413 if (change_gravity > 0)
5415 f->top_pos = yoff;
5416 f->left_pos = xoff;
5417 f->size_hint_flags &= ~ (XNegative | YNegative);
5418 if (xoff < 0)
5419 f->size_hint_flags |= XNegative;
5420 if (yoff < 0)
5421 f->size_hint_flags |= YNegative;
5422 f->win_gravity = NorthWestGravity;
5424 x_calc_absolute_position (f);
5426 BLOCK_INPUT;
5427 x_wm_set_size_hint (f, (long) 0, 0);
5429 modified_left = f->left_pos;
5430 modified_top = f->top_pos;
5432 my_set_window_pos (FRAME_W32_WINDOW (f),
5433 NULL,
5434 modified_left, modified_top,
5435 0, 0,
5436 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
5437 UNBLOCK_INPUT;
5441 /* Check if we need to resize the frame due to a fullscreen request.
5442 If so needed, resize the frame. */
5443 static void
5444 x_check_fullscreen (f)
5445 struct frame *f;
5447 if (f->want_fullscreen & FULLSCREEN_BOTH)
5449 int width, height, ign;
5451 x_real_positions (f, &f->left_pos, &f->top_pos);
5453 x_fullscreen_adjust (f, &width, &height, &ign, &ign);
5455 /* We do not need to move the window, it shall be taken care of
5456 when setting WM manager hints. */
5457 if (FRAME_COLS (f) != width || FRAME_LINES (f) != height)
5459 change_frame_size (f, height, width, 0, 1, 0);
5460 SET_FRAME_GARBAGED (f);
5461 cancel_mouse_face (f);
5463 /* Wait for the change of frame size to occur */
5464 f->want_fullscreen |= FULLSCREEN_WAIT;
5469 /* Call this to change the size of frame F's x-window.
5470 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
5471 for this size change and subsequent size changes.
5472 Otherwise we leave the window gravity unchanged. */
5474 void
5475 x_set_window_size (f, change_gravity, cols, rows)
5476 struct frame *f;
5477 int change_gravity;
5478 int cols, rows;
5480 int pixelwidth, pixelheight;
5482 BLOCK_INPUT;
5484 check_frame_size (f, &rows, &cols);
5485 f->scroll_bar_actual_width
5486 = FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f);
5488 compute_fringe_widths (f, 0);
5490 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols);
5491 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows);
5493 f->win_gravity = NorthWestGravity;
5494 x_wm_set_size_hint (f, (long) 0, 0);
5497 RECT rect;
5499 rect.left = rect.top = 0;
5500 rect.right = pixelwidth;
5501 rect.bottom = pixelheight;
5503 AdjustWindowRect(&rect, f->output_data.w32->dwStyle,
5504 FRAME_EXTERNAL_MENU_BAR (f));
5506 my_set_window_pos (FRAME_W32_WINDOW (f),
5507 NULL,
5508 0, 0,
5509 rect.right - rect.left,
5510 rect.bottom - rect.top,
5511 SWP_NOZORDER | SWP_NOMOVE | SWP_NOACTIVATE);
5514 #if 0
5515 /* The following mirrors what is done in xterm.c. It appears to be
5516 for informing lisp of the new size immediately, while the actual
5517 resize will happen asynchronously. But on Windows, the menu bar
5518 automatically wraps when the frame is too narrow to contain it,
5519 and that causes any calculations made here to come out wrong. The
5520 end is some nasty buggy behavior, including the potential loss
5521 of the minibuffer.
5523 Disabling this code is either not sufficient to fix the problems
5524 completely, or it causes fresh problems, but at least it removes
5525 the most problematic symptom of the minibuffer becoming unusable.
5527 -----------------------------------------------------------------
5529 Now, strictly speaking, we can't be sure that this is accurate,
5530 but the window manager will get around to dealing with the size
5531 change request eventually, and we'll hear how it went when the
5532 ConfigureNotify event gets here.
5534 We could just not bother storing any of this information here,
5535 and let the ConfigureNotify event set everything up, but that
5536 might be kind of confusing to the Lisp code, since size changes
5537 wouldn't be reported in the frame parameters until some random
5538 point in the future when the ConfigureNotify event arrives.
5540 We pass 1 for DELAY since we can't run Lisp code inside of
5541 a BLOCK_INPUT. */
5542 change_frame_size (f, rows, cols, 0, 1, 0);
5543 FRAME_PIXEL_WIDTH (f) = pixelwidth;
5544 FRAME_PIXEL_HEIGHT (f) = pixelheight;
5546 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
5547 receive in the ConfigureNotify event; if we get what we asked
5548 for, then the event won't cause the screen to become garbaged, so
5549 we have to make sure to do it here. */
5550 SET_FRAME_GARBAGED (f);
5552 /* If cursor was outside the new size, mark it as off. */
5553 mark_window_cursors_off (XWINDOW (f->root_window));
5555 /* Clear out any recollection of where the mouse highlighting was,
5556 since it might be in a place that's outside the new frame size.
5557 Actually checking whether it is outside is a pain in the neck,
5558 so don't try--just let the highlighting be done afresh with new size. */
5559 cancel_mouse_face (f);
5560 #endif
5562 UNBLOCK_INPUT;
5565 /* Mouse warping. */
5567 void x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y);
5569 void
5570 x_set_mouse_position (f, x, y)
5571 struct frame *f;
5572 int x, y;
5574 int pix_x, pix_y;
5576 pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2;
5577 pix_y = FRAME_LINE_TO_PIXEL_Y (f, y) + FRAME_LINE_HEIGHT (f) / 2;
5579 if (pix_x < 0) pix_x = 0;
5580 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
5582 if (pix_y < 0) pix_y = 0;
5583 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
5585 x_set_mouse_pixel_position (f, pix_x, pix_y);
5588 void
5589 x_set_mouse_pixel_position (f, pix_x, pix_y)
5590 struct frame *f;
5591 int pix_x, pix_y;
5593 RECT rect;
5594 POINT pt;
5596 BLOCK_INPUT;
5598 GetClientRect (FRAME_W32_WINDOW (f), &rect);
5599 pt.x = rect.left + pix_x;
5600 pt.y = rect.top + pix_y;
5601 ClientToScreen (FRAME_W32_WINDOW (f), &pt);
5603 SetCursorPos (pt.x, pt.y);
5605 UNBLOCK_INPUT;
5609 /* focus shifting, raising and lowering. */
5611 void
5612 x_focus_on_frame (f)
5613 struct frame *f;
5615 struct w32_display_info *dpyinfo = &one_w32_display_info;
5617 /* Give input focus to frame. */
5618 BLOCK_INPUT;
5619 #if 0
5620 /* Try not to change its Z-order if possible. */
5621 if (x_window_to_frame (dpyinfo, GetForegroundWindow ()))
5622 my_set_focus (f, FRAME_W32_WINDOW (f));
5623 else
5624 #endif
5625 my_set_foreground_window (FRAME_W32_WINDOW (f));
5626 UNBLOCK_INPUT;
5629 void
5630 x_unfocus_frame (f)
5631 struct frame *f;
5635 /* Raise frame F. */
5636 void
5637 x_raise_frame (f)
5638 struct frame *f;
5640 BLOCK_INPUT;
5642 /* Strictly speaking, raise-frame should only change the frame's Z
5643 order, leaving input focus unchanged. This is reasonable behavior
5644 on X where the usual policy is point-to-focus. However, this
5645 behavior would be very odd on Windows where the usual policy is
5646 click-to-focus.
5648 On X, if the mouse happens to be over the raised frame, it gets
5649 input focus anyway (so the window with focus will never be
5650 completely obscured) - if not, then just moving the mouse over it
5651 is sufficient to give it focus. On Windows, the user must actually
5652 click on the frame (preferrably the title bar so as not to move
5653 point), which is more awkward. Also, no other Windows program
5654 raises a window to the top but leaves another window (possibly now
5655 completely obscured) with input focus.
5657 Because there is a system setting on Windows that allows the user
5658 to choose the point to focus policy, we make the strict semantics
5659 optional, but by default we grab focus when raising. */
5661 if (NILP (Vw32_grab_focus_on_raise))
5663 /* The obvious call to my_set_window_pos doesn't work if Emacs is
5664 not already the foreground application: the frame is raised
5665 above all other frames belonging to us, but not above the
5666 current top window. To achieve that, we have to resort to this
5667 more cumbersome method. */
5669 HDWP handle = BeginDeferWindowPos (2);
5670 if (handle)
5672 DeferWindowPos (handle,
5673 FRAME_W32_WINDOW (f),
5674 HWND_TOP,
5675 0, 0, 0, 0,
5676 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
5678 DeferWindowPos (handle,
5679 GetForegroundWindow (),
5680 FRAME_W32_WINDOW (f),
5681 0, 0, 0, 0,
5682 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
5684 EndDeferWindowPos (handle);
5687 else
5689 my_set_foreground_window (FRAME_W32_WINDOW (f));
5692 UNBLOCK_INPUT;
5695 /* Lower frame F. */
5696 void
5697 x_lower_frame (f)
5698 struct frame *f;
5700 BLOCK_INPUT;
5701 my_set_window_pos (FRAME_W32_WINDOW (f),
5702 HWND_BOTTOM,
5703 0, 0, 0, 0,
5704 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
5705 UNBLOCK_INPUT;
5708 static void
5709 w32_frame_raise_lower (f, raise_flag)
5710 FRAME_PTR f;
5711 int raise_flag;
5713 if (! FRAME_W32_P (f))
5714 return;
5716 if (raise_flag)
5717 x_raise_frame (f);
5718 else
5719 x_lower_frame (f);
5722 /* Change of visibility. */
5724 /* This tries to wait until the frame is really visible.
5725 However, if the window manager asks the user where to position
5726 the frame, this will return before the user finishes doing that.
5727 The frame will not actually be visible at that time,
5728 but it will become visible later when the window manager
5729 finishes with it. */
5731 void
5732 x_make_frame_visible (f)
5733 struct frame *f;
5735 Lisp_Object type;
5737 BLOCK_INPUT;
5739 type = x_icon_type (f);
5740 if (!NILP (type))
5741 x_bitmap_icon (f, type);
5743 if (! FRAME_VISIBLE_P (f))
5745 /* We test FRAME_GARBAGED_P here to make sure we don't
5746 call x_set_offset a second time
5747 if we get to x_make_frame_visible a second time
5748 before the window gets really visible. */
5749 if (! FRAME_ICONIFIED_P (f)
5750 && ! f->output_data.w32->asked_for_visible)
5752 RECT workarea_rect;
5753 RECT window_rect;
5755 /* Adjust vertical window position in order to avoid being
5756 covered by a task bar placed at the bottom of the desktop. */
5757 SystemParametersInfo(SPI_GETWORKAREA, 0, &workarea_rect, 0);
5758 GetWindowRect(FRAME_W32_WINDOW(f), &window_rect);
5759 if (window_rect.bottom > workarea_rect.bottom
5760 && window_rect.top > workarea_rect.top)
5761 f->top_pos = max (window_rect.top
5762 - window_rect.bottom + workarea_rect.bottom,
5763 workarea_rect.top);
5765 x_set_offset (f, f->left_pos, f->top_pos, 0);
5768 f->output_data.w32->asked_for_visible = 1;
5770 /* The first of these seems to give more expected behavior, but
5771 was added as a commented out line in Sept 1997, with the
5772 second version remaining uncommented. There may have been
5773 some problem with it that led to it not being enabled,
5774 so the old version remains commented out below in case we
5775 decide we need to go back to it [23.0.60 2008-06-09]. */
5776 my_show_window (f, FRAME_W32_WINDOW (f),
5777 f->async_iconified ? SW_RESTORE : SW_SHOW);
5778 /* my_show_window (f, FRAME_W32_WINDOW (f), SW_SHOWNORMAL); */
5781 /* Synchronize to ensure Emacs knows the frame is visible
5782 before we do anything else. We do this loop with input not blocked
5783 so that incoming events are handled. */
5785 Lisp_Object frame;
5786 int count;
5788 /* This must come after we set COUNT. */
5789 UNBLOCK_INPUT;
5791 XSETFRAME (frame, f);
5793 /* Wait until the frame is visible. Process X events until a
5794 MapNotify event has been seen, or until we think we won't get a
5795 MapNotify at all.. */
5796 for (count = input_signal_count + 10;
5797 input_signal_count < count && !FRAME_VISIBLE_P (f);)
5799 /* Force processing of queued events. */
5800 /* TODO: x_sync equivalent? */
5802 /* Machines that do polling rather than SIGIO have been observed
5803 to go into a busy-wait here. So we'll fake an alarm signal
5804 to let the handler know that there's something to be read.
5805 We used to raise a real alarm, but it seems that the handler
5806 isn't always enabled here. This is probably a bug. */
5807 if (input_polling_used ())
5809 /* It could be confusing if a real alarm arrives while processing
5810 the fake one. Turn it off and let the handler reset it. */
5811 int old_poll_suppress_count = poll_suppress_count;
5812 poll_suppress_count = 1;
5813 poll_for_input_1 ();
5814 poll_suppress_count = old_poll_suppress_count;
5817 FRAME_SAMPLE_VISIBILITY (f);
5821 /* Change from mapped state to withdrawn state. */
5823 /* Make the frame visible (mapped and not iconified). */
5825 x_make_frame_invisible (f)
5826 struct frame *f;
5828 /* Don't keep the highlight on an invisible frame. */
5829 if (FRAME_W32_DISPLAY_INFO (f)->x_highlight_frame == f)
5830 FRAME_W32_DISPLAY_INFO (f)->x_highlight_frame = 0;
5832 BLOCK_INPUT;
5834 my_show_window (f, FRAME_W32_WINDOW (f), SW_HIDE);
5836 /* We can't distinguish this from iconification
5837 just by the event that we get from the server.
5838 So we can't win using the usual strategy of letting
5839 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
5840 and synchronize with the server to make sure we agree. */
5841 f->visible = 0;
5842 FRAME_ICONIFIED_P (f) = 0;
5843 f->async_visible = 0;
5844 f->async_iconified = 0;
5846 UNBLOCK_INPUT;
5849 /* Change window state from mapped to iconified. */
5851 void
5852 x_iconify_frame (f)
5853 struct frame *f;
5855 Lisp_Object type;
5857 /* Don't keep the highlight on an invisible frame. */
5858 if (FRAME_W32_DISPLAY_INFO (f)->x_highlight_frame == f)
5859 FRAME_W32_DISPLAY_INFO (f)->x_highlight_frame = 0;
5861 if (f->async_iconified)
5862 return;
5864 BLOCK_INPUT;
5866 type = x_icon_type (f);
5867 if (!NILP (type))
5868 x_bitmap_icon (f, type);
5870 /* Simulate the user minimizing the frame. */
5871 SendMessage (FRAME_W32_WINDOW (f), WM_SYSCOMMAND, SC_MINIMIZE, 0);
5873 UNBLOCK_INPUT;
5877 /* Free X resources of frame F. */
5879 void
5880 x_free_frame_resources (f)
5881 struct frame *f;
5883 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
5885 BLOCK_INPUT;
5887 /* We must free faces before destroying windows because some
5888 font-driver (e.g. xft) access a window while finishing a
5889 face. */
5890 if (FRAME_FACE_CACHE (f))
5891 free_frame_faces (f);
5893 if (FRAME_W32_WINDOW (f))
5894 my_destroy_window (f, FRAME_W32_WINDOW (f));
5896 free_frame_menubar (f);
5898 unload_color (f, FRAME_FOREGROUND_PIXEL (f));
5899 unload_color (f, FRAME_BACKGROUND_PIXEL (f));
5900 unload_color (f, f->output_data.w32->cursor_pixel);
5901 unload_color (f, f->output_data.w32->cursor_foreground_pixel);
5902 unload_color (f, f->output_data.w32->border_pixel);
5903 unload_color (f, f->output_data.w32->mouse_pixel);
5904 if (f->output_data.w32->white_relief.allocated_p)
5905 unload_color (f, f->output_data.w32->white_relief.pixel);
5906 if (f->output_data.w32->black_relief.allocated_p)
5907 unload_color (f, f->output_data.w32->black_relief.pixel);
5909 if (FRAME_FACE_CACHE (f))
5910 free_frame_faces (f);
5912 xfree (f->output_data.w32);
5913 f->output_data.w32 = NULL;
5915 if (f == dpyinfo->w32_focus_frame)
5916 dpyinfo->w32_focus_frame = 0;
5917 if (f == dpyinfo->w32_focus_event_frame)
5918 dpyinfo->w32_focus_event_frame = 0;
5919 if (f == dpyinfo->x_highlight_frame)
5920 dpyinfo->x_highlight_frame = 0;
5922 if (f == dpyinfo->mouse_face_mouse_frame)
5924 dpyinfo->mouse_face_beg_row
5925 = dpyinfo->mouse_face_beg_col = -1;
5926 dpyinfo->mouse_face_end_row
5927 = dpyinfo->mouse_face_end_col = -1;
5928 dpyinfo->mouse_face_window = Qnil;
5929 dpyinfo->mouse_face_deferred_gc = 0;
5930 dpyinfo->mouse_face_mouse_frame = 0;
5933 UNBLOCK_INPUT;
5937 /* Destroy the window of frame F. */
5938 void
5939 x_destroy_window (f)
5940 struct frame *f;
5942 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
5944 x_free_frame_resources (f);
5945 dpyinfo->reference_count--;
5949 /* Setting window manager hints. */
5951 /* Set the normal size hints for the window manager, for frame F.
5952 FLAGS is the flags word to use--or 0 meaning preserve the flags
5953 that the window now has.
5954 If USER_POSITION is nonzero, we set the USPosition
5955 flag (this is useful when FLAGS is 0). */
5956 void
5957 x_wm_set_size_hint (f, flags, user_position)
5958 struct frame *f;
5959 long flags;
5960 int user_position;
5962 Window window = FRAME_W32_WINDOW (f);
5964 enter_crit ();
5966 SetWindowLong (window, WND_FONTWIDTH_INDEX, FRAME_COLUMN_WIDTH (f));
5967 SetWindowLong (window, WND_LINEHEIGHT_INDEX, FRAME_LINE_HEIGHT (f));
5968 SetWindowLong (window, WND_BORDER_INDEX, FRAME_INTERNAL_BORDER_WIDTH (f));
5969 SetWindowLong (window, WND_SCROLLBAR_INDEX, f->scroll_bar_actual_width);
5971 leave_crit ();
5974 /* Window manager things */
5975 void
5976 x_wm_set_icon_position (f, icon_x, icon_y)
5977 struct frame *f;
5978 int icon_x, icon_y;
5980 #if 0
5981 Window window = FRAME_W32_WINDOW (f);
5983 f->display.x->wm_hints.flags |= IconPositionHint;
5984 f->display.x->wm_hints.icon_x = icon_x;
5985 f->display.x->wm_hints.icon_y = icon_y;
5987 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->display.x->wm_hints);
5988 #endif
5992 /***********************************************************************
5993 Initialization
5994 ***********************************************************************/
5996 static int w32_initialized = 0;
5998 void
5999 w32_initialize_display_info (display_name)
6000 Lisp_Object display_name;
6002 struct w32_display_info *dpyinfo = &one_w32_display_info;
6004 bzero (dpyinfo, sizeof (*dpyinfo));
6006 /* Put it on w32_display_name_list. */
6007 w32_display_name_list = Fcons (Fcons (display_name, Qnil),
6008 w32_display_name_list);
6009 dpyinfo->name_list_element = XCAR (w32_display_name_list);
6011 dpyinfo->w32_id_name
6012 = (char *) xmalloc (SCHARS (Vinvocation_name)
6013 + SCHARS (Vsystem_name)
6014 + 2);
6015 sprintf (dpyinfo->w32_id_name, "%s@%s",
6016 SDATA (Vinvocation_name), SDATA (Vsystem_name));
6018 /* Default Console mode values - overridden when running in GUI mode
6019 with values obtained from system metrics. */
6020 dpyinfo->resx = 1;
6021 dpyinfo->resy = 1;
6022 dpyinfo->n_planes = 1;
6023 dpyinfo->n_cbits = 4;
6024 dpyinfo->n_fonts = 0;
6025 dpyinfo->smallest_font_height = 1;
6026 dpyinfo->smallest_char_width = 1;
6028 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
6029 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
6030 dpyinfo->mouse_face_face_id = DEFAULT_FACE_ID;
6031 dpyinfo->mouse_face_window = Qnil;
6032 dpyinfo->mouse_face_overlay = Qnil;
6033 dpyinfo->mouse_face_hidden = 0;
6035 dpyinfo->vertical_scroll_bar_cursor = w32_load_cursor (IDC_ARROW);
6036 /* TODO: dpyinfo->gray */
6040 /* Create an xrdb-style database of resources to supercede registry settings.
6041 The database is just a concatenation of C strings, finished by an additional
6042 \0. The strings are submitted to some basic normalization, so
6044 [ *]option[ *]:[ *]value...
6046 becomes
6048 option:value...
6050 but any whitespace following value is not removed. */
6052 static char *
6053 w32_make_rdb (xrm_option)
6054 char *xrm_option;
6056 char *buffer = xmalloc (strlen (xrm_option) + 2);
6057 char *current = buffer;
6058 char ch;
6059 int in_option = 1;
6060 int before_value = 0;
6062 do {
6063 ch = *xrm_option++;
6065 if (ch == '\n')
6067 *current++ = '\0';
6068 in_option = 1;
6069 before_value = 0;
6071 else if (ch != ' ')
6073 *current++ = ch;
6074 if (in_option && (ch == ':'))
6076 in_option = 0;
6077 before_value = 1;
6079 else if (before_value)
6081 before_value = 0;
6084 else if (!(in_option || before_value))
6086 *current++ = ch;
6088 } while (ch);
6090 *current = '\0';
6092 return buffer;
6095 void
6096 x_flush (struct frame * f)
6097 { /* Nothing to do */ }
6100 extern frame_parm_handler w32_frame_parm_handlers[];
6102 static struct redisplay_interface w32_redisplay_interface =
6104 w32_frame_parm_handlers,
6105 x_produce_glyphs,
6106 x_write_glyphs,
6107 x_insert_glyphs,
6108 x_clear_end_of_line,
6109 x_scroll_run,
6110 x_after_update_window_line,
6111 x_update_window_begin,
6112 x_update_window_end,
6113 x_cursor_to,
6114 x_flush,
6115 0, /* flush_display_optional */
6116 x_clear_window_mouse_face,
6117 x_get_glyph_overhangs,
6118 x_fix_overlapping_area,
6119 w32_draw_fringe_bitmap,
6120 w32_define_fringe_bitmap,
6121 w32_destroy_fringe_bitmap,
6122 w32_compute_glyph_string_overhangs,
6123 x_draw_glyph_string,
6124 w32_define_frame_cursor,
6125 w32_clear_frame_area,
6126 w32_draw_window_cursor,
6127 w32_draw_vertical_window_border,
6128 w32_shift_glyphs_for_insert
6131 static void x_delete_terminal (struct terminal *term);
6133 static struct terminal *
6134 w32_create_terminal (struct w32_display_info *dpyinfo)
6136 struct terminal *terminal;
6138 terminal = create_terminal ();
6140 terminal->type = output_w32;
6141 terminal->display_info.w32 = dpyinfo;
6142 dpyinfo->terminal = terminal;
6144 /* MSVC does not type K&R functions with no arguments correctly, and
6145 so we must explicitly cast them. */
6146 terminal->clear_frame_hook = x_clear_frame;
6147 terminal->ins_del_lines_hook = x_ins_del_lines;
6148 terminal->delete_glyphs_hook = x_delete_glyphs;
6149 terminal->ring_bell_hook = w32_ring_bell;
6150 terminal->reset_terminal_modes_hook = w32_reset_terminal_modes;
6151 terminal->set_terminal_modes_hook = w32_set_terminal_modes;
6152 terminal->update_begin_hook = x_update_begin;
6153 terminal->update_end_hook = x_update_end;
6154 terminal->set_terminal_window_hook = w32_set_terminal_window;
6155 terminal->read_socket_hook = w32_read_socket;
6156 terminal->frame_up_to_date_hook = w32_frame_up_to_date;
6157 terminal->mouse_position_hook = w32_mouse_position;
6158 terminal->frame_rehighlight_hook = w32_frame_rehighlight;
6159 terminal->frame_raise_lower_hook = w32_frame_raise_lower;
6160 // terminal->fullscreen_hook = XTfullscreen_hook;
6161 terminal->set_vertical_scroll_bar_hook = w32_set_vertical_scroll_bar;
6162 terminal->condemn_scroll_bars_hook = w32_condemn_scroll_bars;
6163 terminal->redeem_scroll_bar_hook = w32_redeem_scroll_bar;
6164 terminal->judge_scroll_bars_hook = w32_judge_scroll_bars;
6166 terminal->delete_frame_hook = x_destroy_window;
6167 terminal->delete_terminal_hook = x_delete_terminal;
6169 terminal->rif = &w32_redisplay_interface;
6170 terminal->scroll_region_ok = 1; /* We'll scroll partial frames. */
6171 terminal->char_ins_del_ok = 1;
6172 terminal->line_ins_del_ok = 1; /* We'll just blt 'em. */
6173 terminal->fast_clear_end_of_line = 1; /* X does this well. */
6174 terminal->memory_below_frame = 0; /* We don't remember what scrolls
6175 off the bottom. */
6177 /* We don't yet support separate terminals on W32, so don't try to share
6178 keyboards between virtual terminals that are on the same physical
6179 terminal like X does. */
6180 terminal->kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
6181 init_kboard (terminal->kboard);
6182 terminal->kboard->Vwindow_system = intern ("w32");
6183 terminal->kboard->next_kboard = all_kboards;
6184 all_kboards = terminal->kboard;
6185 /* Don't let the initial kboard remain current longer than necessary.
6186 That would cause problems if a file loaded on startup tries to
6187 prompt in the mini-buffer. */
6188 if (current_kboard == initial_kboard)
6189 current_kboard = terminal->kboard;
6190 terminal->kboard->reference_count++;
6192 return terminal;
6195 static void
6196 x_delete_terminal (struct terminal *terminal)
6198 struct w32_display_info *dpyinfo = terminal->display_info.w32;
6199 int i;
6201 /* Protect against recursive calls. delete_frame in
6202 delete_terminal calls us back when it deletes our last frame. */
6203 if (!terminal->name)
6204 return;
6206 BLOCK_INPUT;
6208 x_delete_display (dpyinfo);
6209 UNBLOCK_INPUT;
6212 struct w32_display_info *
6213 w32_term_init (display_name, xrm_option, resource_name)
6214 Lisp_Object display_name;
6215 char *xrm_option;
6216 char *resource_name;
6218 struct w32_display_info *dpyinfo;
6219 struct terminal *terminal;
6220 HDC hdc;
6222 BLOCK_INPUT;
6224 if (!w32_initialized)
6226 w32_initialize ();
6227 w32_initialized = 1;
6230 w32_initialize_display_info (display_name);
6232 dpyinfo = &one_w32_display_info;
6233 terminal = w32_create_terminal (dpyinfo);
6235 /* Set the name of the terminal. */
6236 terminal->name = (char *) xmalloc (SBYTES (display_name) + 1);
6237 strncpy (terminal->name, SDATA (display_name), SBYTES (display_name));
6238 terminal->name[SBYTES (display_name)] = 0;
6240 dpyinfo->xrdb = xrm_option ? w32_make_rdb (xrm_option) : NULL;
6242 /* Put this display on the chain. */
6243 dpyinfo->next = x_display_list;
6244 x_display_list = dpyinfo;
6246 hdc = GetDC (NULL);
6248 dpyinfo->root_window = GetDesktopWindow ();
6249 dpyinfo->n_planes = GetDeviceCaps (hdc, PLANES);
6250 dpyinfo->n_cbits = GetDeviceCaps (hdc, BITSPIXEL);
6251 dpyinfo->resx = GetDeviceCaps (hdc, LOGPIXELSX);
6252 dpyinfo->resy = GetDeviceCaps (hdc, LOGPIXELSY);
6253 dpyinfo->has_palette = GetDeviceCaps (hdc, RASTERCAPS) & RC_PALETTE;
6254 ReleaseDC (NULL, hdc);
6256 /* initialise palette with white and black */
6258 XColor color;
6259 w32_defined_color (0, "white", &color, 1);
6260 w32_defined_color (0, "black", &color, 1);
6263 /* Add the default keyboard. */
6264 add_keyboard_wait_descriptor (0);
6266 /* Create Fringe Bitmaps and store them for later use.
6268 On W32, bitmaps are all unsigned short, as Windows requires
6269 bitmap data to be Word aligned. For some reason they are
6270 horizontally reflected compared to how they appear on X, so we
6271 need to bitswap and convert to unsigned shorts before creating
6272 the bitmaps. */
6273 w32_init_fringe (terminal->rif);
6275 #ifdef F_SETOWN
6276 fcntl (connection, F_SETOWN, getpid ());
6277 #endif /* ! defined (F_SETOWN) */
6279 #ifdef SIGIO
6280 if (interrupt_input)
6281 init_sigio (connection);
6282 #endif /* ! defined (SIGIO) */
6284 UNBLOCK_INPUT;
6286 return dpyinfo;
6289 /* Get rid of display DPYINFO, assuming all frames are already gone. */
6290 void
6291 x_delete_display (dpyinfo)
6292 struct w32_display_info *dpyinfo;
6294 /* Discard this display from w32_display_name_list and w32_display_list.
6295 We can't use Fdelq because that can quit. */
6296 if (! NILP (w32_display_name_list)
6297 && EQ (XCAR (w32_display_name_list), dpyinfo->name_list_element))
6298 w32_display_name_list = XCDR (w32_display_name_list);
6299 else
6301 Lisp_Object tail;
6303 tail = w32_display_name_list;
6304 while (CONSP (tail) && CONSP (XCDR (tail)))
6306 if (EQ (XCAR (XCDR (tail)), dpyinfo->name_list_element))
6308 XSETCDR (tail, XCDR (XCDR (tail)));
6309 break;
6311 tail = XCDR (tail);
6315 /* free palette table */
6317 struct w32_palette_entry * plist;
6319 plist = dpyinfo->color_list;
6320 while (plist)
6322 struct w32_palette_entry * pentry = plist;
6323 plist = plist->next;
6324 xfree (pentry);
6326 dpyinfo->color_list = NULL;
6327 if (dpyinfo->palette)
6328 DeleteObject(dpyinfo->palette);
6330 xfree (dpyinfo->w32_id_name);
6332 w32_reset_fringes ();
6335 /* Set up use of W32. */
6337 DWORD WINAPI w32_msg_worker (void * arg);
6339 static void
6340 w32_initialize ()
6342 HANDLE shell;
6343 HRESULT (WINAPI * set_user_model) (wchar_t * id);
6345 baud_rate = 19200;
6347 w32_system_caret_hwnd = NULL;
6348 w32_system_caret_height = 0;
6349 w32_system_caret_x = 0;
6350 w32_system_caret_y = 0;
6352 /* On Windows 7 and later, we need to set the user model ID
6353 to associate emacsclient launched files with Emacs frames
6354 in the UI. */
6355 shell = GetModuleHandle ("shell32.dll");
6356 if (shell)
6358 set_user_model
6359 = (void *) GetProcAddress (shell,
6360 "SetCurrentProcessExplicitAppUserModelID");
6362 /* If the function is defined, then we are running on Windows 7
6363 or newer, and the UI uses this to group related windows
6364 together. Since emacs, runemacs, emacsclient are related, we
6365 want them grouped even though the executables are different,
6366 so we need to set a consistent ID between them. */
6367 if (set_user_model)
6368 set_user_model (L"GNU.Emacs");
6371 /* Initialize w32_use_visible_system_caret based on whether a screen
6372 reader is in use. */
6373 if (!SystemParametersInfo (SPI_GETSCREENREADER, 0,
6374 &w32_use_visible_system_caret, 0))
6375 w32_use_visible_system_caret = 0;
6377 last_tool_bar_item = -1;
6378 any_help_event_p = 0;
6380 /* Initialize input mode: interrupt_input off, no flow control, allow
6381 8 bit character input, standard quit char. */
6382 Fset_input_mode (Qnil, Qnil, make_number (2), Qnil);
6385 DWORD input_locale_id = (DWORD) GetKeyboardLayout (0);
6386 keyboard_codepage = codepage_for_locale ((LCID) (input_locale_id & 0xffff));
6389 /* Create the window thread - it will terminate itself when the app
6390 terminates */
6391 init_crit ();
6393 dwMainThreadId = GetCurrentThreadId ();
6394 DuplicateHandle (GetCurrentProcess (), GetCurrentThread (),
6395 GetCurrentProcess (), &hMainThread, 0, TRUE, DUPLICATE_SAME_ACCESS);
6397 /* Wait for thread to start */
6399 MSG msg;
6401 PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE);
6403 hWindowsThread = CreateThread (NULL, 0,
6404 w32_msg_worker,
6405 0, 0, &dwWindowsThreadId);
6407 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
6410 /* It is desirable that mainThread should have the same notion of
6411 focus window and active window as windowsThread. Unfortunately, the
6412 following call to AttachThreadInput, which should do precisely what
6413 we need, causes major problems when Emacs is linked as a console
6414 program. Unfortunately, we have good reasons for doing that, so
6415 instead we need to send messages to windowsThread to make some API
6416 calls for us (ones that affect, or depend on, the active/focus
6417 window state.) */
6418 #ifdef ATTACH_THREADS
6419 AttachThreadInput (dwMainThreadId, dwWindowsThreadId, TRUE);
6420 #endif
6422 /* Dynamically link to optional system components. */
6424 HMODULE user_lib = GetModuleHandle ("user32.dll");
6426 #define LOAD_PROC(lib, fn) pfn##fn = (void *) GetProcAddress (lib, #fn)
6428 LOAD_PROC (user_lib, SetLayeredWindowAttributes);
6430 #undef LOAD_PROC
6432 /* Ensure scrollbar handle is at least 5 pixels. */
6433 vertical_scroll_bar_min_handle = 5;
6435 /* For either kind of scroll bar, take account of the arrows; these
6436 effectively form the border of the main scroll bar range. */
6437 vertical_scroll_bar_top_border = vertical_scroll_bar_bottom_border
6438 = GetSystemMetrics (SM_CYVSCROLL);
6442 void
6443 syms_of_w32term ()
6445 staticpro (&w32_display_name_list);
6446 w32_display_name_list = Qnil;
6448 staticpro (&last_mouse_scroll_bar);
6449 last_mouse_scroll_bar = Qnil;
6451 DEFSYM (Qvendor_specific_keysyms, "vendor-specific-keysyms");
6453 DEFVAR_INT ("w32-num-mouse-buttons",
6454 &w32_num_mouse_buttons,
6455 doc: /* Number of physical mouse buttons. */);
6456 w32_num_mouse_buttons = 2;
6458 DEFVAR_LISP ("w32-swap-mouse-buttons",
6459 &Vw32_swap_mouse_buttons,
6460 doc: /* Swap the mapping of middle and right mouse buttons.
6461 When nil, middle button is mouse-2 and right button is mouse-3. */);
6462 Vw32_swap_mouse_buttons = Qnil;
6464 DEFVAR_LISP ("w32-grab-focus-on-raise",
6465 &Vw32_grab_focus_on_raise,
6466 doc: /* Raised frame grabs input focus.
6467 When t, `raise-frame' grabs input focus as well. This fits well
6468 with the normal Windows click-to-focus policy, but might not be
6469 desirable when using a point-to-focus policy. */);
6470 Vw32_grab_focus_on_raise = Qt;
6472 DEFVAR_LISP ("w32-capslock-is-shiftlock",
6473 &Vw32_capslock_is_shiftlock,
6474 doc: /* Apply CapsLock state to non character input keys.
6475 When nil, CapsLock only affects normal character input keys. */);
6476 Vw32_capslock_is_shiftlock = Qnil;
6478 DEFVAR_LISP ("w32-recognize-altgr",
6479 &Vw32_recognize_altgr,
6480 doc: /* Recognize right-alt and left-ctrl as AltGr.
6481 When nil, the right-alt and left-ctrl key combination is
6482 interpreted normally. */);
6483 Vw32_recognize_altgr = Qt;
6485 DEFVAR_BOOL ("w32-use-visible-system-caret",
6486 &w32_use_visible_system_caret,
6487 doc: /* Flag to make the system caret visible.
6488 When this is non-nil, Emacs will indicate the position of point by
6489 using the system caret instead of drawing its own cursor. Some screen
6490 reader software does not track the system cursor properly when it is
6491 invisible, and gets confused by Emacs drawing its own cursor, so this
6492 variable is initialized to t when Emacs detects that screen reader
6493 software is running as it starts up.
6495 When this variable is set, other variables affecting the appearance of
6496 the cursor have no effect. */);
6498 w32_use_visible_system_caret = 0;
6500 /* We don't yet support this, but defining this here avoids whining
6501 from cus-start.el and other places, like "M-x set-variable". */
6502 DEFVAR_BOOL ("x-use-underline-position-properties",
6503 &x_use_underline_position_properties,
6504 doc: /* *Non-nil means make use of UNDERLINE_POSITION font properties.
6505 A value of nil means ignore them. If you encounter fonts with bogus
6506 UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
6507 to 4.1, set this to nil. */);
6508 x_use_underline_position_properties = 0;
6510 DEFVAR_BOOL ("x-underline-at-descent-line",
6511 &x_underline_at_descent_line,
6512 doc: /* *Non-nil means to draw the underline at the same place as the descent line.
6513 A value of nil means to draw the underline according to the value of the
6514 variable `x-use-underline-position-properties', which is usually at the
6515 baseline level. The default value is nil. */);
6516 x_underline_at_descent_line = 0;
6518 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars,
6519 doc: /* If not nil, Emacs uses toolkit scroll bars. */);
6520 Vx_toolkit_scroll_bars = Qt;
6522 staticpro (&last_mouse_motion_frame);
6523 last_mouse_motion_frame = Qnil;
6526 /* arch-tag: 5fa70624-ab86-499c-8a85-473958ee4646
6527 (do not change this comment) */