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