annotate src/w32term.c @ 35449:98d65e364070

(w32_ring_bell): Only support visible bell on w32 frames. (w32_initialize): Don't set term hooks that aren't actually needed in windowed mode.
author Andrew Innes <andrewi@gnu.org>
date Sat, 20 Jan 2001 14:00:31 +0000
parents e50a7f9ce65e
children c2f95853d4c4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
1 /* Implementation of GUI terminal on the Microsoft W32 API.
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2 Copyright (C) 1989, 93, 94, 95, 96, 1997, 1998, 1999, 2000, 2001
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
3 Free Software Foundation, Inc.
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5 This file is part of GNU Emacs.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7 GNU Emacs is free software; you can redistribute it and/or modify
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8 it under the terms of the GNU General Public License as published by
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9 the Free Software Foundation; either version 2, or (at your option)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10 any later version.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
11
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
12 GNU Emacs is distributed in the hope that it will be useful,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
15 GNU General Public License for more details.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
16
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
18 along with GNU Emacs; see the file COPYING. If not, write to
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
15742
80562f089595 Fix FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 15723
diff changeset
20 Boston, MA 02111-1307, USA. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
21
26088
b7aa6ac26872 Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents: 25646
diff changeset
22 #include <config.h>
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
23 #include <signal.h>
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
24 #include <stdio.h>
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
25 #include <stdlib.h>
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
26 #include "lisp.h"
18507
be4c110cda51 Include charset.h.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16884
diff changeset
27 #include "charset.h"
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
28 #include "blockinput.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
29
24674
d0dee612f8e3 [andrewi]
Andrew Innes <andrewi@gnu.org>
parents: 24480
diff changeset
30 #include "w32heap.h"
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
31 #include "w32term.h"
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
32 #include "w32bdf.h"
21885
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
33 #include <shellapi.h>
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
34
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
35 #include "systty.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
36 #include "systime.h"
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
37 #include "atimer.h"
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
38
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
39 #include <ctype.h>
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
40 #include <errno.h>
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
41 #include <setjmp.h>
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
42 #include <sys/stat.h>
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
43
31116
bbd7763673b6 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 31010
diff changeset
44 #include "keyboard.h"
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
45 #include "frame.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
46 #include "dispextern.h"
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
47 #include "fontset.h"
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
48 #include "termhooks.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
49 #include "termopts.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
50 #include "termchar.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
51 #include "gnu.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
52 #include "disptab.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
53 #include "buffer.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
54 #include "window.h"
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
55 #include "intervals.h"
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
56 #include "composite.h"
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
57 #include "coding.h"
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
58
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
59 #ifndef min
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
60 #define min(a,b) ((a) < (b) ? (a) : (b))
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
61 #endif
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
62 #ifndef max
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
63 #define max(a,b) ((a) > (b) ? (a) : (b))
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
64 #endif
21456
c0496e62b737 (min, max): Define as macros.
Karl Heuer <kwzh@gnu.org>
parents: 20179
diff changeset
65
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
66 #define abs(x) ((x) < 0 ? -(x) : (x))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
67
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
68 #define BETWEEN(X, LOWER, UPPER) ((X) >= (LOWER) && (X) < (UPPER))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
69
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
70
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
71 /* Bitmaps for truncated lines. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
72
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
73 enum bitmap_type
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
74 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
75 NO_BITMAP,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
76 LEFT_TRUNCATION_BITMAP,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
77 RIGHT_TRUNCATION_BITMAP,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
78 OVERLAY_ARROW_BITMAP,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
79 CONTINUED_LINE_BITMAP,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
80 CONTINUATION_LINE_BITMAP,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
81 ZV_LINE_BITMAP
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
82 };
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
83
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
84 /* Bitmaps are all unsigned short, as Windows requires bitmap data to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
85 be Word aligned. For some reason they are horizontally reflected
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
86 compared to how they appear on X, so changes in xterm.c should be
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
87 reflected here. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
88
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
89 /* Bitmap drawn to indicate lines not displaying text if
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
90 `indicate-empty-lines' is non-nil. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
91
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
92 #define zv_width 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
93 #define zv_height 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
94 static unsigned short zv_bits[] = {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
95 0x00, 0x00, 0x78, 0x78, 0x78, 0x78, 0x00, 0x00};
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
96 static HBITMAP zv_bmp;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
97
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
98 /* An arrow like this: `<-'. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
99
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
100 #define left_width 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
101 #define left_height 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
102 static unsigned short left_bits[] = {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
103 0x18, 0x30, 0x60, 0xfc, 0xfc, 0x60, 0x30, 0x18};
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
104 static HBITMAP left_bmp;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
105
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
106 /* Right truncation arrow bitmap `->'. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
107
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
108 #define right_width 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
109 #define right_height 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
110 static unsigned short right_bits[] = {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
111 0x18, 0x0c, 0x06, 0x3f, 0x3f, 0x06, 0x0c, 0x18};
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
112 static HBITMAP right_bmp;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
113
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
114 /* Marker for continued lines. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
115
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
116 #define continued_width 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
117 #define continued_height 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
118 static unsigned short continued_bits[] = {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
119 0x3c, 0x3e, 0x03, 0x27, 0x3f, 0x3e, 0x3c, 0x3e};
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
120 static HBITMAP continued_bmp;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
121
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
122 /* Marker for continuation lines. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
123
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
124 #define continuation_width 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
125 #define continuation_height 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
126 static unsigned short continuation_bits[] = {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
127 0x3c, 0x7c, 0xc0, 0xe4, 0xfc, 0x7c, 0x3c, 0x7c};
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
128 static HBITMAP continuation_bmp;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
129
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
130 /* Overlay arrow bitmap. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
131
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
132 #if 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
133 /* A bomb. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
134 #define ov_width 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
135 #define ov_height 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
136 static unsigned short ov_bits[] = {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
137 0x0c, 0x10, 0x3c, 0x7e, 0x5e, 0x5e, 0x46, 0x3c};
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
138 #else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
139 /* A triangular arrow. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
140 #define ov_width 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
141 #define ov_height 8
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
142 static unsigned short ov_bits[] = {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
143 0xc0, 0xf0, 0xf8, 0xfc, 0xfc, 0xf8, 0xf0, 0xc0};
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
144 #endif
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
145 static HBITMAP ov_bmp;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
146
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
147 extern Lisp_Object Qhelp_echo;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
148
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
149
34869
1d671133e618 (syms_of_xterm): DEFVAR_LISP x-toolkit-scroll-bars
Gerd Moellmann <gerd@gnu.org>
parents: 34823
diff changeset
150 /* Non-nil means Emacs uses toolkit scroll bars. */
1d671133e618 (syms_of_xterm): DEFVAR_LISP x-toolkit-scroll-bars
Gerd Moellmann <gerd@gnu.org>
parents: 34823
diff changeset
151
1d671133e618 (syms_of_xterm): DEFVAR_LISP x-toolkit-scroll-bars
Gerd Moellmann <gerd@gnu.org>
parents: 34823
diff changeset
152 Lisp_Object Vx_toolkit_scroll_bars;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
153
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
154 /* If a string, w32_read_socket generates an event to display that string.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
155 (The display is done in read_char.) */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
156
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
157 static Lisp_Object help_echo;
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
158 static Lisp_Object help_echo_window;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
159 static Lisp_Object help_echo_object;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
160 static int help_echo_pos;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
161
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
162 /* Temporary variable for w32_read_socket. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
163
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
164 static Lisp_Object previous_help_echo;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
165
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
166 /* Non-zero means that a HELP_EVENT has been generated since Emacs
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
167 start. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
168
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
169 static int any_help_event_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
170
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
171 /* Non-zero means draw block and hollow cursor as wide as the glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
172 under it. For example, if a block cursor is over a tab, it will be
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
173 drawn as wide as that tab on the display. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
174
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
175 int x_stretch_cursor_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
176
21875
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
177 extern unsigned int msh_mousewheel;
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
178
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
179 extern void free_frame_menubar ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
180
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
181 extern void w32_menu_display_help (HMENU menu, UINT menu_item, UINT flags);
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
182
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
183 extern int w32_codepage_for_font (char *fontname);
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
184
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
185 extern glyph_metric *w32_BDF_TextMetric(bdffont *fontp,
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
186 unsigned char *text, int dim);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
187 extern Lisp_Object Vwindow_system;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
188
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
189 #define x_any_window_to_frame x_window_to_frame
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
190 #define x_top_window_to_frame x_window_to_frame
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
191
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
192
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
193 /* This is display since w32 does not support multiple ones. */
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
194 struct w32_display_info one_w32_display_info;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
195
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
196 /* This is a list of cons cells, each of the form (NAME . FONT-LIST-CACHE),
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
197 one for each element of w32_display_list and in the same order.
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
198 NAME is the name of the frame.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
199 FONT-LIST-CACHE records previous values returned by x-list-fonts. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
200 Lisp_Object w32_display_name_list;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
201
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
202 /* Frame being updated by update_frame. This is declared in term.c.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
203 This is set by update_begin and looked at by all the
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
204 w32 functions. It is zero while not inside an update.
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
205 In that case, the w32 functions assume that `SELECTED_FRAME ()'
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
206 is the frame to apply to. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
207 extern struct frame *updating_frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
208
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
209 /* This is a frame waiting to be autoraised, within w32_read_socket. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
210 struct frame *pending_autoraise_frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
211
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
212 /* Nominal cursor position -- where to draw output.
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
213 HPOS and VPOS are window relative glyph matrix coordinates.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
214 X and Y are window relative pixel coordinates. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
215
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
216 struct cursor_pos output_cursor;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
217
23639
516fc58a7b7b (w32_enable_unicode_output): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 23638
diff changeset
218 /* Flag to enable Unicode output in case users wish to use programs
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
219 like Twinbridge on '95 rather than installed system level support
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
220 for Far East languages. */
23639
516fc58a7b7b (w32_enable_unicode_output): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 23638
diff changeset
221 int w32_enable_unicode_output;
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
222
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
223 DWORD dwWindowsThreadId = 0;
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
224 HANDLE hWindowsThread = NULL;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
225 DWORD dwMainThreadId = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
226 HANDLE hMainThread = NULL;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
227
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
228 #ifndef SIF_ALL
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
229 /* These definitions are new with Windows 95. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
230 #define SIF_RANGE 0x0001
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
231 #define SIF_PAGE 0x0002
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
232 #define SIF_POS 0x0004
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
233 #define SIF_DISABLENOSCROLL 0x0008
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
234 #define SIF_TRACKPOS 0x0010
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
235 #define SIF_ALL (SIF_RANGE | SIF_PAGE | SIF_POS | SIF_TRACKPOS)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
236
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
237 typedef struct tagSCROLLINFO
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
238 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
239 UINT cbSize;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
240 UINT fMask;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
241 int nMin;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
242 int nMax;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
243 UINT nPage;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
244 int nPos;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
245 int nTrackPos;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
246 } SCROLLINFO, FAR *LPSCROLLINFO;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
247 typedef SCROLLINFO CONST FAR *LPCSCROLLINFO;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
248 #endif /* SIF_ALL */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
249
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
250 /* Dynamic linking to new proportional scroll bar functions. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
251 int (PASCAL *pfnSetScrollInfo) (HWND hwnd, int fnBar, LPSCROLLINFO lpsi, BOOL fRedraw);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
252 BOOL (PASCAL *pfnGetScrollInfo) (HWND hwnd, int fnBar, LPSCROLLINFO lpsi);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
253
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
254 int vertical_scroll_bar_min_handle;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
255 int vertical_scroll_bar_top_border;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
256 int vertical_scroll_bar_bottom_border;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
257
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
258 int last_scroll_bar_drag_pos;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
259
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
260 /* Mouse movement. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
261
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
262 /* Where the mouse was last time we reported a mouse event. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
263
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
264 FRAME_PTR last_mouse_frame;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
265 static RECT last_mouse_glyph;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
266 static Lisp_Object last_mouse_press_frame;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
267
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
268 Lisp_Object Vw32_num_mouse_buttons;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
269
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
270 Lisp_Object Vw32_swap_mouse_buttons;
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
271
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
272 /* Control whether x_raise_frame also sets input focus. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
273 Lisp_Object Vw32_grab_focus_on_raise;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
274
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
275 /* Control whether Caps Lock affects non-ascii characters. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
276 Lisp_Object Vw32_capslock_is_shiftlock;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
277
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
278 /* Control whether right-alt and left-ctrl should be recognized as AltGr. */
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
279 Lisp_Object Vw32_recognize_altgr;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
280
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
281 /* The scroll bar in which the last motion event occurred.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
282
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
283 If the last motion event occurred in a scroll bar, we set this
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
284 so w32_mouse_position can know whether to report a scroll bar motion or
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
285 an ordinary motion.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
286
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
287 If the last motion event didn't occur in a scroll bar, we set this
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
288 to Qnil, to tell w32_mouse_position to return an ordinary motion event. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
289 static Lisp_Object last_mouse_scroll_bar;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
290 static int last_mouse_scroll_bar_pos;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
291
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
292 /* This is a hack. We would really prefer that w32_mouse_position would
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
293 return the time associated with the position it returns, but there
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
294 doesn't seem to be any way to wrest the time-stamp from the server
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
295 along with the position query. So, we just keep track of the time
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
296 of the last movement we received, and return that in hopes that
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
297 it's somewhat accurate. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
298
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
299 static Time last_mouse_movement_time;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
300
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
301 /* Incremented by w32_read_socket whenever it really tries to read
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
302 events. */
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
303
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
304 #ifdef __STDC__
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
305 static int volatile input_signal_count;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
306 #else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
307 static int input_signal_count;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
308 #endif
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
309
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
310 extern Lisp_Object Vcommand_line_args, Vsystem_name;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
311
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
312 extern Lisp_Object Qface, Qmouse_face;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
313
31116
bbd7763673b6 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 31010
diff changeset
314 #ifndef USE_CRT_DLL
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
315 extern int errno;
31116
bbd7763673b6 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 31010
diff changeset
316 #endif
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
317
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
318 /* A mask of extra modifier bits to put into every keyboard char. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
319
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
320 extern int extra_keyboard_modifiers;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
321
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
322 /* Enumeration for overriding/changing the face to use for drawing
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
323 glyphs in x_draw_glyphs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
324
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
325 enum draw_glyphs_face
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
326 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
327 DRAW_NORMAL_TEXT,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
328 DRAW_INVERSE_VIDEO,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
329 DRAW_CURSOR,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
330 DRAW_MOUSE_FACE,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
331 DRAW_IMAGE_RAISED,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
332 DRAW_IMAGE_SUNKEN
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
333 };
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
334
31116
bbd7763673b6 Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents: 31010
diff changeset
335 static void x_update_window_end P_ ((struct window *, int, int));
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
336 static void frame_to_window_pixel_xy P_ ((struct window *, int *, int *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
337 void w32_delete_display P_ ((struct w32_display_info *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
338 static int fast_find_position P_ ((struct window *, int, int *, int *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
339 int *, int *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
340 static void set_output_cursor P_ ((struct cursor_pos *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
341 static struct glyph *x_y_to_hpos_vpos P_ ((struct window *, int, int,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
342 int *, int *, int *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
343 static void note_mode_line_highlight P_ ((struct window *, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
344 static void note_mouse_highlight P_ ((struct frame *, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
345 static void note_tool_bar_highlight P_ ((struct frame *f, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
346 static void w32_handle_tool_bar_click P_ ((struct frame *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
347 struct input_event *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
348 static void show_mouse_face P_ ((struct w32_display_info *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
349 enum draw_glyphs_face));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
350 void clear_mouse_face P_ ((struct w32_display_info *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
351
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
352 void x_lower_frame P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
353 void x_scroll_bar_clear P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
354 void x_wm_set_size_hint P_ ((struct frame *, long, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
355 void x_raise_frame P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
356 void x_set_window_size P_ ((struct frame *, int, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
357 void x_wm_set_window_state P_ ((struct frame *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
358 void x_wm_set_icon_pixmap P_ ((struct frame *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
359 void w32_initialize P_ ((void));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
360 static void x_font_min_bounds P_ ((XFontStruct *, int *, int *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
361 int x_compute_min_glyph_bounds P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
362 static void x_draw_phys_cursor_glyph P_ ((struct window *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
363 struct glyph_row *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
364 enum draw_glyphs_face));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
365 static void x_update_end P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
366 static void w32_frame_up_to_date P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
367 static void w32_reassert_line_highlight P_ ((int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
368 static void x_change_line_highlight P_ ((int, int, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
369 static void w32_set_terminal_modes P_ ((void));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
370 static void w32_reset_terminal_modes P_ ((void));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
371 static void w32_cursor_to P_ ((int, int, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
372 static void x_write_glyphs P_ ((struct glyph *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
373 static void x_clear_end_of_line P_ ((int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
374 static void x_clear_frame P_ ((void));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
375 static void x_clear_cursor P_ ((struct window *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
376 static void frame_highlight P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
377 static void frame_unhighlight P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
378 static void w32_new_focus_frame P_ ((struct w32_display_info *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
379 struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
380 static void w32_frame_rehighlight P_ ((struct frame *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
381 static void x_frame_rehighlight P_ ((struct w32_display_info *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
382 static void x_draw_hollow_cursor P_ ((struct window *, struct glyph_row *));
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
383 static void x_draw_bar_cursor P_ ((struct window *, struct glyph_row *, int));
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
384 static void expose_frame P_ ((struct frame *, int, int, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
385 static void expose_window_tree P_ ((struct window *, RECT *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
386 static void expose_window P_ ((struct window *, RECT *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
387 static void expose_area P_ ((struct window *, struct glyph_row *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
388 RECT *, enum glyph_row_area));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
389 static void expose_line P_ ((struct window *, struct glyph_row *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
390 RECT *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
391 void x_update_cursor P_ ((struct frame *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
392 static void x_update_cursor_in_window_tree P_ ((struct window *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
393 static void x_update_window_cursor P_ ((struct window *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
394 static void x_erase_phys_cursor P_ ((struct window *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
395 void x_display_cursor P_ ((struct window *w, int, int, int, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
396 void x_display_and_set_cursor P_ ((struct window *, int, int, int, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
397 static void w32_draw_bitmap P_ ((struct window *, HDC hdc, struct glyph_row *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
398 enum bitmap_type));
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
399 static void w32_clip_to_row P_ ((struct window *, struct glyph_row *,
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
400 HDC, int));
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
401 static int x_phys_cursor_in_rect_p P_ ((struct window *, RECT *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
402 static void x_draw_row_bitmaps P_ ((struct window *, struct glyph_row *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
403 static void note_overwritten_text_cursor P_ ((struct window *, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
404
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
405 static Lisp_Object Qvendor_specific_keysyms;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
406
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
407
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
408 /***********************************************************************
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
409 Debugging
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
410 ***********************************************************************/
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
411
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
412 #if 0
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
413
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
414 /* This is a function useful for recording debugging information about
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
415 the sequence of occurrences in this file. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
416
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
417 struct record
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
418 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
419 char *locus;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
420 int type;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
421 };
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
422
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
423 struct record event_record[100];
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
424
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
425 int event_record_index;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
426
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
427 record_event (locus, type)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
428 char *locus;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
429 int type;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
430 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
431 if (event_record_index == sizeof (event_record) / sizeof (struct record))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
432 event_record_index = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
433
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
434 event_record[event_record_index].locus = locus;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
435 event_record[event_record_index].type = type;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
436 event_record_index++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
437 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
438
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
439 #endif /* 0 */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
440
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
441
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
442 void XChangeGC (void * ignore, XGCValues* gc, unsigned long mask,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
443 XGCValues *xgcv)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
444 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
445 if (mask & GCForeground)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
446 gc->foreground = xgcv->foreground;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
447 if (mask & GCBackground)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
448 gc->background = xgcv->background;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
449 if (mask & GCFont)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
450 gc->font = xgcv->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
451 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
452
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
453 XGCValues *XCreateGC (void * ignore, Window window, unsigned long mask,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
454 XGCValues *xgcv)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
455 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
456 XGCValues *gc = (XGCValues *) xmalloc (sizeof (XGCValues));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
457 bzero (gc, sizeof (XGCValues));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
458
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
459 XChangeGC (ignore, gc, mask, xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
460
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
461 return gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
462 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
463
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
464 void XGetGCValues (void* ignore, XGCValues *gc,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
465 unsigned long mask, XGCValues *xgcv)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
466 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
467 XChangeGC (ignore, xgcv, mask, gc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
468 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
469
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
470 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
471 w32_set_clip_rectangle (HDC hdc, RECT *rect)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
472 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
473 if (rect)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
474 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
475 HRGN clip_region = CreateRectRgnIndirect (rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
476 SelectClipRgn (hdc, clip_region);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
477 DeleteObject (clip_region);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
478 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
479 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
480 SelectClipRgn (hdc, NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
481 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
482
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
483
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
484 /* Draw a hollow rectangle at the specified position. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
485 void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
486 w32_draw_rectangle (HDC hdc, XGCValues *gc, int x, int y,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
487 int width, int height)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
488 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
489 HBRUSH hb, oldhb;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
490 HPEN hp, oldhp;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
491
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
492 hb = CreateSolidBrush (gc->background);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
493 hp = CreatePen (PS_SOLID, 0, gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
494 oldhb = SelectObject (hdc, hb);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
495 oldhp = SelectObject (hdc, hp);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
496
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
497 Rectangle (hdc, x, y, x + width, y + height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
498
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
499 SelectObject (hdc, oldhb);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
500 SelectObject (hdc, oldhp);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
501 DeleteObject (hb);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
502 DeleteObject (hp);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
503 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
504
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
505 /* Draw a filled rectangle at the specified position. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
506 void
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
507 w32_fill_rect (f, hdc, pix, lprect)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
508 FRAME_PTR f;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
509 HDC hdc;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
510 COLORREF pix;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
511 RECT * lprect;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
512 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
513 HBRUSH hb;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
514
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
515 hb = CreateSolidBrush (pix);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
516 FillRect (hdc, lprect, hb);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
517 DeleteObject (hb);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
518 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
519
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
520 void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
521 w32_clear_window (f)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
522 FRAME_PTR f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
523 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
524 RECT rect;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
525 HDC hdc = get_frame_dc (f);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
526
34093
d554a3ac3039 (x_draw_vertical_border): Fix call to w32_fill_rect.
Jason Rumney <jasonr@gnu.org>
parents: 33766
diff changeset
527 /* Under certain conditions, this can be called at startup with
d554a3ac3039 (x_draw_vertical_border): Fix call to w32_fill_rect.
Jason Rumney <jasonr@gnu.org>
parents: 33766
diff changeset
528 a console frame pointer before the GUI frame is created. An HDC
d554a3ac3039 (x_draw_vertical_border): Fix call to w32_fill_rect.
Jason Rumney <jasonr@gnu.org>
parents: 33766
diff changeset
529 of 0 indicates this. */
d554a3ac3039 (x_draw_vertical_border): Fix call to w32_fill_rect.
Jason Rumney <jasonr@gnu.org>
parents: 33766
diff changeset
530 if (hdc)
d554a3ac3039 (x_draw_vertical_border): Fix call to w32_fill_rect.
Jason Rumney <jasonr@gnu.org>
parents: 33766
diff changeset
531 {
d554a3ac3039 (x_draw_vertical_border): Fix call to w32_fill_rect.
Jason Rumney <jasonr@gnu.org>
parents: 33766
diff changeset
532 GetClientRect (FRAME_W32_WINDOW (f), &rect);
d554a3ac3039 (x_draw_vertical_border): Fix call to w32_fill_rect.
Jason Rumney <jasonr@gnu.org>
parents: 33766
diff changeset
533 w32_clear_rect (f, hdc, &rect);
d554a3ac3039 (x_draw_vertical_border): Fix call to w32_fill_rect.
Jason Rumney <jasonr@gnu.org>
parents: 33766
diff changeset
534 }
d554a3ac3039 (x_draw_vertical_border): Fix call to w32_fill_rect.
Jason Rumney <jasonr@gnu.org>
parents: 33766
diff changeset
535
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
536 release_frame_dc (f, hdc);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
537 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
538
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
539
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
540 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
541 Starting and ending an update
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
542 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
543
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
544 /* Start an update of frame F. This function is installed as a hook
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
545 for update_begin, i.e. it is called when update_begin is called.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
546 This function is called prior to calls to x_update_window_begin for
34784
d140f5fb3307 (x_update_begin): Regenerate the palette here, rather
Andrew Innes <andrewi@gnu.org>
parents: 34779
diff changeset
547 each window being updated. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
548
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
549 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
550 x_update_begin (f)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
551 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
552 {
34784
d140f5fb3307 (x_update_begin): Regenerate the palette here, rather
Andrew Innes <andrewi@gnu.org>
parents: 34779
diff changeset
553 struct w32_display_info *display_info = FRAME_W32_DISPLAY_INFO (f);
d140f5fb3307 (x_update_begin): Regenerate the palette here, rather
Andrew Innes <andrewi@gnu.org>
parents: 34779
diff changeset
554
35000
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
555 if (! FRAME_W32_P (f))
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
556 return;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
557
34784
d140f5fb3307 (x_update_begin): Regenerate the palette here, rather
Andrew Innes <andrewi@gnu.org>
parents: 34779
diff changeset
558 /* Regenerate display palette before drawing if list of requested
d140f5fb3307 (x_update_begin): Regenerate the palette here, rather
Andrew Innes <andrewi@gnu.org>
parents: 34779
diff changeset
559 colors has changed. */
d140f5fb3307 (x_update_begin): Regenerate the palette here, rather
Andrew Innes <andrewi@gnu.org>
parents: 34779
diff changeset
560 if (display_info->regen_palette)
d140f5fb3307 (x_update_begin): Regenerate the palette here, rather
Andrew Innes <andrewi@gnu.org>
parents: 34779
diff changeset
561 {
d140f5fb3307 (x_update_begin): Regenerate the palette here, rather
Andrew Innes <andrewi@gnu.org>
parents: 34779
diff changeset
562 w32_regenerate_palette (f);
d140f5fb3307 (x_update_begin): Regenerate the palette here, rather
Andrew Innes <andrewi@gnu.org>
parents: 34779
diff changeset
563 display_info->regen_palette = FALSE;
d140f5fb3307 (x_update_begin): Regenerate the palette here, rather
Andrew Innes <andrewi@gnu.org>
parents: 34779
diff changeset
564 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
565 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
566
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
567
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
568 /* Start update of window W. Set the global variable updated_window
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
569 to the window being updated and set output_cursor to the cursor
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
570 position of W. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
571
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
572 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
573 x_update_window_begin (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
574 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
575 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
576 struct frame *f = XFRAME (WINDOW_FRAME (w));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
577 struct w32_display_info *display_info = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
578
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
579 updated_window = w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
580 set_output_cursor (&w->cursor);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
581
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
582 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
583
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
584 if (f == display_info->mouse_face_mouse_frame)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
585 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
586 /* Don't do highlighting for mouse motion during the update. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
587 display_info->mouse_face_defer = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
588
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
589 /* If F needs to be redrawn, simply forget about any prior mouse
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
590 highlighting. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
591 if (FRAME_GARBAGED_P (f))
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
592 display_info->mouse_face_window = Qnil;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
593
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
594 #if 0 /* Rows in a current matrix containing glyphs in mouse-face have
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
595 their mouse_face_p flag set, which means that they are always
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
596 unequal to rows in a desired matrix which never have that
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
597 flag set. So, rows containing mouse-face glyphs are never
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
598 scrolled, and we don't have to switch the mouse highlight off
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
599 here to prevent it from being scrolled. */
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
600
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
601 /* Can we tell that this update does not affect the window
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
602 where the mouse highlight is? If so, no need to turn off.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
603 Likewise, don't do anything if the frame is garbaged;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
604 in that case, the frame's current matrix that we would use
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
605 is all wrong, and we will redisplay that line anyway. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
606 if (!NILP (display_info->mouse_face_window)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
607 && w == XWINDOW (display_info->mouse_face_window))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
608 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
609 int i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
610
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
611 for (i = 0; i < w->desired_matrix->nrows; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
612 if (MATRIX_ROW_ENABLED_P (w->desired_matrix, i))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
613 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
614
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
615 if (i < w->desired_matrix->nrows)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
616 clear_mouse_face (display_info);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
617 }
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
618 #endif /* 0 */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
619 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
620
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
621 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
622 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
623
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
624
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
625 /* Draw a vertical window border to the right of window W if W doesn't
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
626 have vertical scroll bars. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
627
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
628 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
629 x_draw_vertical_border (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
630 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
631 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
632 struct frame *f = XFRAME (WINDOW_FRAME (w));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
633
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
634 /* Redraw borders between horizontally adjacent windows. Don't
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
635 do it for frames with vertical scroll bars because either the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
636 right scroll bar of a window, or the left scroll bar of its
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
637 neighbor will suffice as a border. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
638 if (!WINDOW_RIGHTMOST_P (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
639 && !FRAME_HAS_VERTICAL_SCROLL_BARS (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
640 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
641 RECT r;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
642 HDC hdc;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
643
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
644 window_box_edges (w, -1, &r.left, &r.top, &r.right, &r.bottom);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
645 r.left = r.right + FRAME_X_RIGHT_FLAGS_AREA_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
646 r.right = r.left + 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
647 r.bottom -= 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
648
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
649 hdc = get_frame_dc (f);
34093
d554a3ac3039 (x_draw_vertical_border): Fix call to w32_fill_rect.
Jason Rumney <jasonr@gnu.org>
parents: 33766
diff changeset
650 w32_fill_rect (f, hdc, FRAME_FOREGROUND_PIXEL (f), &r);
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
651 release_frame_dc (f, hdc);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
652 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
653 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
654
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
655
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
656 /* End update of window W (which is equal to updated_window).
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
657
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
658 Draw vertical borders between horizontally adjacent windows, and
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
659 display W's cursor if CURSOR_ON_P is non-zero.
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
660
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
661 MOUSE_FACE_OVERWRITTEN_P non-zero means that some row containing
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
662 glyphs in mouse-face were overwritten. In that case we have to
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
663 make sure that the mouse-highlight is properly redrawn.
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
664
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
665 W may be a menu bar pseudo-window in case we don't have X toolkit
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
666 support. Such windows don't have a cursor, so don't display it
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
667 here. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
668
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
669 static void
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
670 x_update_window_end (w, cursor_on_p, mouse_face_overwritten_p)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
671 struct window *w;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
672 int cursor_on_p, mouse_face_overwritten_p;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
673 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
674 if (!w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
675 {
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
676 struct w32_display_info *dpyinfo
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
677 = FRAME_W32_DISPLAY_INFO (XFRAME (w->frame));
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
678
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
679 BLOCK_INPUT;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
680
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
681 /* If a row with mouse-face was overwritten, arrange for
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
682 XTframe_up_to_date to redisplay the mouse highlight. */
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
683 if (mouse_face_overwritten_p)
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
684 {
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
685 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
686 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
687 dpyinfo->mouse_face_window = Qnil;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
688 }
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
689
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
690 if (cursor_on_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
691 x_display_and_set_cursor (w, 1, output_cursor.hpos,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
692 output_cursor.vpos,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
693 output_cursor.x, output_cursor.y);
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
694
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
695 x_draw_vertical_border (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
696 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
697 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
698
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
699 updated_window = NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
700 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
701
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
702
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
703 /* End update of frame F. This function is installed as a hook in
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
704 update_end. */
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
705
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
706 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
707 x_update_end (f)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
708 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
709 {
35000
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
710 if (! FRAME_W32_P (f))
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
711 return;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
712
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
713 /* Mouse highlight may be displayed again. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
714 FRAME_W32_DISPLAY_INFO (f)->mouse_face_defer = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
715 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
716
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
717
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
718 /* This function is called from various places in xdisp.c whenever a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
719 complete update has been performed. The global variable
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
720 updated_window is not available here. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
721
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
722 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
723 w32_frame_up_to_date (f)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
724 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
725 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
726 if (FRAME_W32_P (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
727 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
728 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
729 if (dpyinfo->mouse_face_deferred_gc
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
730 || f == dpyinfo->mouse_face_mouse_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
731 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
732 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
733 if (dpyinfo->mouse_face_mouse_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
734 note_mouse_highlight (dpyinfo->mouse_face_mouse_frame,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
735 dpyinfo->mouse_face_mouse_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
736 dpyinfo->mouse_face_mouse_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
737 dpyinfo->mouse_face_deferred_gc = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
738 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
739 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
740 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
741 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
742
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
743
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
744 /* Draw truncation mark bitmaps, continuation mark bitmaps, overlay
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
745 arrow bitmaps, or clear the areas where they would be displayed
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
746 before DESIRED_ROW is made current. The window being updated is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
747 found in updated_window. This function It is called from
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
748 update_window_line only if it is known that there are differences
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
749 between bitmaps to be drawn between current row and DESIRED_ROW. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
750
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
751 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
752 x_after_update_window_line (desired_row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
753 struct glyph_row *desired_row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
754 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
755 struct window *w = updated_window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
756
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
757 xassert (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
758
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
759 if (!desired_row->mode_line_p && !w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
760 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
761 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
762 x_draw_row_bitmaps (w, desired_row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
763
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
764 /* When a window has disappeared, make sure that no rest of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
765 full-width rows stays visible in the internal border. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
766 if (windows_or_buffers_changed)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
767 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
768 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
769 int width = FRAME_INTERNAL_BORDER_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
770 int height = desired_row->visible_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
771 int x = (window_box_right (w, -1)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
772 + FRAME_X_RIGHT_FLAGS_AREA_WIDTH (f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
773 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
774 HDC hdc = get_frame_dc (f);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
775
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
776 w32_clear_area (f, hdc, x, y, width, height);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
777 release_frame_dc (f, hdc);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
778 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
779
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
780 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
781 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
782 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
783
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
784
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
785 /* Draw the bitmap WHICH in one of the areas to the left or right of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
786 window W. ROW is the glyph row for which to display the bitmap; it
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
787 determines the vertical position at which the bitmap has to be
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
788 drawn. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
789
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
790 static void
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
791 w32_draw_bitmap (w, hdc, row, which)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
792 struct window *w;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
793 HDC hdc;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
794 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
795 enum bitmap_type which;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
796 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
797 struct frame *f = XFRAME (WINDOW_FRAME (w));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
798 Window window = FRAME_W32_WINDOW (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
799 HDC compat_hdc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
800 int x, y, wd, h, dy;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
801 HBITMAP pixmap;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
802 HANDLE horig_obj;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
803 struct face *face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
804
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
805 /* Must clip because of partially visible lines. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
806 w32_clip_to_row (w, row, hdc, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
807
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
808 switch (which)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
809 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
810 case LEFT_TRUNCATION_BITMAP:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
811 wd = left_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
812 h = left_height;
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
813 pixmap = left_bmp;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
814 x = (WINDOW_TO_FRAME_PIXEL_X (w, 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
815 - wd
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
816 - (FRAME_X_LEFT_FLAGS_AREA_WIDTH (f) - wd) / 2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
817 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
818
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
819 case OVERLAY_ARROW_BITMAP:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
820 wd = ov_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
821 h = ov_height;
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
822 pixmap = ov_bmp;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
823 x = (WINDOW_TO_FRAME_PIXEL_X (w, 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
824 - wd
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
825 - (FRAME_X_LEFT_FLAGS_AREA_WIDTH (f) - wd) / 2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
826 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
827
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
828 case RIGHT_TRUNCATION_BITMAP:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
829 wd = right_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
830 h = right_height;
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
831 pixmap = right_bmp;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
832 x = window_box_right (w, -1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
833 x += (FRAME_X_RIGHT_FLAGS_AREA_WIDTH (f) - wd) / 2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
834 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
835
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
836 case CONTINUED_LINE_BITMAP:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
837 wd = continued_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
838 h = continued_height;
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
839 pixmap = continued_bmp;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
840 x = window_box_right (w, -1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
841 x += (FRAME_X_RIGHT_FLAGS_AREA_WIDTH (f) - wd) / 2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
842 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
843
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
844 case CONTINUATION_LINE_BITMAP:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
845 wd = continuation_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
846 h = continuation_height;
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
847 pixmap = continuation_bmp;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
848 x = (WINDOW_TO_FRAME_PIXEL_X (w, 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
849 - wd
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
850 - (FRAME_X_LEFT_FLAGS_AREA_WIDTH (f) - wd) / 2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
851 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
852
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
853 case ZV_LINE_BITMAP:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
854 wd = zv_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
855 h = zv_height;
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
856 pixmap = zv_bmp;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
857 x = (WINDOW_TO_FRAME_PIXEL_X (w, 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
858 - wd
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
859 - (FRAME_X_LEFT_FLAGS_AREA_WIDTH (f) - wd) / 2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
860 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
861
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
862 default:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
863 abort ();
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
864 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
865
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
866 /* Convert to frame coordinates. Set dy to the offset in the row to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
867 start drawing the bitmap. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
868 y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
869 dy = (row->height - h) / 2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
870
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
871 /* Draw the bitmap. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
872 face = FACE_FROM_ID (f, BITMAP_AREA_FACE_ID);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
873
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
874 compat_hdc = CreateCompatibleDC (hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
875 SaveDC (hdc);
34823
ace8dd8cf098 (w32_draw_bitmap): Fix drawing so it does not appear in the wrong colors
Jason Rumney <jasonr@gnu.org>
parents: 34784
diff changeset
876
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
877 horig_obj = SelectObject (compat_hdc, pixmap);
34823
ace8dd8cf098 (w32_draw_bitmap): Fix drawing so it does not appear in the wrong colors
Jason Rumney <jasonr@gnu.org>
parents: 34784
diff changeset
878 SetTextColor (hdc, face->background);
ace8dd8cf098 (w32_draw_bitmap): Fix drawing so it does not appear in the wrong colors
Jason Rumney <jasonr@gnu.org>
parents: 34784
diff changeset
879 SetBkColor (hdc, face->foreground);
ace8dd8cf098 (w32_draw_bitmap): Fix drawing so it does not appear in the wrong colors
Jason Rumney <jasonr@gnu.org>
parents: 34784
diff changeset
880
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
881 BitBlt (hdc, x, y + dy, wd, h, compat_hdc, 0, 0, SRCCOPY);
34823
ace8dd8cf098 (w32_draw_bitmap): Fix drawing so it does not appear in the wrong colors
Jason Rumney <jasonr@gnu.org>
parents: 34784
diff changeset
882
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
883 SelectObject (compat_hdc, horig_obj);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
884 DeleteDC (compat_hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
885 RestoreDC (hdc, -1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
886 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
887
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
888
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
889 /* Draw flags bitmaps for glyph row ROW on window W. Call this
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
890 function with input blocked. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
891
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
892 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
893 x_draw_row_bitmaps (w, row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
894 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
895 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
896 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
897 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
898 enum bitmap_type bitmap;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
899 struct face *face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
900 int header_line_height = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
901 HDC hdc = get_frame_dc (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
902
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
903 xassert (interrupt_input_blocked);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
904
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
905 /* If row is completely invisible, because of vscrolling, we
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
906 don't have to draw anything. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
907 if (row->visible_height <= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
908 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
909
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
910 face = FACE_FROM_ID (f, BITMAP_AREA_FACE_ID);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
911 PREPARE_FACE_FOR_DISPLAY (f, face);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
912
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
913 /* Decide which bitmap to draw at the left side. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
914 if (row->overlay_arrow_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
915 bitmap = OVERLAY_ARROW_BITMAP;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
916 else if (row->truncated_on_left_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
917 bitmap = LEFT_TRUNCATION_BITMAP;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
918 else if (MATRIX_ROW_CONTINUATION_LINE_P (row))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
919 bitmap = CONTINUATION_LINE_BITMAP;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
920 else if (row->indicate_empty_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
921 bitmap = ZV_LINE_BITMAP;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
922 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
923 bitmap = NO_BITMAP;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
924
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
925 /* Clear flags area if no bitmap to draw or if bitmap doesn't fill
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
926 the flags area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
927 if (bitmap == NO_BITMAP
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
928 || FRAME_FLAGS_BITMAP_WIDTH (f) < FRAME_X_LEFT_FLAGS_AREA_WIDTH (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
929 || row->height > FRAME_FLAGS_BITMAP_HEIGHT (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
930 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
931 /* If W has a vertical border to its left, don't draw over it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
932 int border = ((XFASTINT (w->left) > 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
933 && !FRAME_HAS_VERTICAL_SCROLL_BARS (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
934 ? 1 : 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
935 int left = window_box_left (w, -1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
936
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
937 if (header_line_height < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
938 header_line_height = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
939
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
940 w32_fill_area (f, hdc, face->background,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
941 left - FRAME_X_LEFT_FLAGS_AREA_WIDTH (f) + border,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
942 WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
943 row->y)),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
944 FRAME_X_LEFT_FLAGS_AREA_WIDTH (f) - border,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
945 row->visible_height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
946 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
947
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
948 /* Draw the left bitmap. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
949 if (bitmap != NO_BITMAP)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
950 w32_draw_bitmap (w, hdc, row, bitmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
951
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
952 /* Decide which bitmap to draw at the right side. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
953 if (row->truncated_on_right_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
954 bitmap = RIGHT_TRUNCATION_BITMAP;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
955 else if (row->continued_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
956 bitmap = CONTINUED_LINE_BITMAP;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
957 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
958 bitmap = NO_BITMAP;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
959
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
960 /* Clear flags area if no bitmap to draw of if bitmap doesn't fill
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
961 the flags area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
962 if (bitmap == NO_BITMAP
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
963 || FRAME_FLAGS_BITMAP_WIDTH (f) < FRAME_X_RIGHT_FLAGS_AREA_WIDTH (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
964 || row->height > FRAME_FLAGS_BITMAP_HEIGHT (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
965 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
966 int right = window_box_right (w, -1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
967
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
968 if (header_line_height < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
969 header_line_height = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
970
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
971 w32_fill_area (f, hdc, face->background,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
972 right,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
973 WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
974 row->y)),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
975 FRAME_X_RIGHT_FLAGS_AREA_WIDTH (f),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
976 row->visible_height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
977 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
978
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
979 /* Draw the right bitmap. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
980 if (bitmap != NO_BITMAP)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
981 w32_draw_bitmap (w, hdc, row, bitmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
982
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
983 release_frame_dc (f, hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
984 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
985
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
986
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
987 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
988 Line Highlighting
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
989 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
990
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
991 /* External interface to control of standout mode. Not used for W32
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
992 frames. Aborts when called. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
993
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
994 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
995 w32_reassert_line_highlight (new, vpos)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
996 int new, vpos;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
997 {
35000
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
998 struct frame *f;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
999
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1000 if (updating_frame)
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1001 f = updating_frame;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1002 else
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1003 f = SELECTED_FRAME ();
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1004
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1005 if (! FRAME_W32_P (f))
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1006 return;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1007
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1008 abort ();
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1009 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1010
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
1011
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1012 /* Call this when about to modify line at position VPOS and change
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1013 whether it is highlighted. Not used for W32 frames. Aborts when
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1014 called. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
1015
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
1016 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1017 x_change_line_highlight (new_highlight, vpos, y, first_unused_hpos)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1018 int new_highlight, vpos, y, first_unused_hpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1019 {
35000
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1020 struct frame *f;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1021
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1022 if (updating_frame)
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1023 f = updating_frame;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1024 else
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1025 f = SELECTED_FRAME ();
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1026
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1027 if (! FRAME_W32_P (f))
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1028 return;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
1029
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1030 abort ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
1031 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
1032
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
1033
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1034 /* This is called when starting Emacs and when restarting after
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1035 suspend. When starting Emacs, no window is mapped. And nothing
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1036 must be done to Emacs's own window if it is suspended (though that
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1037 rarely happens). */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
1038
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
1039 static void
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
1040 w32_set_terminal_modes (void)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
1041 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
1042 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
1043
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1044 /* This is called when exiting or suspending Emacs. Exiting will make
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1045 the W32 windows go away, and suspending requires no action. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
1046
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
1047 static void
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
1048 w32_reset_terminal_modes (void)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
1049 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
1050 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1051
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1052
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
1053
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1054 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1055 Output Cursor
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1056 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1057
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1058 /* Set the global variable output_cursor to CURSOR. All cursor
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1059 positions are relative to updated_window. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1060
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1061 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1062 set_output_cursor (cursor)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1063 struct cursor_pos *cursor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1064 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1065 output_cursor.hpos = cursor->hpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1066 output_cursor.vpos = cursor->vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1067 output_cursor.x = cursor->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1068 output_cursor.y = cursor->y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1069 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1070
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1071
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1072 /* Set a nominal cursor position.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1073
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1074 HPOS and VPOS are column/row positions in a window glyph matrix. X
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1075 and Y are window text area relative pixel positions.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1076
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1077 If this is done during an update, updated_window will contain the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1078 window that is being updated and the position is the future output
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1079 cursor position for that window. If updated_window is null, use
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1080 selected_window and display the cursor at the given position. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1081
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1082 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1083 w32_cursor_to (vpos, hpos, y, x)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1084 int vpos, hpos, y, x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1085 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1086 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1087
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1088 /* If updated_window is not set, work on selected_window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1089 if (updated_window)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1090 w = updated_window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1091 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1092 w = XWINDOW (selected_window);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1093
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1094 /* Set the output cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1095 output_cursor.hpos = hpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1096 output_cursor.vpos = vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1097 output_cursor.x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1098 output_cursor.y = y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1099
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1100 /* If not called as part of an update, really display the cursor.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1101 This will also set the cursor position of W. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1102 if (updated_window == NULL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1103 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1104 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1105 x_display_cursor (w, 1, hpos, vpos, x, y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1106 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1107 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1108 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1109
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1110
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1111
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1112 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1113 Display Iterator
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1114 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1115
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1116 /* Function prototypes of this page. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1117
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1118 static struct face *x_get_glyph_face_and_encoding P_ ((struct frame *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1119 struct glyph *,
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
1120 wchar_t *,
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
1121 int *));
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1122 static struct face *x_get_char_face_and_encoding P_ ((struct frame *, int,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1123 int, wchar_t *, int));
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1124 static XCharStruct *w32_per_char_metric P_ ((XFontStruct *,
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1125 wchar_t *,
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1126 enum w32_char_font_type));
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1127 static enum w32_char_font_type
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1128 w32_encode_char P_ ((int, wchar_t *, struct font_info *, int *));
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1129 static void x_append_glyph P_ ((struct it *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1130 static void x_append_composite_glyph P_ ((struct it *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1131 static void x_append_stretch_glyph P_ ((struct it *it, Lisp_Object,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1132 int, int, double));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1133 static void x_produce_glyphs P_ ((struct it *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1134 static void x_produce_image_glyph P_ ((struct it *it));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1135
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1136
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1137 /* Dealing with bits of wchar_t as if they were an XChar2B. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1138 #define BUILD_WCHAR_T(byte1, byte2) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1139 ((wchar_t)((((byte1) & 0x00ff) << 8) | ((byte2) & 0x00ff)))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1140
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1141
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1142 #define BYTE1(ch) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1143 (((ch) & 0xff00) >> 8)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1144
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1145 #define BYTE2(ch) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1146 ((ch) & 0x00ff)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1147
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1148
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1149 /* Get metrics of character CHAR2B in FONT. Value is always non-null.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1150 If CHAR2B is not contained in FONT, the font's default character
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1151 metric is returned. */
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1152
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1153 static int
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1154 w32_bdf_per_char_metric (font, char2b, dim, pcm)
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1155 XFontStruct *font;
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1156 wchar_t *char2b;
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1157 int dim;
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1158 XCharStruct * pcm;
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1159 {
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1160 glyph_metric * bdf_metric;
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1161 char buf[2];
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1162
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1163 if (dim == 1)
34112
adfe753a8c4e (w32_bdf_per_char_metric): Dereference pointer correctly for single
Jason Rumney <jasonr@gnu.org>
parents: 34093
diff changeset
1164 buf[0] = (char)(*char2b);
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1165 else
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1166 {
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1167 buf[0] = BYTE1 (*char2b);
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1168 buf[1] = BYTE2 (*char2b);
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1169 }
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1170
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1171 bdf_metric = w32_BDF_TextMetric (font->bdf, buf, dim);
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1172
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1173 if (bdf_metric)
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1174 {
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1175 pcm->width = bdf_metric->dwidth;
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1176 pcm->lbearing = bdf_metric->bbox;
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1177 pcm->rbearing = bdf_metric->dwidth
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1178 - (bdf_metric->bbox + bdf_metric->bbw);
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1179 pcm->ascent = bdf_metric->bboy + bdf_metric->bbh;
33037
365605845e33 (w32_bdf_per_char_metric): Negate descent.
Jason Rumney <jasonr@gnu.org>
parents: 32988
diff changeset
1180 pcm->descent = -bdf_metric->bboy;
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1181
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1182 return 1;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1183 }
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1184 return 0;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1185 }
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1186
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1187
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1188 static int
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1189 w32_native_per_char_metric (font, char2b, font_type, pcm)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1190 XFontStruct *font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1191 wchar_t *char2b;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1192 enum w32_char_font_type font_type;
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1193 XCharStruct * pcm;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1194 {
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1195 HDC hdc = GetDC (NULL);
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1196 HFONT old_font;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1197 BOOL retval = FALSE;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1198
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1199 xassert (font && char2b);
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1200 xassert (font->hfont);
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1201 xassert (font_type == UNICODE_FONT || font_type == ANSI_FONT);
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1202
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1203 old_font = SelectObject (hdc, font->hfont);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1204
31624
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1205 if ((font->tm.tmPitchAndFamily & TMPF_TRUETYPE) != 0)
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1206 {
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1207 ABC char_widths;
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1208
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1209 if (font_type == UNICODE_FONT)
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1210 retval = GetCharABCWidthsW (hdc, *char2b, *char2b, &char_widths);
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1211 else
31624
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1212 retval = GetCharABCWidthsA (hdc, *char2b, *char2b, &char_widths);
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1213
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1214 if (retval)
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1215 {
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1216 pcm->width = char_widths.abcA + char_widths.abcB + char_widths.abcC;
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1217 pcm->lbearing = char_widths.abcA;
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1218 pcm->rbearing = pcm->width - char_widths.abcC;
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1219 pcm->ascent = FONT_BASE (font);
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1220 pcm->descent = FONT_DESCENT (font);
31624
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1221 }
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1222 }
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1223
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1224 if (!retval)
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1225 {
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1226 /* Either font is not a True-type font, or GetCharABCWidthsW
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1227 failed (it is not supported on Windows 9x for instance), so we
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1228 can't determine the full info we would like. All is not lost
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1229 though - we can call GetTextExtentPoint32 to get rbearing and
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1230 deduce width based on the font's per-string overhang. lbearing
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1231 is assumed to be zero. */
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
1232
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
1233 /* TODO: Some Thai characters (and other composites if Windows
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
1234 supports them) do have lbearing, and report their total width
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
1235 as zero. Need some way of handling them when
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
1236 GetCharABCWidthsW fails. */
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1237 SIZE sz;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1238
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1239 if (font_type == UNICODE_FONT)
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1240 retval = GetTextExtentPoint32W (hdc, char2b, 1, &sz);
31624
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1241 else
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1242 retval = GetTextExtentPoint32A (hdc, (char*)char2b, 1, &sz);
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1243
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1244 if (retval)
31624
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1245 {
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1246 pcm->width = sz.cx - font->tm.tmOverhang;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1247 pcm->rbearing = sz.cx;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1248 pcm->lbearing = 0;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1249 pcm->ascent = FONT_BASE (font);
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1250 pcm->descent = FONT_DESCENT (font);
31624
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1251 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1252 }
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1253
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1254
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1255 if (pcm->width == 0 && (pcm->rbearing - pcm->lbearing) == 0)
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1256 {
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1257 retval = FALSE;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1258 }
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1259
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1260 SelectObject (hdc, old_font);
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1261 ReleaseDC (NULL, hdc);
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1262
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1263 return retval;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1264 }
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1265
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1266
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1267 static XCharStruct *
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1268 w32_per_char_metric (font, char2b, font_type)
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1269 XFontStruct *font;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1270 wchar_t *char2b;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1271 enum w32_char_font_type font_type;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1272 {
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1273 /* The result metric information. */
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1274 XCharStruct *pcm;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1275 BOOL retval;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1276
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1277 xassert (font && char2b);
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1278 xassert (font_type != UNKNOWN_FONT);
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1279
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1280 /* Handle the common cases quickly. */
34112
adfe753a8c4e (w32_bdf_per_char_metric): Dereference pointer correctly for single
Jason Rumney <jasonr@gnu.org>
parents: 34093
diff changeset
1281 if (!font->bdf && font->per_char == NULL)
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1282 /* TODO: determine whether char2b exists in font? */
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1283 return &font->max_bounds;
34112
adfe753a8c4e (w32_bdf_per_char_metric): Dereference pointer correctly for single
Jason Rumney <jasonr@gnu.org>
parents: 34093
diff changeset
1284 else if (!font->bdf && *char2b < 128)
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1285 return &font->per_char[*char2b];
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1286
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1287 pcm = &font->scratch;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1288
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1289 if (font_type == BDF_1D_FONT)
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1290 retval = w32_bdf_per_char_metric (font, char2b, 1, pcm);
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1291 else if (font_type == BDF_2D_FONT)
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1292 retval = w32_bdf_per_char_metric (font, char2b, 2, pcm);
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1293 else
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1294 retval = w32_native_per_char_metric (font, char2b, font_type, pcm);
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1295
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1296 if (retval)
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1297 return pcm;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1298
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1299 return NULL;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1300 }
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1301
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1302 void
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1303 w32_cache_char_metrics (font)
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1304 XFontStruct *font;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1305 {
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1306 wchar_t char2b = L'x';
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1307
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1308 /* Cache char metrics for the common cases. */
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1309 if (font->bdf)
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1310 {
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1311 /* TODO: determine whether font is fixed-pitch. */
33037
365605845e33 (w32_bdf_per_char_metric): Negate descent.
Jason Rumney <jasonr@gnu.org>
parents: 32988
diff changeset
1312 if (!w32_bdf_per_char_metric (font, &char2b, 1, &font->max_bounds))
365605845e33 (w32_bdf_per_char_metric): Negate descent.
Jason Rumney <jasonr@gnu.org>
parents: 32988
diff changeset
1313 {
365605845e33 (w32_bdf_per_char_metric): Negate descent.
Jason Rumney <jasonr@gnu.org>
parents: 32988
diff changeset
1314 /* Use the font width and height as max bounds, as not all BDF
365605845e33 (w32_bdf_per_char_metric): Negate descent.
Jason Rumney <jasonr@gnu.org>
parents: 32988
diff changeset
1315 fonts contain the letter 'x'. */
365605845e33 (w32_bdf_per_char_metric): Negate descent.
Jason Rumney <jasonr@gnu.org>
parents: 32988
diff changeset
1316 font->max_bounds.width = FONT_MAX_WIDTH (font);
365605845e33 (w32_bdf_per_char_metric): Negate descent.
Jason Rumney <jasonr@gnu.org>
parents: 32988
diff changeset
1317 font->max_bounds.lbearing = -font->bdf->llx;
365605845e33 (w32_bdf_per_char_metric): Negate descent.
Jason Rumney <jasonr@gnu.org>
parents: 32988
diff changeset
1318 font->max_bounds.rbearing = FONT_MAX_WIDTH (font) - font->bdf->urx;
365605845e33 (w32_bdf_per_char_metric): Negate descent.
Jason Rumney <jasonr@gnu.org>
parents: 32988
diff changeset
1319 font->max_bounds.ascent = FONT_BASE (font);
365605845e33 (w32_bdf_per_char_metric): Negate descent.
Jason Rumney <jasonr@gnu.org>
parents: 32988
diff changeset
1320 font->max_bounds.descent = FONT_DESCENT (font);
365605845e33 (w32_bdf_per_char_metric): Negate descent.
Jason Rumney <jasonr@gnu.org>
parents: 32988
diff changeset
1321 }
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1322 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1323 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1324 {
32727
3ecb42f00b85 (w32_cache_char_metrics): Double check that font is
Jason Rumney <jasonr@gnu.org>
parents: 32720
diff changeset
1325 if (((font->tm.tmPitchAndFamily & TMPF_FIXED_PITCH) != 0)
3ecb42f00b85 (w32_cache_char_metrics): Double check that font is
Jason Rumney <jasonr@gnu.org>
parents: 32720
diff changeset
1326 /* Some fonts (eg DBCS fonts) are marked as fixed width even
3ecb42f00b85 (w32_cache_char_metrics): Double check that font is
Jason Rumney <jasonr@gnu.org>
parents: 32720
diff changeset
1327 though they contain characters of different widths. */
3ecb42f00b85 (w32_cache_char_metrics): Double check that font is
Jason Rumney <jasonr@gnu.org>
parents: 32720
diff changeset
1328 || (font->tm.tmMaxCharWidth != font->tm.tmAveCharWidth))
31624
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1329 {
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1330 /* Font is not fixed pitch, so cache per_char info for the
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1331 ASCII characters. It would be much more work, and probably
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1332 not worth it, to cache other chars, since we may change
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1333 between using Unicode and ANSI text drawing functions at
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1334 run-time. */
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1335 int i;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1336
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1337 font->per_char = xmalloc (128 * sizeof(XCharStruct));
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1338 for (i = 0; i < 128; i++)
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1339 {
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1340 char2b = i;
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1341 w32_native_per_char_metric (font, &char2b, ANSI_FONT,
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1342 &font->per_char[i]);
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1343 }
31624
417b6743c5fa (w32_per_char_metric): Handle non-TrueType fonts.
Andrew Innes <andrewi@gnu.org>
parents: 31116
diff changeset
1344 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1345 else
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1346 w32_native_per_char_metric (font, &char2b, ANSI_FONT,
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1347 &font->max_bounds);
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
1348 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1349 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1350
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1351
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1352 /* Determine if a font is double byte. */
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1353 int w32_font_is_double_byte (XFontStruct *font)
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1354 {
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1355 return font->double_byte_p;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1356 }
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1357
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1358
35287
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
1359 static BOOL
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
1360 w32_use_unicode_for_codepage (codepage)
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
1361 int codepage;
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
1362 {
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
1363 /* If the current codepage is supported, use Unicode for output. */
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
1364 return (w32_enable_unicode_output
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
1365 && codepage != CP_8BIT
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
1366 && (codepage == CP_UNICODE || IsValidCodePage (codepage)));
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
1367 }
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
1368
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1369 /* Encode CHAR2B using encoding information from FONT_INFO. CHAR2B is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1370 the two-byte form of C. Encoding is returned in *CHAR2B. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1371
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1372 static INLINE enum w32_char_font_type
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1373 w32_encode_char (c, char2b, font_info, two_byte_p)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1374 int c;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1375 wchar_t *char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1376 struct font_info *font_info;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1377 int * two_byte_p;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1378 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1379 int charset = CHAR_CHARSET (c);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1380 int codepage;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1381 int unicode_p = 0;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1382
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1383 XFontStruct *font = font_info->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1384
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1385 xassert (two_byte_p);
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1386
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1387 *two_byte_p = w32_font_is_double_byte (font);
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1388
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1389 /* FONT_INFO may define a scheme by which to encode byte1 and byte2.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1390 This may be either a program in a special encoder language or a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1391 fixed encoding. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1392 if (font_info->font_encoder)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1393 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1394 /* It's a program. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1395 struct ccl_program *ccl = font_info->font_encoder;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1396
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1397 if (CHARSET_DIMENSION (charset) == 1)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1398 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1399 ccl->reg[0] = charset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1400 ccl->reg[1] = BYTE2 (*char2b);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1401 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1402 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1403 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1404 ccl->reg[0] = charset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1405 ccl->reg[1] = BYTE1 (*char2b);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1406 ccl->reg[2] = BYTE2 (*char2b);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1407 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1408
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1409 ccl_driver (ccl, NULL, NULL, 0, 0, NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1410
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1411 /* We assume that MSBs are appropriately set/reset by CCL
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1412 program. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1413 if (!*two_byte_p) /* 1-byte font */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1414 *char2b = BUILD_WCHAR_T (0, ccl->reg[1]);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1415 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1416 *char2b = BUILD_WCHAR_T (ccl->reg[1], ccl->reg[2]);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1417 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1418 else if (font_info->encoding[charset])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1419 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1420 /* Fixed encoding scheme. See fontset.h for the meaning of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1421 encoding numbers. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1422 int enc = font_info->encoding[charset];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1423
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1424 if ((enc == 1 || enc == 2)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1425 && CHARSET_DIMENSION (charset) == 2)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1426 *char2b = BUILD_WCHAR_T (BYTE1 (*char2b) | 0x80, BYTE2 (*char2b));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1427
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1428 if (enc == 1 || enc == 3
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1429 || (enc == 4 && CHARSET_DIMENSION (charset) == 1))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1430 *char2b = BUILD_WCHAR_T (BYTE1 (*char2b), BYTE2 (*char2b) | 0x80);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1431 else if (enc == 4)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1432 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1433 int sjis1, sjis2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1434
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1435 ENCODE_SJIS (BYTE1 (*char2b), BYTE2 (*char2b),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1436 sjis1, sjis2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1437 *char2b = BUILD_WCHAR_T (sjis1, sjis2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1438 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1439 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1440 codepage = w32_codepage_for_font (font_info->name);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1441
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1442 /* If charset is not ASCII or Latin-1, may need to move it into
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1443 Unicode space. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1444 if ( font && !font->bdf && w32_use_unicode_for_codepage (codepage)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1445 && charset != CHARSET_ASCII && charset != charset_latin_iso8859_1)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1446 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1447 char temp[3];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1448 temp[0] = BYTE1 (*char2b);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1449 temp[1] = BYTE2 (*char2b);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1450 temp[2] = '\0';
33386
e0f1d0f3a59d (w32_encode_char): Handle CP_UNICODE specially.
Jason Rumney <jasonr@gnu.org>
parents: 33289
diff changeset
1451 if (codepage != CP_UNICODE)
e0f1d0f3a59d (w32_encode_char): Handle CP_UNICODE specially.
Jason Rumney <jasonr@gnu.org>
parents: 33289
diff changeset
1452 {
e0f1d0f3a59d (w32_encode_char): Handle CP_UNICODE specially.
Jason Rumney <jasonr@gnu.org>
parents: 33289
diff changeset
1453 if (temp[0])
e0f1d0f3a59d (w32_encode_char): Handle CP_UNICODE specially.
Jason Rumney <jasonr@gnu.org>
parents: 33289
diff changeset
1454 MultiByteToWideChar (codepage, 0, temp, 2, char2b, 1);
e0f1d0f3a59d (w32_encode_char): Handle CP_UNICODE specially.
Jason Rumney <jasonr@gnu.org>
parents: 33289
diff changeset
1455 else
e0f1d0f3a59d (w32_encode_char): Handle CP_UNICODE specially.
Jason Rumney <jasonr@gnu.org>
parents: 33289
diff changeset
1456 MultiByteToWideChar (codepage, 0, temp+1, 1, char2b, 1);
e0f1d0f3a59d (w32_encode_char): Handle CP_UNICODE specially.
Jason Rumney <jasonr@gnu.org>
parents: 33289
diff changeset
1457 }
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1458 unicode_p = 1;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1459 *two_byte_p = 1;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1460 }
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1461 if (!font)
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1462 return UNKNOWN_FONT;
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1463 else if (font->bdf && CHARSET_DIMENSION (charset) == 1)
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1464 return BDF_1D_FONT;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1465 else if (font->bdf)
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
1466 return BDF_2D_FONT;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1467 else if (unicode_p)
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1468 return UNICODE_FONT;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1469 else
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1470 return ANSI_FONT;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1471 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1472
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1473
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1474 /* Get face and two-byte form of character C in face FACE_ID on frame
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1475 F. The encoding of C is returned in *CHAR2B. MULTIBYTE_P non-zero
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1476 means we want to display multibyte text. Value is a pointer to a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1477 realized face that is ready for display. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1478
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1479 static INLINE struct face *
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1480 x_get_char_face_and_encoding (f, c, face_id, char2b, multibyte_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1481 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1482 int c, face_id;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1483 wchar_t *char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1484 int multibyte_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1485 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1486 struct face *face = FACE_FROM_ID (f, face_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1487
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1488 if (!multibyte_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1489 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1490 /* Unibyte case. We don't have to encode, but we have to make
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1491 sure to use a face suitable for unibyte. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1492 *char2b = BUILD_WCHAR_T (0, c);
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
1493 face_id = FACE_FOR_CHAR (f, face, c);
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
1494 face = FACE_FROM_ID (f, face_id);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1495 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1496 else if (c < 128 && face_id < BASIC_FACE_ID_SENTINEL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1497 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1498 /* Case of ASCII in a face known to fit ASCII. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1499 *char2b = BUILD_WCHAR_T (0, c);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1500 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1501 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1502 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1503 int c1, c2, charset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1504
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1505 /* Split characters into bytes. If c2 is -1 afterwards, C is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1506 really a one-byte character so that byte1 is zero. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1507 SPLIT_CHAR (c, charset, c1, c2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1508 if (c2 > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1509 *char2b = BUILD_WCHAR_T (c1, c2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1510 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1511 *char2b = BUILD_WCHAR_T (0, c1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1512
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1513 /* Maybe encode the character in *CHAR2B. */
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
1514 if (face->font != NULL)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1515 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1516 struct font_info *font_info
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1517 = FONT_INFO_FROM_ID (f, face->font_info_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1518 if (font_info)
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1519 w32_encode_char (c, char2b, font_info, &multibyte_p);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1520 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1521 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1522
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1523 /* Make sure X resources of the face are allocated. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1524 xassert (face != NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1525 PREPARE_FACE_FOR_DISPLAY (f, face);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1526
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1527 return face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1528 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1529
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1530
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1531 /* Get face and two-byte form of character glyph GLYPH on frame F.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1532 The encoding of GLYPH->u.ch is returned in *CHAR2B. Value is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1533 a pointer to a realized face that is ready for display. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1534
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1535 static INLINE struct face *
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
1536 x_get_glyph_face_and_encoding (f, glyph, char2b, two_byte_p)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1537 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1538 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1539 wchar_t *char2b;
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
1540 int *two_byte_p;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1541 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1542 struct face *face;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1543 int dummy = 0;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1544
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1545 xassert (glyph->type == CHAR_GLYPH);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1546 face = FACE_FROM_ID (f, glyph->face_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1547
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
1548 if (two_byte_p)
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
1549 *two_byte_p = 0;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1550 else
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1551 two_byte_p = &dummy;
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
1552
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1553 if (!glyph->multibyte_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1554 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1555 /* Unibyte case. We don't have to encode, but we have to make
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1556 sure to use a face suitable for unibyte. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1557 *char2b = BUILD_WCHAR_T (0, glyph->u.ch);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1558 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1559 else if (glyph->u.ch < 128
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1560 && glyph->face_id < BASIC_FACE_ID_SENTINEL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1561 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1562 /* Case of ASCII in a face known to fit ASCII. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1563 *char2b = BUILD_WCHAR_T (0, glyph->u.ch);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1564 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1565 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1566 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1567 int c1, c2, charset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1568
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1569 /* Split characters into bytes. If c2 is -1 afterwards, C is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1570 really a one-byte character so that byte1 is zero. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1571 SPLIT_CHAR (glyph->u.ch, charset, c1, c2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1572 if (c2 > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1573 *char2b = BUILD_WCHAR_T (c1, c2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1574 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1575 *char2b = BUILD_WCHAR_T (0, c1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1576
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1577 /* Maybe encode the character in *CHAR2B. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1578 if (charset != CHARSET_ASCII)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1579 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1580 struct font_info *font_info
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1581 = FONT_INFO_FROM_ID (f, face->font_info_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1582 if (font_info)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1583 {
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1584 glyph->w32_font_type
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1585 = w32_encode_char (glyph->u.ch, char2b, font_info, two_byte_p);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1586 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1587 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1588 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1589
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1590 /* Make sure X resources of the face are allocated. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1591 xassert (face != NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1592 PREPARE_FACE_FOR_DISPLAY (f, face);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1593 return face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1594 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1595
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1596
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1597 /* Store one glyph for IT->char_to_display in IT->glyph_row.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1598 Called from x_produce_glyphs when IT->glyph_row is non-null. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1599
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1600 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1601 x_append_glyph (it)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1602 struct it *it;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1603 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1604 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1605 enum glyph_row_area area = it->area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1606
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1607 xassert (it->glyph_row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1608 xassert (it->char_to_display != '\n' && it->char_to_display != '\t');
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1609
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1610 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1611 if (glyph < it->glyph_row->glyphs[area + 1])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1612 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1613 glyph->charpos = CHARPOS (it->position);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1614 glyph->object = it->object;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1615 glyph->pixel_width = it->pixel_width;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1616 glyph->voffset = it->voffset;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1617 glyph->type = CHAR_GLYPH;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1618 glyph->multibyte_p = it->multibyte_p;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1619 glyph->left_box_line_p = it->start_of_box_run_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1620 glyph->right_box_line_p = it->end_of_box_run_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1621 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1622 || it->phys_descent > it->descent);
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1623 glyph->padding_p = 0;
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
1624 glyph->glyph_not_available_p = it->glyph_not_available_p;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1625 glyph->face_id = it->face_id;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1626 glyph->u.ch = it->char_to_display;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1627 glyph->w32_font_type = UNKNOWN_FONT;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1628 ++it->glyph_row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1629 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1630 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1631
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1632 /* Store one glyph for the composition IT->cmp_id in IT->glyph_row.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1633 Called from x_produce_glyphs when IT->glyph_row is non-null. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1634
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1635 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1636 x_append_composite_glyph (it)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1637 struct it *it;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1638 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1639 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1640 enum glyph_row_area area = it->area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1641
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1642 xassert (it->glyph_row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1643
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1644 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1645 if (glyph < it->glyph_row->glyphs[area + 1])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1646 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1647 glyph->charpos = CHARPOS (it->position);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1648 glyph->object = it->object;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1649 glyph->pixel_width = it->pixel_width;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1650 glyph->voffset = it->voffset;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1651 glyph->type = COMPOSITE_GLYPH;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1652 glyph->multibyte_p = it->multibyte_p;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1653 glyph->left_box_line_p = it->start_of_box_run_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1654 glyph->right_box_line_p = it->end_of_box_run_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1655 glyph->overlaps_vertically_p = (it->phys_ascent > it->ascent
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1656 || it->phys_descent > it->descent);
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1657 glyph->padding_p = 0;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1658 glyph->glyph_not_available_p = 0;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1659 glyph->face_id = it->face_id;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1660 glyph->u.cmp_id = it->cmp_id;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1661 glyph->w32_font_type = UNKNOWN_FONT;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1662 ++it->glyph_row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1663 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1664 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1665
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1666
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1667 /* Change IT->ascent and IT->height according to the setting of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1668 IT->voffset. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1669
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1670 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1671 take_vertical_position_into_account (it)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1672 struct it *it;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1673 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1674 if (it->voffset)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1675 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1676 if (it->voffset < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1677 /* Increase the ascent so that we can display the text higher
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1678 in the line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1679 it->ascent += abs (it->voffset);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1680 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1681 /* Increase the descent so that we can display the text lower
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1682 in the line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1683 it->descent += it->voffset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1684 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1685 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1686
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1687
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1688 /* Produce glyphs/get display metrics for the image IT is loaded with.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1689 See the description of struct display_iterator in dispextern.h for
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1690 an overview of struct display_iterator. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1691
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1692 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1693 x_produce_image_glyph (it)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1694 struct it *it;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1695 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1696 struct image *img;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1697 struct face *face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1698
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1699 xassert (it->what == IT_IMAGE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1700
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1701 face = FACE_FROM_ID (it->f, it->face_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1702 img = IMAGE_FROM_ID (it->f, it->image_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1703 xassert (img);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1704
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1705 /* Make sure X resources of the face and image are loaded. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1706 PREPARE_FACE_FOR_DISPLAY (it->f, face);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1707 prepare_image_for_display (it->f, img);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1708
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
1709 it->ascent = it->phys_ascent = image_ascent (img, face);
35287
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
1710 it->descent = it->phys_descent = img->height + 2 * img->vmargin - it->ascent;
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
1711 it->pixel_width = img->width + 2 * img->hmargin;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1712
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1713 it->nglyphs = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1714
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1715 if (face->box != FACE_NO_BOX)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1716 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1717 it->ascent += face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1718 it->descent += face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1719
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1720 if (it->start_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1721 it->pixel_width += face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1722 if (it->end_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1723 it->pixel_width += face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1724 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1725
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1726 take_vertical_position_into_account (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1727
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1728 if (it->glyph_row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1729 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1730 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1731 enum glyph_row_area area = it->area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1732
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1733 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1734 if (glyph < it->glyph_row->glyphs[area + 1])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1735 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1736 glyph->charpos = CHARPOS (it->position);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1737 glyph->object = it->object;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1738 glyph->pixel_width = it->pixel_width;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1739 glyph->voffset = it->voffset;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1740 glyph->type = IMAGE_GLYPH;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1741 glyph->multibyte_p = it->multibyte_p;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1742 glyph->left_box_line_p = it->start_of_box_run_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1743 glyph->right_box_line_p = it->end_of_box_run_p;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1744 glyph->overlaps_vertically_p = 0;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1745 glyph->padding_p = 0;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1746 glyph->glyph_not_available_p = 0;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1747 glyph->face_id = it->face_id;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1748 glyph->u.img_id = img->id;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1749 glyph->w32_font_type = UNKNOWN_FONT;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1750 ++it->glyph_row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1751 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1752 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1753 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1754
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1755
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1756 /* Append a stretch glyph to IT->glyph_row. OBJECT is the source
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1757 of the glyph, WIDTH and HEIGHT are the width and height of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1758 stretch. ASCENT is the percentage/100 of HEIGHT to use for the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1759 ascent of the glyph (0 <= ASCENT <= 1). */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1760
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1761 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1762 x_append_stretch_glyph (it, object, width, height, ascent)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1763 struct it *it;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1764 Lisp_Object object;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1765 int width, height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1766 double ascent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1767 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1768 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1769 enum glyph_row_area area = it->area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1770
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1771 xassert (ascent >= 0 && ascent <= 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1772
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1773 glyph = it->glyph_row->glyphs[area] + it->glyph_row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1774 if (glyph < it->glyph_row->glyphs[area + 1])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1775 {
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1776 glyph->charpos = CHARPOS (it->position);
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1777 glyph->object = object;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1778 glyph->pixel_width = width;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1779 glyph->voffset = it->voffset;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1780 glyph->type = STRETCH_GLYPH;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1781 glyph->multibyte_p = it->multibyte_p;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1782 glyph->left_box_line_p = it->start_of_box_run_p;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1783 glyph->right_box_line_p = it->end_of_box_run_p;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1784 glyph->overlaps_vertically_p = 0;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1785 glyph->padding_p = 0;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1786 glyph->glyph_not_available_p = 0;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1787 glyph->face_id = it->face_id;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1788 glyph->u.stretch.ascent = height * ascent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1789 glyph->u.stretch.height = height;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
1790 glyph->w32_font_type = UNKNOWN_FONT;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1791 ++it->glyph_row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1792 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1793 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1794
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1795
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1796 /* Produce a stretch glyph for iterator IT. IT->object is the value
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1797 of the glyph property displayed. The value must be a list
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1798 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1799 being recognized:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1800
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1801 1. `:width WIDTH' specifies that the space should be WIDTH *
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1802 canonical char width wide. WIDTH may be an integer or floating
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1803 point number.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1804
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1805 2. `:relative-width FACTOR' specifies that the width of the stretch
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1806 should be computed from the width of the first character having the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1807 `glyph' property, and should be FACTOR times that width.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1808
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1809 3. `:align-to HPOS' specifies that the space should be wide enough
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1810 to reach HPOS, a value in canonical character units.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1811
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1812 Exactly one of the above pairs must be present.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1813
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1814 4. `:height HEIGHT' specifies that the height of the stretch produced
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1815 should be HEIGHT, measured in canonical character units.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1816
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1817 5. `:relative-height FACTOR' specifies that the height of the the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1818 stretch should be FACTOR times the height of the characters having
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1819 the glyph property.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1820
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1821 Either none or exactly one of 4 or 5 must be present.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1822
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1823 6. `:ascent ASCENT' specifies that ASCENT percent of the height
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1824 of the stretch should be used for the ascent of the stretch.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1825 ASCENT must be in the range 0 <= ASCENT <= 100. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1826
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1827 #define NUMVAL(X) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1828 ((INTEGERP (X) || FLOATP (X)) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1829 ? XFLOATINT (X) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1830 : - 1)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1831
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
1832
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
1833 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1834 x_produce_stretch_glyph (it)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1835 struct it *it;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1836 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1837 /* (space :width WIDTH :height HEIGHT. */
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
1838 #if GLYPH_DEBUG
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
1839 extern Lisp_Object Qspace;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
1840 #endif
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
1841 extern Lisp_Object QCwidth, QCheight, QCascent;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1842 extern Lisp_Object QCrelative_width, QCrelative_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1843 extern Lisp_Object QCalign_to;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1844 Lisp_Object prop, plist;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1845 double width = 0, height = 0, ascent = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1846 struct face *face = FACE_FROM_ID (it->f, it->face_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1847 XFontStruct *font = face->font ? face->font : FRAME_FONT (it->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1848
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1849 PREPARE_FACE_FOR_DISPLAY (it->f, face);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1850
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1851 /* List should start with `space'. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1852 xassert (CONSP (it->object) && EQ (XCAR (it->object), Qspace));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1853 plist = XCDR (it->object);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1854
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1855 /* Compute the width of the stretch. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1856 if (prop = Fplist_get (plist, QCwidth),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1857 NUMVAL (prop) > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1858 /* Absolute width `:width WIDTH' specified and valid. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1859 width = NUMVAL (prop) * CANON_X_UNIT (it->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1860 else if (prop = Fplist_get (plist, QCrelative_width),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1861 NUMVAL (prop) > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1862 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1863 /* Relative width `:relative-width FACTOR' specified and valid.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1864 Compute the width of the characters having the `glyph'
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1865 property. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1866 struct it it2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1867 unsigned char *p = BYTE_POS_ADDR (IT_BYTEPOS (*it));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1868
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1869 it2 = *it;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1870 if (it->multibyte_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1871 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1872 int maxlen = ((IT_BYTEPOS (*it) >= GPT ? ZV : GPT)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1873 - IT_BYTEPOS (*it));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1874 it2.c = STRING_CHAR_AND_LENGTH (p, maxlen, it2.len);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1875 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1876 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1877 it2.c = *p, it2.len = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1878
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1879 it2.glyph_row = NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1880 it2.what = IT_CHARACTER;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1881 x_produce_glyphs (&it2);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1882 width = NUMVAL (prop) * it2.pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1883 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1884 else if (prop = Fplist_get (plist, QCalign_to),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1885 NUMVAL (prop) > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1886 width = NUMVAL (prop) * CANON_X_UNIT (it->f) - it->current_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1887 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1888 /* Nothing specified -> width defaults to canonical char width. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1889 width = CANON_X_UNIT (it->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1890
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1891 /* Compute height. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1892 if (prop = Fplist_get (plist, QCheight),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1893 NUMVAL (prop) > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1894 height = NUMVAL (prop) * CANON_Y_UNIT (it->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1895 else if (prop = Fplist_get (plist, QCrelative_height),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1896 NUMVAL (prop) > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1897 height = FONT_HEIGHT (font) * NUMVAL (prop);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1898 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1899 height = FONT_HEIGHT (font);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1900
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1901 /* Compute percentage of height used for ascent. If
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1902 `:ascent ASCENT' is present and valid, use that. Otherwise,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1903 derive the ascent from the font in use. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1904 if (prop = Fplist_get (plist, QCascent),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1905 NUMVAL (prop) > 0 && NUMVAL (prop) <= 100)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1906 ascent = NUMVAL (prop) / 100.0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1907 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1908 ascent = (double) FONT_BASE (font) / FONT_HEIGHT (font);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1909
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1910 if (width <= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1911 width = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1912 if (height <= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1913 height = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1914
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1915 if (it->glyph_row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1916 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1917 Lisp_Object object = it->stack[it->sp - 1].string;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1918 if (!STRINGP (object))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1919 object = it->w->buffer;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1920 x_append_stretch_glyph (it, object, width, height, ascent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1921 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1922
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1923 it->pixel_width = width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1924 it->ascent = it->phys_ascent = height * ascent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1925 it->descent = it->phys_descent = height - it->ascent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1926 it->nglyphs = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1927
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1928 if (face->box != FACE_NO_BOX)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1929 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1930 it->ascent += face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1931 it->descent += face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1932
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1933 if (it->start_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1934 it->pixel_width += face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1935 if (it->end_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1936 it->pixel_width += face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1937 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1938
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1939 take_vertical_position_into_account (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1940 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1941
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1942 /* Return proper value to be used as baseline offset of font that has
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1943 ASCENT and DESCENT to draw characters by the font at the vertical
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1944 center of the line of frame F.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1945
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1946 Here, out task is to find the value of BOFF in the following figure;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1947
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1948 -------------------------+-----------+-
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1949 -+-+---------+-+ | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1950 | | | | | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1951 | | | | F_ASCENT F_HEIGHT
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1952 | | | ASCENT | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1953 HEIGHT | | | | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1954 | | |-|-+------+-----------|------- baseline
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1955 | | | | BOFF | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1956 | |---------|-+-+ | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1957 | | | DESCENT | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1958 -+-+---------+-+ F_DESCENT |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1959 -------------------------+-----------+-
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1960
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1961 -BOFF + DESCENT + (F_HEIGHT - HEIGHT) / 2 = F_DESCENT
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1962 BOFF = DESCENT + (F_HEIGHT - HEIGHT) / 2 - F_DESCENT
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1963 DESCENT = FONT->descent
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1964 HEIGHT = FONT_HEIGHT (FONT)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1965 F_DESCENT = (F->output_data.x->font->descent
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1966 - F->output_data.x->baseline_offset)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1967 F_HEIGHT = FRAME_LINE_HEIGHT (F)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1968 */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1969
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1970 #define VCENTER_BASELINE_OFFSET(FONT, F) \
33289
834a6b4f08a4 (VCENTER_BASELINE_OFFSET): Fix previous change. If the
Kenichi Handa <handa@m17n.org>
parents: 33218
diff changeset
1971 (FONT_DESCENT (FONT) \
834a6b4f08a4 (VCENTER_BASELINE_OFFSET): Fix previous change. If the
Kenichi Handa <handa@m17n.org>
parents: 33218
diff changeset
1972 + (FRAME_LINE_HEIGHT ((F)) - FONT_HEIGHT ((FONT)) \
834a6b4f08a4 (VCENTER_BASELINE_OFFSET): Fix previous change. If the
Kenichi Handa <handa@m17n.org>
parents: 33218
diff changeset
1973 + (FRAME_LINE_HEIGHT ((F)) > FONT_HEIGHT ((FONT)))) / 2 \
834a6b4f08a4 (VCENTER_BASELINE_OFFSET): Fix previous change. If the
Kenichi Handa <handa@m17n.org>
parents: 33218
diff changeset
1974 - (FONT_DESCENT (FRAME_FONT (F)) - FRAME_BASELINE_OFFSET (F)))
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1975
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1976 /* Produce glyphs/get display metrics for the display element IT is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1977 loaded with. See the description of struct display_iterator in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1978 dispextern.h for an overview of struct display_iterator. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1979
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1980 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1981 x_produce_glyphs (it)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1982 struct it *it;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1983 {
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
1984 it->glyph_not_available_p = 0;
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
1985
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1986 if (it->what == IT_CHARACTER)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1987 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1988 wchar_t char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1989 XFontStruct *font;
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
1990 struct face *face = FACE_FROM_ID (it->f, it->face_id);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1991 XCharStruct *pcm;
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
1992 int font_not_found_p;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1993 struct font_info *font_info;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
1994 int boff; /* baseline offset */
32670
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
1995 /* We may change it->multibyte_p upon unibyte<->multibyte
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
1996 conversion. So, save the current value now and restore it
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
1997 later.
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
1998
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
1999 Note: It seems that we don't have to record multibyte_p in
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
2000 struct glyph because the character code itself tells if or
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
2001 not the character is multibyte. Thus, in the future, we must
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
2002 consider eliminating the field `multibyte_p' in the struct
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
2003 glyph.
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
2004 */
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
2005 int saved_multibyte_p = it->multibyte_p;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2006
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2007 /* Maybe translate single-byte characters to multibyte, or the
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2008 other way. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2009 it->char_to_display = it->c;
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2010 if (!ASCII_BYTE_P (it->c))
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2011 {
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2012 if (unibyte_display_via_language_environment
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2013 && SINGLE_BYTE_CHAR_P (it->c)
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2014 && (it->c >= 0240
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2015 || !NILP (Vnonascii_translation_table)))
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2016 {
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2017 it->char_to_display = unibyte_char_to_multibyte (it->c);
32670
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
2018 it->multibyte_p = 1;
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2019 it->face_id = FACE_FOR_CHAR (it->f, face, it->char_to_display);
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2020 face = FACE_FROM_ID (it->f, it->face_id);
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2021 }
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2022 else if (!SINGLE_BYTE_CHAR_P (it->c)
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2023 && !it->multibyte_p)
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2024 {
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2025 it->char_to_display = multibyte_char_to_unibyte (it->c, Qnil);
32670
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
2026 it->multibyte_p = 0;
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2027 it->face_id = FACE_FOR_CHAR (it->f, face, it->char_to_display);
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2028 face = FACE_FROM_ID (it->f, it->face_id);
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2029 }
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2030 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2031
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2032 /* Get font to use. Encode IT->char_to_display. */
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2033 x_get_char_face_and_encoding (it->f, it->char_to_display,
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2034 it->face_id, &char2b,
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2035 it->multibyte_p);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2036 font = face->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2037
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2038 /* When no suitable font found, use the default font. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2039 font_not_found_p = font == NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2040 if (font_not_found_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2041 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2042 font = FRAME_FONT (it->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2043 boff = it->f->output_data.w32->baseline_offset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2044 font_info = NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2045 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2046 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2047 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2048 font_info = FONT_INFO_FROM_ID (it->f, face->font_info_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2049 boff = font_info->baseline_offset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2050 if (font_info->vertical_centering)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2051 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2052 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2053
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2054 if (it->char_to_display >= ' '
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2055 && (!it->multibyte_p || it->char_to_display < 128))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2056 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2057 /* Either unibyte or ASCII. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2058 int stretched_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2059
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2060 it->nglyphs = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2061
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
2062 pcm = w32_per_char_metric (font, &char2b,
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2063 font->bdf ? BDF_1D_FONT : ANSI_FONT);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2064 it->ascent = FONT_BASE (font) + boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2065 it->descent = FONT_DESCENT (font) - boff;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2066
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2067 if (pcm)
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2068 {
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2069 it->phys_ascent = pcm->ascent + boff;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2070 it->phys_descent = pcm->descent - boff;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2071 it->pixel_width = pcm->width;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2072 }
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2073 else
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2074 {
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2075 it->glyph_not_available_p = 1;
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2076 it->phys_ascent = FONT_BASE (font) + boff;
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2077 it->phys_descent = FONT_DESCENT (font) - boff;
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2078 it->pixel_width = FONT_WIDTH (font);
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2079 }
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2080
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2081 /* If this is a space inside a region of text with
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2082 `space-width' property, change its width. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2083 stretched_p = it->char_to_display == ' ' && !NILP (it->space_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2084 if (stretched_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2085 it->pixel_width *= XFLOATINT (it->space_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2086
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2087 /* If face has a box, add the box thickness to the character
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2088 height. If character has a box line to the left and/or
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2089 right, add the box line width to the character's width. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2090 if (face->box != FACE_NO_BOX)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2091 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2092 int thick = face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2093
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2094 it->ascent += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2095 it->descent += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2096
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2097 if (it->start_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2098 it->pixel_width += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2099 if (it->end_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2100 it->pixel_width += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2101 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2102
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2103 /* If face has an overline, add the height of the overline
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2104 (1 pixel) and a 1 pixel margin to the character height. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2105 if (face->overline_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2106 it->ascent += 2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2107
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2108 take_vertical_position_into_account (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2109
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2110 /* If we have to actually produce glyphs, do it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2111 if (it->glyph_row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2112 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2113 if (stretched_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2114 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2115 /* Translate a space with a `space-width' property
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2116 into a stretch glyph. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2117 double ascent = (double) FONT_BASE (font)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2118 / FONT_HEIGHT (font);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2119 x_append_stretch_glyph (it, it->object, it->pixel_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2120 it->ascent + it->descent, ascent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2121 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2122 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2123 x_append_glyph (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2124
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2125 /* If characters with lbearing or rbearing are displayed
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2126 in this line, record that fact in a flag of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2127 glyph row. This is used to optimize X output code. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2128 if (pcm && (pcm->lbearing < 0 || pcm->rbearing > pcm->width))
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2129 it->glyph_row->contains_overlapping_glyphs_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2130 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2131 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2132 else if (it->char_to_display == '\n')
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2133 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2134 /* A newline has no width but we need the height of the line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2135 it->pixel_width = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2136 it->nglyphs = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2137 it->ascent = it->phys_ascent = FONT_BASE (font) + boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2138 it->descent = it->phys_descent = FONT_DESCENT (font) - boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2139
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2140 if (face->box != FACE_NO_BOX)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2141 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2142 int thick = face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2143 it->ascent += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2144 it->descent += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2145 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2146 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2147 else if (it->char_to_display == '\t')
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2148 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2149 int tab_width = it->tab_width * CANON_X_UNIT (it->f);
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2150 int x = it->current_x + it->continuation_lines_width;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2151 int next_tab_x = ((1 + x + tab_width - 1) / tab_width) * tab_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2152
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2153 /* If the distance from the current position to the next tab
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2154 stop is less than a canonical character width, use the
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2155 tab stop after that. */
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2156 if (next_tab_x - x < CANON_X_UNIT (it->f))
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2157 next_tab_x += tab_width;
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2158
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2159 it->pixel_width = next_tab_x - x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2160 it->nglyphs = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2161 it->ascent = it->phys_ascent = FONT_BASE (font) + boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2162 it->descent = it->phys_descent = FONT_DESCENT (font) - boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2163
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2164 if (it->glyph_row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2165 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2166 double ascent = (double) it->ascent / (it->ascent + it->descent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2167 x_append_stretch_glyph (it, it->object, it->pixel_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2168 it->ascent + it->descent, ascent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2169 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2170 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2171 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2172 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
2173 /* A multi-byte character.
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
2174 If we found a font, this font should give us the right
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2175 metrics. If we didn't find a font, use the frame's
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2176 default font and calculate the width of the character
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2177 from the charset width; this is what old redisplay code
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2178 did. */
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2179 enum w32_char_font_type type;
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2180
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2181 if (font->bdf && CHARSET_DIMENSION (CHAR_CHARSET (it->c)) == 1)
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2182 type = BDF_1D_FONT;
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2183 else if (font->bdf)
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2184 type = BDF_2D_FONT;
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2185 else
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2186 type = UNICODE_FONT;
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2187
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
2188 pcm = w32_per_char_metric (font, &char2b, type);
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2189
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2190 if (font_not_found_p || !pcm)
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2191 {
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2192 int charset = CHAR_CHARSET (it->char_to_display);
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2193
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2194 it->glyph_not_available_p = 1;
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2195 it->pixel_width = (FONT_WIDTH (FRAME_FONT (it->f))
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2196 * CHARSET_WIDTH (charset));
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2197 it->phys_ascent = FONT_BASE (font) + boff;
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2198 it->phys_descent = FONT_DESCENT (font) - boff;
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2199 }
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2200 else
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2201 {
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2202 it->pixel_width = pcm->width;
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2203 it->phys_ascent = pcm->ascent + boff;
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2204 it->phys_descent = pcm->descent - boff;
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2205 if (it->glyph_row
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2206 && (pcm->lbearing < 0
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2207 || pcm->rbearing > pcm->width))
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2208 it->glyph_row->contains_overlapping_glyphs_p = 1;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
2209 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2210 it->nglyphs = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2211 it->ascent = FONT_BASE (font) + boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2212 it->descent = FONT_DESCENT (font) - boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2213 if (face->box != FACE_NO_BOX)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2214 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2215 int thick = face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2216 it->ascent += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2217 it->descent += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2218
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2219 if (it->start_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2220 it->pixel_width += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2221 if (it->end_of_box_run_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2222 it->pixel_width += thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2223 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2224
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2225 /* If face has an overline, add the height of the overline
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2226 (1 pixel) and a 1 pixel margin to the character height. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2227 if (face->overline_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2228 it->ascent += 2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2229
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2230 take_vertical_position_into_account (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2231
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2232 if (it->glyph_row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2233 x_append_glyph (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2234 }
32670
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
2235 it->multibyte_p = saved_multibyte_p;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2236 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2237 else if (it->what == IT_COMPOSITION)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2238 {
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2239 /* Note: A composition is represented as one glyph in the
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2240 glyph matrix. There are no padding glyphs. */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2241 wchar_t char2b;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2242 XFontStruct *font;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2243 struct face *face = FACE_FROM_ID (it->f, it->face_id);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2244 XCharStruct *pcm;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2245 int font_not_found_p;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2246 struct font_info *font_info;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2247 int boff; /* baseline offset */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2248 struct composition *cmp = composition_table[it->cmp_id];
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2249
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2250 /* Maybe translate single-byte characters to multibyte. */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2251 it->char_to_display = it->c;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2252 if (unibyte_display_via_language_environment
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2253 && SINGLE_BYTE_CHAR_P (it->c)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2254 && (it->c >= 0240
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2255 || (it->c >= 0200
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2256 && !NILP (Vnonascii_translation_table))))
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2257 {
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2258 it->char_to_display = unibyte_char_to_multibyte (it->c);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2259 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2260
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2261 /* Get face and font to use. Encode IT->char_to_display. */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2262 it->face_id = FACE_FOR_CHAR (it->f, face, it->char_to_display);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2263 face = FACE_FROM_ID (it->f, it->face_id);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2264 x_get_char_face_and_encoding (it->f, it->char_to_display,
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2265 it->face_id, &char2b, it->multibyte_p);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2266 font = face->font;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2267
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2268 /* When no suitable font found, use the default font. */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2269 font_not_found_p = font == NULL;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2270 if (font_not_found_p)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2271 {
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2272 font = FRAME_FONT (it->f);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2273 boff = it->f->output_data.w32->baseline_offset;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2274 font_info = NULL;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2275 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2276 else
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2277 {
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2278 font_info = FONT_INFO_FROM_ID (it->f, face->font_info_id);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2279 boff = font_info->baseline_offset;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2280 if (font_info->vertical_centering)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2281 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2282 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2283
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2284 /* There are no padding glyphs, so there is only one glyph to
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2285 produce for the composition. Important is that pixel_width,
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2286 ascent and descent are the values of what is drawn by
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2287 draw_glyphs (i.e. the values of the overall glyphs composed). */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2288 it->nglyphs = 1;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2289
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2290 /* If we have not yet calculated pixel size data of glyphs of
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2291 the composition for the current face font, calculate them
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2292 now. Theoretically, we have to check all fonts for the
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2293 glyphs, but that requires much time and memory space. So,
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2294 here we check only the font of the first glyph. This leads
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2295 to incorrect display very rarely, and C-l (recenter) can
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2296 correct the display anyway. */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2297 if (cmp->font != (void *) font)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2298 {
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2299 /* Ascent and descent of the font of the first character of
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2300 this composition (adjusted by baseline offset). Ascent
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2301 and descent of overall glyphs should not be less than
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2302 them respectively. */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2303 int font_ascent = FONT_BASE (font) + boff;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2304 int font_descent = FONT_DESCENT (font) - boff;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2305 /* Bounding box of the overall glyphs. */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2306 int leftmost, rightmost, lowest, highest;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2307 int i, width, ascent, descent;
33218
1d2f8848f63e (x_produce_glyphs): Fix typo in enum name.
Andrew Innes <andrewi@gnu.org>
parents: 33097
diff changeset
2308 enum w32_char_font_type font_type;
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2309
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2310 cmp->font = (void *) font;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2311
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2312 if (font->bdf && CHARSET_DIMENSION (CHAR_CHARSET (it->c)) == 1)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2313 font_type = BDF_1D_FONT;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2314 else if (font->bdf)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2315 font_type = BDF_2D_FONT;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2316 else
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2317 font_type = UNICODE_FONT;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2318
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2319 /* Initialize the bounding box. */
34222
7e09cff3b2ab (x_produce_glyphs): If a font for a component of
Jason Rumney <jasonr@gnu.org>
parents: 34135
diff changeset
2320 if (font_info
7e09cff3b2ab (x_produce_glyphs): If a font for a component of
Jason Rumney <jasonr@gnu.org>
parents: 34135
diff changeset
2321 && (pcm = w32_per_char_metric (font, &char2b, font_type)))
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2322 {
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2323 width = pcm->width;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2324 ascent = pcm->ascent;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2325 descent = pcm->descent;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2326 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2327 else
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2328 {
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2329 width = FONT_WIDTH (font);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2330 ascent = FONT_BASE (font);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2331 descent = FONT_DESCENT (font);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2332 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2333
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2334 rightmost = width;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2335 lowest = - descent + boff;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2336 highest = ascent + boff;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2337 leftmost = 0;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2338
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2339 if (font_info
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2340 && font_info->default_ascent
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2341 && CHAR_TABLE_P (Vuse_default_ascent)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2342 && !NILP (Faref (Vuse_default_ascent,
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2343 make_number (it->char_to_display))))
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2344 highest = font_info->default_ascent + boff;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2345
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2346 /* Draw the first glyph at the normal position. It may be
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2347 shifted to right later if some other glyphs are drawn at
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2348 the left. */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2349 cmp->offsets[0] = 0;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2350 cmp->offsets[1] = boff;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2351
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2352 /* Set cmp->offsets for the remaining glyphs. */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2353 for (i = 1; i < cmp->glyph_len; i++)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2354 {
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2355 int left, right, btm, top;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2356 int ch = COMPOSITION_GLYPH (cmp, i);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2357 int face_id = FACE_FOR_CHAR (it->f, face, ch);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2358
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2359 face = FACE_FROM_ID (it->f, face_id);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2360 x_get_char_face_and_encoding (it->f, ch, face->id, &char2b,
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2361 it->multibyte_p);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2362 font = face->font;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2363 if (font == NULL)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2364 {
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2365 font = FRAME_FONT (it->f);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2366 boff = it->f->output_data.w32->baseline_offset;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2367 font_info = NULL;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2368 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2369 else
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2370 {
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2371 font_info
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2372 = FONT_INFO_FROM_ID (it->f, face->font_info_id);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2373 boff = font_info->baseline_offset;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2374 if (font_info->vertical_centering)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2375 boff = VCENTER_BASELINE_OFFSET (font, it->f) - boff;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2376 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2377
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2378 if (font->bdf && CHARSET_DIMENSION (CHAR_CHARSET (ch)) == 1)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2379 font_type = BDF_1D_FONT;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2380 else if (font->bdf)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2381 font_type = BDF_2D_FONT;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2382 else
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2383 font_type = UNICODE_FONT;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2384
34222
7e09cff3b2ab (x_produce_glyphs): If a font for a component of
Jason Rumney <jasonr@gnu.org>
parents: 34135
diff changeset
2385 if (font_info
7e09cff3b2ab (x_produce_glyphs): If a font for a component of
Jason Rumney <jasonr@gnu.org>
parents: 34135
diff changeset
2386 && (pcm = w32_per_char_metric (font, &char2b, font_type)))
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2387 {
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2388 width = pcm->width;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2389 ascent = pcm->ascent;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2390 descent = pcm->descent;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2391 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2392 else
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2393 {
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2394 width = FONT_WIDTH (font);
34222
7e09cff3b2ab (x_produce_glyphs): If a font for a component of
Jason Rumney <jasonr@gnu.org>
parents: 34135
diff changeset
2395 ascent = 1;
7e09cff3b2ab (x_produce_glyphs): If a font for a component of
Jason Rumney <jasonr@gnu.org>
parents: 34135
diff changeset
2396 descent = 0;
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2397 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2398
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2399 if (cmp->method != COMPOSITION_WITH_RULE_ALTCHARS)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2400 {
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2401 /* Relative composition with or without
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2402 alternate chars. */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2403 left = (leftmost + rightmost - width) / 2;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2404 btm = - descent + boff;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2405 if (font_info && font_info->relative_compose
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2406 && (! CHAR_TABLE_P (Vignore_relative_composition)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2407 || NILP (Faref (Vignore_relative_composition,
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2408 make_number (ch)))))
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2409 {
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2410
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2411 if (- descent >= font_info->relative_compose)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2412 /* One extra pixel between two glyphs. */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2413 btm = highest + 1;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2414 else if (ascent <= 0)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2415 /* One extra pixel between two glyphs. */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2416 btm = lowest - 1 - ascent - descent;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2417 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2418 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2419 else
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2420 {
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2421 /* A composition rule is specified by an integer
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2422 value that encodes global and new reference
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2423 points (GREF and NREF). GREF and NREF are
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2424 specified by numbers as below:
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2425
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2426 0---1---2 -- ascent
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2427 | |
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2428 | |
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2429 | |
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2430 9--10--11 -- center
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2431 | |
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2432 ---3---4---5--- baseline
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2433 | |
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2434 6---7---8 -- descent
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2435 */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2436 int rule = COMPOSITION_RULE (cmp, i);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2437 int gref, nref, grefx, grefy, nrefx, nrefy;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2438
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2439 COMPOSITION_DECODE_RULE (rule, gref, nref);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2440 grefx = gref % 3, nrefx = nref % 3;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2441 grefy = gref / 3, nrefy = nref / 3;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2442
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2443 left = (leftmost
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2444 + grefx * (rightmost - leftmost) / 2
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2445 - nrefx * width / 2);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2446 btm = ((grefy == 0 ? highest
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2447 : grefy == 1 ? 0
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2448 : grefy == 2 ? lowest
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2449 : (highest + lowest) / 2)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2450 - (nrefy == 0 ? ascent + descent
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2451 : nrefy == 1 ? descent - boff
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2452 : nrefy == 2 ? 0
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2453 : (ascent + descent) / 2));
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2454 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2455
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2456 cmp->offsets[i * 2] = left;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2457 cmp->offsets[i * 2 + 1] = btm + descent;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2458
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2459 /* Update the bounding box of the overall glyphs. */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2460 right = left + width;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2461 top = btm + descent + ascent;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2462 if (left < leftmost)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2463 leftmost = left;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2464 if (right > rightmost)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2465 rightmost = right;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2466 if (top > highest)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2467 highest = top;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2468 if (btm < lowest)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2469 lowest = btm;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2470 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2471
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2472 /* If there are glyphs whose x-offsets are negative,
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2473 shift all glyphs to the right and make all x-offsets
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2474 non-negative. */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2475 if (leftmost < 0)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2476 {
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2477 for (i = 0; i < cmp->glyph_len; i++)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2478 cmp->offsets[i * 2] -= leftmost;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2479 rightmost -= leftmost;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2480 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2481
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2482 cmp->pixel_width = rightmost;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2483 cmp->ascent = highest;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2484 cmp->descent = - lowest;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2485 if (cmp->ascent < font_ascent)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2486 cmp->ascent = font_ascent;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2487 if (cmp->descent < font_descent)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2488 cmp->descent = font_descent;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2489 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2490
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2491 it->pixel_width = cmp->pixel_width;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2492 it->ascent = it->phys_ascent = cmp->ascent;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2493 it->descent = it->phys_descent = cmp->descent;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2494
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2495 if (face->box != FACE_NO_BOX)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2496 {
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2497 int thick = face->box_line_width;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2498 it->ascent += thick;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2499 it->descent += thick;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2500
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2501 if (it->start_of_box_run_p)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2502 it->pixel_width += thick;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2503 if (it->end_of_box_run_p)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2504 it->pixel_width += thick;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2505 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2506
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2507 /* If face has an overline, add the height of the overline
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2508 (1 pixel) and a 1 pixel margin to the character height. */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2509 if (face->overline_p)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2510 it->ascent += 2;
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2511
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2512 take_vertical_position_into_account (it);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2513
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2514 if (it->glyph_row)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
2515 x_append_composite_glyph (it);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2516 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2517 else if (it->what == IT_IMAGE)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2518 x_produce_image_glyph (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2519 else if (it->what == IT_STRETCH)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2520 x_produce_stretch_glyph (it);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2521
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2522 /* Accumulate dimensions. Note: can't assume that it->descent > 0
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2523 because this isn't true for images with `:ascent 100'. */
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2524 xassert (it->ascent >= 0 && it->descent >= 0);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2525 if (it->area == TEXT_AREA)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2526 it->current_x += it->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2527
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2528 it->descent += it->extra_line_spacing;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2529
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2530 it->max_ascent = max (it->max_ascent, it->ascent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2531 it->max_descent = max (it->max_descent, it->descent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2532 it->max_phys_ascent = max (it->max_phys_ascent, it->phys_ascent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2533 it->max_phys_descent = max (it->max_phys_descent, it->phys_descent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2534 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2535
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2536
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2537 /* Estimate the pixel height of the mode or top line on frame F.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2538 FACE_ID specifies what line's height to estimate. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2539
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2540 int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2541 x_estimate_mode_line_height (f, face_id)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2542 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2543 enum face_id face_id;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2544 {
34135
2d899d158741 (x_estimate_mode_line_height): If `mode-line' face hasn't a font, use
Jason Rumney <jasonr@gnu.org>
parents: 34112
diff changeset
2545 int height = FONT_HEIGHT (FRAME_FONT (f));
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2546
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2547 /* This function is called so early when Emacs starts that the face
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2548 cache and mode line face are not yet initialized. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2549 if (FRAME_FACE_CACHE (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2550 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2551 struct face *face = FACE_FROM_ID (f, face_id);
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2552 if (face)
34135
2d899d158741 (x_estimate_mode_line_height): If `mode-line' face hasn't a font, use
Jason Rumney <jasonr@gnu.org>
parents: 34112
diff changeset
2553 {
2d899d158741 (x_estimate_mode_line_height): If `mode-line' face hasn't a font, use
Jason Rumney <jasonr@gnu.org>
parents: 34112
diff changeset
2554 if (face->font)
2d899d158741 (x_estimate_mode_line_height): If `mode-line' face hasn't a font, use
Jason Rumney <jasonr@gnu.org>
parents: 34112
diff changeset
2555 height = FONT_HEIGHT (face->font);
2d899d158741 (x_estimate_mode_line_height): If `mode-line' face hasn't a font, use
Jason Rumney <jasonr@gnu.org>
parents: 34112
diff changeset
2556 height += 2 * face->box_line_width;
2d899d158741 (x_estimate_mode_line_height): If `mode-line' face hasn't a font, use
Jason Rumney <jasonr@gnu.org>
parents: 34112
diff changeset
2557 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2558 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2559
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2560 return height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2561 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2562
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
2563
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2564 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2565 Glyph display
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2566 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2567
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2568 /* A sequence of glyphs to be drawn in the same face.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2569
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2570 This data structure is not really completely X specific, so it
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2571 could possibly, at least partially, be useful for other systems. It
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2572 is currently not part of the external redisplay interface because
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2573 it's not clear what other systems will need. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2574
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2575 struct glyph_string
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2576 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2577 /* X-origin of the string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2578 int x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2579
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2580 /* Y-origin and y-position of the base line of this string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2581 int y, ybase;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2582
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2583 /* The width of the string, not including a face extension. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2584 int width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2585
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2586 /* The width of the string, including a face extension. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2587 int background_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2588
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2589 /* The height of this string. This is the height of the line this
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2590 string is drawn in, and can be different from the height of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2591 font the string is drawn in. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2592 int height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2593
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2594 /* Number of pixels this string overwrites in front of its x-origin.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2595 This number is zero if the string has an lbearing >= 0; it is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2596 -lbearing, if the string has an lbearing < 0. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2597 int left_overhang;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2598
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2599 /* Number of pixels this string overwrites past its right-most
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2600 nominal x-position, i.e. x + width. Zero if the string's
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2601 rbearing is <= its nominal width, rbearing - width otherwise. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2602 int right_overhang;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2603
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2604 /* The frame on which the glyph string is drawn. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2605 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2606
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2607 /* The window on which the glyph string is drawn. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2608 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2609
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2610 /* X display and window for convenience. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2611 Window window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2612
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2613 /* The glyph row for which this string was built. It determines the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2614 y-origin and height of the string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2615 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2616
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2617 /* The area within row. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2618 enum glyph_row_area area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2619
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2620 /* Characters to be drawn, and number of characters. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2621 wchar_t *char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2622 int nchars;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2623
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2624 /* A face-override for drawing cursors, mouse face and similar. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2625 enum draw_glyphs_face hl;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2626
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2627 /* Face in which this string is to be drawn. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2628 struct face *face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2629
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2630 /* Font in which this string is to be drawn. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2631 XFontStruct *font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2632
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2633 /* Font info for this string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2634 struct font_info *font_info;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2635
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2636 /* Non-null means this string describes (part of) a composition.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2637 All characters from char2b are drawn composed. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2638 struct composition *cmp;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2639
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2640 /* Index of this glyph string's first character in the glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2641 definition of CMP. If this is zero, this glyph string describes
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2642 the first character of a composition. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2643 int gidx;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2644
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2645 /* 1 means this glyph strings face has to be drawn to the right end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2646 of the window's drawing area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2647 unsigned extends_to_end_of_line_p : 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2648
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2649 /* 1 means the background of this string has been drawn. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2650 unsigned background_filled_p : 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2651
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2652 /* 1 means glyph string must be drawn with 16-bit functions. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2653 unsigned two_byte_p : 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2654
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2655 /* 1 means that the original font determined for drawing this glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2656 string could not be loaded. The member `font' has been set to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2657 the frame's default font in this case. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2658 unsigned font_not_found_p : 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2659
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2660 /* 1 means that the face in which this glyph string is drawn has a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2661 stipple pattern. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2662 unsigned stippled_p : 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2663
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2664 /* 1 means only the foreground of this glyph string must be drawn,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2665 and we should use the physical height of the line this glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2666 string appears in as clip rect. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2667 unsigned for_overlaps_p : 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2668
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2669 /* The GC to use for drawing this glyph string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2670 XGCValues *gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2671
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2672 HDC hdc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2673
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2674 /* A pointer to the first glyph in the string. This glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2675 corresponds to char2b[0]. Needed to draw rectangles if
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2676 font_not_found_p is 1. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2677 struct glyph *first_glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2678
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2679 /* Image, if any. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2680 struct image *img;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2681
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2682 struct glyph_string *next, *prev;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2683 };
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2684
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2685
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2686 /* Encapsulate the different ways of displaying text under W32. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2687
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
2688 void W32_TEXTOUT (s, x, y,chars,nchars)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2689 struct glyph_string * s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2690 int x, y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2691 wchar_t * chars;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2692 int nchars;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2693 {
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2694 int charset_dim = w32_font_is_double_byte (s->gc->font) ? 2 : 1;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2695 if (s->gc->font->bdf)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2696 w32_BDF_TextOut (s->gc->font->bdf, s->hdc,
33037
365605845e33 (w32_bdf_per_char_metric): Negate descent.
Jason Rumney <jasonr@gnu.org>
parents: 32988
diff changeset
2697 x, y, (char *) chars, charset_dim,
365605845e33 (w32_bdf_per_char_metric): Negate descent.
Jason Rumney <jasonr@gnu.org>
parents: 32988
diff changeset
2698 nchars * charset_dim, 0);
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2699 else if (s->first_glyph->w32_font_type == UNICODE_FONT)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2700 ExtTextOutW (s->hdc, x, y, 0, NULL, chars, nchars, NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2701 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2702 ExtTextOut (s->hdc, x, y, 0, NULL, (char *) chars,
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2703 nchars * charset_dim, NULL);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2704 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2705
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2706 #if 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2707
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2708 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2709 x_dump_glyph_string (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2710 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2711 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2712 fprintf (stderr, "glyph string\n");
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2713 fprintf (stderr, " x, y, w, h = %d, %d, %d, %d\n",
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2714 s->x, s->y, s->width, s->height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2715 fprintf (stderr, " ybase = %d\n", s->ybase);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2716 fprintf (stderr, " hl = %d\n", s->hl);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2717 fprintf (stderr, " left overhang = %d, right = %d\n",
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2718 s->left_overhang, s->right_overhang);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2719 fprintf (stderr, " nchars = %d\n", s->nchars);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2720 fprintf (stderr, " extends to end of line = %d\n",
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2721 s->extends_to_end_of_line_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2722 fprintf (stderr, " font height = %d\n", FONT_HEIGHT (s->font));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2723 fprintf (stderr, " bg width = %d\n", s->background_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2724 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2725
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2726 #endif /* GLYPH_DEBUG */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2727
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2728
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2729
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2730 static void x_append_glyph_string_lists P_ ((struct glyph_string **,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2731 struct glyph_string **,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2732 struct glyph_string *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2733 struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2734 static void x_prepend_glyph_string_lists P_ ((struct glyph_string **,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2735 struct glyph_string **,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2736 struct glyph_string *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2737 struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2738 static void x_append_glyph_string P_ ((struct glyph_string **,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2739 struct glyph_string **,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2740 struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2741 static int x_left_overwritten P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2742 static int x_left_overwriting P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2743 static int x_right_overwritten P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2744 static int x_right_overwriting P_ ((struct glyph_string *));
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2745 static int x_fill_glyph_string P_ ((struct glyph_string *, int, int, int,
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2746 int));
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2747 static void w32_init_glyph_string P_ ((struct glyph_string *, HDC hdc,
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2748 wchar_t *, struct window *,
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2749 struct glyph_row *,
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2750 enum glyph_row_area, int,
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2751 enum draw_glyphs_face));
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2752 static int x_draw_glyphs P_ ((struct window *, int , struct glyph_row *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2753 enum glyph_row_area, int, int,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2754 enum draw_glyphs_face, int *, int *, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2755 static void x_set_glyph_string_clipping P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2756 static void x_set_glyph_string_gc P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2757 static void x_draw_glyph_string_background P_ ((struct glyph_string *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2758 int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2759 static void x_draw_glyph_string_foreground P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2760 static void x_draw_composite_glyph_string_foreground P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2761 static void x_draw_glyph_string_box P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2762 static void x_draw_glyph_string P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2763 static void x_compute_glyph_string_overhangs P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2764 static void x_set_cursor_gc P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2765 static void x_set_mode_line_face_gc P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2766 static void x_set_mouse_face_gc P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2767 static void w32_get_glyph_overhangs P_ ((HDC hdc, struct glyph *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2768 struct frame *,
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
2769 int *, int *));
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2770 static void x_compute_overhangs_and_x P_ ((struct glyph_string *, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2771 static int w32_alloc_lighter_color (struct frame *, COLORREF *, double, int);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2772 static void w32_setup_relief_color P_ ((struct frame *, struct relief *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2773 double, int, COLORREF));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2774 static void x_setup_relief_colors P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2775 static void x_draw_image_glyph_string P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2776 static void x_draw_image_relief P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2777 static void x_draw_image_foreground P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2778 static void w32_draw_image_foreground_1 P_ ((struct glyph_string *, HBITMAP));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2779 static void x_fill_image_glyph_string P_ ((struct glyph_string *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2780 static void x_clear_glyph_string_rect P_ ((struct glyph_string *, int,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2781 int, int, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2782 static void w32_draw_relief_rect P_ ((struct frame *, int, int, int, int,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2783 int, int, int, int, RECT *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2784 static void w32_draw_box_rect P_ ((struct glyph_string *, int, int, int, int,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2785 int, int, int, RECT *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2786 static void x_fix_overlapping_area P_ ((struct window *, struct glyph_row *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2787 enum glyph_row_area));
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2788 static int x_fill_stretch_glyph_string P_ ((struct glyph_string *,
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2789 struct glyph_row *,
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2790 enum glyph_row_area, int, int));
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2791
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2792 #if GLYPH_DEBUG
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2793 static void x_check_font P_ ((struct frame *, XFontStruct *));
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2794 #endif
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2795
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2796
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2797 /* Append the list of glyph strings with head H and tail T to the list
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2798 with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the result. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2799
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2800 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2801 x_append_glyph_string_lists (head, tail, h, t)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2802 struct glyph_string **head, **tail;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2803 struct glyph_string *h, *t;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2804 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2805 if (h)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2806 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2807 if (*head)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2808 (*tail)->next = h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2809 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2810 *head = h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2811 h->prev = *tail;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2812 *tail = t;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2813 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2814 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2815
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2816
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2817 /* Prepend the list of glyph strings with head H and tail T to the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2818 list with head *HEAD and tail *TAIL. Set *HEAD and *TAIL to the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2819 result. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2820
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2821 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2822 x_prepend_glyph_string_lists (head, tail, h, t)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2823 struct glyph_string **head, **tail;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2824 struct glyph_string *h, *t;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2825 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2826 if (h)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2827 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2828 if (*head)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2829 (*head)->prev = t;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2830 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2831 *tail = t;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2832 t->next = *head;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2833 *head = h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2834 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2835 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2836
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2837
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2838 /* Append glyph string S to the list with head *HEAD and tail *TAIL.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2839 Set *HEAD and *TAIL to the resulting list. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2840
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2841 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2842 x_append_glyph_string (head, tail, s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2843 struct glyph_string **head, **tail;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2844 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2845 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2846 s->next = s->prev = NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2847 x_append_glyph_string_lists (head, tail, s, s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2848 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2849
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2850
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2851 /* Set S->gc to a suitable GC for drawing glyph string S in cursor
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2852 face. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2853
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2854 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2855 x_set_cursor_gc (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2856 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2857 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2858 if (s->font == FRAME_FONT (s->f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2859 && s->face->background == FRAME_BACKGROUND_PIXEL (s->f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2860 && s->face->foreground == FRAME_FOREGROUND_PIXEL (s->f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2861 && !s->cmp)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2862 s->gc = s->f->output_data.w32->cursor_gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2863 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2864 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2865 /* Cursor on non-default face: must merge. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2866 XGCValues xgcv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2867 unsigned long mask;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2868
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2869 xgcv.background = s->f->output_data.w32->cursor_pixel;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2870 xgcv.foreground = s->face->background;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2871
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2872 /* If the glyph would be invisible, try a different foreground. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2873 if (xgcv.foreground == xgcv.background)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2874 xgcv.foreground = s->face->foreground;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2875 if (xgcv.foreground == xgcv.background)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2876 xgcv.foreground = s->f->output_data.w32->cursor_foreground_pixel;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2877 if (xgcv.foreground == xgcv.background)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2878 xgcv.foreground = s->face->foreground;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2879
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2880 /* Make sure the cursor is distinct from text in this face. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2881 if (xgcv.background == s->face->background
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2882 && xgcv.foreground == s->face->foreground)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2883 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2884 xgcv.background = s->face->foreground;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2885 xgcv.foreground = s->face->background;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2886 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2887
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2888 IF_DEBUG (x_check_font (s->f, s->font));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2889 xgcv.font = s->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2890 mask = GCForeground | GCBackground | GCFont;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2891
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2892 if (FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2893 XChangeGC (NULL, FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2894 mask, &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2895 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2896 FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2897 = XCreateGC (NULL, s->window, mask, &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2898
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2899 s->gc = FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2900 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2901 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2902
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2903
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2904 /* Set up S->gc of glyph string S for drawing text in mouse face. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2905
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2906 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2907 x_set_mouse_face_gc (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2908 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2909 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2910 int face_id;
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2911 struct face *face;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2912
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2913 /* What face has to be used last for the mouse face? */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2914 face_id = FRAME_W32_DISPLAY_INFO (s->f)->mouse_face_face_id;
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
2915 face = FACE_FROM_ID (s->f, face_id);
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2916 if (face == NULL)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2917 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2918
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2919 if (s->first_glyph->type == CHAR_GLYPH)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2920 face_id = FACE_FOR_CHAR (s->f, face, s->first_glyph->u.ch);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2921 else
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
2922 face_id = FACE_FOR_CHAR (s->f, face, 0);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2923 s->face = FACE_FROM_ID (s->f, face_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2924 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2925
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2926 /* If font in this face is same as S->font, use it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2927 if (s->font == s->face->font)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2928 s->gc = s->face->gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2929 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2930 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2931 /* Otherwise construct scratch_cursor_gc with values from FACE
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2932 but font FONT. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2933 XGCValues xgcv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2934 unsigned long mask;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2935
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2936 xgcv.background = s->face->background;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2937 xgcv.foreground = s->face->foreground;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2938 IF_DEBUG (x_check_font (s->f, s->font));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2939 xgcv.font = s->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2940 mask = GCForeground | GCBackground | GCFont;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2941
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2942 if (FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2943 XChangeGC (NULL, FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2944 mask, &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2945 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2946 FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2947 = XCreateGC (NULL, s->window, mask, &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2948
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2949 s->gc = FRAME_W32_DISPLAY_INFO (s->f)->scratch_cursor_gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2950 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2951
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2952 xassert (s->gc != 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2953 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2954
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2955
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2956 /* Set S->gc of glyph string S to a GC suitable for drawing a mode line.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2957 Faces to use in the mode line have already been computed when the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2958 matrix was built, so there isn't much to do, here. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2959
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2960 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2961 x_set_mode_line_face_gc (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2962 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2963 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2964 s->gc = s->face->gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2965 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2966
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2967
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2968 /* Set S->gc of glyph string S for drawing that glyph string. Set
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2969 S->stippled_p to a non-zero value if the face of S has a stipple
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2970 pattern. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2971
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2972 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2973 x_set_glyph_string_gc (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2974 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2975 {
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
2976 PREPARE_FACE_FOR_DISPLAY (s->f, s->face);
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
2977
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2978 if (s->hl == DRAW_NORMAL_TEXT)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2979 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2980 s->gc = s->face->gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2981 s->stippled_p = s->face->stipple != 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2982 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2983 else if (s->hl == DRAW_INVERSE_VIDEO)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2984 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2985 x_set_mode_line_face_gc (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2986 s->stippled_p = s->face->stipple != 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2987 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2988 else if (s->hl == DRAW_CURSOR)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2989 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2990 x_set_cursor_gc (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2991 s->stippled_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2992 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2993 else if (s->hl == DRAW_MOUSE_FACE)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2994 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2995 x_set_mouse_face_gc (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2996 s->stippled_p = s->face->stipple != 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2997 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2998 else if (s->hl == DRAW_IMAGE_RAISED
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
2999 || s->hl == DRAW_IMAGE_SUNKEN)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3000 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3001 s->gc = s->face->gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3002 s->stippled_p = s->face->stipple != 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3003 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3004 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3005 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3006 s->gc = s->face->gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3007 s->stippled_p = s->face->stipple != 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3008 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3009
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3010 /* GC must have been set. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3011 xassert (s->gc != 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3012 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3013
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3014
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3015 /* Return in *R the clipping rectangle for glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3016
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3017 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3018 w32_get_glyph_string_clip_rect (s, r)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3019 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3020 RECT *r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3021 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3022 int r_height, r_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3023
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3024 if (s->row->full_width_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3025 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3026 /* Draw full-width. X coordinates are relative to S->w->left. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3027 int canon_x = CANON_X_UNIT (s->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3028
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3029 r->left = WINDOW_LEFT_MARGIN (s->w) * canon_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3030 r_width = XFASTINT (s->w->width) * canon_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3031
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3032 if (FRAME_HAS_VERTICAL_SCROLL_BARS (s->f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3033 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3034 int width = FRAME_SCROLL_BAR_WIDTH (s->f) * canon_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3035 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (s->f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3036 r->left -= width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3037 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3038
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3039 r->left += FRAME_INTERNAL_BORDER_WIDTH (s->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3040
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3041 /* Unless displaying a mode or menu bar line, which are always
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3042 fully visible, clip to the visible part of the row. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3043 if (s->w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3044 r_height = s->row->visible_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3045 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3046 r_height = s->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3047 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3048 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3049 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3050 /* This is a text line that may be partially visible. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3051 r->left = WINDOW_AREA_TO_FRAME_PIXEL_X (s->w, s->area, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3052 r_width = window_box_width (s->w, s->area);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3053 r_height = s->row->visible_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3054 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3055
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3056 /* Don't use S->y for clipping because it doesn't take partially
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3057 visible lines into account. For example, it can be negative for
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3058 partially visible lines at the top of a window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3059 if (!s->row->full_width_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3060 && MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (s->w, s->row))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3061 r->top = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (s->w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3062 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3063 r->top = max (0, s->row->y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3064
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3065 /* If drawing a tool-bar window, draw it over the internal border
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3066 at the top of the window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3067 if (s->w == XWINDOW (s->f->tool_bar_window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3068 r->top -= s->f->output_data.w32->internal_border_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3069
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3070 /* If S draws overlapping rows, it's sufficient to use the top and
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3071 bottom of the window for clipping because this glyph string
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3072 intentionally draws over other lines. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3073 if (s->for_overlaps_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3074 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3075 r->top = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (s->w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3076 r_height = window_text_bottom_y (s->w) - r->top;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3077 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3078
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3079 r->top = WINDOW_TO_FRAME_PIXEL_Y (s->w, r->top);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3080
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3081 r->bottom = r->top + r_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3082 r->right = r->left + r_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3083 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3084
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3085
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3086 /* Set clipping for output of glyph string S. S may be part of a mode
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3087 line or menu if we don't have X toolkit support. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3088
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3089 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3090 x_set_glyph_string_clipping (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3091 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3092 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3093 RECT r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3094 w32_get_glyph_string_clip_rect (s, &r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3095 w32_set_clip_rectangle (s->hdc, &r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3096 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3097
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3098
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3099 /* Compute left and right overhang of glyph string S. If S is a glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3100 string for a composition, assume overhangs don't exist. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3101
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3102 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3103 x_compute_glyph_string_overhangs (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3104 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3105 {
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3106 /* TODO: Windows does not appear to have a method for
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
3107 getting this info without getting the ABC widths for each
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
3108 individual character and working it out manually. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3109 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3110
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3111
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3112 /* Compute overhangs and x-positions for glyph string S and its
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3113 predecessors, or successors. X is the starting x-position for S.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3114 BACKWARD_P non-zero means process predecessors. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3115
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3116 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3117 x_compute_overhangs_and_x (s, x, backward_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3118 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3119 int x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3120 int backward_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3121 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3122 if (backward_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3123 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3124 while (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3125 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3126 x_compute_glyph_string_overhangs (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3127 x -= s->width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3128 s->x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3129 s = s->prev;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3130 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3131 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3132 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3133 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3134 while (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3135 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3136 x_compute_glyph_string_overhangs (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3137 s->x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3138 x += s->width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3139 s = s->next;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3140 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3141 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3142 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3143
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3144
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3145 /* Set *LEFT and *RIGHT to the left and right overhang of GLYPH on
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3146 frame F. Overhangs of glyphs other than type CHAR_GLYPH are
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3147 assumed to be zero. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3148
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3149 static void
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
3150 w32_get_glyph_overhangs (hdc, glyph, f, left, right)
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
3151 HDC hdc;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3152 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3153 struct frame *f;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
3154 int *left, *right;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3155 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3156 *left = *right = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3157
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3158 if (glyph->type == CHAR_GLYPH)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3159 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3160 XFontStruct *font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3161 struct face *face;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3162 wchar_t char2b;
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
3163 XCharStruct *pcm;
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
3164
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
3165 face = x_get_glyph_face_and_encoding (f, glyph, &char2b, NULL);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3166 font = face->font;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
3167
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
3168 if (font
32720
8530cd0a7455 (w32_per_char_metric): Remove HDC argument. Use
Andrew Innes <andrewi@gnu.org>
parents: 32670
diff changeset
3169 && (pcm = w32_per_char_metric (font, &char2b,
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
3170 glyph->w32_font_type)))
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3171 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3172 if (pcm->rbearing > pcm->width)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3173 *right = pcm->rbearing - pcm->width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3174 if (pcm->lbearing < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3175 *left = -pcm->lbearing;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3176 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3177 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3178 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3179
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3180
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3181 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3182 x_get_glyph_overhangs (glyph, f, left, right)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3183 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3184 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3185 int *left, *right;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3186 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3187 HDC hdc = get_frame_dc (f);
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
3188 /* Convert to unicode! */
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
3189 w32_get_glyph_overhangs (hdc, glyph, f, left, right);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3190 release_frame_dc (f, hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3191 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3192
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3193
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3194 /* Return the index of the first glyph preceding glyph string S that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3195 is overwritten by S because of S's left overhang. Value is -1
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3196 if no glyphs are overwritten. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3197
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3198 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3199 x_left_overwritten (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3200 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3201 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3202 int k;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3203
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3204 if (s->left_overhang)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3205 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3206 int x = 0, i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3207 struct glyph *glyphs = s->row->glyphs[s->area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3208 int first = s->first_glyph - glyphs;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3209
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3210 for (i = first - 1; i >= 0 && x > -s->left_overhang; --i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3211 x -= glyphs[i].pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3212
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3213 k = i + 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3214 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3215 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3216 k = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3217
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3218 return k;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3219 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3220
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3221
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3222 /* Return the index of the first glyph preceding glyph string S that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3223 is overwriting S because of its right overhang. Value is -1 if no
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3224 glyph in front of S overwrites S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3225
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3226 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3227 x_left_overwriting (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3228 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3229 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3230 int i, k, x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3231 struct glyph *glyphs = s->row->glyphs[s->area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3232 int first = s->first_glyph - glyphs;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3233
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3234 k = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3235 x = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3236 for (i = first - 1; i >= 0; --i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3237 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3238 int left, right;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
3239 w32_get_glyph_overhangs (s->hdc, glyphs + i, s->f, &left, &right);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3240 if (x + right > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3241 k = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3242 x -= glyphs[i].pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3243 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3244
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3245 return k;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3246 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3247
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3248
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3249 /* Return the index of the last glyph following glyph string S that is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3250 not overwritten by S because of S's right overhang. Value is -1 if
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3251 no such glyph is found. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3252
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3253 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3254 x_right_overwritten (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3255 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3256 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3257 int k = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3258
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3259 if (s->right_overhang)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3260 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3261 int x = 0, i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3262 struct glyph *glyphs = s->row->glyphs[s->area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3263 int first = (s->first_glyph - glyphs) + (s->cmp ? 1 : s->nchars);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3264 int end = s->row->used[s->area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3265
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3266 for (i = first; i < end && s->right_overhang > x; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3267 x += glyphs[i].pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3268
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3269 k = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3270 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3271
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3272 return k;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3273 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3274
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3275
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3276 /* Return the index of the last glyph following glyph string S that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3277 overwrites S because of its left overhang. Value is negative
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3278 if no such glyph is found. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3279
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3280 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3281 x_right_overwriting (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3282 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3283 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3284 int i, k, x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3285 int end = s->row->used[s->area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3286 struct glyph *glyphs = s->row->glyphs[s->area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3287 int first = (s->first_glyph - glyphs) + (s->cmp ? 1 : s->nchars);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3288
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3289 k = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3290 x = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3291 for (i = first; i < end; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3292 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3293 int left, right;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
3294 w32_get_glyph_overhangs (s->hdc, glyphs + i, s->f, &left, &right);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3295 if (x - left < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3296 k = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3297 x += glyphs[i].pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3298 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3299
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3300 return k;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3301 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3302
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3303
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3304 /* Fill rectangle X, Y, W, H with background color of glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3305
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3306 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3307 x_clear_glyph_string_rect (s, x, y, w, h)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3308 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3309 int x, y, w, h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3310 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3311 int real_x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3312 int real_y = y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3313 int real_w = w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3314 int real_h = h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3315 #if 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3316 /* Take clipping into account. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3317 if (s->gc->clip_mask == Rect)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3318 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3319 real_x = max (real_x, s->gc->clip_rectangle.left);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3320 real_y = max (real_y, s->gc->clip_rectangle.top);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3321 real_w = min (real_w, s->gc->clip_rectangle.right
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3322 - s->gc->clip_rectangle.left);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3323 real_h = min (real_h, s->gc->clip_rectangle.bottom
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3324 - s->gc->clip_rectangle.top);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3325 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3326 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3327 w32_fill_area (s->f, s->hdc, s->gc->background, real_x, real_y,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3328 real_w, real_h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3329 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3330
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3331
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3332 /* Draw the background of glyph_string S. If S->background_filled_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3333 is non-zero don't draw it. FORCE_P non-zero means draw the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3334 background even if it wouldn't be drawn normally. This is used
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3335 when a string preceding S draws into the background of S, or S
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3336 contains the first component of a composition. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3337
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3338 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3339 x_draw_glyph_string_background (s, force_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3340 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3341 int force_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3342 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3343 /* Nothing to do if background has already been drawn or if it
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3344 shouldn't be drawn in the first place. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3345 if (!s->background_filled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3346 {
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3347 #if 0 /* TODO: stipple */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3348 if (s->stippled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3349 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3350 /* Fill background with a stipple pattern. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3351 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3352 XFillRectangle (s->display, s->window, s->gc, s->x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3353 s->y + s->face->box_line_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3354 s->background_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3355 s->height - 2 * s->face->box_line_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3356 XSetFillStyle (s->display, s->gc, FillSolid);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3357 s->background_filled_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3358 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3359 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3360 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3361 if (FONT_HEIGHT (s->font) < s->height - 2 * s->face->box_line_width
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3362 || s->font_not_found_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3363 || s->extends_to_end_of_line_p
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
3364 || s->font->bdf
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3365 || force_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3366 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3367 x_clear_glyph_string_rect (s, s->x, s->y + s->face->box_line_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3368 s->background_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3369 s->height - 2 * s->face->box_line_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3370 s->background_filled_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3371 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3372 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3373 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3374
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3375
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3376 /* Draw the foreground of glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3377
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3378 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3379 x_draw_glyph_string_foreground (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3380 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3381 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3382 int i, x;
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3383 HFONT old_font;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3384
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3385 /* If first glyph of S has a left box line, start drawing the text
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3386 of S to the right of that box line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3387 if (s->face->box != FACE_NO_BOX
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3388 && s->first_glyph->left_box_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3389 x = s->x + s->face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3390 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3391 x = s->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3392
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3393 if (s->for_overlaps_p || (s->background_filled_p && s->hl != DRAW_CURSOR))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3394 SetBkMode (s->hdc, TRANSPARENT);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3395 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3396 SetBkMode (s->hdc, OPAQUE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3397
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3398 SetTextColor (s->hdc, s->gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3399 SetBkColor (s->hdc, s->gc->background);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3400 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3401
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3402 if (s->font && s->font->hfont)
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3403 old_font = SelectObject (s->hdc, s->font->hfont);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3404
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3405 /* Draw characters of S as rectangles if S's font could not be
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3406 loaded. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3407 if (s->font_not_found_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3408 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3409 for (i = 0; i < s->nchars; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3410 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3411 struct glyph *g = s->first_glyph + i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3412
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3413 w32_draw_rectangle (s->hdc, s->gc, x, s->y, g->pixel_width - 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3414 s->height - 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3415 x += g->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3416 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3417 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3418 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3419 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3420 char *char1b = (char *) s->char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3421 int boff = s->font_info->baseline_offset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3422
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3423 if (s->font_info->vertical_centering)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3424 boff = VCENTER_BASELINE_OFFSET (s->font, s->f) - boff;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3425
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3426 /* If we can use 8-bit functions, condense S->char2b. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3427 if (!s->two_byte_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3428 for (i = 0; i < s->nchars; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3429 char1b[i] = BYTE2 (s->char2b[i]);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3430
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3431 /* Draw text with TextOut and friends. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3432 W32_TEXTOUT (s, x, s->ybase - boff, s->char2b, s->nchars);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3433 }
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3434 if (s->font && s->font->hfont)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3435 SelectObject (s->hdc, old_font);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3436 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3437
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3438 /* Draw the foreground of composite glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3439
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3440 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3441 x_draw_composite_glyph_string_foreground (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3442 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3443 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3444 int i, x;
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3445 HFONT old_font;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3446
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3447 /* If first glyph of S has a left box line, start drawing the text
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3448 of S to the right of that box line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3449 if (s->face->box != FACE_NO_BOX
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3450 && s->first_glyph->left_box_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3451 x = s->x + s->face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3452 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3453 x = s->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3454
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3455 /* S is a glyph string for a composition. S->gidx is the index of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3456 the first character drawn for glyphs of this composition.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3457 S->gidx == 0 means we are drawing the very first character of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3458 this composition. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3459
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3460 SetTextColor (s->hdc, s->gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3461 SetBkColor (s->hdc, s->gc->background);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3462 SetBkMode (s->hdc, TRANSPARENT);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3463 SetTextAlign (s->hdc, TA_BASELINE | TA_LEFT);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3464
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3465 if (s->font && s->font->hfont)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3466 old_font = SelectObject (s->hdc, s->font->hfont);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3467
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3468 /* Draw a rectangle for the composition if the font for the very
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3469 first character of the composition could not be loaded. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3470 if (s->font_not_found_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3471 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3472 if (s->gidx == 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3473 w32_draw_rectangle (s->hdc, s->gc, x, s->y, s->width - 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3474 s->height - 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3475 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3476 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3477 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3478 for (i = 0; i < s->nchars; i++, ++s->gidx)
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3479 W32_TEXTOUT (s, x + s->cmp->offsets[s->gidx * 2],
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3480 s->ybase - s->cmp->offsets[s->gidx * 2 + 1],
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3481 s->char2b + i, 1);
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3482 }
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3483 if (s->font && s->font->hfont)
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3484 SelectObject (s->hdc, old_font);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3485 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3486
33524
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3487
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3488 /* Brightness beyond which a color won't have its highlight brightness
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3489 boosted.
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3490
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3491 Nominally, highlight colors for `3d' faces are calculated by
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3492 brightening an object's color by a constant scale factor, but this
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3493 doesn't yield good results for dark colors, so for colors who's
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3494 brightness is less than this value (on a scale of 0-255) have to
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3495 use an additional additive factor.
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3496
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3497 The value here is set so that the default menu-bar/mode-line color
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3498 (grey75) will not have its highlights changed at all. */
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3499 #define HIGHLIGHT_COLOR_DARK_BOOST_LIMIT 187
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3500
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3501
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3502 /* Allocate a color which is lighter or darker than *COLOR by FACTOR
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3503 or DELTA. Try a color with RGB values multiplied by FACTOR first.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3504 If this produces the same color as COLOR, try a color where all RGB
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3505 values have DELTA added. Return the allocated color in *COLOR.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3506 DISPLAY is the X display, CMAP is the colormap to operate on.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3507 Value is non-zero if successful. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
3508
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
3509 static int
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3510 w32_alloc_lighter_color (f, color, factor, delta)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3511 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3512 COLORREF *color;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3513 double factor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3514 int delta;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3515 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3516 COLORREF new;
33524
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3517 long bright;
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3518
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3519 /* On Windows, RGB values are 0-255, not 0-65535, so scale delta. */
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3520 delta /= 256;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3521
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3522 /* Change RGB values by specified FACTOR. Avoid overflow! */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3523 xassert (factor >= 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3524 new = PALETTERGB (min (0xff, factor * GetRValue (*color)),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3525 min (0xff, factor * GetGValue (*color)),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3526 min (0xff, factor * GetBValue (*color)));
33524
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3527
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3528 /* Calculate brightness of COLOR. */
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3529 bright = (2 * GetRValue (*color) + 3 * GetGValue (*color)
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3530 + GetBValue (*color)) / 6;
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3531
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3532 /* We only boost colors that are darker than
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3533 HIGHLIGHT_COLOR_DARK_BOOST_LIMIT. */
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3534 if (bright < HIGHLIGHT_COLOR_DARK_BOOST_LIMIT)
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3535 /* Make an additive adjustment to NEW, because it's dark enough so
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3536 that scaling by FACTOR alone isn't enough. */
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3537 {
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3538 /* How far below the limit this color is (0 - 1, 1 being darker). */
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3539 double dimness = 1 - (double)bright / HIGHLIGHT_COLOR_DARK_BOOST_LIMIT;
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3540 /* The additive adjustment. */
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3541 int min_delta = delta * dimness * factor / 2;
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3542
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3543 if (factor < 1)
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3544 new = PALETTERGB (max (0, min (0xff, min_delta - GetRValue (*color))),
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3545 max (0, min (0xff, min_delta - GetGValue (*color))),
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3546 max (0, min (0xff, min_delta - GetBValue (*color))));
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3547 else
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3548 new = PALETTERGB (max (0, min (0xff, min_delta + GetRValue (*color))),
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3549 max (0, min (0xff, min_delta + GetGValue (*color))),
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3550 max (0, min (0xff, min_delta + GetBValue (*color))));
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3551 }
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3552
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3553 if (new == *color)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3554 new = PALETTERGB (max (0, min (0xff, delta + GetRValue (*color))),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3555 max (0, min (0xff, delta + GetGValue (*color))),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3556 max (0, min (0xff, delta + GetBValue (*color))));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3557
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3558 /* TODO: Map to palette and retry with delta if same? */
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3559 /* TODO: Free colors (if using palette)? */
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
3560
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3561 if (new == *color)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3562 return 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3563
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3564 *color = new;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3565
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3566 return 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3567 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3568
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3569
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3570 /* Set up the foreground color for drawing relief lines of glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3571 string S. RELIEF is a pointer to a struct relief containing the GC
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3572 with which lines will be drawn. Use a color that is FACTOR or
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3573 DELTA lighter or darker than the relief's background which is found
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3574 in S->f->output_data.x->relief_background. If such a color cannot
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3575 be allocated, use DEFAULT_PIXEL, instead. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3576
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3577 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3578 w32_setup_relief_color (f, relief, factor, delta, default_pixel)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
3579 struct frame *f;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3580 struct relief *relief;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3581 double factor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3582 int delta;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3583 COLORREF default_pixel;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3584 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3585 XGCValues xgcv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3586 struct w32_output *di = f->output_data.w32;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3587 unsigned long mask = GCForeground;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3588 COLORREF pixel;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3589 COLORREF background = di->relief_background;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3590 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3591
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3592 /* TODO: Free colors (if using palette)? */
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
3593
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3594 /* Allocate new color. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3595 xgcv.foreground = default_pixel;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3596 pixel = background;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3597 if (w32_alloc_lighter_color (f, &pixel, factor, delta))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3598 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3599 relief->allocated_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3600 xgcv.foreground = relief->pixel = pixel;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3601 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3602
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3603 if (relief->gc == 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3604 {
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3605 #if 0 /* TODO: stipple */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3606 xgcv.stipple = dpyinfo->gray;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3607 mask |= GCStipple;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3608 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3609 relief->gc = XCreateGC (NULL, FRAME_W32_WINDOW (f), mask, &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3610 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3611 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3612 XChangeGC (NULL, relief->gc, mask, &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3613 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3614
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3615
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3616 /* Set up colors for the relief lines around glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3617
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3618 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3619 x_setup_relief_colors (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3620 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3621 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3622 struct w32_output *di = s->f->output_data.w32;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3623 COLORREF color;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3624
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3625 if (s->face->use_box_color_for_shadows_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3626 color = s->face->box_color;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3627 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3628 color = s->gc->background;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3629
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3630 if (di->white_relief.gc == 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3631 || color != di->relief_background)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3632 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3633 di->relief_background = color;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3634 w32_setup_relief_color (s->f, &di->white_relief, 1.2, 0x8000,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3635 WHITE_PIX_DEFAULT (s->f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3636 w32_setup_relief_color (s->f, &di->black_relief, 0.6, 0x4000,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3637 BLACK_PIX_DEFAULT (s->f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3638 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3639 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3640
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3641
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3642 /* Draw a relief on frame F inside the rectangle given by LEFT_X,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3643 TOP_Y, RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the relief
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3644 to draw, it must be >= 0. RAISED_P non-zero means draw a raised
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3645 relief. LEFT_P non-zero means draw a relief on the left side of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3646 the rectangle. RIGHT_P non-zero means draw a relief on the right
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3647 side of the rectangle. CLIP_RECT is the clipping rectangle to use
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3648 when drawing. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3649
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3650 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3651 w32_draw_relief_rect (f, left_x, top_y, right_x, bottom_y, width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3652 raised_p, left_p, right_p, clip_rect)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3653 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3654 int left_x, top_y, right_x, bottom_y, left_p, right_p, raised_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3655 RECT *clip_rect;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3656 {
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
3657 int i;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3658 XGCValues gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3659 HDC hdc = get_frame_dc (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3660
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3661 if (raised_p)
33524
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3662 gc.foreground = f->output_data.w32->white_relief.gc->foreground;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3663 else
33524
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3664 gc.foreground = f->output_data.w32->black_relief.gc->foreground;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3665
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3666 w32_set_clip_rectangle (hdc, clip_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3667
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3668 /* Top. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3669 for (i = 0; i < width; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3670 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3671 w32_fill_area (f, hdc, gc.foreground,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3672 left_x + i * left_p, top_y + i,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3673 (right_x + 1 - i * right_p) - (left_x + i * left_p), 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3674 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3675
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3676 /* Left. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3677 if (left_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3678 for (i = 0; i < width; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3679 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3680 w32_fill_area (f, hdc, gc.foreground,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3681 left_x + i, top_y + i, 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3682 (bottom_y - i) - (top_y + i));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3683 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3684
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3685 w32_set_clip_rectangle (hdc, NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3686
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3687 if (raised_p)
33524
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3688 gc.foreground = f->output_data.w32->black_relief.gc->foreground;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3689 else
33524
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3690 gc.foreground = f->output_data.w32->white_relief.gc->foreground;
cf8e03cd4985 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
Jason Rumney <jasonr@gnu.org>
parents: 33386
diff changeset
3691
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3692
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3693 w32_set_clip_rectangle (hdc, clip_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3694
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3695 /* Bottom. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3696 for (i = 0; i < width; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3697 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3698 w32_fill_area (f, hdc, gc.foreground,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3699 left_x + i * left_p, bottom_y - i,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3700 (right_x + 1 - i * right_p) - left_x + i * left_p, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3701 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3702
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3703 /* Right. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3704 if (right_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3705 for (i = 0; i < width; ++i)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
3706 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3707 w32_fill_area (f, hdc, gc.foreground,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3708 right_x - i, top_y + i + 1, 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3709 (bottom_y - i) - (top_y + i + 1));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3710 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3711
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3712 w32_set_clip_rectangle (hdc, NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3713
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3714 release_frame_dc (f, hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3715 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3716
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3717
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3718 /* Draw a box on frame F inside the rectangle given by LEFT_X, TOP_Y,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3719 RIGHT_X, and BOTTOM_Y. WIDTH is the thickness of the lines to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3720 draw, it must be >= 0. LEFT_P non-zero means draw a line on the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3721 left side of the rectangle. RIGHT_P non-zero means draw a line
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3722 on the right side of the rectangle. CLIP_RECT is the clipping
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3723 rectangle to use when drawing. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3724
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3725 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3726 w32_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3727 left_p, right_p, clip_rect)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3728 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3729 int left_x, top_y, right_x, bottom_y, width, left_p, right_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3730 RECT *clip_rect;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3731 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
3732 w32_set_clip_rectangle (s->hdc, clip_rect);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3733
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3734 /* Top. */
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
3735 w32_fill_area (s->f, s->hdc, s->face->box_color,
32670
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
3736 left_x, top_y, right_x - left_x + 1, width);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3737
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3738 /* Left. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3739 if (left_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3740 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
3741 w32_fill_area (s->f, s->hdc, s->face->box_color,
32670
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
3742 left_x, top_y, width, bottom_y - top_y + 1);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3743 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3744
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3745 /* Bottom. */
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
3746 w32_fill_area (s->f, s->hdc, s->face->box_color,
32670
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
3747 left_x, bottom_y - width + 1, right_x - left_x + 1, width);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3748
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3749 /* Right. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3750 if (right_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3751 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
3752 w32_fill_area (s->f, s->hdc, s->face->box_color,
32670
342abe2141e8 (x_produce_glyphs): Handle unibyte_display_via_language_environment correctly.
Jason Rumney <jasonr@gnu.org>
parents: 32022
diff changeset
3753 right_x - width + 1, top_y, width, bottom_y - top_y + 1);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3754 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3755
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
3756 w32_set_clip_rectangle (s->hdc, NULL);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3757 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3758
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3759
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3760 /* Draw a box around glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3761
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3762 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3763 x_draw_glyph_string_box (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3764 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3765 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3766 int width, left_x, right_x, top_y, bottom_y, last_x, raised_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3767 int left_p, right_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3768 struct glyph *last_glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3769 RECT clip_rect;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3770
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3771 last_x = window_box_right (s->w, s->area);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3772 if (s->row->full_width_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3773 && !s->w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3774 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3775 last_x += FRAME_X_RIGHT_FLAGS_AREA_WIDTH (s->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3776 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (s->f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3777 last_x += FRAME_SCROLL_BAR_WIDTH (s->f) * CANON_X_UNIT (s->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3778 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3779
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3780 /* The glyph that may have a right box line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3781 last_glyph = (s->cmp || s->img
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3782 ? s->first_glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3783 : s->first_glyph + s->nchars - 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3784
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3785 width = s->face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3786 raised_p = s->face->box == FACE_RAISED_BOX;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3787 left_x = s->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3788 right_x = ((s->row->full_width_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3789 ? last_x - 1
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3790 : min (last_x, s->x + s->background_width) - 1));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3791 top_y = s->y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3792 bottom_y = top_y + s->height - 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3793
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3794 left_p = (s->first_glyph->left_box_line_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3795 || (s->hl == DRAW_MOUSE_FACE
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3796 && (s->prev == NULL
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3797 || s->prev->hl != s->hl)));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3798 right_p = (last_glyph->right_box_line_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3799 || (s->hl == DRAW_MOUSE_FACE
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3800 && (s->next == NULL
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3801 || s->next->hl != s->hl)));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3802
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3803 w32_get_glyph_string_clip_rect (s, &clip_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3804
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3805 if (s->face->box == FACE_SIMPLE_BOX)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3806 w32_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3807 left_p, right_p, &clip_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3808 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3809 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3810 x_setup_relief_colors (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3811 w32_draw_relief_rect (s->f, left_x, top_y, right_x, bottom_y,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3812 width, raised_p, left_p, right_p, &clip_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3813 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3814 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3815
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3816
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3817 /* Draw foreground of image glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3818
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3819 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3820 x_draw_image_foreground (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3821 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3822 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3823 int x;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
3824 int y = s->ybase - image_ascent (s->img, s->face);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3825
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3826 /* If first glyph of S has a left box line, start drawing it to the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3827 right of that line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3828 if (s->face->box != FACE_NO_BOX
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3829 && s->first_glyph->left_box_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3830 x = s->x + s->face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3831 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3832 x = s->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3833
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3834 /* If there is a margin around the image, adjust x- and y-position
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3835 by that margin. */
35287
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
3836 x += s->img->hmargin;
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
3837 y += s->img->vmargin;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3838
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3839 SaveDC (s->hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3840
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3841 if (s->img->pixmap)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3842 {
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3843 #if 0 /* TODO: image mask */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3844 if (s->img->mask)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3845 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3846 /* We can't set both a clip mask and use XSetClipRectangles
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3847 because the latter also sets a clip mask. We also can't
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3848 trust on the shape extension to be available
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3849 (XShapeCombineRegion). So, compute the rectangle to draw
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3850 manually. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3851 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3852 | GCFunction);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3853 XGCValues xgcv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3854 XRectangle clip_rect, image_rect, r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3855
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3856 xgcv.clip_mask = s->img->mask;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3857 xgcv.clip_x_origin = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3858 xgcv.clip_y_origin = y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3859 xgcv.function = GXcopy;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3860 XChangeGC (s->display, s->gc, mask, &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3861
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3862 w32_get_glyph_string_clip_rect (s, &clip_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3863 image_rect.x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3864 image_rect.y = y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3865 image_rect.width = s->img->width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3866 image_rect.height = s->img->height;
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
3867 if (IntersectRect (&r, &clip_rect, &image_rect))
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3868 XCopyArea (s->display, s->img->pixmap, s->window, s->gc,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3869 r.x - x, r.y - y, r.width, r.height, r.x, r.y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3870 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3871 else
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
3872 #endif
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3873 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3874 HDC compat_hdc = CreateCompatibleDC (s->hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3875 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3876 HBRUSH orig_brush = SelectObject (s->hdc, fg_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3877 HGDIOBJ orig_obj = SelectObject (compat_hdc, s->img->pixmap);
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
3878 x_set_glyph_string_clipping (s);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3879
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3880 SetTextColor (s->hdc, s->gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3881 SetBkColor (s->hdc, s->gc->background);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3882 #if 0 /* From w32bdf.c (which is from Meadow). */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3883 BitBlt (s->hdc, x, y, s->img->width, s->img->height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3884 compat_hdc, 0, 0, SRCCOPY);
34823
ace8dd8cf098 (w32_draw_bitmap): Fix drawing so it does not appear in the wrong colors
Jason Rumney <jasonr@gnu.org>
parents: 34784
diff changeset
3885 BitBlt (s->hdc, x, y, s->img->width, s->img->height,
ace8dd8cf098 (w32_draw_bitmap): Fix drawing so it does not appear in the wrong colors
Jason Rumney <jasonr@gnu.org>
parents: 34784
diff changeset
3886 compat_hdc, 0, 0, 0xB8074A);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3887 #else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3888 BitBlt (s->hdc, x, y, s->img->width, s->img->height,
34823
ace8dd8cf098 (w32_draw_bitmap): Fix drawing so it does not appear in the wrong colors
Jason Rumney <jasonr@gnu.org>
parents: 34784
diff changeset
3889 compat_hdc, 0, 0, 0xE20746);
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
3890 #endif
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3891 SelectObject (s->hdc, orig_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3892 DeleteObject (fg_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3893 SelectObject (compat_hdc, orig_obj);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3894 DeleteDC (compat_hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3895
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3896 /* When the image has a mask, we can expect that at
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3897 least part of a mouse highlight or a block cursor will
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3898 be visible. If the image doesn't have a mask, make
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3899 a block cursor visible by drawing a rectangle around
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3900 the image. I believe it's looking better if we do
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3901 nothing here for mouse-face. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3902 if (s->hl == DRAW_CURSOR)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3903 w32_draw_rectangle (s->hdc, s->gc, x, y, s->img->width - 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3904 s->img->height - 1);
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
3905 w32_set_clip_rectangle (s->hdc, NULL);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3906 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3907 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3908 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3909 w32_draw_rectangle (s->hdc, s->gc, x, y, s->img->width -1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3910 s->img->height - 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3911
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3912 RestoreDC (s->hdc ,-1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3913 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3914
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3915
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3916
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3917 /* Draw a relief around the image glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3918
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3919 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3920 x_draw_image_relief (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3921 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3922 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3923 int x0, y0, x1, y1, thick, raised_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3924 RECT r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3925 int x;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
3926 int y = s->ybase - image_ascent (s->img, s->face);
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
3927
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3928 /* If first glyph of S has a left box line, start drawing it to the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3929 right of that line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3930 if (s->face->box != FACE_NO_BOX
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3931 && s->first_glyph->left_box_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3932 x = s->x + s->face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3933 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3934 x = s->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3935
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3936 /* If there is a margin around the image, adjust x- and y-position
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3937 by that margin. */
35287
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
3938 x += s->img->hmargin;
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
3939 y += s->img->vmargin;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3940
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3941 if (s->hl == DRAW_IMAGE_SUNKEN
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3942 || s->hl == DRAW_IMAGE_RAISED)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3943 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3944 thick = tool_bar_button_relief > 0 ? tool_bar_button_relief : 3;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3945 raised_p = s->hl == DRAW_IMAGE_RAISED;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3946 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3947 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3948 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3949 thick = abs (s->img->relief);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3950 raised_p = s->img->relief > 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3951 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3952
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3953 x0 = x - thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3954 y0 = y - thick;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3955 x1 = x + s->img->width + thick - 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3956 y1 = y + s->img->height + thick - 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3957
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3958 x_setup_relief_colors (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3959 w32_get_glyph_string_clip_rect (s, &r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3960 w32_draw_relief_rect (s->f, x0, y0, x1, y1, thick, raised_p, 1, 1, &r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3961 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3962
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3963
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3964 /* Draw the foreground of image glyph string S to PIXMAP. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3965
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3966 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3967 w32_draw_image_foreground_1 (s, pixmap)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3968 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3969 HBITMAP pixmap;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3970 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3971 HDC hdc = CreateCompatibleDC (s->hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3972 HGDIOBJ orig_hdc_obj = SelectObject (hdc, pixmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3973 int x;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
3974 int y = s->ybase - s->y - image_ascent (s->img, s->face);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3975
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3976 /* If first glyph of S has a left box line, start drawing it to the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3977 right of that line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3978 if (s->face->box != FACE_NO_BOX
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3979 && s->first_glyph->left_box_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3980 x = s->face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3981 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3982 x = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3983
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3984 /* If there is a margin around the image, adjust x- and y-position
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3985 by that margin. */
35287
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
3986 x += s->img->hmargin;
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
3987 y += s->img->vmargin;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3988
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3989 if (s->img->pixmap)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3990 {
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
3991 #if 0 /* TODO: image mask */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3992 if (s->img->mask)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3993 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3994 /* We can't set both a clip mask and use XSetClipRectangles
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3995 because the latter also sets a clip mask. We also can't
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3996 trust on the shape extension to be available
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3997 (XShapeCombineRegion). So, compute the rectangle to draw
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3998 manually. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
3999 unsigned long mask = (GCClipMask | GCClipXOrigin | GCClipYOrigin
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4000 | GCFunction);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4001 XGCValues xgcv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4002
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4003 xgcv.clip_mask = s->img->mask;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4004 xgcv.clip_x_origin = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4005 xgcv.clip_y_origin = y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4006 xgcv.function = GXcopy;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4007 XChangeGC (s->display, s->gc, mask, &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4008
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4009 XCopyArea (s->display, s->img->pixmap, pixmap, s->gc,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4010 0, 0, s->img->width, s->img->height, x, y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4011 XSetClipMask (s->display, s->gc, None);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4012 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4013 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4014 #endif
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4015 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4016 HDC compat_hdc = CreateCompatibleDC (hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4017 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4018 HBRUSH orig_brush = SelectObject (hdc, fg_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4019 HGDIOBJ orig_obj = SelectObject (compat_hdc, s->img->pixmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4020
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4021 SetTextColor (hdc, s->gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4022 SetBkColor (hdc, s->gc->background);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4023 #if 0 /* From w32bdf.c (which is from Meadow). */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4024 BitBlt (hdc, x, y, s->img->width, s->img->height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4025 compat_hdc, 0, 0, SRCCOPY);
34823
ace8dd8cf098 (w32_draw_bitmap): Fix drawing so it does not appear in the wrong colors
Jason Rumney <jasonr@gnu.org>
parents: 34784
diff changeset
4026 BitBlt (hdc, x, y, s->img->width, s->img->height,
ace8dd8cf098 (w32_draw_bitmap): Fix drawing so it does not appear in the wrong colors
Jason Rumney <jasonr@gnu.org>
parents: 34784
diff changeset
4027 compat_hdc, 0, 0, 0xB8074A);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4028 #else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4029 BitBlt (hdc, x, y, s->img->width, s->img->height,
34823
ace8dd8cf098 (w32_draw_bitmap): Fix drawing so it does not appear in the wrong colors
Jason Rumney <jasonr@gnu.org>
parents: 34784
diff changeset
4030 compat_hdc, 0, 0, 0xE20746);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4031 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4032 SelectObject (hdc, orig_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4033 DeleteObject (fg_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4034 SelectObject (compat_hdc, orig_obj);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4035 DeleteDC (compat_hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4036
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4037 /* When the image has a mask, we can expect that at
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4038 least part of a mouse highlight or a block cursor will
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4039 be visible. If the image doesn't have a mask, make
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4040 a block cursor visible by drawing a rectangle around
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4041 the image. I believe it's looking better if we do
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4042 nothing here for mouse-face. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4043 if (s->hl == DRAW_CURSOR)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4044 w32_draw_rectangle (hdc, s->gc, x, y, s->img->width - 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4045 s->img->height - 1);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4046 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4047 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4048 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4049 w32_draw_rectangle (hdc, s->gc, x, y, s->img->width - 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4050 s->img->height - 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4051
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4052 SelectObject (hdc, orig_hdc_obj);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4053 DeleteDC (hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4054 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4055
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4056
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4057 /* Draw part of the background of glyph string S. X, Y, W, and H
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4058 give the rectangle to draw. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4059
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4060 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4061 x_draw_glyph_string_bg_rect (s, x, y, w, h)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4062 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4063 int x, y, w, h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4064 {
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
4065 #if 0 /* TODO: stipple */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4066 if (s->stippled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4067 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4068 /* Fill background with a stipple pattern. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4069 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4070 XFillRectangle (s->display, s->window, s->gc, x, y, w, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4071 XSetFillStyle (s->display, s->gc, FillSolid);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4072 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4073 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4074 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4075 x_clear_glyph_string_rect (s, x, y, w, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4076 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4077
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4078
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4079 /* Draw image glyph string S.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4080
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4081 s->y
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4082 s->x +-------------------------
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4083 | s->face->box
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4084 |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4085 | +-------------------------
35287
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
4086 | | s->img->vmargin
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4087 | |
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4088 | | +-------------------
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4089 | | | the image
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4090
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4091 */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4092
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4093 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4094 x_draw_image_glyph_string (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4095 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4096 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4097 int x, y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4098 int box_line_width = s->face->box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4099 int height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4100 HBITMAP pixmap = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4101
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4102 height = s->height - 2 * box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4103
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4104 /* Fill background with face under the image. Do it only if row is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4105 taller than image or if image has a clip mask to reduce
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4106 flickering. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4107 s->stippled_p = s->face->stipple != 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4108 if (height > s->img->height
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
4109 || s->img->hmargin
35287
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
4110 || s->img->vmargin
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
4111 #if 0 /* TODO: image mask */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4112 || s->img->mask
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4113 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4114 || s->img->pixmap == 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4115 || s->width != s->background_width)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4116 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4117 if (box_line_width && s->first_glyph->left_box_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4118 x = s->x + box_line_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4119 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4120 x = s->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4121
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4122 y = s->y + box_line_width;
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
4123 #if 0 /* TODO: image mask */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4124 if (s->img->mask)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4125 {
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
4126 /* Create a pixmap as large as the glyph string. Fill it
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
4127 with the background color. Copy the image to it, using
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
4128 its mask. Copy the temporary pixmap to the display. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4129 Screen *screen = FRAME_X_SCREEN (s->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4130 int depth = DefaultDepthOfScreen (screen);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4131
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4132 /* Create a pixmap as large as the glyph string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4133 pixmap = XCreatePixmap (s->display, s->window,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4134 s->background_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4135 s->height, depth);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4136
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4137 /* Don't clip in the following because we're working on the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4138 pixmap. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4139 XSetClipMask (s->display, s->gc, None);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4140
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4141 /* Fill the pixmap with the background color/stipple. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4142 if (s->stippled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4143 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4144 /* Fill background with a stipple pattern. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4145 XSetFillStyle (s->display, s->gc, FillOpaqueStippled);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4146 XFillRectangle (s->display, pixmap, s->gc,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4147 0, 0, s->background_width, s->height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4148 XSetFillStyle (s->display, s->gc, FillSolid);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4149 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4150 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4151 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4152 XGCValues xgcv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4153 XGetGCValues (s->display, s->gc, GCForeground | GCBackground,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4154 &xgcv);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4155 XSetForeground (s->display, s->gc, xgcv.background);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4156 XFillRectangle (s->display, pixmap, s->gc,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4157 0, 0, s->background_width, s->height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4158 XSetForeground (s->display, s->gc, xgcv.foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4159 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4160 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4161 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4162 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4163 x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4164
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4165 s->background_filled_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4166 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4167
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4168 /* Draw the foreground. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4169 if (pixmap != 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4170 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4171 w32_draw_image_foreground_1 (s, pixmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4172 x_set_glyph_string_clipping (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4173 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4174 HDC compat_hdc = CreateCompatibleDC (s->hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4175 HBRUSH fg_brush = CreateSolidBrush (s->gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4176 HBRUSH orig_brush = SelectObject (s->hdc, fg_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4177 HGDIOBJ orig_obj = SelectObject (compat_hdc, pixmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4178
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4179 SetTextColor (s->hdc, s->gc->foreground);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4180 SetBkColor (s->hdc, s->gc->background);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4181 #if 0 /* From w32bdf.c (which is from Meadow). */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4182 BitBlt (s->hdc, s->x, s->y, s->background_width, s->height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4183 compat_hdc, 0, 0, SRCCOPY);
34823
ace8dd8cf098 (w32_draw_bitmap): Fix drawing so it does not appear in the wrong colors
Jason Rumney <jasonr@gnu.org>
parents: 34784
diff changeset
4184 BitBlt (s->hdc, s->x, s->y, s->background_width, s->height,
ace8dd8cf098 (w32_draw_bitmap): Fix drawing so it does not appear in the wrong colors
Jason Rumney <jasonr@gnu.org>
parents: 34784
diff changeset
4185 compat_hdc, 0, 0, 0xB8074A);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4186 #else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4187 BitBlt (s->hdc, s->x, s->y, s->background_width, s->height,
34823
ace8dd8cf098 (w32_draw_bitmap): Fix drawing so it does not appear in the wrong colors
Jason Rumney <jasonr@gnu.org>
parents: 34784
diff changeset
4188 compat_hdc, 0, 0, 0xE20746);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4189 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4190 SelectObject (s->hdc, orig_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4191 DeleteObject (fg_brush);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4192 SelectObject (compat_hdc, orig_obj);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4193 DeleteDC (compat_hdc);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4194 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4195 DeleteObject (pixmap);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4196 pixmap = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4197 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4198 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4199 x_draw_image_foreground (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4200
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4201 /* If we must draw a relief around the image, do it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4202 if (s->img->relief
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4203 || s->hl == DRAW_IMAGE_RAISED
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4204 || s->hl == DRAW_IMAGE_SUNKEN)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4205 x_draw_image_relief (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4206 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4207
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4208
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4209 /* Draw stretch glyph string S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4210
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4211 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4212 x_draw_stretch_glyph_string (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4213 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4214 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4215 xassert (s->first_glyph->type == STRETCH_GLYPH);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4216 s->stippled_p = s->face->stipple != 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4217
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4218 if (s->hl == DRAW_CURSOR
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4219 && !x_stretch_cursor_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4220 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4221 /* If `x-stretch-block-cursor' is nil, don't draw a block cursor
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4222 as wide as the stretch glyph. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4223 int width = min (CANON_X_UNIT (s->f), s->background_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4224
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4225 /* Draw cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4226 x_draw_glyph_string_bg_rect (s, s->x, s->y, width, s->height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4227
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4228 /* Clear rest using the GC of the original non-cursor face. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4229 if (width < s->background_width)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4230 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4231 XGCValues *gc = s->face->gc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4232 int x = s->x + width, y = s->y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4233 int w = s->background_width - width, h = s->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4234 RECT r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4235 HDC hdc = s->hdc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4236 w32_get_glyph_string_clip_rect (s, &r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4237 w32_set_clip_rectangle (hdc, &r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4238
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
4239 #if 0 /* TODO: stipple */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4240 if (s->face->stipple)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4241 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4242 /* Fill background with a stipple pattern. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4243 XSetFillStyle (s->display, gc, FillOpaqueStippled);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4244 XFillRectangle (s->display, s->window, gc, x, y, w, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4245 XSetFillStyle (s->display, gc, FillSolid);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4246 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4247 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4248 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4249 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4250 w32_fill_area (s->f, s->hdc, gc->background, x, y, w, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4251 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4252 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4253 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4254 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4255 x_draw_glyph_string_bg_rect (s, s->x, s->y, s->background_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4256 s->height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4257
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4258 s->background_filled_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4259 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4260
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4261
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4262 /* Draw glyph string S. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
4263
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
4264 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4265 x_draw_glyph_string (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4266 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4267 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4268 /* If S draws into the background of its successor, draw the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4269 background of the successor first so that S can draw into it.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4270 This makes S->next use XDrawString instead of XDrawImageString. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4271 if (s->next && s->right_overhang && !s->for_overlaps_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4272 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4273 xassert (s->next->img == NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4274 x_set_glyph_string_gc (s->next);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4275 x_set_glyph_string_clipping (s->next);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4276 x_draw_glyph_string_background (s->next, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4277 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4278
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4279 /* Set up S->gc, set clipping and draw S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4280 x_set_glyph_string_gc (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4281 x_set_glyph_string_clipping (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4282
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4283 switch (s->first_glyph->type)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4284 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4285 case IMAGE_GLYPH:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4286 x_draw_image_glyph_string (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4287 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4288
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4289 case STRETCH_GLYPH:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4290 x_draw_stretch_glyph_string (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4291 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4292
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4293 case CHAR_GLYPH:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4294 if (s->for_overlaps_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4295 s->background_filled_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4296 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4297 x_draw_glyph_string_background (s, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4298 x_draw_glyph_string_foreground (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4299 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4300
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4301 case COMPOSITE_GLYPH:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4302 if (s->for_overlaps_p || s->gidx > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4303 s->background_filled_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4304 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4305 x_draw_glyph_string_background (s, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4306 x_draw_composite_glyph_string_foreground (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4307 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4308
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4309 default:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4310 abort ();
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4311 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4312
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4313 if (!s->for_overlaps_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4314 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4315 /* Draw underline. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
4316 if (s->face->underline_p
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
4317 && (s->font->bdf || !s->font->tm.tmUnderlined))
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4318 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4319 unsigned long h = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4320 unsigned long dy = s->height - h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4321
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4322 if (s->face->underline_defaulted_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4323 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4324 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4325 s->y + dy, s->width, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4326 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4327 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4328 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4329 w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4330 s->y + dy, s->width, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4331 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4332 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4333
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4334 /* Draw overline. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4335 if (s->face->overline_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4336 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4337 unsigned long dy = 0, h = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4338
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4339 if (s->face->overline_color_defaulted_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4340 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4341 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4342 s->y + dy, s->width, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4343 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4344 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4345 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4346 w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4347 s->y + dy, s->width, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4348 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4349 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4350
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4351 /* Draw strike-through. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
4352 if (s->face->strike_through_p
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
4353 && (s->font->bdf || !s->font->tm.tmStruckOut))
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4354 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4355 unsigned long h = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4356 unsigned long dy = (s->height - h) / 2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4357
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4358 if (s->face->strike_through_color_defaulted_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4359 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4360 w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x, s->y + dy,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4361 s->width, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4362 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4363 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4364 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4365 w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4366 s->y + dy, s->width, h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4367 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4368 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4369
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4370 /* Draw relief. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4371 if (s->face->box != FACE_NO_BOX)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4372 x_draw_glyph_string_box (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4373 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4374
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4375 /* Reset clipping. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4376 w32_set_clip_rectangle (s->hdc, NULL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4377 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4378
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4379
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4380 static int x_fill_composite_glyph_string P_ ((struct glyph_string *,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4381 struct face **, int));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4382
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4383
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
4384 /* Fill glyph string S with composition components specified by S->cmp.
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
4385
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4386 FACES is an array of faces for all components of this composition.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4387 S->gidx is the index of the first component for S.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4388 OVERLAPS_P non-zero means S should draw the foreground only, and
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
4389 use its physical height for clipping.
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4390
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4391 Value is the index of a component not in S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4392
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4393 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4394 x_fill_composite_glyph_string (s, faces, overlaps_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4395 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4396 struct face **faces;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4397 int overlaps_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4398 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4399 int i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4400
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4401 xassert (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4403 s->for_overlaps_p = overlaps_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4404
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4405 s->face = faces[s->gidx];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4406 s->font = s->face->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4407 s->font_info = FONT_INFO_FROM_ID (s->f, s->face->font_info_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4408
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4409 /* For all glyphs of this composition, starting at the offset
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4410 S->gidx, until we reach the end of the definition or encounter a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4411 glyph that requires the different face, add it to S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4412 ++s->nchars;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4413 for (i = s->gidx + 1; i < s->cmp->glyph_len && faces[i] == s->face; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4414 ++s->nchars;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4415
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4416 /* All glyph strings for the same composition has the same width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4417 i.e. the width set for the first component of the composition. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4418
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4419 s->width = s->first_glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4420
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4421 /* If the specified font could not be loaded, use the frame's
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4422 default font, but record the fact that we couldn't load it in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4423 the glyph string so that we can draw rectangles for the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4424 characters of the glyph string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4425 if (s->font == NULL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4426 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4427 s->font_not_found_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4428 s->font = FRAME_FONT (s->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4429 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4430
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4431 /* Adjust base line for subscript/superscript text. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4432 s->ybase += s->first_glyph->voffset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4433
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4434 xassert (s->face && s->face->gc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4435
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4436 /* This glyph string must always be drawn with 16-bit functions. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4437 s->two_byte_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4438
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4439 return s->gidx + s->nchars;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4440 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4441
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4442
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
4443 /* Fill glyph string S from a sequence of character glyphs.
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
4444
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4445 FACE_ID is the face id of the string. START is the index of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4446 first glyph to consider, END is the index of the last + 1.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4447 OVERLAPS_P non-zero means S should draw the foreground only, and
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
4448 use its physical height for clipping.
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4449
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4450 Value is the index of the first glyph not in S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4451
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4452 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4453 x_fill_glyph_string (s, face_id, start, end, overlaps_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4454 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4455 int face_id;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4456 int start, end, overlaps_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4457 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4458 struct glyph *glyph, *last;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4459 int voffset;
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4460 int glyph_not_available_p;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4461
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4462 xassert (s->f == XFRAME (s->w->frame));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4463 xassert (s->nchars == 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4464 xassert (start >= 0 && end > start);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4465
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4466 s->for_overlaps_p = overlaps_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4467 glyph = s->row->glyphs[s->area] + start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4468 last = s->row->glyphs[s->area] + end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4469 voffset = glyph->voffset;
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4470
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4471 glyph_not_available_p = glyph->glyph_not_available_p;
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4472
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4473 while (glyph < last
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4474 && glyph->type == CHAR_GLYPH
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4475 && glyph->voffset == voffset
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4476 /* Same face id implies same font, nowadays. */
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4477 && glyph->face_id == face_id
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4478 && glyph->glyph_not_available_p == glyph_not_available_p)
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4479 {
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4480 int two_byte_p;
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4481
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4482 s->face = x_get_glyph_face_and_encoding (s->f, glyph,
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4483 s->char2b + s->nchars,
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4484 &two_byte_p);
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4485 s->two_byte_p = two_byte_p;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4486 ++s->nchars;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4487 xassert (s->nchars <= end - start);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4488 s->width += glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4489 ++glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4490 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4491
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4492 s->font = s->face->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4493 s->font_info = FONT_INFO_FROM_ID (s->f, s->face->font_info_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4494
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4495 /* If the specified font could not be loaded, use the frame's font,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4496 but record the fact that we couldn't load it in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4497 S->font_not_found_p so that we can draw rectangles for the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4498 characters of the glyph string. */
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4499 if (s->font == NULL || glyph_not_available_p)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4500 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4501 s->font_not_found_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4502 s->font = FRAME_FONT (s->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4503 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4504
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4505 /* Adjust base line for subscript/superscript text. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4506 s->ybase += voffset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4507
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4508 xassert (s->face && s->face->gc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4509 return glyph - s->row->glyphs[s->area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4510 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4511
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4512
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4513 /* Fill glyph string S from image glyph S->first_glyph. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4514
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4515 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4516 x_fill_image_glyph_string (s)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4517 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4518 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4519 xassert (s->first_glyph->type == IMAGE_GLYPH);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4520 s->img = IMAGE_FROM_ID (s->f, s->first_glyph->u.img_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4521 xassert (s->img);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4522 s->face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4523 s->font = s->face->font;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4524 s->width = s->first_glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4525
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4526 /* Adjust base line for subscript/superscript text. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4527 s->ybase += s->first_glyph->voffset;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4528 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4529
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4530
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4531 /* Fill glyph string S from a sequence of stretch glyphs.
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4532
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4533 ROW is the glyph row in which the glyphs are found, AREA is the
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4534 area within the row. START is the index of the first glyph to
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4535 consider, END is the index of the last + 1.
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4536
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4537 Value is the index of the first glyph not in S. */
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4538
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4539 static int
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4540 x_fill_stretch_glyph_string (s, row, area, start, end)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4541 struct glyph_string *s;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4542 struct glyph_row *row;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4543 enum glyph_row_area area;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4544 int start, end;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4545 {
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4546 struct glyph *glyph, *last;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4547 int voffset, face_id;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4548
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4549 xassert (s->first_glyph->type == STRETCH_GLYPH);
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4550
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4551 glyph = s->row->glyphs[s->area] + start;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4552 last = s->row->glyphs[s->area] + end;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4553 face_id = glyph->face_id;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4554 s->face = FACE_FROM_ID (s->f, face_id);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4555 s->font = s->face->font;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4556 s->font_info = FONT_INFO_FROM_ID (s->f, s->face->font_info_id);
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4557 s->width = glyph->pixel_width;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4558 voffset = glyph->voffset;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4559
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4560 for (++glyph;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4561 (glyph < last
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4562 && glyph->type == STRETCH_GLYPH
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4563 && glyph->voffset == voffset
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4564 && glyph->face_id == face_id);
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4565 ++glyph)
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4566 s->width += glyph->pixel_width;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4567
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4568 /* Adjust base line for subscript/superscript text. */
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4569 s->ybase += voffset;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4570
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4571 xassert (s->face && s->face->gc);
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4572 return glyph - s->row->glyphs[s->area];
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4573 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4574
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4575
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4576 /* Initialize glyph string S. CHAR2B is a suitably allocated vector
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4577 of XChar2b structures for S; it can't be allocated in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4578 x_init_glyph_string because it must be allocated via `alloca'. W
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4579 is the window on which S is drawn. ROW and AREA are the glyph row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4580 and area within the row from which S is constructed. START is the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4581 index of the first glyph structure covered by S. HL is a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4582 face-override for drawing S. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4583
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4584 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4585 w32_init_glyph_string (s, hdc, char2b, w, row, area, start, hl)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4586 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4587 HDC hdc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4588 wchar_t *char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4589 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4590 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4591 enum glyph_row_area area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4592 int start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4593 enum draw_glyphs_face hl;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4594 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4595 bzero (s, sizeof *s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4596 s->w = w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4597 s->f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4598 s->hdc = hdc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4599 s->window = FRAME_W32_WINDOW (s->f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4600 s->char2b = char2b;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4601 s->hl = hl;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4602 s->row = row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4603 s->area = area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4604 s->first_glyph = row->glyphs[area] + start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4605 s->height = row->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4606 s->y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4607
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4608 /* Display the internal border below the tool-bar window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4609 if (s->w == XWINDOW (s->f->tool_bar_window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4610 s->y -= s->f->output_data.w32->internal_border_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4611
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4612 s->ybase = s->y + row->ascent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4613 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4614
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4615
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4616 /* Set background width of glyph string S. START is the index of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4617 first glyph following S. LAST_X is the right-most x-position + 1
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4618 in the drawing area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4619
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4620 static INLINE void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4621 x_set_glyph_string_background_width (s, start, last_x)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4622 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4623 int start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4624 int last_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4625 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4626 /* If the face of this glyph string has to be drawn to the end of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4627 the drawing area, set S->extends_to_end_of_line_p. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4628 struct face *default_face = FACE_FROM_ID (s->f, DEFAULT_FACE_ID);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4629
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4630 if (start == s->row->used[s->area]
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4631 && s->hl == DRAW_NORMAL_TEXT
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4632 && ((s->area == TEXT_AREA && s->row->fill_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4633 || s->face->background != default_face->background
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4634 || s->face->stipple != default_face->stipple))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4635 s->extends_to_end_of_line_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4636
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4637 /* If S extends its face to the end of the line, set its
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4638 background_width to the distance to the right edge of the drawing
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4639 area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4640 if (s->extends_to_end_of_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4641 s->background_width = last_x - s->x + 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4642 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4643 s->background_width = s->width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4644 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4645
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4646
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4647 /* Add a glyph string for a stretch glyph to the list of strings
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4648 between HEAD and TAIL. START is the index of the stretch glyph in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4649 row area AREA of glyph row ROW. END is the index of the last glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4650 in that glyph row area. X is the current output position assigned
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4651 to the new glyph string constructed. HL overrides that face of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4652 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4653 is the right-most x-position of the drawing area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4654
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4655 #define BUILD_STRETCH_GLYPH_STRING(hdc, W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4656 do \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4657 { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4658 s = (struct glyph_string *) alloca (sizeof *s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4659 w32_init_glyph_string (s, hdc, NULL, W, ROW, AREA, START, HL); \
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4660 START = x_fill_stretch_glyph_string (s, ROW, AREA, START, END); \
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4661 x_append_glyph_string (&HEAD, &TAIL, s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4662 s->x = (X); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4663 } \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4664 while (0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4665
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4666
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4667 /* Add a glyph string for an image glyph to the list of strings
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4668 between HEAD and TAIL. START is the index of the image glyph in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4669 row area AREA of glyph row ROW. END is the index of the last glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4670 in that glyph row area. X is the current output position assigned
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4671 to the new glyph string constructed. HL overrides that face of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4672 glyph; e.g. it is DRAW_CURSOR if a cursor has to be drawn. LAST_X
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4673 is the right-most x-position of the drawing area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4674
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4675 #define BUILD_IMAGE_GLYPH_STRING(hdc, W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4676 do \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4677 { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4678 s = (struct glyph_string *) alloca (sizeof *s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4679 w32_init_glyph_string (s, hdc, NULL, W, ROW, AREA, START, HL); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4680 x_fill_image_glyph_string (s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4681 x_append_glyph_string (&HEAD, &TAIL, s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4682 ++START; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4683 s->x = (X); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4684 } \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4685 while (0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4686
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4687
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4688 /* Add a glyph string for a sequence of character glyphs to the list
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4689 of strings between HEAD and TAIL. START is the index of the first
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4690 glyph in row area AREA of glyph row ROW that is part of the new
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4691 glyph string. END is the index of the last glyph in that glyph row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4692 area. X is the current output position assigned to the new glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4693 string constructed. HL overrides that face of the glyph; e.g. it
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4694 is DRAW_CURSOR if a cursor has to be drawn. LAST_X is the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4695 right-most x-position of the drawing area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4696
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4697 #define BUILD_CHAR_GLYPH_STRINGS(hdc, W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X, OVERLAPS_P) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4698 do \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4699 { \
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4700 int c, face_id; \
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4701 wchar_t *char2b; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4702 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4703 c = (ROW)->glyphs[AREA][START].u.ch; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4704 face_id = (ROW)->glyphs[AREA][START].face_id; \
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
4705 \
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4706 s = (struct glyph_string *) alloca (sizeof *s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4707 char2b = (wchar_t *) alloca ((END - START) * sizeof *char2b); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4708 w32_init_glyph_string (s, hdc, char2b, W, ROW, AREA, START, HL); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4709 x_append_glyph_string (&HEAD, &TAIL, s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4710 s->x = (X); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4711 START = x_fill_glyph_string (s, face_id, START, END, \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4712 OVERLAPS_P); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4713 } \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4714 while (0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4715
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4716
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4717 /* Add a glyph string for a composite sequence to the list of strings
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4718 between HEAD and TAIL. START is the index of the first glyph in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4719 row area AREA of glyph row ROW that is part of the new glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4720 string. END is the index of the last glyph in that glyph row area.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4721 X is the current output position assigned to the new glyph string
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4722 constructed. HL overrides that face of the glyph; e.g. it is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4723 DRAW_CURSOR if a cursor has to be drawn. LAST_X is the right-most
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4724 x-position of the drawing area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4725
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4726 #define BUILD_COMPOSITE_GLYPH_STRING(hdc, W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X, OVERLAPS_P) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4727 do { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4728 int cmp_id = (ROW)->glyphs[AREA][START].u.cmp_id; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4729 int face_id = (ROW)->glyphs[AREA][START].face_id; \
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4730 struct face *base_face = FACE_FROM_ID (XFRAME (w->frame), face_id); \
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4731 struct composition *cmp = composition_table[cmp_id]; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4732 int glyph_len = cmp->glyph_len; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4733 wchar_t *char2b; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4734 struct face **faces; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4735 struct glyph_string *first_s = NULL; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4736 int n; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4737 \
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4738 base_face = base_face->ascii_face; \
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4739 char2b = (wchar_t *) alloca ((sizeof *char2b) * glyph_len); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4740 faces = (struct face **) alloca ((sizeof *faces) * glyph_len); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4741 /* At first, fill in `char2b' and `faces'. */ \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4742 for (n = 0; n < glyph_len; n++) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4743 { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4744 int c = COMPOSITION_GLYPH (cmp, n); \
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4745 int this_face_id = FACE_FOR_CHAR (XFRAME (w->frame), base_face, c); \
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4746 faces[n] = FACE_FROM_ID (XFRAME (w->frame), this_face_id); \
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4747 x_get_char_face_and_encoding (XFRAME (w->frame), c, \
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
4748 this_face_id, char2b + n, 1); \
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4749 } \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4750 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4751 /* Make glyph_strings for each glyph sequence that is drawable by \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4752 the same face, and append them to HEAD/TAIL. */ \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4753 for (n = 0; n < cmp->glyph_len;) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4754 { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4755 s = (struct glyph_string *) alloca (sizeof *s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4756 w32_init_glyph_string (s, hdc, char2b + n, W, ROW, AREA, START, HL); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4757 x_append_glyph_string (&(HEAD), &(TAIL), s); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4758 s->cmp = cmp; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4759 s->gidx = n; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4760 s->x = (X); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4761 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4762 if (n == 0) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4763 first_s = s; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4764 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4765 n = x_fill_composite_glyph_string (s, faces, OVERLAPS_P); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4766 } \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4767 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4768 ++START; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4769 s = first_s; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4770 } while (0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4771
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
4772
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4773 /* Build a list of glyph strings between HEAD and TAIL for the glyphs
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4774 of AREA of glyph row ROW on window W between indices START and END.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4775 HL overrides the face for drawing glyph strings, e.g. it is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4776 DRAW_CURSOR to draw a cursor. X and LAST_X are start and end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4777 x-positions of the drawing area.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4778
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4779 This is an ugly monster macro construct because we must use alloca
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4780 to allocate glyph strings (because x_draw_glyphs can be called
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4781 asynchronously). */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4782
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4783 #define BUILD_GLYPH_STRINGS(hdc, W, ROW, AREA, START, END, HEAD, TAIL, HL, X, LAST_X, OVERLAPS_P) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4784 do \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4785 { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4786 HEAD = TAIL = NULL; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4787 while (START < END) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4788 { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4789 struct glyph *first_glyph = (ROW)->glyphs[AREA] + START; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4790 switch (first_glyph->type) \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4791 { \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4792 case CHAR_GLYPH: \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4793 BUILD_CHAR_GLYPH_STRINGS (hdc, W, ROW, AREA, START, END, \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4794 HEAD, TAIL, HL, X, LAST_X, \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4795 OVERLAPS_P); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4796 break; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4797 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4798 case COMPOSITE_GLYPH: \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4799 BUILD_COMPOSITE_GLYPH_STRING (hdc, W, ROW, AREA, START, \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4800 END, HEAD, TAIL, HL, X, \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4801 LAST_X, OVERLAPS_P); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4802 break; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4803 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4804 case STRETCH_GLYPH: \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4805 BUILD_STRETCH_GLYPH_STRING (hdc, W, ROW, AREA, START, END,\
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4806 HEAD, TAIL, HL, X, LAST_X); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4807 break; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4808 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4809 case IMAGE_GLYPH: \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4810 BUILD_IMAGE_GLYPH_STRING (hdc, W, ROW, AREA, START, END, \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4811 HEAD, TAIL, HL, X, LAST_X); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4812 break; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4813 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4814 default: \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4815 abort (); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4816 } \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4817 \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4818 x_set_glyph_string_background_width (s, START, LAST_X); \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4819 (X) += s->width; \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4820 } \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4821 } \
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4822 while (0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4823
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4824
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4825 /* Draw glyphs between START and END in AREA of ROW on window W,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4826 starting at x-position X. X is relative to AREA in W. HL is a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4827 face-override with the following meaning:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4828
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4829 DRAW_NORMAL_TEXT draw normally
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4830 DRAW_CURSOR draw in cursor face
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4831 DRAW_MOUSE_FACE draw in mouse face.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4832 DRAW_INVERSE_VIDEO draw in mode line face
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4833 DRAW_IMAGE_SUNKEN draw an image with a sunken relief around it
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4834 DRAW_IMAGE_RAISED draw an image with a raised relief around it
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4835
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4836 If REAL_START is non-null, return in *REAL_START the real starting
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4837 position for display. This can be different from START in case
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4838 overlapping glyphs must be displayed. If REAL_END is non-null,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4839 return in *REAL_END the real end position for display. This can be
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4840 different from END in case overlapping glyphs must be displayed.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4841
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4842 If OVERLAPS_P is non-zero, draw only the foreground of characters
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4843 and clip to the physical height of ROW.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4844
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4845 Value is the x-position reached, relative to AREA of W. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4846
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4847 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4848 x_draw_glyphs (w, x, row, area, start, end, hl, real_start, real_end,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4849 overlaps_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4850 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4851 int x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4852 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4853 enum glyph_row_area area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4854 int start, end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4855 enum draw_glyphs_face hl;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4856 int *real_start, *real_end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4857 int overlaps_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4858 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4859 struct glyph_string *head, *tail;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4860 struct glyph_string *s;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4861 int last_x, area_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4862 int x_reached;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4863 int i, j;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4864 HDC hdc = get_frame_dc (XFRAME (WINDOW_FRAME (w)));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4865
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4866 /* Let's rather be paranoid than getting a SEGV. */
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
4867 end = min (end, row->used[area]);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4868 start = max (0, start);
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
4869 start = min (end, start);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4870 if (real_start)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4871 *real_start = start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4872 if (real_end)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4873 *real_end = end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4874
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4875 /* Translate X to frame coordinates. Set last_x to the right
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4876 end of the drawing area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4877 if (row->full_width_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4878 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4879 /* X is relative to the left edge of W, without scroll bars
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4880 or flag areas. */
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
4881 struct frame *f = XFRAME (WINDOW_FRAME (w));
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4882 /* int width = FRAME_FLAGS_AREA_WIDTH (f); */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4883 int window_left_x = WINDOW_LEFT_MARGIN (w) * CANON_X_UNIT (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4884
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4885 x += window_left_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4886 area_width = XFASTINT (w->width) * CANON_X_UNIT (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4887 last_x = window_left_x + area_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4888
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4889 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4890 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4891 int width = FRAME_SCROLL_BAR_WIDTH (f) * CANON_X_UNIT (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4892 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4893 last_x += width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4894 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4895 x -= width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4896 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4897
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4898 x += FRAME_INTERNAL_BORDER_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4899 last_x -= FRAME_INTERNAL_BORDER_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4900 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4901 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4902 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4903 x = WINDOW_AREA_TO_FRAME_PIXEL_X (w, area, x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4904 area_width = window_box_width (w, area);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4905 last_x = WINDOW_AREA_TO_FRAME_PIXEL_X (w, area, area_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4906 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4907
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4908 /* Build a doubly-linked list of glyph_string structures between
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4909 head and tail from what we have to draw. Note that the macro
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4910 BUILD_GLYPH_STRINGS will modify its start parameter. That's
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4911 the reason we use a separate variable `i'. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4912 i = start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4913 BUILD_GLYPH_STRINGS (hdc, w, row, area, i, end, head, tail, hl, x, last_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4914 overlaps_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4915 if (tail)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4916 x_reached = tail->x + tail->background_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4917 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4918 x_reached = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4919
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4920 /* If there are any glyphs with lbearing < 0 or rbearing > width in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4921 the row, redraw some glyphs in front or following the glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4922 strings built above. */
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
4923 if (head && !overlaps_p && row->contains_overlapping_glyphs_p)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4924 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4925 int dummy_x = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4926 struct glyph_string *h, *t;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4927
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4928 /* Compute overhangs for all glyph strings. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4929 for (s = head; s; s = s->next)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4930 x_compute_glyph_string_overhangs (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4931
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4932 /* Prepend glyph strings for glyphs in front of the first glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4933 string that are overwritten because of the first glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4934 string's left overhang. The background of all strings
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4935 prepended must be drawn because the first glyph string
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4936 draws over it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4937 i = x_left_overwritten (head);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4938 if (i >= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4939 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4940 j = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4941 BUILD_GLYPH_STRINGS (hdc, w, row, area, j, start, h, t,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4942 DRAW_NORMAL_TEXT, dummy_x, last_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4943 overlaps_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4944 start = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4945 if (real_start)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4946 *real_start = start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4947 x_compute_overhangs_and_x (t, head->x, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4948 x_prepend_glyph_string_lists (&head, &tail, h, t);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4949 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4950
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4951 /* Prepend glyph strings for glyphs in front of the first glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4952 string that overwrite that glyph string because of their
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4953 right overhang. For these strings, only the foreground must
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4954 be drawn, because it draws over the glyph string at `head'.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4955 The background must not be drawn because this would overwrite
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4956 right overhangs of preceding glyphs for which no glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4957 strings exist. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4958 i = x_left_overwriting (head);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4959 if (i >= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4960 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4961 BUILD_GLYPH_STRINGS (hdc, w, row, area, i, start, h, t,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4962 DRAW_NORMAL_TEXT, dummy_x, last_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4963 overlaps_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4964 for (s = h; s; s = s->next)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4965 s->background_filled_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4966 if (real_start)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4967 *real_start = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4968 x_compute_overhangs_and_x (t, head->x, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4969 x_prepend_glyph_string_lists (&head, &tail, h, t);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4970 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4971
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4972 /* Append glyphs strings for glyphs following the last glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4973 string tail that are overwritten by tail. The background of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4974 these strings has to be drawn because tail's foreground draws
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4975 over it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4976 i = x_right_overwritten (tail);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4977 if (i >= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4978 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4979 BUILD_GLYPH_STRINGS (hdc, w, row, area, end, i, h, t,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4980 DRAW_NORMAL_TEXT, x, last_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4981 overlaps_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4982 x_compute_overhangs_and_x (h, tail->x + tail->width, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4983 x_append_glyph_string_lists (&head, &tail, h, t);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4984 if (real_end)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4985 *real_end = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4986 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4987
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4988 /* Append glyph strings for glyphs following the last glyph
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4989 string tail that overwrite tail. The foreground of such
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4990 glyphs has to be drawn because it writes into the background
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4991 of tail. The background must not be drawn because it could
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4992 paint over the foreground of following glyphs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4993 i = x_right_overwriting (tail);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4994 if (i >= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4995 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4996 BUILD_GLYPH_STRINGS (hdc, w, row, area, end, i, h, t,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4997 DRAW_NORMAL_TEXT, x, last_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4998 overlaps_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
4999 for (s = h; s; s = s->next)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5000 s->background_filled_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5001 x_compute_overhangs_and_x (h, tail->x + tail->width, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5002 x_append_glyph_string_lists (&head, &tail, h, t);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5003 if (real_end)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5004 *real_end = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5005 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5006 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5007
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5008 /* Draw all strings. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5009 for (s = head; s; s = s->next)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5010 x_draw_glyph_string (s);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5011
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5012 /* Value is the x-position up to which drawn, relative to AREA of W.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5013 This doesn't include parts drawn because of overhangs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5014 x_reached = FRAME_TO_WINDOW_PIXEL_X (w, x_reached);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5015 if (!row->full_width_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5016 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5017 if (area > LEFT_MARGIN_AREA)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5018 x_reached -= window_box_width (w, LEFT_MARGIN_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5019 if (area > TEXT_AREA)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5020 x_reached -= window_box_width (w, TEXT_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5021 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5022
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5023 release_frame_dc (XFRAME (WINDOW_FRAME (w)), hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5024
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5025 return x_reached;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5026 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5027
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5028
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5029 /* Fix the display of area AREA of overlapping row ROW in window W. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5030
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5031 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5032 x_fix_overlapping_area (w, row, area)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5033 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5034 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5035 enum glyph_row_area area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5036 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5037 int i, x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5038
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5039 BLOCK_INPUT;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5040
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5041 if (area == LEFT_MARGIN_AREA)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5042 x = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5043 else if (area == TEXT_AREA)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5044 x = row->x + window_box_width (w, LEFT_MARGIN_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5045 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5046 x = (window_box_width (w, LEFT_MARGIN_AREA)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5047 + window_box_width (w, TEXT_AREA));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5048
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5049 for (i = 0; i < row->used[area];)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5050 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5051 if (row->glyphs[area][i].overlaps_vertically_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5052 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5053 int start = i, start_x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5054
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5055 do
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5056 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5057 x += row->glyphs[area][i].pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5058 ++i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5059 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5060 while (i < row->used[area]
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5061 && row->glyphs[area][i].overlaps_vertically_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5062
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5063 x_draw_glyphs (w, start_x, row, area, start, i,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5064 (row->inverse_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5065 ? DRAW_INVERSE_VIDEO : DRAW_NORMAL_TEXT),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5066 NULL, NULL, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5067 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5068 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5069 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5070 x += row->glyphs[area][i].pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5071 ++i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5072 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5073 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5074
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5075 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5076 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5077
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5078
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5079 /* Output LEN glyphs starting at START at the nominal cursor position.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5080 Advance the nominal cursor over the text. The global variable
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5081 updated_window contains the window being updated, updated_row is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5082 the glyph row being updated, and updated_area is the area of that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5083 row being updated. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5084
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5085 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5086 x_write_glyphs (start, len)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5087 struct glyph *start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5088 int len;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5089 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5090 int x, hpos, real_start, real_end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5091
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5092 xassert (updated_window && updated_row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5093 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5094
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5095 /* Write glyphs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5096
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5097 hpos = start - updated_row->glyphs[updated_area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5098 x = x_draw_glyphs (updated_window, output_cursor.x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5099 updated_row, updated_area,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5100 hpos, hpos + len,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5101 (updated_row->inverse_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5102 ? DRAW_INVERSE_VIDEO : DRAW_NORMAL_TEXT),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5103 &real_start, &real_end, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5104
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5105 /* If we drew over the cursor, note that it is not visible any more. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5106 note_overwritten_text_cursor (updated_window, real_start,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5107 real_end - real_start);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5108
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5109 UNBLOCK_INPUT;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5110
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5111 /* Advance the output cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5112 output_cursor.hpos += len;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5113 output_cursor.x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5114 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5115
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5116
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5117 /* Insert LEN glyphs from START at the nominal cursor position. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5118
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5119 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5120 x_insert_glyphs (start, len)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5121 struct glyph *start;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5122 register int len;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5123 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5124 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5125 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5126 int line_height, shift_by_width, shifted_region_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5127 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5128 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5129 int frame_x, frame_y, hpos, real_start, real_end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5130 HDC hdc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5131
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5132 xassert (updated_window && updated_row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5133 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5134 w = updated_window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5135 f = XFRAME (WINDOW_FRAME (w));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5136 hdc = get_frame_dc (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5137
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5138 /* Get the height of the line we are in. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5139 row = updated_row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5140 line_height = row->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5141
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5142 /* Get the width of the glyphs to insert. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5143 shift_by_width = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5144 for (glyph = start; glyph < start + len; ++glyph)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5145 shift_by_width += glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5146
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5147 /* Get the width of the region to shift right. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5148 shifted_region_width = (window_box_width (w, updated_area)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5149 - output_cursor.x
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5150 - shift_by_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5151
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5152 /* Shift right. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5153 frame_x = WINDOW_TO_FRAME_PIXEL_X (w, output_cursor.x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5154 frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, output_cursor.y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5155 BitBlt (hdc, frame_x + shift_by_width, frame_y,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5156 shifted_region_width, line_height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5157 hdc, frame_x, frame_y, SRCCOPY);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5158
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5159 /* Write the glyphs. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5160 hpos = start - row->glyphs[updated_area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5161 x_draw_glyphs (w, output_cursor.x, row, updated_area, hpos, hpos + len,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5162 DRAW_NORMAL_TEXT, &real_start, &real_end, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5163 note_overwritten_text_cursor (w, real_start, real_end - real_start);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5164
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5165 /* Advance the output cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5166 output_cursor.hpos += len;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5167 output_cursor.x += shift_by_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5168 release_frame_dc (f, hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5169
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5170 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5171 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5172
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5173
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5174 /* Delete N glyphs at the nominal cursor position. Not implemented
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5175 for X frames. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5176
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5177 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5178 x_delete_glyphs (n)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5179 register int n;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5180 {
35000
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5181 struct frame *f;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5182
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5183 if (updating_frame)
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5184 f = updating_frame;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5185 else
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5186 f = SELECTED_FRAME ();
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5187
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5188 if (! FRAME_W32_P (f))
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5189 return;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5190
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5191 abort ();
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5192 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5193
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5194
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5195 /* Erase the current text line from the nominal cursor position
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5196 (inclusive) to pixel column TO_X (exclusive). The idea is that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5197 everything from TO_X onward is already erased.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5198
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5199 TO_X is a pixel position relative to updated_area of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5200 updated_window. TO_X == -1 means clear to the end of this area. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5201
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
5202 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5203 x_clear_end_of_line (to_x)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5204 int to_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5205 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5206 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5207 struct window *w = updated_window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5208 int max_x, min_y, max_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5209 int from_x, from_y, to_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5210
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5211 xassert (updated_window && updated_row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5212 f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5213
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5214 if (updated_row->full_width_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5215 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5216 max_x = XFASTINT (w->width) * CANON_X_UNIT (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5217 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5218 && !w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5219 max_x += FRAME_SCROLL_BAR_WIDTH (f) * CANON_X_UNIT (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5220 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5221 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5222 max_x = window_box_width (w, updated_area);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5223 max_y = window_text_bottom_y (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5224
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5225 /* TO_X == 0 means don't do anything. TO_X < 0 means clear to end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5226 of window. For TO_X > 0, truncate to end of drawing area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5227 if (to_x == 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5228 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5229 else if (to_x < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5230 to_x = max_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5231 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5232 to_x = min (to_x, max_x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5233
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5234 to_y = min (max_y, output_cursor.y + updated_row->height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5235
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5236 /* Notice if the cursor will be cleared by this operation. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5237 if (!updated_row->full_width_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5238 note_overwritten_text_cursor (w, output_cursor.hpos, -1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5239
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5240 from_x = output_cursor.x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5241
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5242 /* Translate to frame coordinates. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5243 if (updated_row->full_width_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5244 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5245 from_x = WINDOW_TO_FRAME_PIXEL_X (w, from_x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5246 to_x = WINDOW_TO_FRAME_PIXEL_X (w, to_x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5247 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5248 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5249 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5250 from_x = WINDOW_AREA_TO_FRAME_PIXEL_X (w, updated_area, from_x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5251 to_x = WINDOW_AREA_TO_FRAME_PIXEL_X (w, updated_area, to_x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5252 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5253
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5254 min_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5255 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, max (min_y, output_cursor.y));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5256 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, to_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5257
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5258 /* Prevent inadvertently clearing to end of the X window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5259 if (to_x > from_x && to_y > from_y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5260 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
5261 HDC hdc;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5262 BLOCK_INPUT;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
5263 hdc = get_frame_dc (f);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
5264
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
5265 w32_clear_area (f, hdc, from_x, from_y, to_x - from_x, to_y - from_y);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
5266 release_frame_dc (f, hdc);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5267 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5268 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5269 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5270
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5271
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5272 /* Clear entire frame. If updating_frame is non-null, clear that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5273 frame. Otherwise clear the selected frame. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5274
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5275 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5276 x_clear_frame ()
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5277 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5278 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5279
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5280 if (updating_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5281 f = updating_frame;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5282 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5283 f = SELECTED_FRAME ();
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5284
35000
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5285 if (! FRAME_W32_P (f))
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5286 return;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5287
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5288 /* Clearing the frame will erase any cursor, so mark them all as no
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5289 longer visible. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5290 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5291 output_cursor.hpos = output_cursor.vpos = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5292 output_cursor.x = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5293
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5294 /* We don't set the output cursor here because there will always
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5295 follow an explicit cursor_to. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5296 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5297
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5298 w32_clear_window (f);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5299
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5300 /* We have to clear the scroll bars, too. If we have changed
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5301 colors or something like that, then they should be notified. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5302 x_scroll_bar_clear (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5303
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5304 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5305 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5306
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5307
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5308 /* Make audible bell. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5309
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
5310 static void
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
5311 w32_ring_bell (void)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5312 {
35000
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5313 struct frame *f;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5314
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5315 f = SELECTED_FRAME ();
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5316
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5317 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5318
35449
98d65e364070 (w32_ring_bell): Only support visible bell on w32
Andrew Innes <andrewi@gnu.org>
parents: 35384
diff changeset
5319 if (FRAME_W32_P (f) && visible_bell)
22059
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
5320 {
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
5321 int i;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5322 HWND hwnd = FRAME_W32_WINDOW (SELECTED_FRAME ());
22059
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
5323
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
5324 for (i = 0; i < 5; i++)
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
5325 {
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
5326 FlashWindow (hwnd, TRUE);
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
5327 Sleep (10);
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
5328 }
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
5329 FlashWindow (hwnd, FALSE);
23fda104cd36 (w32_ring_bell): Flash window correctly.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21885
diff changeset
5330 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5331 else
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5332 w32_sys_ring_bell ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5333
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5334 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5335 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5336
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5337
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5338 /* Specify how many text lines, from the top of the window,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5339 should be affected by insert-lines and delete-lines operations.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5340 This, and those operations, are used only within an update
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5341 that is bounded by calls to x_update_begin and x_update_end. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5342
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
5343 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5344 w32_set_terminal_window (n)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5345 register int n;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5346 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5347 /* This function intentionally left blank. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5348 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5349
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5350
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5351
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5352 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5353 Line Dance
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5354 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5355
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5356 /* Perform an insert-lines or delete-lines operation, inserting N
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5357 lines or deleting -N lines at vertical position VPOS. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5358
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5359 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5360 x_ins_del_lines (vpos, n)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5361 int vpos, n;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5362 {
35000
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5363 struct frame *f;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5364
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5365 if (updating_frame)
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5366 f = updating_frame;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5367 else
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5368 f = SELECTED_FRAME ();
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5369
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5370 if (! FRAME_W32_P (f))
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5371 return;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5372
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5373 abort ();
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5374 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5375
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5376
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5377 /* Scroll part of the display as described by RUN. */
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
5378
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
5379 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5380 x_scroll_run (w, run)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5381 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5382 struct run *run;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5383 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5384 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5385 int x, y, width, height, from_y, to_y, bottom_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5386 HDC hdc = get_frame_dc (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5387
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5388 /* Get frame-relative bounding box of the text display area of W,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5389 without mode lines. Include in this box the flags areas to the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5390 left and right of W. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5391 window_box (w, -1, &x, &y, &width, &height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5392 width += FRAME_X_FLAGS_AREA_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5393 x -= FRAME_X_LEFT_FLAGS_AREA_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5394
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5395 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5396 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5397 bottom_y = y + height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5398
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5399 if (to_y < from_y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5400 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5401 /* Scrolling up. Make sure we don't copy part of the mode
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5402 line at the bottom. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5403 if (from_y + run->height > bottom_y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5404 height = bottom_y - from_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5405 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5406 height = run->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5407 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5408 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5409 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5410 /* Scolling down. Make sure we don't copy over the mode line.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5411 at the bottom. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5412 if (to_y + run->height > bottom_y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5413 height = bottom_y - to_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5414 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5415 height = run->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5416 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5417
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5418 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5419
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5420 /* Cursor off. Will be switched on again in x_update_window_end. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5421 updated_window = w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5422 x_clear_cursor (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5423
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5424 BitBlt (hdc, x, to_y, width, height, hdc, x, from_y, SRCCOPY);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5425
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5426 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5427 release_frame_dc (f, hdc);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5428 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5429
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
5430
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5431
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5432 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5433 Exposure Events
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5434 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5435
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5436 /* Redisplay an exposed area of frame F. X and Y are the upper-left
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5437 corner of the exposed rectangle. W and H are width and height of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5438 the exposed area. All are pixel values. W or H zero means redraw
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5439 the entire frame. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5440
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5441 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5442 expose_frame (f, x, y, w, h)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5443 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5444 int x, y, w, h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5445 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5446 RECT r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5447
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5448 TRACE ((stderr, "expose_frame "));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5449
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5450 /* No need to redraw if frame will be redrawn soon. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5451 if (FRAME_GARBAGED_P (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5452 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5453 TRACE ((stderr, " garbaged\n"));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5454 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5455 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5456
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5457 /* If basic faces haven't been realized yet, there is no point in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5458 trying to redraw anything. This can happen when we get an expose
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5459 event while Emacs is starting, e.g. by moving another window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5460 if (FRAME_FACE_CACHE (f) == NULL
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5461 || FRAME_FACE_CACHE (f)->used < BASIC_FACE_ID_SENTINEL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5462 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5463 TRACE ((stderr, " no faces\n"));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5464 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5465 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5466
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5467 if (w == 0 || h == 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5468 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5469 r.left = r.top = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5470 r.right = CANON_X_UNIT (f) * f->width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5471 r.bottom = CANON_Y_UNIT (f) * f->height;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5472 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5473 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5474 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5475 r.left = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5476 r.top = y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5477 r.right = x + w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5478 r.bottom = y + h;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5479 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5480
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5481 TRACE ((stderr, "(%d, %d, %d, %d)\n", r.left, r.top, r.right, r.bottom));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5482 expose_window_tree (XWINDOW (f->root_window), &r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5483
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5484 if (WINDOWP (f->tool_bar_window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5485 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5486 struct window *w = XWINDOW (f->tool_bar_window);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5487 RECT window_rect;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5488 RECT intersection_rect;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5489 int window_x, window_y, window_width, window_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5490
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5491 window_box (w, -1, &window_x, &window_y, &window_width, &window_height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5492 window_rect.left = window_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5493 window_rect.top = window_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5494 window_rect.right = window_x + window_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5495 window_rect.bottom = window_y + window_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5496
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
5497 if (IntersectRect (&intersection_rect, &r, &window_rect))
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5498 expose_window (w, &intersection_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5499 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5500 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5501
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5502
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5503 /* Redraw (parts) of all windows in the window tree rooted at W that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5504 intersect R. R contains frame pixel coordinates. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5505
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5506 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5507 expose_window_tree (w, r)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5508 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5509 RECT *r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5510 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5511 while (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5512 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5513 if (!NILP (w->hchild))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5514 expose_window_tree (XWINDOW (w->hchild), r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5515 else if (!NILP (w->vchild))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5516 expose_window_tree (XWINDOW (w->vchild), r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5517 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5518 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5519 RECT window_rect;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5520 RECT intersection_rect;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5521 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5522 int window_x, window_y, window_width, window_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5523
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5524 /* Frame-relative pixel rectangle of W. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5525 window_box (w, -1, &window_x, &window_y, &window_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5526 &window_height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5527 window_rect.left
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5528 = (window_x
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5529 - FRAME_X_LEFT_FLAGS_AREA_WIDTH (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5530 - FRAME_LEFT_SCROLL_BAR_WIDTH (f) * CANON_Y_UNIT (f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5531 window_rect.top = window_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5532 window_rect.right = window_rect.left
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5533 + (window_width
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5534 + FRAME_X_FLAGS_AREA_WIDTH (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5535 + FRAME_SCROLL_BAR_WIDTH (f) * CANON_X_UNIT (f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5536 window_rect.bottom = window_rect.top
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5537 + window_height + CURRENT_MODE_LINE_HEIGHT (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5538
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
5539 if (IntersectRect (&intersection_rect, r, &window_rect))
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5540 expose_window (w, &intersection_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5541 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5542
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5543 w = NILP (w->next) ? 0 : XWINDOW (w->next);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5544 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5545 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5546
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5547
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5548 /* Redraw the part of glyph row area AREA of glyph row ROW on window W
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5549 which intersects rectangle R. R is in window-relative coordinates. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5550
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5551 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5552 expose_area (w, row, r, area)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5553 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5554 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5555 RECT *r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5556 enum glyph_row_area area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5557 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5558 struct glyph *first = row->glyphs[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5559 struct glyph *end = row->glyphs[area] + row->used[area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5560 struct glyph *last;
34229
54b8aa09c4a9 (expose_area): Complete last change.
Jason Rumney <jasonr@gnu.org>
parents: 34222
diff changeset
5561 int first_x, start_x, x;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5562
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5563 if (area == TEXT_AREA && row->fill_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5564 /* If row extends face to end of line write the whole line. */
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
5565 x_draw_glyphs (w, 0, row, area,
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5566 0, row->used[area],
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5567 row->inverse_p ? DRAW_INVERSE_VIDEO : DRAW_NORMAL_TEXT,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5568 NULL, NULL, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5569 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5570 {
34229
54b8aa09c4a9 (expose_area): Complete last change.
Jason Rumney <jasonr@gnu.org>
parents: 34222
diff changeset
5571 /* Set START_X to the window-relative start position for drawing glyphs of
54b8aa09c4a9 (expose_area): Complete last change.
Jason Rumney <jasonr@gnu.org>
parents: 34222
diff changeset
5572 AREA. The first glyph of the text area can be partially visible.
54b8aa09c4a9 (expose_area): Complete last change.
Jason Rumney <jasonr@gnu.org>
parents: 34222
diff changeset
5573 The first glyphs of other areas cannot. */
54b8aa09c4a9 (expose_area): Complete last change.
Jason Rumney <jasonr@gnu.org>
parents: 34222
diff changeset
5574 if (area == LEFT_MARGIN_AREA)
54b8aa09c4a9 (expose_area): Complete last change.
Jason Rumney <jasonr@gnu.org>
parents: 34222
diff changeset
5575 start_x = 0;
54b8aa09c4a9 (expose_area): Complete last change.
Jason Rumney <jasonr@gnu.org>
parents: 34222
diff changeset
5576 else if (area == TEXT_AREA)
54b8aa09c4a9 (expose_area): Complete last change.
Jason Rumney <jasonr@gnu.org>
parents: 34222
diff changeset
5577 start_x = row->x + window_box_width (w, LEFT_MARGIN_AREA);
54b8aa09c4a9 (expose_area): Complete last change.
Jason Rumney <jasonr@gnu.org>
parents: 34222
diff changeset
5578 else
54b8aa09c4a9 (expose_area): Complete last change.
Jason Rumney <jasonr@gnu.org>
parents: 34222
diff changeset
5579 start_x = (window_box_width (w, LEFT_MARGIN_AREA)
54b8aa09c4a9 (expose_area): Complete last change.
Jason Rumney <jasonr@gnu.org>
parents: 34222
diff changeset
5580 + window_box_width (w, TEXT_AREA));
54b8aa09c4a9 (expose_area): Complete last change.
Jason Rumney <jasonr@gnu.org>
parents: 34222
diff changeset
5581 x = start_x;
54b8aa09c4a9 (expose_area): Complete last change.
Jason Rumney <jasonr@gnu.org>
parents: 34222
diff changeset
5582
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5583 /* Find the first glyph that must be redrawn. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5584 while (first < end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5585 && x + first->pixel_width < r->left)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5586 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5587 x += first->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5588 ++first;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5589 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5590
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5591 /* Find the last one. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5592 last = first;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5593 first_x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5594 while (last < end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5595 && x < r->right)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5596 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5597 x += last->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5598 ++last;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5599 }
34229
54b8aa09c4a9 (expose_area): Complete last change.
Jason Rumney <jasonr@gnu.org>
parents: 34222
diff changeset
5600
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5601 /* Repaint. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5602 if (last > first)
34222
7e09cff3b2ab (x_produce_glyphs): If a font for a component of
Jason Rumney <jasonr@gnu.org>
parents: 34135
diff changeset
5603 x_draw_glyphs (w, first_x - start_x, row, area,
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5604 first - row->glyphs[area],
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5605 last - row->glyphs[area],
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5606 row->inverse_p ? DRAW_INVERSE_VIDEO : DRAW_NORMAL_TEXT,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5607 NULL, NULL, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5608 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5609 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5610
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5611
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5612 /* Redraw the parts of the glyph row ROW on window W intersecting
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5613 rectangle R. R is in window-relative coordinates. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5614
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5615 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5616 expose_line (w, row, r)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5617 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5618 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5619 RECT *r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5620 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5621 xassert (row->enabled_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5622
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5623 if (row->mode_line_p || w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5624 x_draw_glyphs (w, 0, row, TEXT_AREA, 0, row->used[TEXT_AREA],
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5625 row->inverse_p ? DRAW_INVERSE_VIDEO : DRAW_NORMAL_TEXT,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5626 NULL, NULL, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5627 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5628 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5629 if (row->used[LEFT_MARGIN_AREA])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5630 expose_area (w, row, r, LEFT_MARGIN_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5631 if (row->used[TEXT_AREA])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5632 expose_area (w, row, r, TEXT_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5633 if (row->used[RIGHT_MARGIN_AREA])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5634 expose_area (w, row, r, RIGHT_MARGIN_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5635 x_draw_row_bitmaps (w, row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5636 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5637 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5638
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5639
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5640 /* Return non-zero if W's cursor intersects rectangle R. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5641
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5642 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5643 x_phys_cursor_in_rect_p (w, r)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5644 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5645 RECT *r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5646 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5647 RECT cr, result;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5648 struct glyph *cursor_glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5649
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5650 cursor_glyph = get_phys_cursor_glyph (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5651 if (cursor_glyph)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5652 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5653 cr.left = w->phys_cursor.x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5654 cr.top = w->phys_cursor.y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5655 cr.right = cr.left + cursor_glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5656 cr.bottom = cr.top + w->phys_cursor_height;
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
5657 return IntersectRect (&result, &cr, r);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5658 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5659 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5660 return 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5661 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5662
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5663
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5664 /* Redraw a rectangle of window W. R is a rectangle in window
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5665 relative coordinates. Call this function with input blocked. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5666
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5667 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5668 expose_window (w, r)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5669 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5670 RECT *r;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5671 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5672 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5673 int y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5674 int yb = window_text_bottom_y (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5675 int cursor_cleared_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5676
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5677 /* If window is not yet fully initialized, do nothing. This can
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5678 happen when toolkit scroll bars are used and a window is split.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5679 Reconfiguring the scroll bar will generate an expose for a newly
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5680 created window. */
34823
ace8dd8cf098 (w32_draw_bitmap): Fix drawing so it does not appear in the wrong colors
Jason Rumney <jasonr@gnu.org>
parents: 34784
diff changeset
5681 if (w->current_matrix == NULL || w == updated_window)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5682 return;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5683
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5684 TRACE ((stderr, "expose_window (%d, %d, %d, %d)\n",
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5685 r->left, r->top, r->right, r->bottom));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5686
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5687 /* Convert to window coordinates. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5688 r->left = FRAME_TO_WINDOW_PIXEL_X (w, r->left);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5689 r->top = FRAME_TO_WINDOW_PIXEL_Y (w, r->top);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5690 r->right = FRAME_TO_WINDOW_PIXEL_X (w, r->right);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5691 r->bottom = FRAME_TO_WINDOW_PIXEL_Y (w, r->bottom);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5692
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5693 /* Turn off the cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5694 if (!w->pseudo_window_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5695 && x_phys_cursor_in_rect_p (w, r))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5696 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5697 x_clear_cursor (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5698 cursor_cleared_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5699 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5700 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5701 cursor_cleared_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5702
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5703 /* Find the first row intersecting the rectangle R. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5704 row = w->current_matrix->rows;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5705 y = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5706 while (row->enabled_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5707 && y < yb
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5708 && y + row->height < r->top)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5709 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5710 y += row->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5711 ++row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5712 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5713
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5714 /* Display the text in the rectangle, one text line at a time. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5715 while (row->enabled_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5716 && y < yb
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5717 && y < r->bottom)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5718 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5719 expose_line (w, row, r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5720 y += row->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5721 ++row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5722 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5723
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5724 /* Display the mode line if there is one. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5725 if (WINDOW_WANTS_MODELINE_P (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5726 && (row = MATRIX_MODE_LINE_ROW (w->current_matrix),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5727 row->enabled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5728 && row->y < r->bottom)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5729 expose_line (w, row, r);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5730
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5731 if (!w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5732 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5733 /* Draw border between windows. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5734 x_draw_vertical_border (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5735
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5736 /* Turn the cursor on again. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5737 if (cursor_cleared_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5738 x_update_window_cursor (w, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5739 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5740 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5741
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5742
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5743 static void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5744 frame_highlight (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5745 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5746 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5747 x_update_cursor (f, 1);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5748 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5749
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5750 static void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5751 frame_unhighlight (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5752 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5753 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5754 x_update_cursor (f, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5755 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5756
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5757 /* The focus has changed. Update the frames as necessary to reflect
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5758 the new situation. Note that we can't change the selected frame
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5759 here, because the Lisp code we are interrupting might become confused.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5760 Each event gets marked with the frame in which it occurred, so the
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5761 Lisp code can tell when the switch took place by examining the events. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5762
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
5763 static void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5764 x_new_focus_frame (dpyinfo, frame)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5765 struct w32_display_info *dpyinfo;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5766 struct frame *frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5767 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5768 struct frame *old_focus = dpyinfo->w32_focus_frame;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5769
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5770 if (frame != dpyinfo->w32_focus_frame)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5771 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5772 /* Set this before calling other routines, so that they see
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5773 the correct value of w32_focus_frame. */
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5774 dpyinfo->w32_focus_frame = frame;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5775
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5776 if (old_focus && old_focus->auto_lower)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5777 x_lower_frame (old_focus);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5778
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5779 if (dpyinfo->w32_focus_frame && dpyinfo->w32_focus_frame->auto_raise)
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5780 pending_autoraise_frame = dpyinfo->w32_focus_frame;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5781 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5782 pending_autoraise_frame = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5783 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5784
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5785 x_frame_rehighlight (dpyinfo);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5786 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5787
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5788 /* Handle an event saying the mouse has moved out of an Emacs frame. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5789
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5790 void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5791 x_mouse_leave (dpyinfo)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5792 struct w32_display_info *dpyinfo;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5793 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5794 x_new_focus_frame (dpyinfo, dpyinfo->w32_focus_event_frame);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5795 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5796
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5797 /* The focus has changed, or we have redirected a frame's focus to
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5798 another frame (this happens when a frame uses a surrogate
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
5799 mini-buffer frame). Shift the highlight as appropriate.
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5800
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5801 The FRAME argument doesn't necessarily have anything to do with which
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
5802 frame is being highlighted or un-highlighted; we only use it to find
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
5803 the appropriate X display info. */
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
5804
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5805 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5806 w32_frame_rehighlight (frame)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5807 struct frame *frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5808 {
35000
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5809 if (! FRAME_W32_P (frame))
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
5810 return;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5811 x_frame_rehighlight (FRAME_W32_DISPLAY_INFO (frame));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5812 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5813
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5814 static void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5815 x_frame_rehighlight (dpyinfo)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5816 struct w32_display_info *dpyinfo;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5817 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5818 struct frame *old_highlight = dpyinfo->w32_highlight_frame;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5819
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5820 if (dpyinfo->w32_focus_frame)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5821 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5822 dpyinfo->w32_highlight_frame
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5823 = ((GC_FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame)))
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5824 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame))
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5825 : dpyinfo->w32_focus_frame);
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5826 if (! FRAME_LIVE_P (dpyinfo->w32_highlight_frame))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5827 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5828 FRAME_FOCUS_FRAME (dpyinfo->w32_focus_frame) = Qnil;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5829 dpyinfo->w32_highlight_frame = dpyinfo->w32_focus_frame;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5830 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5831 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5832 else
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5833 dpyinfo->w32_highlight_frame = 0;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5834
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5835 if (dpyinfo->w32_highlight_frame != old_highlight)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5836 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5837 if (old_highlight)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5838 frame_unhighlight (old_highlight);
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5839 if (dpyinfo->w32_highlight_frame)
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5840 frame_highlight (dpyinfo->w32_highlight_frame);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5841 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5842 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5843
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5844 /* Keyboard processing - modifier keys, etc. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5845
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5846 /* Convert a keysym to its name. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5847
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5848 char *
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5849 x_get_keysym_name (keysym)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5850 int keysym;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5851 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5852 /* Make static so we can always return it */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5853 static char value[100];
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5854
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5855 BLOCK_INPUT;
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
5856 GetKeyNameText (keysym, value, 100);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5857 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5858
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5859 return value;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5860 }
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
5861
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
5862
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5863
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5864 /* Mouse clicks and mouse movement. Rah. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5865
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
5866 /* Given a pixel position (PIX_X, PIX_Y) on frame F, return glyph
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
5867 co-ordinates in (*X, *Y). Set *BOUNDS to the rectangle that the
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
5868 glyph at X, Y occupies, if BOUNDS != 0. If NOCLIP is non-zero, do
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
5869 not force the value into range. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5870
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5871 void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5872 pixel_to_glyph_coords (f, pix_x, pix_y, x, y, bounds, noclip)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5873 FRAME_PTR f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5874 register int pix_x, pix_y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5875 register int *x, *y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5876 RECT *bounds;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5877 int noclip;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5878 {
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5879 /* Support tty mode: if Vwindow_system is nil, behave correctly. */
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5880 if (NILP (Vwindow_system))
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5881 {
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5882 *x = pix_x;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5883 *y = pix_y;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5884 return;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5885 }
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5886
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5887 /* Arrange for the division in PIXEL_TO_CHAR_COL etc. to round down
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5888 even for negative values. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5889 if (pix_x < 0)
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
5890 pix_x -= FONT_WIDTH (FRAME_FONT (f)) - 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5891 if (pix_y < 0)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5892 pix_y -= (f)->output_data.w32->line_height - 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5893
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5894 pix_x = PIXEL_TO_CHAR_COL (f, pix_x);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5895 pix_y = PIXEL_TO_CHAR_ROW (f, pix_y);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5896
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5897 if (bounds)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5898 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5899 bounds->left = CHAR_TO_PIXEL_COL (f, pix_x);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5900 bounds->top = CHAR_TO_PIXEL_ROW (f, pix_y);
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
5901 bounds->right = bounds->left + FONT_WIDTH (FRAME_FONT (f)) - 1;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5902 bounds->bottom = bounds->top + f->output_data.w32->line_height - 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5903 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5904
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5905 if (!noclip)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5906 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5907 if (pix_x < 0)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5908 pix_x = 0;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
5909 else if (pix_x > FRAME_WINDOW_WIDTH (f))
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
5910 pix_x = FRAME_WINDOW_WIDTH (f);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5911
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5912 if (pix_y < 0)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5913 pix_y = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5914 else if (pix_y > f->height)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5915 pix_y = f->height;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5916 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5917
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5918 *x = pix_x;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5919 *y = pix_y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5920 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5921
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5922
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5923 /* Given HPOS/VPOS in the current matrix of W, return corresponding
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5924 frame-relative pixel positions in *FRAME_X and *FRAME_Y. If we
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5925 can't tell the positions because W's display is not up to date,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5926 return 0. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5927
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5928 int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5929 glyph_to_pixel_coords (w, hpos, vpos, frame_x, frame_y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5930 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5931 int hpos, vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5932 int *frame_x, *frame_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5933 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5934 int success_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5935
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5936 xassert (hpos >= 0 && hpos < w->current_matrix->matrix_w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5937 xassert (vpos >= 0 && vpos < w->current_matrix->matrix_h);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5938
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5939 if (display_completed)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5940 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5941 struct glyph_row *row = MATRIX_ROW (w->current_matrix, vpos);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5942 struct glyph *glyph = row->glyphs[TEXT_AREA];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5943 struct glyph *end = glyph + min (hpos, row->used[TEXT_AREA]);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5944
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5945 *frame_y = row->y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5946 *frame_x = row->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5947 while (glyph < end)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5948 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5949 *frame_x += glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5950 ++glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5951 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5952
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5953 success_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5954 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5955 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5956 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5957 *frame_y = *frame_x = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5958 success_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5959 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5960
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5961 *frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, *frame_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5962 *frame_x = WINDOW_TO_FRAME_PIXEL_X (w, *frame_x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
5963 return success_p;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5964 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5965
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5966 BOOL
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5967 parse_button (message, pbutton, pup)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5968 int message;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5969 int * pbutton;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5970 int * pup;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5971 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5972 int button = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5973 int up = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5974
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5975 switch (message)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5976 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5977 case WM_LBUTTONDOWN:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5978 button = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5979 up = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5980 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5981 case WM_LBUTTONUP:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5982 button = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5983 up = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5984 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5985 case WM_MBUTTONDOWN:
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5986 if (NILP (Vw32_swap_mouse_buttons))
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5987 button = 1;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5988 else
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5989 button = 2;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5990 up = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5991 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5992 case WM_MBUTTONUP:
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
5993 if (NILP (Vw32_swap_mouse_buttons))
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5994 button = 1;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5995 else
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
5996 button = 2;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5997 up = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5998 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
5999 case WM_RBUTTONDOWN:
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
6000 if (NILP (Vw32_swap_mouse_buttons))
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
6001 button = 2;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
6002 else
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
6003 button = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6004 up = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6005 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6006 case WM_RBUTTONUP:
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
6007 if (NILP (Vw32_swap_mouse_buttons))
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
6008 button = 2;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
6009 else
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
6010 button = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6011 up = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6012 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6013 default:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6014 return (FALSE);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6015 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6016
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6017 if (pup) *pup = up;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6018 if (pbutton) *pbutton = button;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6019
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6020 return (TRUE);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6021 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6022
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6023
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6024 /* Prepare a mouse-event in *RESULT for placement in the input queue.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6025
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6026 If the event is a button press, then note that we have grabbed
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6027 the mouse. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6028
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6029 static Lisp_Object
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6030 construct_mouse_click (result, msg, f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6031 struct input_event *result;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
6032 W32Msg *msg;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6033 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6034 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6035 int button;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6036 int up;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6037
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6038 parse_button (msg->msg.message, &button, &up);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6039
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6040 /* Make the event type no_event; we'll change that when we decide
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6041 otherwise. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6042 result->kind = mouse_click;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6043 result->code = button;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6044 result->timestamp = msg->msg.time;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6045 result->modifiers = (msg->dwModifiers
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6046 | (up
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6047 ? up_modifier
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6048 : down_modifier));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6049
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6050 XSETINT (result->x, LOWORD (msg->msg.lParam));
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6051 XSETINT (result->y, HIWORD (msg->msg.lParam));
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6052 XSETFRAME (result->frame_or_window, f);
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6053 result->arg = Qnil;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6054 return Qnil;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6055 }
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6056
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6057 static Lisp_Object
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6058 construct_mouse_wheel (result, msg, f)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6059 struct input_event *result;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6060 W32Msg *msg;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6061 struct frame *f;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6062 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6063 POINT p;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6064 result->kind = mouse_wheel;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6065 result->code = (short) HIWORD (msg->msg.wParam);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6066 result->timestamp = msg->msg.time;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6067 result->modifiers = msg->dwModifiers;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6068 p.x = LOWORD (msg->msg.lParam);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6069 p.y = HIWORD (msg->msg.lParam);
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
6070 ScreenToClient (msg->msg.hwnd, &p);
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6071 XSETINT (result->x, p.x);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6072 XSETINT (result->y, p.y);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
6073 XSETFRAME (result->frame_or_window, f);
30199
298f10cd4ba5 (construct_mouse_click, construct_mouse_wheel)
Gerd Moellmann <gerd@gnu.org>
parents: 30179
diff changeset
6074 result->arg = Qnil;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6075 return Qnil;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6076 }
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6077
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6078 static Lisp_Object
21885
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6079 construct_drag_n_drop (result, msg, f)
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6080 struct input_event *result;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6081 W32Msg *msg;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6082 struct frame *f;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6083 {
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6084 Lisp_Object files;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6085 Lisp_Object frame;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6086 HDROP hdrop;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6087 POINT p;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6088 WORD num_files;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6089 char *name;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6090 int i, len;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6091
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6092 result->kind = drag_n_drop;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6093 result->code = 0;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6094 result->timestamp = msg->msg.time;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6095 result->modifiers = msg->dwModifiers;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6096
24265
c5f1a1deffbb (construct_drag_n_drop): Call DraqQueryPoint before
Andrew Innes <andrewi@gnu.org>
parents: 24146
diff changeset
6097 hdrop = (HDROP) msg->msg.wParam;
c5f1a1deffbb (construct_drag_n_drop): Call DraqQueryPoint before
Andrew Innes <andrewi@gnu.org>
parents: 24146
diff changeset
6098 DragQueryPoint (hdrop, &p);
c5f1a1deffbb (construct_drag_n_drop): Call DraqQueryPoint before
Andrew Innes <andrewi@gnu.org>
parents: 24146
diff changeset
6099
24674
d0dee612f8e3 [andrewi]
Andrew Innes <andrewi@gnu.org>
parents: 24480
diff changeset
6100 #if 0
21885
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6101 p.x = LOWORD (msg->msg.lParam);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6102 p.y = HIWORD (msg->msg.lParam);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6103 ScreenToClient (msg->msg.hwnd, &p);
24674
d0dee612f8e3 [andrewi]
Andrew Innes <andrewi@gnu.org>
parents: 24480
diff changeset
6104 #endif
d0dee612f8e3 [andrewi]
Andrew Innes <andrewi@gnu.org>
parents: 24480
diff changeset
6105
21885
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6106 XSETINT (result->x, p.x);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6107 XSETINT (result->y, p.y);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6108
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6109 num_files = DragQueryFile (hdrop, 0xFFFFFFFF, NULL, 0);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6110 files = Qnil;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6111
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6112 for (i = 0; i < num_files; i++)
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6113 {
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6114 len = DragQueryFile (hdrop, i, NULL, 0);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6115 if (len <= 0)
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6116 continue;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6117 name = alloca (len + 1);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6118 DragQueryFile (hdrop, i, name, len + 1);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6119 files = Fcons (build_string (name), files);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6120 }
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6121
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6122 DragFinish (hdrop);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6123
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6124 XSETFRAME (frame, f);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6125 result->frame_or_window = Fcons (frame, files);
30199
298f10cd4ba5 (construct_mouse_click, construct_mouse_wheel)
Gerd Moellmann <gerd@gnu.org>
parents: 30179
diff changeset
6126 result->arg = Qnil;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6127 return Qnil;
21885
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6128 }
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
6129
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6130
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6131 /* Function to report a mouse movement to the mainstream Emacs code.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6132 The input handler calls this.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6133
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6134 We have received a mouse movement event, which is given in *event.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6135 If the mouse is over a different glyph than it was last time, tell
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6136 the mainstream emacs code by setting mouse_moved. If not, ask for
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6137 another motion event, so we can check again the next time it moves. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6138
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6139 static MSG last_mouse_motion_event;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6140 static Lisp_Object last_mouse_motion_frame;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6141
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6142 static void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6143 note_mouse_movement (frame, msg)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6144 FRAME_PTR frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6145 MSG *msg;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6146 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6147 last_mouse_movement_time = msg->time;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6148 memcpy (&last_mouse_motion_event, msg, sizeof (last_mouse_motion_event));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6149 XSETFRAME (last_mouse_motion_frame, frame);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6150
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
6151 if (msg->hwnd != FRAME_W32_WINDOW (frame))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6152 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6153 frame->mouse_moved = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6154 last_mouse_scroll_bar = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6155 note_mouse_highlight (frame, -1, -1);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6156 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6157
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6158 /* Has the mouse moved off the glyph it was on at the last sighting? */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6159 else if (LOWORD (msg->lParam) < last_mouse_glyph.left
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6160 || LOWORD (msg->lParam) > last_mouse_glyph.right
15229
a270351f6e0c (note_mouse_movement): Upwards mouse movement recognition corrected.
Richard M. Stallman <rms@gnu.org>
parents: 15216
diff changeset
6161 || HIWORD (msg->lParam) < last_mouse_glyph.top
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6162 || HIWORD (msg->lParam) > last_mouse_glyph.bottom)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6163 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6164 frame->mouse_moved = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6165 last_mouse_scroll_bar = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6166 note_mouse_highlight (frame, LOWORD (msg->lParam), HIWORD (msg->lParam));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6167 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6168 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6169
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6170 /* This is used for debugging, to turn off note_mouse_highlight. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6171
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6172 int disable_mouse_highlight;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6173
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6174
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6175
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6176 /************************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6177 Mouse Face
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6178 ************************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6179
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6180 /* Find the glyph under window-relative coordinates X/Y in window W.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6181 Consider only glyphs from buffer text, i.e. no glyphs from overlay
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6182 strings. Return in *HPOS and *VPOS the row and column number of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6183 the glyph found. Return in *AREA the glyph area containing X.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6184 Value is a pointer to the glyph found or null if X/Y is not on
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6185 text, or we can't tell because W's current matrix is not up to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6186 date. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6187
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6188 static struct glyph *
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6189 x_y_to_hpos_vpos (w, x, y, hpos, vpos, area)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6190 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6191 int x, y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6192 int *hpos, *vpos, *area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6193 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6194 struct glyph *glyph, *end;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6195 struct glyph_row *row = NULL;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6196 int x0, i, left_area_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6197
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6198 /* Find row containing Y. Give up if some row is not enabled. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6199 for (i = 0; i < w->current_matrix->nrows; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6200 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6201 row = MATRIX_ROW (w->current_matrix, i);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6202 if (!row->enabled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6203 return NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6204 if (y >= row->y && y < MATRIX_ROW_BOTTOM_Y (row))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6205 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6206 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6207
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6208 *vpos = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6209 *hpos = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6210
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6211 /* Give up if Y is not in the window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6212 if (i == w->current_matrix->nrows)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6213 return NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6214
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6215 /* Get the glyph area containing X. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6216 if (w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6217 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6218 *area = TEXT_AREA;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6219 x0 = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6220 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6221 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6222 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6223 left_area_width = window_box_width (w, LEFT_MARGIN_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6224 if (x < left_area_width)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6225 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6226 *area = LEFT_MARGIN_AREA;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6227 x0 = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6228 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6229 else if (x < left_area_width + window_box_width (w, TEXT_AREA))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6230 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6231 *area = TEXT_AREA;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6232 x0 = row->x + left_area_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6233 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6234 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6235 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6236 *area = RIGHT_MARGIN_AREA;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6237 x0 = left_area_width + window_box_width (w, TEXT_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6238 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6239 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6240
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6241 /* Find glyph containing X. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6242 glyph = row->glyphs[*area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6243 end = glyph + row->used[*area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6244 while (glyph < end)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6245 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6246 if (x < x0 + glyph->pixel_width)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6247 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6248 if (w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6249 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6250 else if (BUFFERP (glyph->object))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6251 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6252 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6253
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6254 x0 += glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6255 ++glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6256 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6257
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6258 if (glyph == end)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6259 return NULL;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6260
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6261 *hpos = glyph - row->glyphs[*area];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6262 return glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6263 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6264
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6265
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6266 /* Convert frame-relative x/y to coordinates relative to window W.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6267 Takes pseudo-windows into account. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6268
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6269 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6270 frame_to_window_pixel_xy (w, x, y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6271 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6272 int *x, *y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6273 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6274 if (w->pseudo_window_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6275 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6276 /* A pseudo-window is always full-width, and starts at the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6277 left edge of the frame, plus a frame border. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6278 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6279 *x -= FRAME_INTERNAL_BORDER_WIDTH_SAFE (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6280 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6281 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6282 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6283 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6284 *x = FRAME_TO_WINDOW_PIXEL_X (w, *x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6285 *y = FRAME_TO_WINDOW_PIXEL_Y (w, *y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6286 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6287 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6288
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6289
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
6290 /* Take proper action when mouse has moved to the mode or header line of
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6291 window W, x-position X. MODE_LINE_P non-zero means mouse is on the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6292 mode line. X is relative to the start of the text display area of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6293 W, so the width of bitmap areas and scroll bars must be subtracted
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6294 to get a position relative to the start of the mode line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6295
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6296 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6297 note_mode_line_highlight (w, x, mode_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6298 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6299 int x, mode_line_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6300 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6301 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6302 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6303 Cursor cursor = dpyinfo->vertical_scroll_bar_cursor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6304 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6305
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6306 if (mode_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6307 row = MATRIX_MODE_LINE_ROW (w->current_matrix);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6308 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6309 row = MATRIX_HEADER_LINE_ROW (w->current_matrix);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6310
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6311 if (row->enabled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6312 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6313 struct glyph *glyph, *end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6314 Lisp_Object help, map;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6315 int x0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6316
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6317 /* Find the glyph under X. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6318 glyph = row->glyphs[TEXT_AREA];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6319 end = glyph + row->used[TEXT_AREA];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6320 x0 = - (FRAME_LEFT_SCROLL_BAR_WIDTH (f) * CANON_X_UNIT (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6321 + FRAME_X_LEFT_FLAGS_AREA_WIDTH (f));
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
6322
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6323 while (glyph < end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6324 && x >= x0 + glyph->pixel_width)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6325 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6326 x0 += glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6327 ++glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6328 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6329
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6330 if (glyph < end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6331 && STRINGP (glyph->object)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6332 && XSTRING (glyph->object)->intervals
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6333 && glyph->charpos >= 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6334 && glyph->charpos < XSTRING (glyph->object)->size)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6335 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6336 /* If we're on a string with `help-echo' text property,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6337 arrange for the help to be displayed. This is done by
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6338 setting the global variable help_echo to the help string. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6339 help = Fget_text_property (make_number (glyph->charpos),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6340 Qhelp_echo, glyph->object);
30050
ed1979c6dfb9 * xterm.c (note_mode_line_highlight, note_mouse_highlight)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 29321
diff changeset
6341 if (!NILP (help))
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6342 {
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6343 help_echo = help;
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
6344 XSETWINDOW (help_echo_window, w);
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6345 help_echo_object = glyph->object;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6346 help_echo_pos = glyph->charpos;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6347 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6348
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6349 /* Change the mouse pointer according to what is under X/Y. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6350 map = Fget_text_property (make_number (glyph->charpos),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6351 Qlocal_map, glyph->object);
32988
c3435dc00ed7 * lisp.h (KEYMAPP): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32792
diff changeset
6352 if (KEYMAPP (map))
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6353 cursor = f->output_data.w32->nontext_cursor;
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
6354 else
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
6355 {
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
6356 map = Fget_text_property (make_number (glyph->charpos),
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
6357 Qkeymap, glyph->object);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
6358 if (KEYMAPP (map))
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
6359 cursor = f->output_data.w32->nontext_cursor;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
6360 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6361 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6362 }
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6363
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
6364 #if 0 /* TODO: mouse cursor */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6365 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), cursor);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6366 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6367 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6368
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6369
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6370 /* Take proper action when the mouse has moved to position X, Y on
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6371 frame F as regards highlighting characters that have mouse-face
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6372 properties. Also de-highlighting chars where the mouse was before.
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6373 X and Y can be negative or out of range. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6374
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6375 static void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6376 note_mouse_highlight (f, x, y)
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6377 struct frame *f;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6378 int x, y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6379 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6380 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6381 int portion;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6382 Lisp_Object window;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6383 struct window *w;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6384
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6385 /* When a menu is active, don't highlight because this looks odd. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6386 if (popup_activated ())
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6387 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6388
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6389 if (disable_mouse_highlight
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6390 || !f->glyphs_initialized_p)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6391 return;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6392
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6393 dpyinfo->mouse_face_mouse_x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6394 dpyinfo->mouse_face_mouse_y = y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6395 dpyinfo->mouse_face_mouse_frame = f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6396
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6397 if (dpyinfo->mouse_face_defer)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6398 return;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6399
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6400 if (gc_in_progress)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6401 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6402 dpyinfo->mouse_face_deferred_gc = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6403 return;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6404 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6405
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6406 /* Which window is that in? */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6407 window = window_from_coordinates (f, x, y, &portion, 1);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6408
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6409 /* If we were displaying active text in another window, clear that. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6410 if (! EQ (window, dpyinfo->mouse_face_window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6411 clear_mouse_face (dpyinfo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6412
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6413 /* Not on a window -> return. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6414 if (!WINDOWP (window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6415 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6416
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6417 /* Convert to window-relative pixel coordinates. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6418 w = XWINDOW (window);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6419 frame_to_window_pixel_xy (w, &x, &y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6420
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6421 /* Handle tool-bar window differently since it doesn't display a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6422 buffer. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6423 if (EQ (window, f->tool_bar_window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6424 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6425 note_tool_bar_highlight (f, x, y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6426 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6427 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6428
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6429 if (portion == 1 || portion == 3)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6430 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6431 /* Mouse is on the mode or top line. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6432 note_mode_line_highlight (w, x, portion == 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6433 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6434 }
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
6435 #if 0 /* TODO: mouse cursor */
34135
2d899d158741 (x_estimate_mode_line_height): If `mode-line' face hasn't a font, use
Jason Rumney <jasonr@gnu.org>
parents: 34112
diff changeset
6436 else if (portion == 2)
2d899d158741 (x_estimate_mode_line_height): If `mode-line' face hasn't a font, use
Jason Rumney <jasonr@gnu.org>
parents: 34112
diff changeset
6437 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
2d899d158741 (x_estimate_mode_line_height): If `mode-line' face hasn't a font, use
Jason Rumney <jasonr@gnu.org>
parents: 34112
diff changeset
6438 f->output_data.x->horizontal_drag_cursor);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6439 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6440 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6441 f->output_data.x->text_cursor);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6442 #endif
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6443
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6444 /* Are we in a window whose display is up to date?
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6445 And verify the buffer's text has not changed. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6446 if (/* Within text portion of the window. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6447 portion == 0
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6448 && EQ (w->window_end_valid, w->buffer)
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6449 && XFASTINT (w->last_modified) == BUF_MODIFF (XBUFFER (w->buffer))
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6450 && (XFASTINT (w->last_overlay_modified)
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6451 == BUF_OVERLAY_MODIFF (XBUFFER (w->buffer))))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6452 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6453 int hpos, vpos, pos, i, area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6454 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6455
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6456 /* Find the glyph under X/Y. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6457 glyph = x_y_to_hpos_vpos (w, x, y, &hpos, &vpos, &area);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6458
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6459 /* Clear mouse face if X/Y not over text. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6460 if (glyph == NULL
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6461 || area != TEXT_AREA
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6462 || !MATRIX_ROW (w->current_matrix, vpos)->displays_text_p)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6463 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6464 clear_mouse_face (dpyinfo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6465 return;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6466 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6467
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6468 pos = glyph->charpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6469 xassert (w->pseudo_window_p || BUFFERP (glyph->object));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6470
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6471 /* Check for mouse-face and help-echo. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6472 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6473 Lisp_Object mouse_face, overlay, position;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6474 Lisp_Object *overlay_vec;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6475 int len, noverlays;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6476 struct buffer *obuf;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6477 int obegv, ozv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6478
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6479 /* If we get an out-of-range value, return now; avoid an error. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6480 if (pos > BUF_Z (XBUFFER (w->buffer)))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6481 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6482
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6483 /* Make the window's buffer temporarily current for
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6484 overlays_at and compute_char_face. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6485 obuf = current_buffer;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6486 current_buffer = XBUFFER (w->buffer);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6487 obegv = BEGV;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6488 ozv = ZV;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6489 BEGV = BEG;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6490 ZV = Z;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6491
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6492 /* Is this char mouse-active or does it have help-echo? */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6493 XSETINT (position, pos);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6494
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6495 /* Put all the overlays we want in a vector in overlay_vec.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6496 Store the length in len. If there are more than 10, make
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6497 enough space for all, and try again. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6498 len = 10;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6499 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
30730
460a4e222f17 (note_mouse_highlight): Update calls to overlays_at.
Miles Bader <miles@gnu.org>
parents: 30240
diff changeset
6500 noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL, 0);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6501 if (noverlays > len)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6502 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6503 len = noverlays;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6504 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
30730
460a4e222f17 (note_mouse_highlight): Update calls to overlays_at.
Miles Bader <miles@gnu.org>
parents: 30240
diff changeset
6505 noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL,0);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6506 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6507
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
6508 /* Sort overlays into increasing priority order. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6509 noverlays = sort_overlays (overlay_vec, noverlays, w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6510
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6511 /* Check mouse-face highlighting. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6512 if (! (EQ (window, dpyinfo->mouse_face_window)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6513 && vpos >= dpyinfo->mouse_face_beg_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6514 && vpos <= dpyinfo->mouse_face_end_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6515 && (vpos > dpyinfo->mouse_face_beg_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6516 || hpos >= dpyinfo->mouse_face_beg_col)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6517 && (vpos < dpyinfo->mouse_face_end_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6518 || hpos < dpyinfo->mouse_face_end_col
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6519 || dpyinfo->mouse_face_past_end)))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6520 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6521 /* Clear the display of the old active region, if any. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6522 clear_mouse_face (dpyinfo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6523
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6524 /* Find the highest priority overlay that has a mouse-face prop. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6525 overlay = Qnil;
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
6526 for (i = noverlays - 1; i >= 0; --i)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6527 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6528 mouse_face = Foverlay_get (overlay_vec[i], Qmouse_face);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6529 if (!NILP (mouse_face))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6530 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6531 overlay = overlay_vec[i];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6532 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6533 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6534 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6535
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6536 /* If no overlay applies, get a text property. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6537 if (NILP (overlay))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6538 mouse_face = Fget_text_property (position, Qmouse_face, w->buffer);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6539
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6540 /* Handle the overlay case. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6541 if (! NILP (overlay))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6542 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6543 /* Find the range of text around this char that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6544 should be active. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6545 Lisp_Object before, after;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6546 int ignore;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6547
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6548 before = Foverlay_start (overlay);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6549 after = Foverlay_end (overlay);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6550 /* Record this as the current active region. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6551 fast_find_position (w, XFASTINT (before),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6552 &dpyinfo->mouse_face_beg_col,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6553 &dpyinfo->mouse_face_beg_row,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6554 &dpyinfo->mouse_face_beg_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6555 &dpyinfo->mouse_face_beg_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6556 dpyinfo->mouse_face_past_end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6557 = !fast_find_position (w, XFASTINT (after),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6558 &dpyinfo->mouse_face_end_col,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6559 &dpyinfo->mouse_face_end_row,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6560 &dpyinfo->mouse_face_end_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6561 &dpyinfo->mouse_face_end_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6562 dpyinfo->mouse_face_window = window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6563 dpyinfo->mouse_face_face_id
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6564 = face_at_buffer_position (w, pos, 0, 0,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6565 &ignore, pos + 1, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6566
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6567 /* Display it as active. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6568 show_mouse_face (dpyinfo, DRAW_MOUSE_FACE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6569 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6570 /* Handle the text property case. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6571 else if (! NILP (mouse_face))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6572 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6573 /* Find the range of text around this char that
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6574 should be active. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6575 Lisp_Object before, after, beginning, end;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6576 int ignore;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6577
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6578 beginning = Fmarker_position (w->start);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6579 XSETINT (end, (BUF_Z (XBUFFER (w->buffer))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6580 - XFASTINT (w->window_end_pos)));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6581 before
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6582 = Fprevious_single_property_change (make_number (pos + 1),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6583 Qmouse_face,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6584 w->buffer, beginning);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6585 after
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6586 = Fnext_single_property_change (position, Qmouse_face,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6587 w->buffer, end);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6588 /* Record this as the current active region. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6589 fast_find_position (w, XFASTINT (before),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6590 &dpyinfo->mouse_face_beg_col,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6591 &dpyinfo->mouse_face_beg_row,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6592 &dpyinfo->mouse_face_beg_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6593 &dpyinfo->mouse_face_beg_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6594 dpyinfo->mouse_face_past_end
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6595 = !fast_find_position (w, XFASTINT (after),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6596 &dpyinfo->mouse_face_end_col,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6597 &dpyinfo->mouse_face_end_row,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6598 &dpyinfo->mouse_face_end_x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6599 &dpyinfo->mouse_face_end_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6600 dpyinfo->mouse_face_window = window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6601 dpyinfo->mouse_face_face_id
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6602 = face_at_buffer_position (w, pos, 0, 0,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6603 &ignore, pos + 1, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6604
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6605 /* Display it as active. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6606 show_mouse_face (dpyinfo, DRAW_MOUSE_FACE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6607 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6608 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6609
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6610 /* Look for a `help-echo' property. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6611 {
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
6612 Lisp_Object help, overlay;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6613
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6614 /* Check overlays first. */
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
6615 help = overlay = Qnil;
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
6616 for (i = noverlays - 1; i >= 0 && NILP (help); --i)
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
6617 {
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
6618 overlay = overlay_vec[i];
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
6619 help = Foverlay_get (overlay, Qhelp_echo);
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
6620 }
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6621
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6622 if (!NILP (help))
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6623 {
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6624 help_echo = help;
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
6625 help_echo_window = window;
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
6626 help_echo_object = overlay;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6627 help_echo_pos = pos;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6628 }
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6629 else
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6630 {
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6631 /* Try text properties. */
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6632 if ((STRINGP (glyph->object)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6633 && glyph->charpos >= 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6634 && glyph->charpos < XSTRING (glyph->object)->size)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6635 || (BUFFERP (glyph->object)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6636 && glyph->charpos >= BEGV
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6637 && glyph->charpos < ZV))
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6638 help = Fget_text_property (make_number (glyph->charpos),
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6639 Qhelp_echo, glyph->object);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6640
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6641 if (!NILP (help))
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6642 {
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6643 help_echo = help;
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
6644 help_echo_window = window;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6645 help_echo_object = glyph->object;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6646 help_echo_pos = glyph->charpos;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6647 }
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6648 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6649 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6650
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6651 BEGV = obegv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6652 ZV = ozv;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6653 current_buffer = obuf;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6654 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6655 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6656 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6657
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6658 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6659 redo_mouse_highlight ()
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6660 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6661 if (!NILP (last_mouse_motion_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6662 && FRAME_LIVE_P (XFRAME (last_mouse_motion_frame)))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6663 note_mouse_highlight (XFRAME (last_mouse_motion_frame),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6664 LOWORD (last_mouse_motion_event.lParam),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6665 HIWORD (last_mouse_motion_event.lParam));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6666 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6667
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6668
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6669
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6670 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6671 Tool-bars
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6672 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6673
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6674 static int x_tool_bar_item P_ ((struct frame *, int, int,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6675 struct glyph **, int *, int *, int *));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6676
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6677 /* Tool-bar item index of the item on which a mouse button was pressed
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6678 or -1. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6679
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6680 static int last_tool_bar_item;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6681
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6682
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6683 /* Get information about the tool-bar item at position X/Y on frame F.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6684 Return in *GLYPH a pointer to the glyph of the tool-bar item in
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6685 the current matrix of the tool-bar window of F, or NULL if not
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6686 on a tool-bar item. Return in *PROP_IDX the index of the tool-bar
33766
3488141db749 (x_tool_bar_item, w32_handle_tool_bar_click)
Gerd Moellmann <gerd@gnu.org>
parents: 33583
diff changeset
6687 item in F->tool_bar_items. Value is
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6688
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6689 -1 if X/Y is not on a tool-bar item
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6690 0 if X/Y is on the same item that was highlighted before.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6691 1 otherwise. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6692
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6693 static int
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6694 x_tool_bar_item (f, x, y, glyph, hpos, vpos, prop_idx)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6695 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6696 int x, y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6697 struct glyph **glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6698 int *hpos, *vpos, *prop_idx;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6699 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6700 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6701 struct window *w = XWINDOW (f->tool_bar_window);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6702 int area;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6703
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6704 /* Find the glyph under X/Y. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6705 *glyph = x_y_to_hpos_vpos (w, x, y, hpos, vpos, &area);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6706 if (*glyph == NULL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6707 return -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6708
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6709 /* Get the start of this tool-bar item's properties in
33766
3488141db749 (x_tool_bar_item, w32_handle_tool_bar_click)
Gerd Moellmann <gerd@gnu.org>
parents: 33583
diff changeset
6710 f->tool_bar_items. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6711 if (!tool_bar_item_info (f, *glyph, prop_idx))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6712 return -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6713
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6714 /* Is mouse on the highlighted item? */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6715 if (EQ (f->tool_bar_window, dpyinfo->mouse_face_window)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6716 && *vpos >= dpyinfo->mouse_face_beg_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6717 && *vpos <= dpyinfo->mouse_face_end_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6718 && (*vpos > dpyinfo->mouse_face_beg_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6719 || *hpos >= dpyinfo->mouse_face_beg_col)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6720 && (*vpos < dpyinfo->mouse_face_end_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6721 || *hpos < dpyinfo->mouse_face_end_col
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6722 || dpyinfo->mouse_face_past_end))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6723 return 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6724
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6725 return 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6726 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6727
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6728
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6729 /* Handle mouse button event on the tool-bar of frame F, at
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6730 frame-relative coordinates X/Y. EVENT_TYPE is either ButtionPress
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6731 or ButtonRelase. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6732
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6733 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6734 w32_handle_tool_bar_click (f, button_event)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6735 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6736 struct input_event *button_event;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6737 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6738 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6739 struct window *w = XWINDOW (f->tool_bar_window);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6740 int hpos, vpos, prop_idx;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6741 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6742 Lisp_Object enabled_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6743 int x = XFASTINT (button_event->x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6744 int y = XFASTINT (button_event->y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6745
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6746 /* If not on the highlighted tool-bar item, return. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6747 frame_to_window_pixel_xy (w, &x, &y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6748 if (x_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx) != 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6749 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6750
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6751 /* If item is disabled, do nothing. */
33766
3488141db749 (x_tool_bar_item, w32_handle_tool_bar_click)
Gerd Moellmann <gerd@gnu.org>
parents: 33583
diff changeset
6752 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6753 if (NILP (enabled_p))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6754 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6755
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6756 if (button_event->kind == mouse_click)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6757 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6758 /* Show item in pressed state. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6759 show_mouse_face (dpyinfo, DRAW_IMAGE_SUNKEN);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6760 dpyinfo->mouse_face_image_state = DRAW_IMAGE_SUNKEN;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6761 last_tool_bar_item = prop_idx;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6762 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6763 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6764 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6765 Lisp_Object key, frame;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6766 struct input_event event;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6767
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6768 /* Show item in released state. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6769 show_mouse_face (dpyinfo, DRAW_IMAGE_RAISED);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6770 dpyinfo->mouse_face_image_state = DRAW_IMAGE_RAISED;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6771
33766
3488141db749 (x_tool_bar_item, w32_handle_tool_bar_click)
Gerd Moellmann <gerd@gnu.org>
parents: 33583
diff changeset
6772 key = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_KEY);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6773
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6774 XSETFRAME (frame, f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6775 event.kind = TOOL_BAR_EVENT;
30179
9c30c64ab61d (w32_handle_tool_bar_click): Adapt to changes in
Gerd Moellmann <gerd@gnu.org>
parents: 30050
diff changeset
6776 event.frame_or_window = frame;
9c30c64ab61d (w32_handle_tool_bar_click): Adapt to changes in
Gerd Moellmann <gerd@gnu.org>
parents: 30050
diff changeset
6777 event.arg = frame;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6778 kbd_buffer_store_event (&event);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6779
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6780 event.kind = TOOL_BAR_EVENT;
30179
9c30c64ab61d (w32_handle_tool_bar_click): Adapt to changes in
Gerd Moellmann <gerd@gnu.org>
parents: 30050
diff changeset
6781 event.frame_or_window = frame;
9c30c64ab61d (w32_handle_tool_bar_click): Adapt to changes in
Gerd Moellmann <gerd@gnu.org>
parents: 30050
diff changeset
6782 event.arg = key;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6783 event.modifiers = button_event->modifiers;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6784 kbd_buffer_store_event (&event);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6785 last_tool_bar_item = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6786 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6787 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6788
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6789
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6790 /* Possibly highlight a tool-bar item on frame F when mouse moves to
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6791 tool-bar window-relative coordinates X/Y. Called from
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6792 note_mouse_highlight. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6793
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6794 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6795 note_tool_bar_highlight (f, x, y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6796 struct frame *f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6797 int x, y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6798 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6799 Lisp_Object window = f->tool_bar_window;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6800 struct window *w = XWINDOW (window);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6801 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6802 int hpos, vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6803 struct glyph *glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6804 struct glyph_row *row;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6805 int i;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6806 Lisp_Object enabled_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6807 int prop_idx;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6808 enum draw_glyphs_face draw = DRAW_IMAGE_RAISED;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6809 int mouse_down_p, rc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6810
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6811 /* Function note_mouse_highlight is called with negative x(y
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6812 values when mouse moves outside of the frame. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6813 if (x <= 0 || y <= 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6814 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6815 clear_mouse_face (dpyinfo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6816 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6817 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6818
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6819 rc = x_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6820 if (rc < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6821 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6822 /* Not on tool-bar item. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6823 clear_mouse_face (dpyinfo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6824 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6825 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6826 else if (rc == 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6827 /* On same tool-bar item as before. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6828 goto set_help_echo;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6829
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6830 clear_mouse_face (dpyinfo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6831
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6832 /* Mouse is down, but on different tool-bar item? */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6833 mouse_down_p = (dpyinfo->grabbed
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6834 && f == last_mouse_frame
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6835 && FRAME_LIVE_P (f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6836 if (mouse_down_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6837 && last_tool_bar_item != prop_idx)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6838 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6839
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6840 dpyinfo->mouse_face_image_state = DRAW_NORMAL_TEXT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6841 draw = mouse_down_p ? DRAW_IMAGE_SUNKEN : DRAW_IMAGE_RAISED;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6842
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6843 /* If tool-bar item is not enabled, don't highlight it. */
33766
3488141db749 (x_tool_bar_item, w32_handle_tool_bar_click)
Gerd Moellmann <gerd@gnu.org>
parents: 33583
diff changeset
6844 enabled_p = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_ENABLED_P);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6845 if (!NILP (enabled_p))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6846 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6847 /* Compute the x-position of the glyph. In front and past the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6848 image is a space. We include this is the highlighted area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6849 row = MATRIX_ROW (w->current_matrix, vpos);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6850 for (i = x = 0; i < hpos; ++i)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6851 x += row->glyphs[TEXT_AREA][i].pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6852
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6853 /* Record this as the current active region. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6854 dpyinfo->mouse_face_beg_col = hpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6855 dpyinfo->mouse_face_beg_row = vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6856 dpyinfo->mouse_face_beg_x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6857 dpyinfo->mouse_face_beg_y = row->y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6858 dpyinfo->mouse_face_past_end = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6859
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6860 dpyinfo->mouse_face_end_col = hpos + 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6861 dpyinfo->mouse_face_end_row = vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6862 dpyinfo->mouse_face_end_x = x + glyph->pixel_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6863 dpyinfo->mouse_face_end_y = row->y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6864 dpyinfo->mouse_face_window = window;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6865 dpyinfo->mouse_face_face_id = TOOL_BAR_FACE_ID;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6866
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6867 /* Display it as active. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6868 show_mouse_face (dpyinfo, draw);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6869 dpyinfo->mouse_face_image_state = draw;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6870 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6871
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6872 set_help_echo:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6873
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6874 /* Set help_echo to a help string.to display for this tool-bar item.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6875 w32_read_socket does the rest. */
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
6876 help_echo_object = help_echo_window = Qnil;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
6877 help_echo_pos = -1;
33766
3488141db749 (x_tool_bar_item, w32_handle_tool_bar_click)
Gerd Moellmann <gerd@gnu.org>
parents: 33583
diff changeset
6878 help_echo = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_HELP);
30050
ed1979c6dfb9 * xterm.c (note_mode_line_highlight, note_mouse_highlight)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 29321
diff changeset
6879 if (NILP (help_echo))
33766
3488141db749 (x_tool_bar_item, w32_handle_tool_bar_click)
Gerd Moellmann <gerd@gnu.org>
parents: 33583
diff changeset
6880 help_echo = AREF (f->tool_bar_items, prop_idx + TOOL_BAR_ITEM_CAPTION);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6881 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6882
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6883
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6884
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6885 /* Find the glyph matrix position of buffer position POS in window W.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6886 *HPOS, *VPOS, *X, and *Y are set to the positions found. W's
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6887 current glyphs must be up to date. If POS is above window start
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6888 return (0, 0, 0, 0). If POS is after end of W, return end of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6889 last line in W. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6890
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6891 static int
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6892 fast_find_position (w, pos, hpos, vpos, x, y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6893 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6894 int pos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6895 int *hpos, *vpos, *x, *y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6896 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6897 int i;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6898 int lastcol;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6899 int maybe_next_line_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6900 int line_start_position;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6901 int yb = window_text_bottom_y (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6902 struct glyph_row *row = MATRIX_ROW (w->current_matrix, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6903 struct glyph_row *best_row = row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6904 int row_vpos = 0, best_row_vpos = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6905 int current_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6906
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6907 while (row->y < yb)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6908 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6909 if (row->used[TEXT_AREA])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6910 line_start_position = row->glyphs[TEXT_AREA]->charpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6911 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6912 line_start_position = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6913
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6914 if (line_start_position > pos)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6915 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6916 /* If the position sought is the end of the buffer,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6917 don't include the blank lines at the bottom of the window. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6918 else if (line_start_position == pos
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6919 && pos == BUF_ZV (XBUFFER (w->buffer)))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6920 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6921 maybe_next_line_p = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6922 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6923 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6924 else if (line_start_position > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6925 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6926 best_row = row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6927 best_row_vpos = row_vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6928 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6929
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6930 if (row->y + row->height >= yb)
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6931 break;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
6932
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6933 ++row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6934 ++row_vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6935 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6936
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6937 /* Find the right column within BEST_ROW. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6938 lastcol = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6939 current_x = best_row->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6940 for (i = 0; i < best_row->used[TEXT_AREA]; i++)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6941 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6942 struct glyph *glyph = best_row->glyphs[TEXT_AREA] + i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6943 int charpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6944
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6945 charpos = glyph->charpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6946 if (charpos == pos)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6947 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6948 *hpos = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6949 *vpos = best_row_vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6950 *x = current_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6951 *y = best_row->y;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6952 return 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6953 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6954 else if (charpos > pos)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6955 break;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6956 else if (charpos > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6957 lastcol = i;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6958
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6959 current_x += glyph->pixel_width;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6960 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6961
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6962 /* If we're looking for the end of the buffer,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6963 and we didn't find it in the line we scanned,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6964 use the start of the following line. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6965 if (maybe_next_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6966 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6967 ++best_row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6968 ++best_row_vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6969 lastcol = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6970 current_x = best_row->x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6971 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6972
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6973 *vpos = best_row_vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6974 *hpos = lastcol + 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6975 *x = current_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6976 *y = best_row->y;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6977 return 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6978 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6979
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6980
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6981 /* Display the active region described by mouse_face_*
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6982 in its mouse-face if HL > 0, in its normal face if HL = 0. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6983
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6984 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6985 show_mouse_face (dpyinfo, draw)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
6986 struct w32_display_info *dpyinfo;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6987 enum draw_glyphs_face draw;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6988 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6989 struct window *w = XWINDOW (dpyinfo->mouse_face_window);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6990 struct frame *f = XFRAME (WINDOW_FRAME (w));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
6991 int i;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6992 int cursor_off_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6993 struct cursor_pos saved_cursor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6994
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6995 saved_cursor = output_cursor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6996
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6997 /* If window is in the process of being destroyed, don't bother
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6998 to do anything. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
6999 if (w->current_matrix == NULL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7000 goto set_x_cursor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7001
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7002 /* Recognize when we are called to operate on rows that don't exist
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7003 anymore. This can happen when a window is split. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7004 if (dpyinfo->mouse_face_end_row >= w->current_matrix->nrows)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7005 goto set_x_cursor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7006
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7007 set_output_cursor (&w->phys_cursor);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7008
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7009 /* Note that mouse_face_beg_row etc. are window relative. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7010 for (i = dpyinfo->mouse_face_beg_row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7011 i <= dpyinfo->mouse_face_end_row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7012 i++)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7013 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7014 int start_hpos, end_hpos, start_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7015 struct glyph_row *row = MATRIX_ROW (w->current_matrix, i);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7016
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7017 /* Don't do anything if row doesn't have valid contents. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7018 if (!row->enabled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7019 continue;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7020
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7021 /* For all but the first row, the highlight starts at column 0. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7022 if (i == dpyinfo->mouse_face_beg_row)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7023 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7024 start_hpos = dpyinfo->mouse_face_beg_col;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7025 start_x = dpyinfo->mouse_face_beg_x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7026 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7027 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7028 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7029 start_hpos = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7030 start_x = 0;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7031 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7032
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7033 if (i == dpyinfo->mouse_face_end_row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7034 end_hpos = dpyinfo->mouse_face_end_col;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7035 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7036 end_hpos = row->used[TEXT_AREA];
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7037
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7038 /* If the cursor's in the text we are about to rewrite, turn the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7039 cursor off. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7040 if (!w->pseudo_window_p
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7041 && i == output_cursor.vpos
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7042 && output_cursor.hpos >= start_hpos - 1
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7043 && output_cursor.hpos <= end_hpos)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7044 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7045 x_update_window_cursor (w, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7046 cursor_off_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7047 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7048
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7049 if (end_hpos > start_hpos)
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7050 {
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7051 row->mouse_face_p = draw == DRAW_MOUSE_FACE;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7052 x_draw_glyphs (w, start_x, row, TEXT_AREA,
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7053 start_hpos, end_hpos, draw, NULL, NULL, 0);
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7054 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7055 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7056
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7057 /* If we turned the cursor off, turn it back on. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7058 if (cursor_off_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7059 x_display_cursor (w, 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7060 output_cursor.hpos, output_cursor.vpos,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7061 output_cursor.x, output_cursor.y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7062
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7063 output_cursor = saved_cursor;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7064
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7065 set_x_cursor:
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
7066 #if 0 /* TODO: mouse cursor */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7067 /* Change the mouse cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7068 if (draw == DRAW_NORMAL_TEXT)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7069 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7070 f->output_data.x->text_cursor);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7071 else if (draw == DRAW_MOUSE_FACE)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7072 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7073 f->output_data.x->cross_cursor);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7074 else
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7075 XDefineCursor (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7076 f->output_data.x->nontext_cursor);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7077 #endif
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7078 ;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7079 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7080
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7081 /* Clear out the mouse-highlighted active region.
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7082 Redraw it un-highlighted first. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7083
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7084 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7085 clear_mouse_face (dpyinfo)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7086 struct w32_display_info *dpyinfo;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7087 {
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7088 #if 0 /* This prevents redrawing tool bar items when changing from one
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7089 to another while a tooltip is open, so don't do it. */
34545
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
7090 if (!NILP (tip_frame))
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7091 return;
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7092 #endif
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7093
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7094 if (! NILP (dpyinfo->mouse_face_window))
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7095 show_mouse_face (dpyinfo, DRAW_NORMAL_TEXT);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7096
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7097 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7098 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7099 dpyinfo->mouse_face_window = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7100 }
24827
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7101
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7102
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7103 /* Clear any mouse-face on window W. This function is part of the
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7104 redisplay interface, and is called from try_window_id and similar
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7105 functions to ensure the mouse-highlight is off. */
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7106
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7107 static void
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7108 x_clear_mouse_face (w)
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7109 struct window *w;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7110 {
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7111 struct w32_display_info *dpyinfo
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7112 = FRAME_W32_DISPLAY_INFO (XFRAME (w->frame));
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7113 Lisp_Object window;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7114
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
7115 BLOCK_INPUT;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7116 XSETWINDOW (window, w);
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7117 if (EQ (window, dpyinfo->mouse_face_window))
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7118 clear_mouse_face (dpyinfo);
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
7119 UNBLOCK_INPUT;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7120 }
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7121
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7122
24827
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7123 /* Just discard the mouse face information for frame F, if any.
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7124 This is used when the size of F is changed. */
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7125
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7126 void
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7127 cancel_mouse_face (f)
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7128 FRAME_PTR f;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7129 {
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7130 Lisp_Object window;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7131 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7132
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7133 window = dpyinfo->mouse_face_window;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7134 if (! NILP (window) && XFRAME (XWINDOW (window)->frame) == f)
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7135 {
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7136 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7137 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7138 dpyinfo->mouse_face_window = Qnil;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7139 }
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
7140 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7141
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7142 static struct scroll_bar *x_window_to_scroll_bar ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7143 static void x_scroll_bar_report_motion ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7144
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7145 /* Return the current position of the mouse.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7146 *fp should be a frame which indicates which display to ask about.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7147
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7148 If the mouse movement started in a scroll bar, set *fp, *bar_window,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7149 and *part to the frame, window, and scroll bar part that the mouse
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7150 is over. Set *x and *y to the portion and whole of the mouse's
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7151 position on the scroll bar.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7152
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7153 If the mouse movement started elsewhere, set *fp to the frame the
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7154 mouse is on, *bar_window to nil, and *x and *y to the character cell
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7155 the mouse is over.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7156
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7157 Set *time to the server time-stamp for the time at which the mouse
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7158 was at this position.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7159
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7160 Don't store anything if we don't have a valid set of values to report.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7161
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7162 This clears the mouse_moved flag, so we can wait for the next mouse
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7163 movement. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7164
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7165 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7166 w32_mouse_position (fp, insist, bar_window, part, x, y, time)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7167 FRAME_PTR *fp;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7168 int insist;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7169 Lisp_Object *bar_window;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7170 enum scroll_bar_part *part;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7171 Lisp_Object *x, *y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7172 unsigned long *time;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7173 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7174 FRAME_PTR f1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7175
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7176 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7177
20179
b4fe0e8ac819 (w32_mouse_position): Handle INSIST < 0.
Karl Heuer <kwzh@gnu.org>
parents: 19713
diff changeset
7178 if (! NILP (last_mouse_scroll_bar) && insist == 0)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7179 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7180 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7181 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7182 POINT pt;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7183
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7184 Lisp_Object frame, tail;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7185
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7186 /* Clear the mouse-moved flag for every frame on this display. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7187 FOR_EACH_FRAME (tail, frame)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7188 XFRAME (frame)->mouse_moved = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7189
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7190 last_mouse_scroll_bar = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7191
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7192 GetCursorPos (&pt);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7193
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7194 /* Now we have a position on the root; find the innermost window
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7195 containing the pointer. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7196 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7197 if (FRAME_W32_DISPLAY_INFO (*fp)->grabbed && last_mouse_frame
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7198 && FRAME_LIVE_P (last_mouse_frame))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7199 {
24752
80c46fd667da (w32_read_socket): Reset the grabbed flag when a frame gains or
Andrew Innes <andrewi@gnu.org>
parents: 24733
diff changeset
7200 /* If mouse was grabbed on a frame, give coords for that frame
80c46fd667da (w32_read_socket): Reset the grabbed flag when a frame gains or
Andrew Innes <andrewi@gnu.org>
parents: 24733
diff changeset
7201 even if the mouse is now outside it. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7202 f1 = last_mouse_frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7203 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7204 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7205 {
24752
80c46fd667da (w32_read_socket): Reset the grabbed flag when a frame gains or
Andrew Innes <andrewi@gnu.org>
parents: 24733
diff changeset
7206 /* Is window under mouse one of our frames? */
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
7207 f1 = x_window_to_frame (FRAME_W32_DISPLAY_INFO (*fp),
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
7208 WindowFromPoint (pt));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7209 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7210
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7211 /* If not, is it one of our scroll bars? */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7212 if (! f1)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7213 {
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
7214 struct scroll_bar *bar
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
7215 = x_window_to_scroll_bar (WindowFromPoint (pt));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7216
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7217 if (bar)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7218 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7219 f1 = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7220 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7221 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7222
20179
b4fe0e8ac819 (w32_mouse_position): Handle INSIST < 0.
Karl Heuer <kwzh@gnu.org>
parents: 19713
diff changeset
7223 if (f1 == 0 && insist > 0)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7224 f1 = SELECTED_FRAME ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7225
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7226 if (f1)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7227 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7228 /* Ok, we found a frame. Store all the values.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7229 last_mouse_glyph is a rectangle used to reduce the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7230 generation of mouse events. To not miss any motion
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7231 events, we must divide the frame into rectangles of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7232 size of the smallest character that could be displayed
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7233 on it, i.e. into the same rectangles that matrices on
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7234 the frame are divided into. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7235
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7236 #if OLD_REDISPLAY_CODE
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7237 int ignore1, ignore2;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7238
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7239 ScreenToClient (FRAME_W32_WINDOW (f1), &pt);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7240
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7241 pixel_to_glyph_coords (f1, pt.x, pt.y, &ignore1, &ignore2,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7242 &last_mouse_glyph,
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7243 FRAME_W32_DISPLAY_INFO (f1)->grabbed
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7244 || insist);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7245 #else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7246 ScreenToClient (FRAME_W32_WINDOW (f1), &pt);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7247 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7248 int width = FRAME_SMALLEST_CHAR_WIDTH (f1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7249 int height = FRAME_SMALLEST_FONT_HEIGHT (f1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7250 int x = pt.x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7251 int y = pt.y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7252
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7253 /* Arrange for the division in PIXEL_TO_CHAR_COL etc. to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7254 round down even for negative values. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7255 if (x < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7256 x -= width - 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7257 if (y < 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7258 y -= height - 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7259
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7260 last_mouse_glyph.left = (x + width - 1) / width * width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7261 last_mouse_glyph.top = (y + height - 1) / height * height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7262 last_mouse_glyph.right = last_mouse_glyph.left + width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7263 last_mouse_glyph.bottom = last_mouse_glyph.top + height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7264 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7265 #endif
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7266
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7267 *bar_window = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7268 *part = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7269 *fp = f1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7270 XSETINT (*x, pt.x);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7271 XSETINT (*y, pt.y);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7272 *time = last_mouse_movement_time;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7273 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7274 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7275 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7276
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7277 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7278 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7279
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7280
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7281 /* Scroll bar support. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7282
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7283 /* Given a window ID, find the struct scroll_bar which manages it.
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7284 This can be called in GC, so we have to make sure to strip off mark
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7285 bits. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7286
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7287 static struct scroll_bar *
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7288 x_window_to_scroll_bar (window_id)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7289 Window window_id;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7290 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7291 Lisp_Object tail;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7292
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7293 for (tail = Vframe_list;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7294 XGCTYPE (tail) == Lisp_Cons;
25646
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
7295 tail = XCDR (tail))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7296 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7297 Lisp_Object frame, bar, condemned;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7298
25646
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
7299 frame = XCAR (tail);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7300 /* All elements of Vframe_list should be frames. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7301 if (! GC_FRAMEP (frame))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7302 abort ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7303
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7304 /* Scan this frame's scroll bar list for a scroll bar with the
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7305 right window ID. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7306 condemned = FRAME_CONDEMNED_SCROLL_BARS (XFRAME (frame));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7307 for (bar = FRAME_SCROLL_BARS (XFRAME (frame));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7308 /* This trick allows us to search both the ordinary and
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7309 condemned scroll bar lists with one loop. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7310 ! GC_NILP (bar) || (bar = condemned,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7311 condemned = Qnil,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7312 ! GC_NILP (bar));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7313 bar = XSCROLL_BAR (bar)->next)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7314 if (SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar)) == window_id)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7315 return XSCROLL_BAR (bar);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7316 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7317
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7318 return 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7319 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7320
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7321
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7322
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7323 /* Set the thumb size and position of scroll bar BAR. We are currently
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7324 displaying PORTION out of a whole WHOLE, and our position POSITION. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7325
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7326 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7327 w32_set_scroll_bar_thumb (bar, portion, position, whole)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7328 struct scroll_bar *bar;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7329 int portion, position, whole;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7330 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7331 Window w = SCROLL_BAR_W32_WINDOW (bar);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7332 int range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7333 int sb_page, sb_pos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7334 BOOL draggingp = !NILP (bar->dragging) ? TRUE : FALSE;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7335
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7336 if (whole)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7337 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7338 /* Position scroll bar at rock bottom if the bottom of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7339 buffer is visible. This avoids shinking the thumb away
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7340 to nothing if it is held at the bottom of the buffer. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7341 if (position + portion >= whole)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7342 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7343 sb_page = range * (whole - position) / whole
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7344 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7345 sb_pos = range;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7346 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7347
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7348 sb_page = portion * range / whole + VERTICAL_SCROLL_BAR_MIN_HANDLE;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7349 sb_pos = position * range / whole;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7350 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7351 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7352 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7353 sb_page = range;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7354 sb_pos = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7355 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7356
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7357 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7358
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7359 if (pfnSetScrollInfo)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7360 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7361 SCROLLINFO si;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7362
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7363 si.cbSize = sizeof (si);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7364 /* Only update page size if currently dragging, to reduce
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7365 flicker effects. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7366 if (draggingp)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7367 si.fMask = SIF_PAGE;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7368 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7369 si.fMask = SIF_PAGE | SIF_POS;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7370 si.nPage = sb_page;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7371 si.nPos = sb_pos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7372
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7373 pfnSetScrollInfo (w, SB_CTL, &si, !draggingp);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7374 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7375 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7376 SetScrollPos (w, SB_CTL, sb_pos, !draggingp);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7377
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7378 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7379 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7380
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7381
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7382 /************************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7383 Scroll bars, general
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7384 ************************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7385
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7386 HWND
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7387 my_create_scrollbar (f, bar)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7388 struct frame * f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7389 struct scroll_bar * bar;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7390 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7391 return (HWND) SendMessage (FRAME_W32_WINDOW (f),
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7392 WM_EMACS_CREATESCROLLBAR, (WPARAM) f,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7393 (LPARAM) bar);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7394 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7395
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7396 //#define ATTACH_THREADS
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7397
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7398 BOOL
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7399 my_show_window (FRAME_PTR f, HWND hwnd, int how)
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7400 {
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7401 #ifndef ATTACH_THREADS
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7402 return SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_SHOWWINDOW,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7403 (WPARAM) hwnd, (LPARAM) how);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7404 #else
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7405 return ShowWindow (hwnd, how);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7406 #endif
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7407 }
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7408
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7409 void
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7410 my_set_window_pos (HWND hwnd, HWND hwndAfter,
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7411 int x, int y, int cx, int cy, UINT flags)
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7412 {
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7413 #ifndef ATTACH_THREADS
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7414 WINDOWPOS pos;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7415 pos.hwndInsertAfter = hwndAfter;
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7416 pos.x = x;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7417 pos.y = y;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7418 pos.cx = cx;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7419 pos.cy = cy;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7420 pos.flags = flags;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7421 SendMessage (hwnd, WM_EMACS_SETWINDOWPOS, (WPARAM) &pos, 0);
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7422 #else
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7423 SetWindowPos (hwnd, hwndAfter, x, y, cx, cy, flags);
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7424 #endif
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7425 }
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7426
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7427 void
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7428 my_set_focus (f, hwnd)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7429 struct frame * f;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7430 HWND hwnd;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7431 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7432 SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_SETFOCUS,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7433 (WPARAM) hwnd, 0);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7434 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7435
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
7436 void
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7437 my_set_foreground_window (hwnd)
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7438 HWND hwnd;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7439 {
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7440 SendMessage (hwnd, WM_EMACS_SETFOREGROUND, (WPARAM) hwnd, 0);
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7441 }
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7442
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7443 void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7444 my_destroy_window (f, hwnd)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7445 struct frame * f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7446 HWND hwnd;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7447 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7448 SendMessage (FRAME_W32_WINDOW (f), WM_EMACS_DESTROYWINDOW,
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7449 (WPARAM) hwnd, 0);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7450 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7451
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7452 /* Create a scroll bar and return the scroll bar vector for it. W is
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7453 the Emacs window on which to create the scroll bar. TOP, LEFT,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7454 WIDTH and HEIGHT are.the pixel coordinates and dimensions of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7455 scroll bar. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7456
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7457 static struct scroll_bar *
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7458 x_scroll_bar_create (w, top, left, width, height)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7459 struct window *w;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7460 int top, left, width, height;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7461 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7462 struct frame *f = XFRAME (WINDOW_FRAME (w));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7463 HWND hwnd;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7464 struct scroll_bar *bar
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7465 = XSCROLL_BAR (Fmake_vector (make_number (SCROLL_BAR_VEC_SIZE), Qnil));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7466
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7467 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7468
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7469 XSETWINDOW (bar->window, w);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7470 XSETINT (bar->top, top);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7471 XSETINT (bar->left, left);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7472 XSETINT (bar->width, width);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7473 XSETINT (bar->height, height);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7474 XSETINT (bar->start, 0);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7475 XSETINT (bar->end, 0);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7476 bar->dragging = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7477
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7478 /* Requires geometry to be set before call to create the real window */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7479
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7480 hwnd = my_create_scrollbar (f, bar);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7481
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7482 if (pfnSetScrollInfo)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7483 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7484 SCROLLINFO si;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7485
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7486 si.cbSize = sizeof (si);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7487 si.fMask = SIF_ALL;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7488 si.nMin = 0;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7489 si.nMax = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7490 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7491 si.nPage = si.nMax;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7492 si.nPos = 0;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7493
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7494 pfnSetScrollInfo (hwnd, SB_CTL, &si, FALSE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7495 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7496 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7497 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7498 SetScrollRange (hwnd, SB_CTL, 0,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7499 VERTICAL_SCROLL_BAR_TOP_RANGE (f, height), FALSE);
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7500 SetScrollPos (hwnd, SB_CTL, 0, FALSE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7501 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7502
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7503 SET_SCROLL_BAR_W32_WINDOW (bar, hwnd);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7504
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7505 /* Add bar to its frame's list of scroll bars. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7506 bar->next = FRAME_SCROLL_BARS (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7507 bar->prev = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7508 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7509 if (! NILP (bar->next))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7510 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7511
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7512 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7513
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7514 return bar;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7515 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7516
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7517
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7518 /* Destroy scroll bar BAR, and set its Emacs window's scroll bar to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7519 nil. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7520
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7521 static void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7522 x_scroll_bar_remove (bar)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7523 struct scroll_bar *bar;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7524 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7525 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7526
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7527 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7528
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7529 /* Destroy the window. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7530 my_destroy_window (f, SCROLL_BAR_W32_WINDOW (bar));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7531
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7532 /* Disassociate this scroll bar from its window. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7533 XWINDOW (bar->window)->vertical_scroll_bar = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7534
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7535 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7536 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7537
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7538 /* Set the handle of the vertical scroll bar for WINDOW to indicate
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7539 that we are displaying PORTION characters out of a total of WHOLE
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7540 characters, starting at POSITION. If WINDOW has no scroll bar,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7541 create one. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7542 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7543 w32_set_vertical_scroll_bar (w, portion, whole, position)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7544 struct window *w;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7545 int portion, whole, position;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7546 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7547 struct frame *f = XFRAME (w->frame);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7548 struct scroll_bar *bar;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7549 int top, height, left, sb_left, width, sb_width;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7550 int window_x, window_y, window_width, window_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7551
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7552 /* Get window dimensions. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7553 window_box (w, -1, &window_x, &window_y, &window_width, &window_height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7554 top = window_y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7555 width = FRAME_SCROLL_BAR_COLS (f) * CANON_X_UNIT (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7556 height = window_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7557
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7558 /* Compute the left edge of the scroll bar area. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7559 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7560 left = XINT (w->left) + XINT (w->width) - FRAME_SCROLL_BAR_COLS (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7561 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7562 left = XFASTINT (w->left);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7563 left *= CANON_X_UNIT (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7564 left += FRAME_INTERNAL_BORDER_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7565
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7566 /* Compute the width of the scroll bar which might be less than
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7567 the width of the area reserved for the scroll bar. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7568 if (FRAME_SCROLL_BAR_PIXEL_WIDTH (f) > 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7569 sb_width = FRAME_SCROLL_BAR_PIXEL_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7570 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7571 sb_width = width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7572
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7573 /* Compute the left edge of the scroll bar. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7574 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT (f))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7575 sb_left = left + width - sb_width - (width - sb_width) / 2;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7576 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7577 sb_left = left + (width - sb_width) / 2;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7578
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7579 /* Does the scroll bar exist yet? */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7580 if (NILP (w->vertical_scroll_bar))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7581 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7582 HDC hdc;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7583 BLOCK_INPUT;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7584 hdc = get_frame_dc (f);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7585 w32_clear_area (f, hdc, left, top, width, height);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7586 release_frame_dc (f, hdc);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7587 UNBLOCK_INPUT;
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7588
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7589 bar = x_scroll_bar_create (w, top, sb_left, sb_width, height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7590 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7591 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7592 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7593 /* It may just need to be moved and resized. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7594 HWND hwnd;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7595
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7596 bar = XSCROLL_BAR (w->vertical_scroll_bar);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7597 hwnd = SCROLL_BAR_W32_WINDOW (bar);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7598
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7599 /* If already correctly positioned, do nothing. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7600 if ( XINT (bar->left) == sb_left
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7601 && XINT (bar->top) == top
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7602 && XINT (bar->width) == sb_width
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7603 && XINT (bar->height) == height )
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7604 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7605 /* Redraw after clear_frame. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7606 if (!my_show_window (f, hwnd, SW_NORMAL))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7607 InvalidateRect (hwnd, NULL, FALSE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7608 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7609 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7610 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7611 HDC hdc;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7612 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7613
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7614 hdc = get_frame_dc (f);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7615 /* Since Windows scroll bars are smaller than the space reserved
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7616 for them on the frame, we have to clear "under" them. */
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7617 w32_clear_area (f, hdc,
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7618 left,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7619 top,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7620 width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7621 height);
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7622 release_frame_dc (f, hdc);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7623
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7624 /* Make sure scroll bar is "visible" before moving, to ensure the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7625 area of the parent window now exposed will be refreshed. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7626 my_show_window (f, hwnd, SW_HIDE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7627 MoveWindow (hwnd, sb_left, top,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7628 sb_width, height, TRUE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7629 if (pfnSetScrollInfo)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7630 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7631 SCROLLINFO si;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7632
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7633 si.cbSize = sizeof (si);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7634 si.fMask = SIF_RANGE;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7635 si.nMin = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7636 si.nMax = VERTICAL_SCROLL_BAR_TOP_RANGE (f, height)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7637 + VERTICAL_SCROLL_BAR_MIN_HANDLE;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7638
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7639 pfnSetScrollInfo (hwnd, SB_CTL, &si, FALSE);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7640 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7641 else
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
7642 SetScrollRange (hwnd, SB_CTL, 0,
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7643 VERTICAL_SCROLL_BAR_TOP_RANGE (f, height), FALSE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7644 my_show_window (f, hwnd, SW_NORMAL);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7645 // InvalidateRect (w, NULL, FALSE);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7646
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7647 /* Remember new settings. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7648 XSETINT (bar->left, sb_left);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7649 XSETINT (bar->top, top);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7650 XSETINT (bar->width, sb_width);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7651 XSETINT (bar->height, height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7652
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7653 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7654 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7655 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7656 w32_set_scroll_bar_thumb (bar, portion, position, whole);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7657
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7658 XSETVECTOR (w->vertical_scroll_bar, bar);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7659 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7660
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7661
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7662 /* The following three hooks are used when we're doing a thorough
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7663 redisplay of the frame. We don't explicitly know which scroll bars
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7664 are going to be deleted, because keeping track of when windows go
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7665 away is a real pain - "Can you say set-window-configuration, boys
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7666 and girls?" Instead, we just assert at the beginning of redisplay
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7667 that *all* scroll bars are to be removed, and then save a scroll bar
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7668 from the fiery pit when we actually redisplay its window. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7669
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7670 /* Arrange for all scroll bars on FRAME to be removed at the next call
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7671 to `*judge_scroll_bars_hook'. A scroll bar may be spared if
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7672 `*redeem_scroll_bar_hook' is applied to its window before the judgment. */
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7673
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7674 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7675 w32_condemn_scroll_bars (frame)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7676 FRAME_PTR frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7677 {
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7678 /* Transfer all the scroll bars to FRAME_CONDEMNED_SCROLL_BARS. */
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7679 while (! NILP (FRAME_SCROLL_BARS (frame)))
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7680 {
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7681 Lisp_Object bar;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7682 bar = FRAME_SCROLL_BARS (frame);
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7683 FRAME_SCROLL_BARS (frame) = XSCROLL_BAR (bar)->next;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7684 XSCROLL_BAR (bar)->next = FRAME_CONDEMNED_SCROLL_BARS (frame);
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7685 XSCROLL_BAR (bar)->prev = Qnil;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7686 if (! NILP (FRAME_CONDEMNED_SCROLL_BARS (frame)))
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7687 XSCROLL_BAR (FRAME_CONDEMNED_SCROLL_BARS (frame))->prev = bar;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7688 FRAME_CONDEMNED_SCROLL_BARS (frame) = bar;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
7689 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7690 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7691
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7692
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7693 /* Un-mark WINDOW's scroll bar for deletion in this judgment cycle.
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7694 Note that WINDOW isn't necessarily condemned at all. */
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7695
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7696 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7697 w32_redeem_scroll_bar (window)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7698 struct window *window;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7699 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7700 struct scroll_bar *bar;
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7701 struct frame *f;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7702
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7703 /* We can't redeem this window's scroll bar if it doesn't have one. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7704 if (NILP (window->vertical_scroll_bar))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7705 abort ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7706
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7707 bar = XSCROLL_BAR (window->vertical_scroll_bar);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7708
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7709 /* Unlink it from the condemned list. */
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7710 f = XFRAME (WINDOW_FRAME (window));
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7711 if (NILP (bar->prev))
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7712 {
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7713 /* If the prev pointer is nil, it must be the first in one of
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7714 the lists. */
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7715 if (EQ (FRAME_SCROLL_BARS (f), window->vertical_scroll_bar))
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7716 /* It's not condemned. Everything's fine. */
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7717 return;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7718 else if (EQ (FRAME_CONDEMNED_SCROLL_BARS (f),
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7719 window->vertical_scroll_bar))
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7720 FRAME_CONDEMNED_SCROLL_BARS (f) = bar->next;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7721 else
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7722 /* If its prev pointer is nil, it must be at the front of
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7723 one or the other! */
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7724 abort ();
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7725 }
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7726 else
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7727 XSCROLL_BAR (bar->prev)->next = bar->next;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7728
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7729 if (! NILP (bar->next))
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7730 XSCROLL_BAR (bar->next)->prev = bar->prev;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7731
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7732 bar->next = FRAME_SCROLL_BARS (f);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7733 bar->prev = Qnil;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7734 XSETVECTOR (FRAME_SCROLL_BARS (f), bar);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7735 if (! NILP (bar->next))
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7736 XSETVECTOR (XSCROLL_BAR (bar->next)->prev, bar);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7737 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7738
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7739 /* Remove all scroll bars on FRAME that haven't been saved since the
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7740 last call to `*condemn_scroll_bars_hook'. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7741
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7742 static void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7743 w32_judge_scroll_bars (f)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7744 FRAME_PTR f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7745 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7746 Lisp_Object bar, next;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7747
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7748 bar = FRAME_CONDEMNED_SCROLL_BARS (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7749
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7750 /* Clear out the condemned list now so we won't try to process any
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7751 more events on the hapless scroll bars. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7752 FRAME_CONDEMNED_SCROLL_BARS (f) = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7753
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7754 for (; ! NILP (bar); bar = next)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7755 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7756 struct scroll_bar *b = XSCROLL_BAR (bar);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7757
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7758 x_scroll_bar_remove (b);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7759
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7760 next = b->next;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7761 b->next = b->prev = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7762 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7763
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7764 /* Now there should be no references to the condemned scroll bars,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7765 and they should get garbage-collected. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7766 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7767
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7768 /* Handle a mouse click on the scroll bar BAR. If *EMACS_EVENT's kind
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7769 is set to something other than no_event, it is enqueued.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7770
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7771 This may be called from a signal handler, so we have to ignore GC
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7772 mark bits. */
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7773
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7774 static int
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
7775 w32_scroll_bar_handle_click (bar, msg, emacs_event)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7776 struct scroll_bar *bar;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7777 W32Msg *msg;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7778 struct input_event *emacs_event;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7779 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7780 if (! GC_WINDOWP (bar->window))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7781 abort ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7782
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7783 emacs_event->kind = w32_scroll_bar_click;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7784 emacs_event->code = 0;
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7785 /* not really meaningful to distinguish up/down */
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7786 emacs_event->modifiers = msg->dwModifiers;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7787 emacs_event->frame_or_window = bar->window;
30199
298f10cd4ba5 (construct_mouse_click, construct_mouse_wheel)
Gerd Moellmann <gerd@gnu.org>
parents: 30179
diff changeset
7788 emacs_event->arg = Qnil;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7789 emacs_event->timestamp = msg->msg.time;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7790
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7791 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7792 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7793 int y;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7794 int dragging = !NILP (bar->dragging);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7795
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7796 if (pfnGetScrollInfo)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7797 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7798 SCROLLINFO si;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7799
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7800 si.cbSize = sizeof (si);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7801 si.fMask = SIF_POS;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7802
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7803 pfnGetScrollInfo ((HWND) msg->msg.lParam, SB_CTL, &si);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7804 y = si.nPos;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7805 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7806 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7807 y = GetScrollPos ((HWND) msg->msg.lParam, SB_CTL);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7808
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7809 bar->dragging = Qnil;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7810
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7811
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7812 last_mouse_scroll_bar_pos = msg->msg.wParam;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7813
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7814 switch (LOWORD (msg->msg.wParam))
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7815 {
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7816 case SB_LINEDOWN:
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7817 emacs_event->part = scroll_bar_down_arrow;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7818 break;
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7819 case SB_LINEUP:
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7820 emacs_event->part = scroll_bar_up_arrow;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7821 break;
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7822 case SB_PAGEUP:
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7823 emacs_event->part = scroll_bar_above_handle;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7824 break;
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7825 case SB_PAGEDOWN:
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7826 emacs_event->part = scroll_bar_below_handle;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7827 break;
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7828 case SB_TOP:
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7829 emacs_event->part = scroll_bar_handle;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7830 y = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7831 break;
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7832 case SB_BOTTOM:
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7833 emacs_event->part = scroll_bar_handle;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7834 y = top_range;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7835 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7836 case SB_THUMBTRACK:
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7837 case SB_THUMBPOSITION:
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7838 if (VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height)) <= 0xffff)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7839 y = HIWORD (msg->msg.wParam);
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7840 bar->dragging = Qt;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7841 emacs_event->part = scroll_bar_handle;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7842
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7843 /* "Silently" update current position. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7844 if (pfnSetScrollInfo)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7845 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7846 SCROLLINFO si;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7847
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7848 si.cbSize = sizeof (si);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7849 si.fMask = SIF_POS;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7850 si.nPos = y;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7851 /* Remember apparent position (we actually lag behind the real
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7852 position, so don't set that directly. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7853 last_scroll_bar_drag_pos = y;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7854
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7855 pfnSetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, FALSE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7856 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7857 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7858 SetScrollPos (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, y, FALSE);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7859 break;
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7860 case SB_ENDSCROLL:
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7861 /* If this is the end of a drag sequence, then reset the scroll
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7862 handle size to normal and do a final redraw. Otherwise do
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7863 nothing. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7864 if (dragging)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7865 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7866 if (pfnSetScrollInfo)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7867 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7868 SCROLLINFO si;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7869 int start = XINT (bar->start);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7870 int end = XINT (bar->end);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7871
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7872 si.cbSize = sizeof (si);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7873 si.fMask = SIF_PAGE | SIF_POS;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7874 si.nPage = end - start + VERTICAL_SCROLL_BAR_MIN_HANDLE;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7875 si.nPos = last_scroll_bar_drag_pos;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7876 pfnSetScrollInfo (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, &si, TRUE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7877 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7878 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7879 SetScrollPos (SCROLL_BAR_W32_WINDOW (bar), SB_CTL, y, TRUE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7880 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7881 /* fall through */
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7882 default:
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7883 emacs_event->kind = no_event;
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7884 return FALSE;
15216
f639c5d732a3 (x_scroll_bar_set_handle): Always use start in calling SetScrollPos.
Richard M. Stallman <rms@gnu.org>
parents: 15204
diff changeset
7885 }
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7886
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7887 XSETINT (emacs_event->x, y);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7888 XSETINT (emacs_event->y, top_range);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7889
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7890 return TRUE;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7891 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7892 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7893
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7894 /* Return information to the user about the current position of the mouse
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7895 on the scroll bar. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7896
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7897 static void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7898 x_scroll_bar_report_motion (fp, bar_window, part, x, y, time)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7899 FRAME_PTR *fp;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7900 Lisp_Object *bar_window;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7901 enum scroll_bar_part *part;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7902 Lisp_Object *x, *y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7903 unsigned long *time;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7904 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7905 struct scroll_bar *bar = XSCROLL_BAR (last_mouse_scroll_bar);
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7906 Window w = SCROLL_BAR_W32_WINDOW (bar);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7907 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (bar->window)));
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7908 int pos;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7909 int top_range = VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7910
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7911 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7912
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7913 *fp = f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7914 *bar_window = bar->window;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7915
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7916 if (pfnGetScrollInfo)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7917 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7918 SCROLLINFO si;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7919
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7920 si.cbSize = sizeof (si);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7921 si.fMask = SIF_POS | SIF_PAGE | SIF_RANGE;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7922
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7923 pfnGetScrollInfo (w, SB_CTL, &si);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7924 pos = si.nPos;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7925 top_range = si.nMax - si.nPage + 1;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7926 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7927 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
7928 pos = GetScrollPos (w, SB_CTL);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7929
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7930 switch (LOWORD (last_mouse_scroll_bar_pos))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7931 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7932 case SB_THUMBPOSITION:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7933 case SB_THUMBTRACK:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7934 *part = scroll_bar_handle;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7935 if (VERTICAL_SCROLL_BAR_TOP_RANGE (f, XINT (bar->height)) <= 0xffff)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7936 pos = HIWORD (last_mouse_scroll_bar_pos);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7937 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7938 case SB_LINEDOWN:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7939 *part = scroll_bar_handle;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7940 pos++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7941 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7942 default:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7943 *part = scroll_bar_handle;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7944 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7945 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7946
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
7947 XSETINT (*x, pos);
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
7948 XSETINT (*y, top_range);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7949
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7950 f->mouse_moved = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7951 last_mouse_scroll_bar = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7952
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7953 *time = last_mouse_movement_time;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7954
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7955 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7956 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7957
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7958
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7959 /* The screen has been cleared so we may have changed foreground or
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7960 background colors, and the scroll bars may need to be redrawn.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7961 Clear out the scroll bars, and ask for expose events, so we can
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7962 redraw them. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7963
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
7964 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7965 x_scroll_bar_clear (f)
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7966 FRAME_PTR f;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7967 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7968 Lisp_Object bar;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7969
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7970 /* We can have scroll bars even if this is 0,
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7971 if we just turned off scroll bar mode.
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7972 But in that case we should not clear them. */
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7973 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7974 for (bar = FRAME_SCROLL_BARS (f); VECTORP (bar);
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7975 bar = XSCROLL_BAR (bar)->next)
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7976 {
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7977 HWND window = SCROLL_BAR_W32_WINDOW (XSCROLL_BAR (bar));
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7978 HDC hdc = GetDC (window);
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7979 RECT rect;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7980
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7981 /* Hide scroll bar until ready to repaint. x_scroll_bar_move
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7982 arranges to refresh the scroll bar if hidden. */
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7983 my_show_window (f, window, SW_HIDE);
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7984
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7985 GetClientRect (window, &rect);
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7986 select_palette (f, hdc);
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7987 w32_clear_rect (f, hdc, &rect);
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7988 deselect_palette (f, hdc);
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7989
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7990 ReleaseDC (window, hdc);
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7991 }
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7992 }
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
7993
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7994
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
7995 /* The main W32 event-reading loop - w32_read_socket. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7996
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
7997 /* Time stamp of enter window event. This is only used by w32_read_socket,
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7998 but we have to put it out here, since static variables within functions
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
7999 sometimes don't work. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
8000
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8001 static Time enter_timestamp;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8002
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8003 /* Record the last 100 characters stored
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8004 to help debug the loss-of-chars-during-GC problem. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
8005
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
8006 static int temp_index;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
8007 static short temp_buffer[100];
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8008
14462
599a3ae1e8ea (convert_to_key_event, is_dead_key): New functions.
Geoff Voelker <voelker@cs.washington.edu>
parents: 14351
diff changeset
8009
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
8010 /* Read events coming from the W32 shell.
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8011 This routine is called by the SIGIO handler.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8012 We return as soon as there are no more events to be read.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8013
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8014 Events representing keys are stored in buffer BUFP,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8015 which can hold up to NUMCHARS characters.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8016 We return the number of characters stored into the buffer,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8017 thus pretending to be `read'.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8018
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8019 EXPECTED is nonzero if the caller knows input is available.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8020
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8021 Some of these messages are reposted back to the message queue since the
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
8022 system calls the windows proc directly in a context where we cannot return
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
8023 the data nor can we guarantee the state we are in. So if we dispatch them
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8024 we will get into an infinite loop. To prevent this from ever happening we
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8025 will set a variable to indicate we are in the read_socket call and indicate
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
8026 which message we are processing since the windows proc gets called
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
8027 recursively with different messages by the system.
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8028 */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8029
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8030 int
16326
a85909645f7a (w32_read_socket): Delete WAITP arg.
Richard M. Stallman <rms@gnu.org>
parents: 16258
diff changeset
8031 w32_read_socket (sd, bufp, numchars, expected)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8032 register int sd;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
8033 /* register */ struct input_event *bufp;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
8034 /* register */ int numchars;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8035 int expected;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8036 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8037 int count = 0;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8038 int check_visibility = 0;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
8039 W32Msg msg;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8040 struct frame *f;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
8041 struct w32_display_info *dpyinfo = &one_w32_display_info;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8042
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8043 if (interrupt_input_blocked)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8044 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8045 interrupt_input_pending = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8046 return -1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8047 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8048
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8049 interrupt_input_pending = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8050 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8051
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8052 /* So people can tell when we have read the available input. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8053 input_signal_count++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8054
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8055 if (numchars <= 0)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8056 abort (); /* Don't think this happens. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8057
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
8058 /* TODO: tooltips, tool-bars, ghostscript integration, mouse
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8059 cursors. */
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
8060 while (get_next_msg (&msg, FALSE))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8061 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8062 switch (msg.msg.message)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8063 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8064 case WM_PAINT:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8065 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8066
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8067 if (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8068 {
21740
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
8069 if (msg.rect.right == msg.rect.left ||
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
8070 msg.rect.bottom == msg.rect.top)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8071 {
21740
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
8072 /* We may get paint messages even though the client
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
8073 area is clipped - these are not expose events. */
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
8074 DebPrint (("clipped frame %04x (%s) got WM_PAINT\n", f,
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
8075 XSTRING (f->name)->data));
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
8076 }
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
8077 else if (f->async_visible != 1)
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
8078 {
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
8079 /* Definitely not obscured, so mark as visible. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8080 f->async_visible = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8081 f->async_iconified = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8082 SET_FRAME_GARBAGED (f);
21740
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
8083 DebPrint (("frame %04x (%s) reexposed\n", f,
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
8084 XSTRING (f->name)->data));
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8085
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8086 /* WM_PAINT serves as MapNotify as well, so report
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8087 visibility changes properly. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8088 if (f->iconified)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8089 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8090 bufp->kind = deiconify_event;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8091 XSETFRAME (bufp->frame_or_window, f);
30199
298f10cd4ba5 (construct_mouse_click, construct_mouse_wheel)
Gerd Moellmann <gerd@gnu.org>
parents: 30179
diff changeset
8092 bufp->arg = Qnil;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8093 bufp++;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8094 count++;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8095 numchars--;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8096 }
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
8097 else if (! NILP (Vframe_list)
25646
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
8098 && ! NILP (XCDR (Vframe_list)))
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8099 /* Force a redisplay sooner or later to update the
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8100 frame titles in case this is the second frame. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8101 record_asynch_buffer_change ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8102 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8103 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8104 {
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
8105 HDC hdc = get_frame_dc (f);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
8106
15723
d2cee951f37e (w32_read_socket): Need to erase background
Karl Heuer <kwzh@gnu.org>
parents: 15651
diff changeset
8107 /* Erase background again for safety. */
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
8108 w32_clear_rect (f, hdc, &msg.rect);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
8109 release_frame_dc (f, hdc);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8110 expose_frame (f,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8111 msg.rect.left,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8112 msg.rect.top,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8113 msg.rect.right - msg.rect.left,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8114 msg.rect.bottom - msg.rect.top);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8115 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8116 }
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
8117 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8118
23677
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8119 case WM_INPUTLANGCHANGE:
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8120 /* Generate a language change event. */
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8121 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8122
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8123 if (f)
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8124 {
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8125 if (numchars == 0)
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8126 abort ();
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8127
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8128 bufp->kind = language_change_event;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8129 XSETFRAME (bufp->frame_or_window, f);
30199
298f10cd4ba5 (construct_mouse_click, construct_mouse_wheel)
Gerd Moellmann <gerd@gnu.org>
parents: 30179
diff changeset
8130 bufp->arg = Qnil;
23677
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8131 bufp->code = msg.msg.wParam;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8132 bufp->modifiers = msg.msg.lParam & 0xffff;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8133 bufp++;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8134 count++;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8135 numchars--;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8136 }
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8137 break;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8138
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8139 case WM_KEYDOWN:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8140 case WM_SYSKEYDOWN:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8141 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8142
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8143 if (f && !f->iconified)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8144 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8145 if (temp_index == sizeof temp_buffer / sizeof (short))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8146 temp_index = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8147 temp_buffer[temp_index++] = msg.msg.wParam;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8148 bufp->kind = non_ascii_keystroke;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8149 bufp->code = msg.msg.wParam;
23677
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8150 bufp->modifiers = msg.dwModifiers;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8151 XSETFRAME (bufp->frame_or_window, f);
30199
298f10cd4ba5 (construct_mouse_click, construct_mouse_wheel)
Gerd Moellmann <gerd@gnu.org>
parents: 30179
diff changeset
8152 bufp->arg = Qnil;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8153 bufp->timestamp = msg.msg.time;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8154 bufp++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8155 numchars--;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8156 count++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8157 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8158 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8159
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8160 case WM_SYSCHAR:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8161 case WM_CHAR:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8162 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8163
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8164 if (f && !f->iconified)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8165 {
23677
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8166 if (temp_index == sizeof temp_buffer / sizeof (short))
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8167 temp_index = 0;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8168 temp_buffer[temp_index++] = msg.msg.wParam;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8169 bufp->kind = ascii_keystroke;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8170 bufp->code = msg.msg.wParam;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8171 bufp->modifiers = msg.dwModifiers;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8172 XSETFRAME (bufp->frame_or_window, f);
30199
298f10cd4ba5 (construct_mouse_click, construct_mouse_wheel)
Gerd Moellmann <gerd@gnu.org>
parents: 30179
diff changeset
8173 bufp->arg = Qnil;
23677
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8174 bufp->timestamp = msg.msg.time;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8175 bufp++;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8176 numchars--;
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8177 count++;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8178 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8179 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8180
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8181 case WM_MOUSEMOVE:
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8182 previous_help_echo = help_echo;
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
8183 help_echo = help_echo_object = help_echo_window = Qnil;
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
8184 help_echo_pos = -1;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8185
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8186 if (dpyinfo->grabbed && last_mouse_frame
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8187 && FRAME_LIVE_P (last_mouse_frame))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8188 f = last_mouse_frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8189 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8190 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8191
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8192 if (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8193 note_mouse_movement (f, &msg.msg);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8194 else
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8195 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8196 /* If we move outside the frame, then we're
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8197 certainly no longer on any text in the frame. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8198 clear_mouse_face (FRAME_W32_DISPLAY_INFO (f));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8199 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8200
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8201 /* If the contents of the global variable help_echo
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8202 has changed, generate a HELP_EVENT. */
30050
ed1979c6dfb9 * xterm.c (note_mode_line_highlight, note_mouse_highlight)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 29321
diff changeset
8203 if (!NILP (help_echo)
ed1979c6dfb9 * xterm.c (note_mode_line_highlight, note_mouse_highlight)
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 29321
diff changeset
8204 || !NILP (previous_help_echo))
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8205 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8206 Lisp_Object frame;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
8207 int n;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8208
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8209 if (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8210 XSETFRAME (frame, f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8211 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8212 frame = Qnil;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8213
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8214 any_help_event_p = 1;
31010
040345be1d12 (w32_read_socket): Change calls to gen_help_event.
Gerd Moellmann <gerd@gnu.org>
parents: 30988
diff changeset
8215 n = gen_help_event (bufp, numchars, help_echo, frame,
040345be1d12 (w32_read_socket): Change calls to gen_help_event.
Gerd Moellmann <gerd@gnu.org>
parents: 30988
diff changeset
8216 help_echo_window, help_echo_object,
040345be1d12 (w32_read_socket): Change calls to gen_help_event.
Gerd Moellmann <gerd@gnu.org>
parents: 30988
diff changeset
8217 help_echo_pos);
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
8218 bufp += n, count += n, numchars -= n;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8219 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8220 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8221
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8222 case WM_LBUTTONDOWN:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8223 case WM_LBUTTONUP:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8224 case WM_MBUTTONDOWN:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8225 case WM_MBUTTONUP:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8226 case WM_RBUTTONDOWN:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8227 case WM_RBUTTONUP:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8228 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8229 /* If we decide we want to generate an event to be seen
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8230 by the rest of Emacs, we put it here. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8231 struct input_event emacs_event;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8232 int tool_bar_p = 0;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8233 int button;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8234 int up;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8235
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8236 emacs_event.kind = no_event;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8237
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8238 if (dpyinfo->grabbed && last_mouse_frame
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8239 && FRAME_LIVE_P (last_mouse_frame))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8240 f = last_mouse_frame;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8241 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8242 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8243
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8244 if (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8245 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8246 construct_mouse_click (&emacs_event, &msg, f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8247
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8248 /* Is this in the tool-bar? */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8249 if (WINDOWP (f->tool_bar_window)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8250 && XFASTINT (XWINDOW (f->tool_bar_window)->height))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8251 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8252 Lisp_Object window;
35287
28e0cac22fbd (x_produce_image_glyph, x_draw_image_foreground)
Jason Rumney <jasonr@gnu.org>
parents: 35000
diff changeset
8253 int p;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8254
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8255 /* Set x and y. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8256 window = window_from_coordinates (f,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8257 emacs_event.x,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8258 emacs_event.y,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8259 &p, 1);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8260 if (EQ (window, f->tool_bar_window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8261 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8262 w32_handle_tool_bar_click (f, &emacs_event);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8263 tool_bar_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8264 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8265 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8266
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8267 if (!tool_bar_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8268 if (!dpyinfo->w32_focus_frame
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8269 || f == dpyinfo->w32_focus_frame
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8270 && (numchars >= 1))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8271 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8272 construct_mouse_click (bufp, &msg, f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8273 bufp++;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8274 count++;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8275 numchars--;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8276 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8277 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8278
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8279 parse_button (msg.msg.message, &button, &up);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8280
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8281 if (up)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8282 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8283 dpyinfo->grabbed &= ~ (1 << button);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8284 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8285 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8286 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8287 dpyinfo->grabbed |= (1 << button);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8288 last_mouse_frame = f;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8289 /* Ignore any mouse motion that happened
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8290 before this event; any subsequent mouse-movement
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8291 Emacs events should reflect only motion after
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8292 the ButtonPress. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8293 if (f != 0)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8294 f->mouse_moved = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8295
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8296 if (!tool_bar_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8297 last_tool_bar_item = -1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8298 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8299 break;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8300 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8301
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8302 case WM_MOUSEWHEEL:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8303 if (dpyinfo->grabbed && last_mouse_frame
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8304 && FRAME_LIVE_P (last_mouse_frame))
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8305 f = last_mouse_frame;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8306 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8307 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8308
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8309 if (f)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8310 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8311 if ((!dpyinfo->w32_focus_frame
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8312 || f == dpyinfo->w32_focus_frame)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8313 && (numchars >= 1))
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8314 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8315 construct_mouse_wheel (bufp, &msg, f);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8316 bufp++;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8317 count++;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8318 numchars--;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8319 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8320 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8321 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8322
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
8323 case WM_MENUSELECT:
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
8324 {
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
8325 HMENU menu = (HMENU) msg.msg.lParam;
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
8326 UINT menu_item = (UINT) LOWORD (msg.msg.wParam);
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
8327 UINT flags = (UINT) HIWORD (msg.msg.wParam);
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
8328
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
8329 w32_menu_display_help (menu, menu_item, flags);
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
8330 }
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
8331 break;
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
8332
21885
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
8333 case WM_DROPFILES:
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
8334 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
8335
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
8336 if (f)
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
8337 {
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
8338 construct_drag_n_drop (bufp, &msg, f);
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
8339 bufp++;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
8340 count++;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
8341 numchars--;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
8342 }
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
8343 break;
40c97499e89a Include shellapi.h.
Richard M. Stallman <rms@gnu.org>
parents: 21875
diff changeset
8344
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8345 case WM_VSCROLL:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8346 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8347 struct scroll_bar *bar =
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8348 x_window_to_scroll_bar ((HWND)msg.msg.lParam);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8349
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8350 if (bar && numchars >= 1)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8351 {
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8352 if (w32_scroll_bar_handle_click (bar, &msg, bufp))
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
8353 {
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
8354 bufp++;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
8355 count++;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
8356 numchars--;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
8357 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8358 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8359 break;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8360 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8361
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8362 case WM_WINDOWPOSCHANGED:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8363 case WM_ACTIVATE:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8364 case WM_ACTIVATEAPP:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8365 check_visibility = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8366 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8367
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8368 case WM_MOVE:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8369 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8370
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8371 if (f && !f->async_iconified)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8372 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8373 int x, y;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8374
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8375 x_real_positions (f, &x, &y);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8376 f->output_data.w32->left_pos = x;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8377 f->output_data.w32->top_pos = y;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8378 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8379
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8380 check_visibility = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8381 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8382
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8383 case WM_SHOWWINDOW:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8384 /* If window has been obscured or exposed by another window
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8385 being maximised or minimised/restored, then recheck
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8386 visibility of all frames. Direct changes to our own
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8387 windows get handled by WM_SIZE. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8388 #if 0
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8389 if (msg.msg.lParam != 0)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8390 check_visibility = 1;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8391 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8392 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8393 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8394 f->async_visible = msg.msg.wParam;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8395 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8396 #endif
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8397
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8398 check_visibility = 1;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8399 break;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8400
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8401 case WM_SIZE:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8402 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8403
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8404 /* Inform lisp of whether frame has been iconified etc. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8405 if (f)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8406 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8407 switch (msg.msg.wParam)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8408 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8409 case SIZE_MINIMIZED:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8410 f->async_visible = 0;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8411 f->async_iconified = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8412
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8413 bufp->kind = iconify_event;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8414 XSETFRAME (bufp->frame_or_window, f);
30199
298f10cd4ba5 (construct_mouse_click, construct_mouse_wheel)
Gerd Moellmann <gerd@gnu.org>
parents: 30179
diff changeset
8415 bufp->arg = Qnil;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8416 bufp++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8417 count++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8418 numchars--;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8419 break;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8420
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8421 case SIZE_MAXIMIZED:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8422 case SIZE_RESTORED:
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8423 f->async_visible = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8424 f->async_iconified = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8425
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8426 /* wait_reading_process_input will notice this and update
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8427 the frame's display structures. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8428 SET_FRAME_GARBAGED (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8429
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8430 if (f->iconified)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8431 {
24827
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8432 int x, y;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8433
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8434 /* Reset top and left positions of the Window
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8435 here since Windows sends a WM_MOVE message
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8436 BEFORE telling us the Window is minimized
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8437 when the Window is iconified, with 3000,3000
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8438 as the co-ords. */
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8439 x_real_positions (f, &x, &y);
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8440 f->output_data.w32->left_pos = x;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8441 f->output_data.w32->top_pos = y;
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8442
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8443 bufp->kind = deiconify_event;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8444 XSETFRAME (bufp->frame_or_window, f);
30199
298f10cd4ba5 (construct_mouse_click, construct_mouse_wheel)
Gerd Moellmann <gerd@gnu.org>
parents: 30179
diff changeset
8445 bufp->arg = Qnil;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8446 bufp++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8447 count++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8448 numchars--;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8449 }
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
8450 else if (! NILP (Vframe_list)
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
8451 && ! NILP (XCDR (Vframe_list)))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8452 /* Force a redisplay sooner or later
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8453 to update the frame titles
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8454 in case this is the second frame. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8455 record_asynch_buffer_change ();
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8456 break;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8457 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8458 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8459
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8460 if (f && !f->async_iconified && msg.msg.wParam != SIZE_MINIMIZED)
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8461 {
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8462 RECT rect;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8463 int rows;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8464 int columns;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8465 int width;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8466 int height;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8467
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
8468 GetClientRect (msg.msg.hwnd, &rect);
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8469
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8470 height = rect.bottom - rect.top;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8471 width = rect.right - rect.left;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8472
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8473 rows = PIXEL_TO_CHAR_HEIGHT (f, height);
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8474 columns = PIXEL_TO_CHAR_WIDTH (f, width);
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8475
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8476 /* TODO: Clip size to the screen dimensions. */
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8477
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8478 /* Even if the number of character rows and columns has
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8479 not changed, the font size may have changed, so we need
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8480 to check the pixel dimensions as well. */
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8481
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8482 if (columns != f->width
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8483 || rows != f->height
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8484 || width != f->output_data.w32->pixel_width
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8485 || height != f->output_data.w32->pixel_height)
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8486 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8487 change_frame_size (f, rows, columns, 0, 1, 0);
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8488 SET_FRAME_GARBAGED (f);
24827
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
8489 cancel_mouse_face (f);
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8490 f->output_data.w32->pixel_width = width;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8491 f->output_data.w32->pixel_height = height;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8492 f->output_data.w32->win_gravity = NorthWestGravity;
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8493 }
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8494 }
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
8495
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8496 check_visibility = 1;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8497 break;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8498
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8499 case WM_SETFOCUS:
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8500 f = x_any_window_to_frame (dpyinfo, msg.msg.hwnd);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8501
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8502 dpyinfo->w32_focus_event_frame = f;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8503
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8504 if (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8505 x_new_focus_frame (dpyinfo, f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8506
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8507
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8508 dpyinfo->grabbed = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8509 check_visibility = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8510 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8511
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8512 case WM_KILLFOCUS:
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
8513 /* TODO: some of this belongs in MOUSE_LEAVE */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8514 f = x_top_window_to_frame (dpyinfo, msg.msg.hwnd);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8515
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8516 if (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8517 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8518 if (f == dpyinfo->w32_focus_event_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8519 dpyinfo->w32_focus_event_frame = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8520
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8521 if (f == dpyinfo->w32_focus_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8522 x_new_focus_frame (dpyinfo, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8523
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8524 if (f == dpyinfo->mouse_face_mouse_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8525 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8526 /* If we move outside the frame, then we're
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8527 certainly no longer on any text in the frame. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8528 clear_mouse_face (dpyinfo);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8529 dpyinfo->mouse_face_mouse_frame = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8530 }
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
8531
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8532 /* Generate a nil HELP_EVENT to cancel a help-echo.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8533 Do it only if there's something to cancel.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8534 Otherwise, the startup message is cleared when
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8535 the mouse leaves the frame. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8536 if (any_help_event_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8537 {
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8538 Lisp_Object frame;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
8539 int n;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
8540
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8541 XSETFRAME (frame, f);
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8542 help_echo = Qnil;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8543 n = gen_help_event (bufp, numchars,
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8544 Qnil, frame, Qnil, Qnil, 0);
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
8545 bufp += n, count += n, numchars -=n;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8546 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8547 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8548
24752
80c46fd667da (w32_read_socket): Reset the grabbed flag when a frame gains or
Andrew Innes <andrewi@gnu.org>
parents: 24733
diff changeset
8549 dpyinfo->grabbed = 0;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8550 check_visibility = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8551 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8552
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8553 case WM_CLOSE:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8554 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8555
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8556 if (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8557 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8558 if (numchars == 0)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8559 abort ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8560
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8561 bufp->kind = delete_window_event;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8562 XSETFRAME (bufp->frame_or_window, f);
30199
298f10cd4ba5 (construct_mouse_click, construct_mouse_wheel)
Gerd Moellmann <gerd@gnu.org>
parents: 30179
diff changeset
8563 bufp->arg = Qnil;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8564 bufp++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8565 count++;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8566 numchars--;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8567 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8568 break;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8569
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8570 case WM_INITMENU:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8571 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8572
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8573 if (f)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8574 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8575 if (numchars == 0)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8576 abort ();
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8577
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8578 bufp->kind = menu_bar_activate_event;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8579 XSETFRAME (bufp->frame_or_window, f);
30199
298f10cd4ba5 (construct_mouse_click, construct_mouse_wheel)
Gerd Moellmann <gerd@gnu.org>
parents: 30179
diff changeset
8580 bufp->arg = Qnil;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8581 bufp++;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8582 count++;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8583 numchars--;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8584 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8585 break;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8586
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8587 case WM_COMMAND:
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8588 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
21740
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
8589
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8590 if (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8591 {
23677
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8592 extern void menubar_selection_callback
70999481c915 (convert_to_key_event): Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23639
diff changeset
8593 (FRAME_PTR f, void * client_data);
21740
92c501ecca49 (w32_read_socket): Don't misinterpret WM_PAINT message
Geoff Voelker <voelker@cs.washington.edu>
parents: 21614
diff changeset
8594 menubar_selection_callback (f, (void *)msg.msg.wParam);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8595 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8596
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8597 check_visibility = 1;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8598 break;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8599
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8600 case WM_DISPLAYCHANGE:
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8601 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8602
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8603 if (f)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8604 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8605 dpyinfo->width = (short) LOWORD (msg.msg.lParam);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8606 dpyinfo->height = (short) HIWORD (msg.msg.lParam);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8607 dpyinfo->n_cbits = msg.msg.wParam;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8608 DebPrint (("display change: %d %d\n", dpyinfo->width,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8609 dpyinfo->height));
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8610 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8611
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8612 check_visibility = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8613 break;
21875
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8614
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8615 default:
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8616 /* Check for messages registered at runtime. */
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8617 if (msg.msg.message == msh_mousewheel)
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8618 {
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8619 if (dpyinfo->grabbed && last_mouse_frame
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8620 && FRAME_LIVE_P (last_mouse_frame))
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8621 f = last_mouse_frame;
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8622 else
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8623 f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8624
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8625 if (f)
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8626 {
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8627 if ((!dpyinfo->w32_focus_frame
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8628 || f == dpyinfo->w32_focus_frame)
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8629 && (numchars >= 1))
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8630 {
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8631 construct_mouse_wheel (bufp, &msg, f);
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8632 bufp++;
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8633 count++;
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8634 numchars--;
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8635 }
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8636 }
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8637 }
16414f4d07e7 (msh_mousewheel): Declare.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21831
diff changeset
8638 break;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8639 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8640 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8641
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8642 /* If the focus was just given to an autoraising frame,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8643 raise it now. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8644 /* ??? This ought to be able to handle more than one such frame. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8645 if (pending_autoraise_frame)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8646 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8647 x_raise_frame (pending_autoraise_frame);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8648 pending_autoraise_frame = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8649 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8650
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8651 /* Check which frames are still visisble, if we have enqueued any user
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8652 events or been notified of events that may affect visibility. We
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8653 do this here because there doesn't seem to be any direct
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8654 notification from Windows that the visibility of a window has
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8655 changed (at least, not in all cases). */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8656 if (count > 0 || check_visibility)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8657 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8658 Lisp_Object tail, frame;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8659
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8660 FOR_EACH_FRAME (tail, frame)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8661 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8662 FRAME_PTR f = XFRAME (frame);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8663 /* Check "visible" frames and mark each as obscured or not.
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8664 Note that async_visible is nonzero for unobscured and
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8665 obscured frames, but zero for hidden and iconified frames. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8666 if (FRAME_W32_P (f) && f->async_visible)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8667 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8668 RECT clipbox;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8669 HDC hdc = get_frame_dc (f);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8670 GetClipBox (hdc, &clipbox);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8671 release_frame_dc (f, hdc);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8672
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8673 if (clipbox.right == clipbox.left
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8674 || clipbox.bottom == clipbox.top)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8675 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8676 /* Frame has become completely obscured so mark as
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8677 such (we do this by setting async_visible to 2 so
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8678 that FRAME_VISIBLE_P is still true, but redisplay
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8679 will skip it). */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8680 f->async_visible = 2;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8681
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8682 if (!FRAME_OBSCURED_P (f))
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8683 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8684 DebPrint (("frame %04x (%s) obscured\n", f,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8685 XSTRING (f->name)->data));
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8686 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8687 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8688 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8689 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8690 /* Frame is not obscured, so mark it as such. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8691 f->async_visible = 1;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8692
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8693 if (FRAME_OBSCURED_P (f))
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8694 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8695 SET_FRAME_GARBAGED (f);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8696 DebPrint (("frame %04x (%s) reexposed\n", f,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8697 XSTRING (f->name)->data));
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8698
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8699 /* Force a redisplay sooner or later. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8700 record_asynch_buffer_change ();
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8701 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8702 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8703 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8704 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8705 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
8706
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8707 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8708 return count;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8709 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8710
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
8711
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
8712
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8713
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8714 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8715 Text Cursor
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8716 ***********************************************************************/
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8717
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8718 /* Note if the text cursor of window W has been overwritten by a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8719 drawing operation that outputs N glyphs starting at HPOS in the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8720 line given by output_cursor.vpos. N < 0 means all the rest of the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8721 line after HPOS has been written. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8722
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8723 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8724 note_overwritten_text_cursor (w, hpos, n)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8725 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8726 int hpos, n;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8727 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8728 if (updated_area == TEXT_AREA
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8729 && output_cursor.vpos == w->phys_cursor.vpos
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8730 && hpos <= w->phys_cursor.hpos
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8731 && (n < 0
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8732 || hpos + n > w->phys_cursor.hpos))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8733 w->phys_cursor_on_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8734 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8735
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8736
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8737 /* Set clipping for output in glyph row ROW. W is the window in which
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8738 we operate. GC is the graphics context to set clipping in.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8739 WHOLE_LINE_P non-zero means include the areas used for truncation
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8740 mark display and alike in the clipping rectangle.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8741
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8742 ROW may be a text row or, e.g., a mode line. Text rows must be
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8743 clipped to the interior of the window dedicated to text display,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8744 mode lines must be clipped to the whole window. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8745
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8746 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8747 w32_clip_to_row (w, row, hdc, whole_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8748 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8749 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8750 HDC hdc;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8751 int whole_line_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8752 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8753 struct frame *f = XFRAME (WINDOW_FRAME (w));
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8754 RECT clip_rect;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8755 int window_x, window_y, window_width, window_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8756
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8757 window_box (w, -1, &window_x, &window_y, &window_width, &window_height);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8758
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8759 clip_rect.left = WINDOW_TO_FRAME_PIXEL_X (w, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8760 clip_rect.top = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8761 clip_rect.top = max (clip_rect.top, window_y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8762 clip_rect.right = clip_rect.left + window_width;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8763 clip_rect.bottom = clip_rect.top + row->visible_height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8764
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8765 /* If clipping to the whole line, including trunc marks, extend
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
8766 the rectangle to the left and increase its width. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8767 if (whole_line_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8768 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8769 clip_rect.left -= FRAME_X_LEFT_FLAGS_AREA_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8770 clip_rect.right += FRAME_X_FLAGS_AREA_WIDTH (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8771 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8772
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8773 w32_set_clip_rectangle (hdc, &clip_rect);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8774 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8775
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8776
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8777 /* Draw a hollow box cursor on window W in glyph row ROW. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8778
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8779 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8780 x_draw_hollow_cursor (w, row)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8781 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8782 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8783 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8784 struct frame *f = XFRAME (WINDOW_FRAME (w));
34779
94c3431a7fe2 (x_draw_hollow_cursor): Delay obtaining the frame's DC to avoid
Jason Rumney <jasonr@gnu.org>
parents: 34545
diff changeset
8785 HDC hdc;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8786 RECT rect;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8787 int wd;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8788 struct glyph *cursor_glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8789 HBRUSH hb = CreateSolidBrush (f->output_data.w32->cursor_pixel);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8790
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8791 /* Compute frame-relative coordinates from window-relative
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8792 coordinates. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8793 rect.left = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8794 rect.top = (WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8795 + row->ascent - w->phys_cursor_ascent);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8796 rect.bottom = rect.top + row->height - 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8797
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8798 /* Get the glyph the cursor is on. If we can't tell because
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8799 the current matrix is invalid or such, give up. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8800 cursor_glyph = get_phys_cursor_glyph (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8801 if (cursor_glyph == NULL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8802 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8803
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8804 /* Compute the width of the rectangle to draw. If on a stretch
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8805 glyph, and `x-stretch-block-cursor' is nil, don't draw a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8806 rectangle as wide as the glyph, but use a canonical character
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8807 width instead. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8808 wd = cursor_glyph->pixel_width - 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8809 if (cursor_glyph->type == STRETCH_GLYPH
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8810 && !x_stretch_cursor_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8811 wd = min (CANON_X_UNIT (f), wd);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8812
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8813 rect.right = rect.left + wd;
34779
94c3431a7fe2 (x_draw_hollow_cursor): Delay obtaining the frame's DC to avoid
Jason Rumney <jasonr@gnu.org>
parents: 34545
diff changeset
8814 hdc = get_frame_dc (f);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8815 FrameRect (hdc, &rect, hb);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8816 DeleteObject (hb);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
8817
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
8818 release_frame_dc (f, hdc);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8819 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8820
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8821
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8822 /* Draw a bar cursor on window W in glyph row ROW.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8823
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8824 Implementation note: One would like to draw a bar cursor with an
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8825 angle equal to the one given by the font property XA_ITALIC_ANGLE.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8826 Unfortunately, I didn't find a font yet that has this property set.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8827 --gerd. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8828
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8829 static void
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
8830 x_draw_bar_cursor (w, row, width)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8831 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8832 struct glyph_row *row;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
8833 int width;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8834 {
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8835 struct frame *f = XFRAME (w->frame);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8836 struct glyph *cursor_glyph;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8837 int x;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8838 HDC hdc;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8839
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8840 /* If cursor is out of bounds, don't draw garbage. This can happen
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8841 in mini-buffer windows when switching between echo area glyphs
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8842 and mini-buffer. */
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8843 cursor_glyph = get_phys_cursor_glyph (w);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8844 if (cursor_glyph == NULL)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8845 return;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8846
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8847 /* If on an image, draw like a normal cursor. That's usually better
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8848 visible than drawing a bar, esp. if the image is large so that
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8849 the bar might not be in the window. */
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8850 if (cursor_glyph->type == IMAGE_GLYPH)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8851 {
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8852 struct glyph_row *row;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8853 row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8854 x_draw_phys_cursor_glyph (w, row, DRAW_CURSOR);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8855 }
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8856 else
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8857 {
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8858 if (width < 0)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8859 width = f->output_data.w32->cursor_width;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8860
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8861 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8862 hdc = get_frame_dc (f);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8863 w32_clip_to_row (w, row, hdc, 0);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8864 w32_fill_area (f, hdc, f->output_data.w32->cursor_pixel,
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8865 x,
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8866 WINDOW_TO_FRAME_PIXEL_Y (w, w->phys_cursor.y),
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8867 min (cursor_glyph->pixel_width, width),
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8868 row->height);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8869 release_frame_dc (f, hdc);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8870 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8871 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8872
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8873
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8874 /* Clear the cursor of window W to background color, and mark the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8875 cursor as not shown. This is used when the text where the cursor
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8876 is is about to be rewritten. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8877
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8878 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8879 x_clear_cursor (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8880 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8881 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8882 if (FRAME_VISIBLE_P (XFRAME (w->frame)) && w->phys_cursor_on_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8883 x_update_window_cursor (w, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8884 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8885
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8886
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8887 /* Draw the cursor glyph of window W in glyph row ROW. See the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8888 comment of x_draw_glyphs for the meaning of HL. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8889
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8890 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8891 x_draw_phys_cursor_glyph (w, row, hl)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8892 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8893 struct glyph_row *row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8894 enum draw_glyphs_face hl;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8895 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8896 /* If cursor hpos is out of bounds, don't draw garbage. This can
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8897 happen in mini-buffer windows when switching between echo area
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8898 glyphs and mini-buffer. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8899 if (w->phys_cursor.hpos < row->used[TEXT_AREA])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8900 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8901 x_draw_glyphs (w, w->phys_cursor.x, row, TEXT_AREA,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8902 w->phys_cursor.hpos, w->phys_cursor.hpos + 1,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8903 hl, 0, 0, 0);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8904
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8905 /* When we erase the cursor, and ROW is overlapped by other
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8906 rows, make sure that these overlapping parts of other rows
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8907 are redrawn. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8908 if (hl == DRAW_NORMAL_TEXT && row->overlapped_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8909 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8910 if (row > w->current_matrix->rows
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8911 && MATRIX_ROW_OVERLAPS_SUCC_P (row - 1))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8912 x_fix_overlapping_area (w, row - 1, TEXT_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8913
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8914 if (MATRIX_ROW_BOTTOM_Y (row) < window_text_bottom_y (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8915 && MATRIX_ROW_OVERLAPS_PRED_P (row + 1))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8916 x_fix_overlapping_area (w, row + 1, TEXT_AREA);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8917 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8918 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8919 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8920
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8921
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8922 /* Erase the image of a cursor of window W from the screen. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8923
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
8924 static void
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8925 x_erase_phys_cursor (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8926 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8927 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8928 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8929 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8930 int hpos = w->phys_cursor.hpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8931 int vpos = w->phys_cursor.vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8932 int mouse_face_here_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8933 struct glyph_matrix *active_glyphs = w->current_matrix;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8934 struct glyph_row *cursor_row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8935 struct glyph *cursor_glyph;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8936 enum draw_glyphs_face hl;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8937
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8938 /* No cursor displayed or row invalidated => nothing to do on the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8939 screen. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8940 if (w->phys_cursor_type == NO_CURSOR)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8941 goto mark_cursor_off;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8942
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8943 /* VPOS >= active_glyphs->nrows means that window has been resized.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8944 Don't bother to erase the cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8945 if (vpos >= active_glyphs->nrows)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8946 goto mark_cursor_off;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8947
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8948 /* If row containing cursor is marked invalid, there is nothing we
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8949 can do. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8950 cursor_row = MATRIX_ROW (active_glyphs, vpos);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8951 if (!cursor_row->enabled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8952 goto mark_cursor_off;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8953
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8954 /* This can happen when the new row is shorter than the old one.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8955 In this case, either x_draw_glyphs or clear_end_of_line
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8956 should have cleared the cursor. Note that we wouldn't be
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8957 able to erase the cursor in this case because we don't have a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8958 cursor glyph at hand. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8959 if (w->phys_cursor.hpos >= cursor_row->used[TEXT_AREA])
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8960 goto mark_cursor_off;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8961
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8962 /* If the cursor is in the mouse face area, redisplay that when
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8963 we clear the cursor. */
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8964 if (! NILP (dpyinfo->mouse_face_window)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
8965 && w == XWINDOW (dpyinfo->mouse_face_window)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8966 && (vpos > dpyinfo->mouse_face_beg_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8967 || (vpos == dpyinfo->mouse_face_beg_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8968 && hpos >= dpyinfo->mouse_face_beg_col))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8969 && (vpos < dpyinfo->mouse_face_end_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8970 || (vpos == dpyinfo->mouse_face_end_row
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8971 && hpos < dpyinfo->mouse_face_end_col))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8972 /* Don't redraw the cursor's spot in mouse face if it is at the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8973 end of a line (on a newline). The cursor appears there, but
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8974 mouse highlighting does not. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8975 && cursor_row->used[TEXT_AREA] > hpos)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8976 mouse_face_here_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8977
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8978 /* Maybe clear the display under the cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8979 if (w->phys_cursor_type == HOLLOW_BOX_CURSOR)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8980 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8981 int x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8982 int header_line_height = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w);
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
8983 HDC hdc;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8984
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8985 cursor_glyph = get_phys_cursor_glyph (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8986 if (cursor_glyph == NULL)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8987 goto mark_cursor_off;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8988
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8989 x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x);
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
8990
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
8991 hdc = get_frame_dc (f);
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
8992 w32_clear_area (f, hdc, x,
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8993 WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8994 cursor_row->y)),
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8995 cursor_glyph->pixel_width,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8996 cursor_row->visible_height);
27406
fb36ccd8457c (w32_fill_rect): Do not try to deal with NULL hdc
Jason Rumney <jasonr@gnu.org>
parents: 27402
diff changeset
8997 release_frame_dc (f, hdc);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8998 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
8999
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9000 /* Erase the cursor by redrawing the character underneath it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9001 if (mouse_face_here_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9002 hl = DRAW_MOUSE_FACE;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9003 else if (cursor_row->inverse_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9004 hl = DRAW_INVERSE_VIDEO;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9005 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9006 hl = DRAW_NORMAL_TEXT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9007 x_draw_phys_cursor_glyph (w, cursor_row, hl);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9008
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9009 mark_cursor_off:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9010 w->phys_cursor_on_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9011 w->phys_cursor_type = NO_CURSOR;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9012 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9013
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9014
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9015 /* Display or clear cursor of window W. If ON is zero, clear the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9016 cursor. If it is non-zero, display the cursor. If ON is nonzero,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9017 where to put the cursor is specified by HPOS, VPOS, X and Y. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9018
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9019 void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9020 x_display_and_set_cursor (w, on, hpos, vpos, x, y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9021 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9022 int on, hpos, vpos, x, y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9023 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9024 struct frame *f = XFRAME (w->frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9025 int new_cursor_type;
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9026 int new_cursor_width;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9027 struct glyph_matrix *current_glyphs;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9028 struct glyph_row *glyph_row;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9029 struct glyph *glyph;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9030
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9031 /* This is pointless on invisible frames, and dangerous on garbaged
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9032 windows and frames; in the latter case, the frame or window may
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9033 be in the midst of changing its size, and x and y may be off the
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9034 window. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9035 if (! FRAME_VISIBLE_P (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9036 || FRAME_GARBAGED_P (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9037 || vpos >= w->current_matrix->nrows
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9038 || hpos >= w->current_matrix->matrix_w)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9039 return;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9040
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9041 /* If cursor is off and we want it off, return quickly. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9042 if (!on && !w->phys_cursor_on_p)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9043 return;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9044
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9045 current_glyphs = w->current_matrix;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9046 glyph_row = MATRIX_ROW (current_glyphs, vpos);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9047 glyph = glyph_row->glyphs[TEXT_AREA] + hpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9048
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9049 /* If cursor row is not enabled, we don't really know where to
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9050 display the cursor. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9051 if (!glyph_row->enabled_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9052 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9053 w->phys_cursor_on_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9054 return;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9055 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9056
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9057 xassert (interrupt_input_blocked);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9058
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9059 /* Set new_cursor_type to the cursor we want to be displayed. In a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9060 mini-buffer window, we want the cursor only to appear if we are
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9061 reading input from this window. For the selected window, we want
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9062 the cursor type given by the frame parameter. If explicitly
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9063 marked off, draw no cursor. In all other cases, we want a hollow
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9064 box cursor. */
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9065 new_cursor_width = -1;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9066 if (cursor_in_echo_area
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9067 && FRAME_HAS_MINIBUF_P (f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9068 && EQ (FRAME_MINIBUF_WINDOW (f), echo_area_window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9069 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9070 if (w == XWINDOW (echo_area_window))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9071 new_cursor_type = FRAME_DESIRED_CURSOR (f);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9072 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9073 new_cursor_type = HOLLOW_BOX_CURSOR;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9074 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9075 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9076 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9077 if (w != XWINDOW (selected_window)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9078 || f != FRAME_W32_DISPLAY_INFO (f)->w32_highlight_frame)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9079 {
27937
da3a30362526 Bring up to date with xterm.c changes of 2000-02-24 and 2000-02-25.
Jason Rumney <jasonr@gnu.org>
parents: 27889
diff changeset
9080 extern int cursor_in_non_selected_windows;
da3a30362526 Bring up to date with xterm.c changes of 2000-02-24 and 2000-02-25.
Jason Rumney <jasonr@gnu.org>
parents: 27889
diff changeset
9081
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
9082 if (MINI_WINDOW_P (w)
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
9083 || !cursor_in_non_selected_windows
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
9084 || NILP (XBUFFER (w->buffer)->cursor_type))
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9085 new_cursor_type = NO_CURSOR;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9086 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9087 new_cursor_type = HOLLOW_BOX_CURSOR;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9088 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9089 else if (w->cursor_off_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9090 new_cursor_type = NO_CURSOR;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9091 else
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9092 {
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9093 struct buffer *b = XBUFFER (w->buffer);
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9094
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9095 if (EQ (b->cursor_type, Qt))
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9096 new_cursor_type = FRAME_DESIRED_CURSOR (f);
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9097 else
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9098 new_cursor_type = x_specified_cursor_type (b->cursor_type,
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9099 &new_cursor_width);
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9100 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9101 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9102
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9103 /* If cursor is currently being shown and we don't want it to be or
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9104 it is in the wrong place, or the cursor type is not what we want,
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9105 erase it. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9106 if (w->phys_cursor_on_p
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9107 && (!on
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9108 || w->phys_cursor.x != x
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9109 || w->phys_cursor.y != y
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9110 || new_cursor_type != w->phys_cursor_type))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9111 x_erase_phys_cursor (w);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9112
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9113 /* If the cursor is now invisible and we want it to be visible,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9114 display it. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9115 if (on && !w->phys_cursor_on_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9116 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9117 w->phys_cursor_ascent = glyph_row->ascent;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9118 w->phys_cursor_height = glyph_row->height;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9119
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9120 /* Set phys_cursor_.* before x_draw_.* is called because some
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9121 of them may need the information. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9122 w->phys_cursor.x = x;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9123 w->phys_cursor.y = glyph_row->y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9124 w->phys_cursor.hpos = hpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9125 w->phys_cursor.vpos = vpos;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9126 w->phys_cursor_type = new_cursor_type;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9127 w->phys_cursor_on_p = 1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9128
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9129 switch (new_cursor_type)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9130 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9131 case HOLLOW_BOX_CURSOR:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9132 x_draw_hollow_cursor (w, glyph_row);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9133 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9134
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9135 case FILLED_BOX_CURSOR:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9136 x_draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9137 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9138
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9139 case BAR_CURSOR:
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9140 x_draw_bar_cursor (w, glyph_row, new_cursor_width);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9141 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9142
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9143 case NO_CURSOR:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9144 break;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9145
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9146 default:
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9147 abort ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9148 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9149 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9150 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9151
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9152
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9153 /* Display the cursor on window W, or clear it. X and Y are window
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9154 relative pixel coordinates. HPOS and VPOS are glyph matrix
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9155 positions. If W is not the selected window, display a hollow
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9156 cursor. ON non-zero means display the cursor at X, Y which
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9157 correspond to HPOS, VPOS, otherwise it is cleared. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9158
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9159 void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9160 x_display_cursor (w, on, hpos, vpos, x, y)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9161 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9162 int on, hpos, vpos, x, y;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9163 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9164 BLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9165 x_display_and_set_cursor (w, on, hpos, vpos, x, y);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9166 UNBLOCK_INPUT;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9167 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9168
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9169
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9170 /* Display the cursor on window W, or clear it, according to ON_P.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9171 Don't change the cursor's position. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9172
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9173 void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9174 x_update_cursor (f, on_p)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9175 struct frame *f;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9176 int on_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9177 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9178 x_update_cursor_in_window_tree (XWINDOW (f->root_window), on_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9179 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9180
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9181
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9182 /* Call x_update_window_cursor with parameter ON_P on all leaf windows
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9183 in the window tree rooted at W. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9184
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9185 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9186 x_update_cursor_in_window_tree (w, on_p)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9187 struct window *w;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9188 int on_p;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9189 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9190 while (w)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9191 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9192 if (!NILP (w->hchild))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9193 x_update_cursor_in_window_tree (XWINDOW (w->hchild), on_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9194 else if (!NILP (w->vchild))
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9195 x_update_cursor_in_window_tree (XWINDOW (w->vchild), on_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9196 else
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9197 x_update_window_cursor (w, on_p);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9198
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9199 w = NILP (w->next) ? 0 : XWINDOW (w->next);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9200 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9201 }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9202
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9203
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9204 /* Switch the display of W's cursor on or off, according to the value
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9205 of ON. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9206
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9207 static void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9208 x_update_window_cursor (w, on)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9209 struct window *w;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9210 int on;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9211 {
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9212 /* Don't update cursor in windows whose frame is in the process
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9213 of being deleted. */
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9214 if (w->current_matrix)
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9215 {
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9216 BLOCK_INPUT;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9217 x_display_and_set_cursor (w, on, w->phys_cursor.hpos,
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9218 w->phys_cursor.vpos, w->phys_cursor.x,
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9219 w->phys_cursor.y);
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9220 UNBLOCK_INPUT;
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9221 }
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9222 }
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9223
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9224
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9225
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9226
25236
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9227 /* Icons. */
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9228
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9229 int
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9230 x_bitmap_icon (f, icon)
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9231 struct frame *f;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9232 Lisp_Object icon;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9233 {
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9234 HANDLE hicon;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9235
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9236 if (FRAME_W32_WINDOW (f) == 0)
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9237 return 1;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9238
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9239 if (NILP (icon))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9240 hicon = LoadIcon (hinst, EMACS_CLASS);
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9241 else if (STRINGP (icon))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9242 hicon = LoadImage (NULL, (LPCTSTR) XSTRING (icon)->data, IMAGE_ICON, 0, 0,
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9243 LR_DEFAULTSIZE | LR_LOADFROMFILE);
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9244 else if (SYMBOLP (icon))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9245 {
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9246 LPCTSTR name;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9247
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9248 if (EQ (icon, intern ("application")))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9249 name = (LPCTSTR) IDI_APPLICATION;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9250 else if (EQ (icon, intern ("hand")))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9251 name = (LPCTSTR) IDI_HAND;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9252 else if (EQ (icon, intern ("question")))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9253 name = (LPCTSTR) IDI_QUESTION;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9254 else if (EQ (icon, intern ("exclamation")))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9255 name = (LPCTSTR) IDI_EXCLAMATION;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9256 else if (EQ (icon, intern ("asterisk")))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9257 name = (LPCTSTR) IDI_ASTERISK;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9258 else if (EQ (icon, intern ("winlogo")))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9259 name = (LPCTSTR) IDI_WINLOGO;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9260 else
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9261 return 1;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9262
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9263 hicon = LoadIcon (NULL, name);
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9264 }
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9265 else
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9266 return 1;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9267
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9268 if (hicon == NULL)
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9269 return 1;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9270
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9271 PostMessage (FRAME_W32_WINDOW (f), WM_SETICON, (WPARAM) ICON_BIG,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9272 (LPARAM) hicon);
25236
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9273
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9274 return 0;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9275 }
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9276
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9277
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9278 /************************************************************************
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9279 Handling X errors
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9280 ************************************************************************/
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9281
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9282 /* Display Error Handling functions not used on W32. Listing them here
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9283 helps diff stay in step when comparing w32term.c with xterm.c.
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9284
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9285 x_error_catcher (display, error)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9286 x_catch_errors (dpy)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9287 x_catch_errors_unwind (old_val)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9288 x_check_errors (dpy, format)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9289 x_had_errors_p (dpy)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9290 x_clear_errors (dpy)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9291 x_uncatch_errors (dpy, count)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9292 x_trace_wire ()
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9293 x_connection_signal (signalnum)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9294 x_connection_closed (dpy, error_message)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9295 x_error_quitter (display, error)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9296 x_error_handler (display, error)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9297 x_io_error_quitter (display)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9298
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9299 */
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9300
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9301
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9302 /* Changing the font of the frame. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9303
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9304 /* Give frame F the font named FONTNAME as its default font, and
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9305 return the full name of that font. FONTNAME may be a wildcard
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9306 pattern; in that case, we choose some font that fits the pattern.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9307 The return value shows which font we chose. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9308
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9309 Lisp_Object
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9310 x_new_font (f, fontname)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9311 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9312 register char *fontname;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9313 {
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9314 struct font_info *fontp
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
9315 = FS_LOAD_FONT (f, 0, fontname, -1);
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9316
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9317 if (!fontp)
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9318 return Qnil;
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9319
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9320 FRAME_FONT (f) = (XFontStruct *) (fontp->font);
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9321 FRAME_BASELINE_OFFSET (f) = fontp->baseline_offset;
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9322 FRAME_FONTSET (f) = -1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9323
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9324 /* Compute the scroll bar width in character columns. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9325 if (f->scroll_bar_pixel_width > 0)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9326 {
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9327 int wid = FONT_WIDTH (FRAME_FONT (f));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9328 f->scroll_bar_cols = (f->scroll_bar_pixel_width + wid-1) / wid;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9329 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9330 else
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9331 {
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9332 int wid = FONT_WIDTH (FRAME_FONT (f));
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9333 f->scroll_bar_cols = (14 + wid - 1) / wid;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9334 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9335
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9336 /* Now make the frame display the given font. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9337 if (FRAME_W32_WINDOW (f) != 0)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9338 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9339 frame_update_line_height (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9340 x_set_window_size (f, 0, f->width, f->height);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9341 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9342 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9343 /* If we are setting a new frame's font for the first time,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9344 there are no faces yet, so this font's height is the line height. */
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9345 f->output_data.w32->line_height = FONT_HEIGHT (FRAME_FONT (f));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9346
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9347 return build_string (fontp->full_name);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9348 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9349
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9350 /* Give frame F the fontset named FONTSETNAME as its default font, and
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9351 return the full name of that fontset. FONTSETNAME may be a wildcard
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9352 pattern; in that case, we choose some fontset that fits the pattern.
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9353 The return value shows which fontset we chose. */
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9354
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9355 Lisp_Object
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9356 x_new_fontset (f, fontsetname)
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9357 struct frame *f;
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9358 char *fontsetname;
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9359 {
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
9360 int fontset = fs_query_fontset (build_string (fontsetname), 0);
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9361 Lisp_Object result;
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9362
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9363 if (fontset < 0)
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9364 return Qnil;
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9365
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9366 if (FRAME_FONTSET (f) == fontset)
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9367 /* This fontset is already set in frame F. There's nothing more
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9368 to do. */
28369
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
9369 return fontset_name (fontset);
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
9370
3fb90cd81d3b (w32_read_socket): Handle WM_MENUSELECT message.
Jason Rumney <jasonr@gnu.org>
parents: 27937
diff changeset
9371 result = x_new_font (f, (XSTRING (fontset_ascii (fontset))->data));
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9372
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9373 if (!STRINGP (result))
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9374 /* Can't load ASCII font. */
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9375 return Qnil;
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9376
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9377 /* Since x_new_font doesn't update any fontset information, do it now. */
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9378 FRAME_FONTSET(f) = fontset;
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9379
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9380 return build_string (fontsetname);
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9381 }
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9382
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9383
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9384 /***********************************************************************
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9385 TODO: W32 Input Methods
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9386 ***********************************************************************/
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9387 /* Listing missing functions from xterm.c helps diff stay in step.
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9388
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9389 xim_destroy_callback (xim, client_data, call_data)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9390 xim_open_dpy (dpyinfo, resource_name)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9391 struct xim_inst_t
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9392 xim_instantiate_callback (display, client_data, call_data)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9393 xim_initialize (dpyinfo, resource_name)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9394 xim_close_dpy (dpyinfo)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9395
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9396 */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9397
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9398
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9399 /* Calculate the absolute position in frame F
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9400 from its current recorded position values and gravity. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9401
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9402 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9403 x_calc_absolute_position (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9404 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9405 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9406 POINT pt;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9407 int flags = f->output_data.w32->size_hint_flags;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9408
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9409 pt.x = pt.y = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9410
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9411 /* Find the position of the outside upper-left corner of
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9412 the inner window, with respect to the outer window.
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9413 But do this only if we will need the results. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9414 if (f->output_data.w32->parent_desc != FRAME_W32_DISPLAY_INFO (f)->root_window)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9415 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9416 BLOCK_INPUT;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9417 MapWindowPoints (FRAME_W32_WINDOW (f),
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9418 f->output_data.w32->parent_desc,
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9419 &pt, 1);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9420 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9421 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9422
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9423 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9424 RECT rt;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9425 rt.left = rt.right = rt.top = rt.bottom = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9426
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9427 BLOCK_INPUT;
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9428 AdjustWindowRect(&rt, f->output_data.w32->dwStyle,
14351
fb2ce4ebc871 ubackout 1.3 and 1.4
Geoff Voelker <voelker@cs.washington.edu>
parents: 14248
diff changeset
9429 FRAME_EXTERNAL_MENU_BAR (f));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9430 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9431
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9432 pt.x += (rt.right - rt.left);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9433 pt.y += (rt.bottom - rt.top);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9434 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9435
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9436 /* Treat negative positions as relative to the leftmost bottommost
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9437 position that fits on the screen. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9438 if (flags & XNegative)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9439 f->output_data.w32->left_pos = (FRAME_W32_DISPLAY_INFO (f)->width
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9440 - 2 * f->output_data.w32->border_width - pt.x
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9441 - PIXEL_WIDTH (f)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9442 + f->output_data.w32->left_pos);
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
9443
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9444 if (flags & YNegative)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9445 f->output_data.w32->top_pos = (FRAME_W32_DISPLAY_INFO (f)->height
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9446 - 2 * f->output_data.w32->border_width - pt.y
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9447 - PIXEL_HEIGHT (f)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9448 + f->output_data.w32->top_pos);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9449 /* The left_pos and top_pos
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9450 are now relative to the top and left screen edges,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9451 so the flags should correspond. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9452 f->output_data.w32->size_hint_flags &= ~ (XNegative | YNegative);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9453 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9454
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9455 /* CHANGE_GRAVITY is 1 when calling from Fset_frame_position,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9456 to really change the position, and 0 when calling from
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9457 x_make_frame_visible (in that case, XOFF and YOFF are the current
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9458 position values). It is -1 when calling from x_set_frame_parameters,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9459 which means, do adjust for borders but don't change the gravity. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9460
29321
8e2be36bb1c6 Format and doc changes to bring closer to xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 28369
diff changeset
9461 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9462 x_set_offset (f, xoff, yoff, change_gravity)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9463 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9464 register int xoff, yoff;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9465 int change_gravity;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9466 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9467 int modified_top, modified_left;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9468
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9469 if (change_gravity > 0)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9470 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9471 f->output_data.w32->top_pos = yoff;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9472 f->output_data.w32->left_pos = xoff;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9473 f->output_data.w32->size_hint_flags &= ~ (XNegative | YNegative);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9474 if (xoff < 0)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9475 f->output_data.w32->size_hint_flags |= XNegative;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9476 if (yoff < 0)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9477 f->output_data.w32->size_hint_flags |= YNegative;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9478 f->output_data.w32->win_gravity = NorthWestGravity;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9479 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9480 x_calc_absolute_position (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9481
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9482 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9483 x_wm_set_size_hint (f, (long) 0, 0);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9484
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9485 modified_left = f->output_data.w32->left_pos;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9486 modified_top = f->output_data.w32->top_pos;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9487
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9488 my_set_window_pos (FRAME_W32_WINDOW (f),
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9489 NULL,
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9490 modified_left, modified_top,
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
9491 0, 0,
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9492 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9493 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9494 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9495
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9496 /* Call this to change the size of frame F's x-window.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9497 If CHANGE_GRAVITY is 1, we change to top-left-corner window gravity
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9498 for this size change and subsequent size changes.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9499 Otherwise we leave the window gravity unchanged. */
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9500
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9501 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9502 x_set_window_size (f, change_gravity, cols, rows)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9503 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9504 int change_gravity;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9505 int cols, rows;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9506 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9507 int pixelwidth, pixelheight;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9508
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9509 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9510
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9511 check_frame_size (f, &rows, &cols);
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9512 f->output_data.w32->vertical_scroll_bar_extra
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9513 = (!FRAME_HAS_VERTICAL_SCROLL_BARS (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9514 ? 0
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9515 : (FRAME_SCROLL_BAR_COLS (f) * FONT_WIDTH (f->output_data.w32->font)));
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9516 f->output_data.w32->flags_areas_extra
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9517 = FRAME_FLAGS_AREA_WIDTH (f);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9518 pixelwidth = CHAR_TO_PIXEL_WIDTH (f, cols);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9519 pixelheight = CHAR_TO_PIXEL_HEIGHT (f, rows);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9520
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9521 f->output_data.w32->win_gravity = NorthWestGravity;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9522 x_wm_set_size_hint (f, (long) 0, 0);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9523
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9524 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9525 RECT rect;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9526
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9527 rect.left = rect.top = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9528 rect.right = pixelwidth;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9529 rect.bottom = pixelheight;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9530
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9531 AdjustWindowRect(&rect, f->output_data.w32->dwStyle,
14351
fb2ce4ebc871 ubackout 1.3 and 1.4
Geoff Voelker <voelker@cs.washington.edu>
parents: 14248
diff changeset
9532 FRAME_EXTERNAL_MENU_BAR (f));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9533
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9534 my_set_window_pos (FRAME_W32_WINDOW (f),
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9535 NULL,
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9536 0, 0,
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9537 rect.right - rect.left,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9538 rect.bottom - rect.top,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9539 SWP_NOZORDER | SWP_NOMOVE | SWP_NOACTIVATE);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9540 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9541
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9542 /* Now, strictly speaking, we can't be sure that this is accurate,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9543 but the window manager will get around to dealing with the size
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9544 change request eventually, and we'll hear how it went when the
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9545 ConfigureNotify event gets here.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9546
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9547 We could just not bother storing any of this information here,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9548 and let the ConfigureNotify event set everything up, but that
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9549 might be kind of confusing to the Lisp code, since size changes
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9550 wouldn't be reported in the frame parameters until some random
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9551 point in the future when the ConfigureNotify event arrives.
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9552
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9553 We pass 1 for DELAY since we can't run Lisp code inside of
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9554 a BLOCK_INPUT. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9555 change_frame_size (f, rows, cols, 0, 1, 0);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9556 PIXEL_WIDTH (f) = pixelwidth;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9557 PIXEL_HEIGHT (f) = pixelheight;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9558
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9559 /* We've set {FRAME,PIXEL}_{WIDTH,HEIGHT} to the values we hope to
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9560 receive in the ConfigureNotify event; if we get what we asked
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9561 for, then the event won't cause the screen to become garbaged, so
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9562 we have to make sure to do it here. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9563 SET_FRAME_GARBAGED (f);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9564
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9565 /* If cursor was outside the new size, mark it as off. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9566 mark_window_cursors_off (XWINDOW (f->root_window));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9567
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9568 /* Clear out any recollection of where the mouse highlighting was,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9569 since it might be in a place that's outside the new frame size.
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9570 Actually checking whether it is outside is a pain in the neck,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9571 so don't try--just let the highlighting be done afresh with new size. */
24827
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
9572 cancel_mouse_face (f);
487fdbc8de0f (cancel_mouse_face): new function. See equiv
Karl Heuer <kwzh@gnu.org>
parents: 24752
diff changeset
9573
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9574 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9575 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9576
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9577 /* Mouse warping. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9578
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9579 void x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y);
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9580
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9581 void
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9582 x_set_mouse_position (f, x, y)
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9583 struct frame *f;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9584 int x, y;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9585 {
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9586 int pix_x, pix_y;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9587
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9588 pix_x = CHAR_TO_PIXEL_COL (f, x) + FONT_WIDTH (f->output_data.w32->font) / 2;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9589 pix_y = CHAR_TO_PIXEL_ROW (f, y) + f->output_data.w32->line_height / 2;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9590
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9591 if (pix_x < 0) pix_x = 0;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9592 if (pix_x > PIXEL_WIDTH (f)) pix_x = PIXEL_WIDTH (f);
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9593
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9594 if (pix_y < 0) pix_y = 0;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9595 if (pix_y > PIXEL_HEIGHT (f)) pix_y = PIXEL_HEIGHT (f);
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9596
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9597 x_set_mouse_pixel_position (f, pix_x, pix_y);
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9598 }
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9599
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9600 void
15616
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9601 x_set_mouse_pixel_position (f, pix_x, pix_y)
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9602 struct frame *f;
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9603 int pix_x, pix_y;
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9604 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9605 RECT rect;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9606 POINT pt;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9607
15616
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9608 BLOCK_INPUT;
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9609
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9610 GetClientRect (FRAME_W32_WINDOW (f), &rect);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9611 pt.x = rect.left + pix_x;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9612 pt.y = rect.top + pix_y;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9613 ClientToScreen (FRAME_W32_WINDOW (f), &pt);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9614
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9615 SetCursorPos (pt.x, pt.y);
15616
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9616
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9617 UNBLOCK_INPUT;
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9618 }
a73836346910 (x_set_mouse_pixel_position): Adjust coords by frame position.
Miles Bader <miles@gnu.org>
parents: 15435
diff changeset
9619
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9620
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9621 /* focus shifting, raising and lowering. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9622
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9623 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9624 x_focus_on_frame (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9625 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9626 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9627 struct w32_display_info *dpyinfo = &one_w32_display_info;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9628
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9629 /* Give input focus to frame. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9630 BLOCK_INPUT;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9631 #if 0
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9632 /* Try not to change its Z-order if possible. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9633 if (x_window_to_frame (dpyinfo, GetForegroundWindow ()))
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9634 my_set_focus (f, FRAME_W32_WINDOW (f));
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9635 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9636 #endif
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
9637 my_set_foreground_window (FRAME_W32_WINDOW (f));
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9638 UNBLOCK_INPUT;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9639 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9640
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9641 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9642 x_unfocus_frame (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9643 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9644 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9645 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9646
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9647 /* Raise frame F. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9648 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9649 x_raise_frame (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9650 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9651 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9652 BLOCK_INPUT;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9653
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9654 /* Strictly speaking, raise-frame should only change the frame's Z
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9655 order, leaving input focus unchanged. This is reasonable behaviour
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9656 on X where the usual policy is point-to-focus. However, this
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9657 behaviour would be very odd on Windows where the usual policy is
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9658 click-to-focus.
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9659
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9660 On X, if the mouse happens to be over the raised frame, it gets
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9661 input focus anyway (so the window with focus will never be
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9662 completely obscured) - if not, then just moving the mouse over it
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9663 is sufficient to give it focus. On Windows, the user must actually
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9664 click on the frame (preferrably the title bar so as not to move
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9665 point), which is more awkward. Also, no other Windows program
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9666 raises a window to the top but leaves another window (possibly now
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9667 completely obscured) with input focus.
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9668
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9669 Because there is a system setting on Windows that allows the user
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9670 to choose the point to focus policy, we make the strict semantics
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9671 optional, but by default we grab focus when raising. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9672
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9673 if (NILP (Vw32_grab_focus_on_raise))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9674 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9675 /* The obvious call to my_set_window_pos doesn't work if Emacs is
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9676 not already the foreground application: the frame is raised
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9677 above all other frames belonging to us, but not above the
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9678 current top window. To achieve that, we have to resort to this
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9679 more cumbersome method. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9680
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9681 HDWP handle = BeginDeferWindowPos (2);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9682 if (handle)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9683 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9684 DeferWindowPos (handle,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9685 FRAME_W32_WINDOW (f),
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9686 HWND_TOP,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9687 0, 0, 0, 0,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9688 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9689
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9690 DeferWindowPos (handle,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9691 GetForegroundWindow (),
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9692 FRAME_W32_WINDOW (f),
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9693 0, 0, 0, 0,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9694 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9695
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9696 EndDeferWindowPos (handle);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9697 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9698 }
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9699 else
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9700 {
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
9701 my_set_foreground_window (FRAME_W32_WINDOW (f));
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9702 }
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9703
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9704 UNBLOCK_INPUT;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9705 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9706
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9707 /* Lower frame F. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9708 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9709 x_lower_frame (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9710 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9711 {
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9712 BLOCK_INPUT;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9713 my_set_window_pos (FRAME_W32_WINDOW (f),
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9714 HWND_BOTTOM,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9715 0, 0, 0, 0,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9716 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9717 UNBLOCK_INPUT;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9718 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9719
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9720 static void
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9721 w32_frame_raise_lower (f, raise_flag)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9722 FRAME_PTR f;
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9723 int raise_flag;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9724 {
35000
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
9725 if (! FRAME_W32_P (f))
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
9726 return;
c048304a388f (x_update_begin):
Andrew Innes <andrewi@gnu.org>
parents: 34869
diff changeset
9727
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9728 if (raise_flag)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9729 x_raise_frame (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9730 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9731 x_lower_frame (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9732 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9733
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9734 /* Change of visibility. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9735
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9736 /* This tries to wait until the frame is really visible.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9737 However, if the window manager asks the user where to position
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9738 the frame, this will return before the user finishes doing that.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9739 The frame will not actually be visible at that time,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9740 but it will become visible later when the window manager
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9741 finishes with it. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9742
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
9743 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9744 x_make_frame_visible (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9745 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9746 {
25236
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9747 Lisp_Object type;
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9748
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9749 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9750
25236
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9751 type = x_icon_type (f);
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9752 if (!NILP (type))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9753 x_bitmap_icon (f, type);
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9754
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9755 if (! FRAME_VISIBLE_P (f))
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9756 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9757 /* We test FRAME_GARBAGED_P here to make sure we don't
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9758 call x_set_offset a second time
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9759 if we get to x_make_frame_visible a second time
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9760 before the window gets really visible. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9761 if (! FRAME_ICONIFIED_P (f)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9762 && ! f->output_data.w32->asked_for_visible)
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9763 x_set_offset (f, f->output_data.w32->left_pos, f->output_data.w32->top_pos, 0);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9764
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9765 f->output_data.w32->asked_for_visible = 1;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9766
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9767 // my_show_window (f, FRAME_W32_WINDOW (f), f->async_iconified ? SW_RESTORE : SW_SHOW);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9768 my_show_window (f, FRAME_W32_WINDOW (f), SW_SHOWNORMAL);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9769 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9770
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9771 /* Synchronize to ensure Emacs knows the frame is visible
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9772 before we do anything else. We do this loop with input not blocked
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9773 so that incoming events are handled. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9774 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9775 Lisp_Object frame;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9776 int count;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9777
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9778 /* This must come after we set COUNT. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9779 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9780
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9781 XSETFRAME (frame, f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9782
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9783 /* Wait until the frame is visible. Process X events until a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9784 MapNotify event has been seen, or until we think we won't get a
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9785 MapNotify at all.. */
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9786 for (count = input_signal_count + 10;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9787 input_signal_count < count && !FRAME_VISIBLE_P (f);)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9788 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9789 /* Force processing of queued events. */
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
9790 /* TODO: x_sync equivalent? */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9791
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9792 /* Machines that do polling rather than SIGIO have been observed
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9793 to go into a busy-wait here. So we'll fake an alarm signal
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9794 to let the handler know that there's something to be read.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9795 We used to raise a real alarm, but it seems that the handler
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9796 isn't always enabled here. This is probably a bug. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9797 if (input_polling_used ())
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9798 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9799 /* It could be confusing if a real alarm arrives while processing
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9800 the fake one. Turn it off and let the handler reset it. */
27631
5fe002cf4b37 (x_make_frame_visible): Replace call to
Andrew Innes <andrewi@gnu.org>
parents: 27514
diff changeset
9801 int old_poll_suppress_count = poll_suppress_count;
5fe002cf4b37 (x_make_frame_visible): Replace call to
Andrew Innes <andrewi@gnu.org>
parents: 27514
diff changeset
9802 poll_suppress_count = 1;
5fe002cf4b37 (x_make_frame_visible): Replace call to
Andrew Innes <andrewi@gnu.org>
parents: 27514
diff changeset
9803 poll_for_input_1 ();
5fe002cf4b37 (x_make_frame_visible): Replace call to
Andrew Innes <andrewi@gnu.org>
parents: 27514
diff changeset
9804 poll_suppress_count = old_poll_suppress_count;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9805 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9806 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9807 FRAME_SAMPLE_VISIBILITY (f);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9808 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9809 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9810
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9811 /* Change from mapped state to withdrawn state. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9812
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9813 /* Make the frame visible (mapped and not iconified). */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9814
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9815 x_make_frame_invisible (f)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9816 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9817 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9818 /* Don't keep the highlight on an invisible frame. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9819 if (FRAME_W32_DISPLAY_INFO (f)->w32_highlight_frame == f)
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9820 FRAME_W32_DISPLAY_INFO (f)->w32_highlight_frame = 0;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9821
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9822 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9823
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9824 my_show_window (f, FRAME_W32_WINDOW (f), SW_HIDE);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9825
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9826 /* We can't distinguish this from iconification
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9827 just by the event that we get from the server.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9828 So we can't win using the usual strategy of letting
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9829 FRAME_SAMPLE_VISIBILITY set this. So do it by hand,
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9830 and synchronize with the server to make sure we agree. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9831 f->visible = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9832 FRAME_ICONIFIED_P (f) = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9833 f->async_visible = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9834 f->async_iconified = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9835
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9836 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9837 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9838
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9839 /* Change window state from mapped to iconified. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9840
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9841 void
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
9842 x_iconify_frame (f)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9843 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9844 {
25236
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9845 Lisp_Object type;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9846
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9847 /* Don't keep the highlight on an invisible frame. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9848 if (FRAME_W32_DISPLAY_INFO (f)->w32_highlight_frame == f)
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9849 FRAME_W32_DISPLAY_INFO (f)->w32_highlight_frame = 0;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9850
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9851 if (f->async_iconified)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9852 return;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9853
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9854 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9855
25236
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9856 type = x_icon_type (f);
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9857 if (!NILP (type))
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9858 x_bitmap_icon (f, type);
ea748fe6dee4 (x_bitmap_icon): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents: 24863
diff changeset
9859
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9860 /* Simulate the user minimizing the frame. */
23951
ef1cba882819 (x_iconify_frame): Wait for frame to be iconified; do
Andrew Innes <andrewi@gnu.org>
parents: 23806
diff changeset
9861 SendMessage (FRAME_W32_WINDOW (f), WM_SYSCOMMAND, SC_MINIMIZE, 0);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9862
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9863 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9864 }
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9865
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9866
34545
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9867 /* Free X resources of frame F. */
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9868
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9869 void
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9870 x_free_frame_resources (f)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9871 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9872 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9873 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9874
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9875 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9876
34545
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9877 if (FRAME_W32_WINDOW (f))
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9878 my_destroy_window (f, FRAME_W32_WINDOW (f));
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9879
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9880 free_frame_menubar (f);
34545
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9881
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9882 unload_color (f, f->output_data.x->foreground_pixel);
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9883 unload_color (f, f->output_data.x->background_pixel);
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9884 unload_color (f, f->output_data.w32->cursor_pixel);
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9885 unload_color (f, f->output_data.w32->cursor_foreground_pixel);
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9886 unload_color (f, f->output_data.w32->border_pixel);
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9887 unload_color (f, f->output_data.w32->mouse_pixel);
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9888 if (f->output_data.w32->white_relief.allocated_p)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9889 unload_color (f, f->output_data.w32->white_relief.pixel);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9890 if (f->output_data.w32->black_relief.allocated_p)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9891 unload_color (f, f->output_data.w32->black_relief.pixel);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9892
34545
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9893 if (FRAME_FACE_CACHE (f))
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9894 free_frame_faces (f);
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9895
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9896 xfree (f->output_data.w32);
34545
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9897 f->output_data.w32 = NULL;
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9898
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9899 if (f == dpyinfo->w32_focus_frame)
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9900 dpyinfo->w32_focus_frame = 0;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9901 if (f == dpyinfo->w32_focus_event_frame)
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9902 dpyinfo->w32_focus_event_frame = 0;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9903 if (f == dpyinfo->w32_highlight_frame)
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9904 dpyinfo->w32_highlight_frame = 0;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9905
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9906 if (f == dpyinfo->mouse_face_mouse_frame)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9907 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9908 dpyinfo->mouse_face_beg_row
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9909 = dpyinfo->mouse_face_beg_col = -1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9910 dpyinfo->mouse_face_end_row
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9911 = dpyinfo->mouse_face_end_col = -1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9912 dpyinfo->mouse_face_window = Qnil;
34545
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9913 dpyinfo->mouse_face_deferred_gc = 0;
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9914 dpyinfo->mouse_face_mouse_frame = 0;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9915 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9916
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9917 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9918 }
34545
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9919
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9920
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9921 /* Destroy the window of frame F. */
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9922
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9923 x_destroy_window (f)
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9924 struct frame *f;
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9925 {
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9926 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9927
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9928 x_free_frame_resources (f);
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9929
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9930 dpyinfo->reference_count--;
0322014fcf27 (clear_mouse_face): Treat tip_frame as a Lisp_Object.
Andrew Innes <andrewi@gnu.org>
parents: 34229
diff changeset
9931 }
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9932
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9933
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9934 /* Setting window manager hints. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9935
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9936 /* Set the normal size hints for the window manager, for frame F.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9937 FLAGS is the flags word to use--or 0 meaning preserve the flags
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9938 that the window now has.
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9939 If USER_POSITION is nonzero, we set the USPosition
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9940 flag (this is useful when FLAGS is 0). */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
9941 void
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9942 x_wm_set_size_hint (f, flags, user_position)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9943 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9944 long flags;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9945 int user_position;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9946 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9947 Window window = FRAME_W32_WINDOW (f);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9948
14351
fb2ce4ebc871 ubackout 1.3 and 1.4
Geoff Voelker <voelker@cs.washington.edu>
parents: 14248
diff changeset
9949 enter_crit ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9950
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9951 SetWindowLong (window, WND_FONTWIDTH_INDEX, FONT_WIDTH (f->output_data.w32->font));
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9952 SetWindowLong (window, WND_LINEHEIGHT_INDEX, f->output_data.w32->line_height);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9953 SetWindowLong (window, WND_BORDER_INDEX, f->output_data.w32->internal_border_width);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
9954 SetWindowLong (window, WND_SCROLLBAR_INDEX, f->output_data.w32->vertical_scroll_bar_extra);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9955
14351
fb2ce4ebc871 ubackout 1.3 and 1.4
Geoff Voelker <voelker@cs.washington.edu>
parents: 14248
diff changeset
9956 leave_crit ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9957 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9958
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9959 /* Window manager things */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9960 x_wm_set_icon_position (f, icon_x, icon_y)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9961 struct frame *f;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9962 int icon_x, icon_y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9963 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9964 #if 0
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
9965 Window window = FRAME_W32_WINDOW (f);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9966
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9967 f->display.x->wm_hints.flags |= IconPositionHint;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9968 f->display.x->wm_hints.icon_x = icon_x;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9969 f->display.x->wm_hints.icon_y = icon_y;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9970
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9971 XSetWMHints (FRAME_X_DISPLAY (f), window, &f->display.x->wm_hints);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9972 #endif
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9973 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
9974
35384
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9975
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9976 /***********************************************************************
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9977 Fonts
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9978 ***********************************************************************/
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9979
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9980 /* The following functions are listed here to help diff stay in step
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9981 with xterm.c. See w32fns.c for definitions.
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9982
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9983 x_get_font_info (f, font_idx)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9984 x_list_fonts (f, pattern, size, maxnames)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9985
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9986 */
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9987
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9988 #if GLYPH_DEBUG
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9989
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9990 /* Check that FONT is valid on frame F. It is if it can be found in F's
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9991 font table. */
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9992
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9993 static void
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9994 x_check_font (f, font)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9995 struct frame *f;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9996 XFontStruct *font;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9997 {
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9998 int i;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
9999 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10000
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10001 xassert (font != NULL);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10002
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10003 for (i = 0; i < dpyinfo->n_fonts; i++)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10004 if (dpyinfo->font_table[i].name
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10005 && font == dpyinfo->font_table[i].font)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10006 break;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10007
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10008 xassert (i < dpyinfo->n_fonts);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10009 }
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10010
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10011 #endif /* GLYPH_DEBUG != 0 */
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10012
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10013 /* Set *W to the minimum width, *H to the minimum font height of FONT.
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10014 Note: There are (broken) X fonts out there with invalid XFontStruct
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10015 min_bounds contents. For example, handa@etl.go.jp reports that
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10016 "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1" fonts
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10017 have font->min_bounds.width == 0. */
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10018
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10019 static INLINE void
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10020 x_font_min_bounds (font, w, h)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10021 XFontStruct *font;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10022 int *w, *h;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10023 {
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10024 /*
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10025 * TODO: Windows does not appear to offer min bound, only
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10026 * average and maximum width, and maximum height.
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10027 */
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10028 *h = FONT_HEIGHT (font);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10029 *w = FONT_WIDTH (font);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10030 }
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10031
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10032
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10033 /* Compute the smallest character width and smallest font height over
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10034 all fonts available on frame F. Set the members smallest_char_width
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10035 and smallest_font_height in F's x_display_info structure to
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10036 the values computed. Value is non-zero if smallest_font_height or
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10037 smallest_char_width become smaller than they were before. */
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10038
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10039 int
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10040 x_compute_min_glyph_bounds (f)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10041 struct frame *f;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10042 {
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10043 int i;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10044 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10045 XFontStruct *font;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10046 int old_width = dpyinfo->smallest_char_width;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10047 int old_height = dpyinfo->smallest_font_height;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10048
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10049 dpyinfo->smallest_font_height = 100000;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10050 dpyinfo->smallest_char_width = 100000;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10051
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10052 for (i = 0; i < dpyinfo->n_fonts; ++i)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10053 if (dpyinfo->font_table[i].name)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10054 {
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10055 struct font_info *fontp = dpyinfo->font_table + i;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10056 int w, h;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10057
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10058 font = (XFontStruct *) fontp->font;
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10059 xassert (font != (XFontStruct *) ~0);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10060 x_font_min_bounds (font, &w, &h);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10061
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10062 dpyinfo->smallest_font_height = min (dpyinfo->smallest_font_height, h);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10063 dpyinfo->smallest_char_width = min (dpyinfo->smallest_char_width, w);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10064 }
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10065
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10066 xassert (dpyinfo->smallest_char_width > 0
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10067 && dpyinfo->smallest_font_height > 0);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10068
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10069 return (dpyinfo->n_fonts == 1
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10070 || dpyinfo->smallest_char_width < old_width
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10071 || dpyinfo->smallest_font_height < old_height);
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10072 }
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10073
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10074 /* The following functions are listed here to help diff stay in step
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10075 with xterm.c. See w32fns.c for definitions.
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10076
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10077 x_load_font (f, fontname, size)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10078 x_query_font (f, fontname)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10079 x_find_ccl_program (fontp)
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10080
e50a7f9ce65e (x_produce_stretch_glyph): Only use Qspace when GLYPH_DEBUG is defined.
Jason Rumney <jasonr@gnu.org>
parents: 35287
diff changeset
10081 */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10082
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10083 /***********************************************************************
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10084 Initialization
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10085 ***********************************************************************/
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10086
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10087 static int w32_initialized = 0;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10088
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10089 void
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10090 w32_initialize_display_info (display_name)
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10091 Lisp_Object display_name;
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10092 {
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10093 struct w32_display_info *dpyinfo = &one_w32_display_info;
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10094
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10095 bzero (dpyinfo, sizeof (*dpyinfo));
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10096
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10097 /* Put it on w32_display_name_list. */
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10098 w32_display_name_list = Fcons (Fcons (display_name, Qnil),
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10099 w32_display_name_list);
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10100 dpyinfo->name_list_element = XCAR (w32_display_name_list);
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10101
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10102 dpyinfo->w32_id_name
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10103 = (char *) xmalloc (XSTRING (Vinvocation_name)->size
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10104 + XSTRING (Vsystem_name)->size
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10105 + 2);
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10106 sprintf (dpyinfo->w32_id_name, "%s@%s",
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10107 XSTRING (Vinvocation_name)->data, XSTRING (Vsystem_name)->data);
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10108
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10109 /* Default Console mode values - overridden when running in GUI mode
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10110 with values obtained from system metrics. */
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10111 dpyinfo->resx = 1;
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10112 dpyinfo->resy = 1;
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10113 dpyinfo->height_in = 1;
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10114 dpyinfo->width_in = 1;
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10115 dpyinfo->n_planes = 1;
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10116 dpyinfo->n_cbits = 4;
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10117 dpyinfo->n_fonts = 0;
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10118 dpyinfo->smallest_font_height = 1;
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10119 dpyinfo->smallest_char_width = 1;
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10120
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10121 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10122 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10123 dpyinfo->mouse_face_face_id = DEFAULT_FACE_ID;
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10124 dpyinfo->mouse_face_window = Qnil;
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10125
33097
84590a646acc (x_produce_glyphs): Handle composite characters.
Jason Rumney <jasonr@gnu.org>
parents: 33037
diff changeset
10126 /* TODO: dpyinfo->gray */
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10127
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10128 }
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10129
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10130 struct w32_display_info *
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10131 w32_term_init (display_name, xrm_option, resource_name)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10132 Lisp_Object display_name;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10133 char *xrm_option;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10134 char *resource_name;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10135 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10136 struct w32_display_info *dpyinfo;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10137 HDC hdc;
14351
fb2ce4ebc871 ubackout 1.3 and 1.4
Geoff Voelker <voelker@cs.washington.edu>
parents: 14248
diff changeset
10138
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10139 BLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10140
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10141 if (!w32_initialized)
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10142 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10143 w32_initialize ();
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10144 w32_initialized = 1;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10145 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10146
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10147 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10148 int argc = 0;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10149 char *argv[3];
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10150
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10151 argv[0] = "";
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10152 argc = 1;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10153 if (xrm_option)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10154 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10155 argv[argc++] = "-xrm";
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10156 argv[argc++] = xrm_option;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10157 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10158 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10159
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10160 w32_initialize_display_info (display_name);
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10161
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10162 dpyinfo = &one_w32_display_info;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10163
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10164 hdc = GetDC (GetDesktopWindow ());
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10165
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10166 dpyinfo->height = GetDeviceCaps (hdc, VERTRES);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10167 dpyinfo->width = GetDeviceCaps (hdc, HORZRES);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10168 dpyinfo->root_window = GetDesktopWindow ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10169 dpyinfo->n_planes = GetDeviceCaps (hdc, PLANES);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10170 dpyinfo->n_cbits = GetDeviceCaps (hdc, BITSPIXEL);
27514
9625ad0c0f52 (w32_term_init): Swap resx and height_in, resy and
Jason Rumney <jasonr@gnu.org>
parents: 27406
diff changeset
10171 dpyinfo->resx = GetDeviceCaps (hdc, LOGPIXELSX);
9625ad0c0f52 (w32_term_init): Swap resx and height_in, resy and
Jason Rumney <jasonr@gnu.org>
parents: 27406
diff changeset
10172 dpyinfo->resy = GetDeviceCaps (hdc, LOGPIXELSY);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10173 dpyinfo->has_palette = GetDeviceCaps (hdc, RASTERCAPS) & RC_PALETTE;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10174 dpyinfo->image_cache = make_image_cache ();
27514
9625ad0c0f52 (w32_term_init): Swap resx and height_in, resy and
Jason Rumney <jasonr@gnu.org>
parents: 27406
diff changeset
10175 dpyinfo->height_in = dpyinfo->height / dpyinfo->resx;
9625ad0c0f52 (w32_term_init): Swap resx and height_in, resy and
Jason Rumney <jasonr@gnu.org>
parents: 27406
diff changeset
10176 dpyinfo->width_in = dpyinfo->width / dpyinfo->resy;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10177 ReleaseDC (GetDesktopWindow (), hdc);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10178
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10179 /* initialise palette with white and black */
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10180 {
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10181 COLORREF color;
27514
9625ad0c0f52 (w32_term_init): Swap resx and height_in, resy and
Jason Rumney <jasonr@gnu.org>
parents: 27406
diff changeset
10182 w32_defined_color (0, "white", &color, 1);
9625ad0c0f52 (w32_term_init): Swap resx and height_in, resy and
Jason Rumney <jasonr@gnu.org>
parents: 27406
diff changeset
10183 w32_defined_color (0, "black", &color, 1);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10184 }
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10185
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10186 /* Create Row Bitmaps and store them for later use. */
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10187 left_bmp = CreateBitmap (left_width, left_height, 1, 1, left_bits);
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10188 ov_bmp = CreateBitmap (ov_width, ov_height, 1, 1, ov_bits);
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10189 right_bmp = CreateBitmap (right_width, right_height, 1, 1, right_bits);
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10190 continued_bmp = CreateBitmap (continued_width, continued_height, 1,
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10191 1, continued_bits);
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10192 continuation_bmp = CreateBitmap (continuation_width, continuation_height,
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10193 1, 1, continuation_bits);
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10194 zv_bmp = CreateBitmap (zv_width, zv_height, 1, 1, zv_bits);
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10195
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10196 #ifndef F_SETOWN_BUG
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10197 #ifdef F_SETOWN
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10198 #ifdef F_SETOWN_SOCK_NEG
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10199 /* stdin is a socket here */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10200 fcntl (connection, F_SETOWN, -getpid ());
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10201 #else /* ! defined (F_SETOWN_SOCK_NEG) */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10202 fcntl (connection, F_SETOWN, getpid ());
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10203 #endif /* ! defined (F_SETOWN_SOCK_NEG) */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10204 #endif /* ! defined (F_SETOWN) */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10205 #endif /* F_SETOWN_BUG */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10206
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10207 #ifdef SIGIO
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10208 if (interrupt_input)
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10209 init_sigio (connection);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10210 #endif /* ! defined (SIGIO) */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10211
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10212 UNBLOCK_INPUT;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10213
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10214 return dpyinfo;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10215 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10216
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10217 /* Get rid of display DPYINFO, assuming all frames are already gone. */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10218
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10219 void
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10220 x_delete_display (dpyinfo)
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10221 struct w32_display_info *dpyinfo;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10222 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10223 /* Discard this display from w32_display_name_list and w32_display_list.
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10224 We can't use Fdelq because that can quit. */
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10225 if (! NILP (w32_display_name_list)
25646
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
10226 && EQ (XCAR (w32_display_name_list), dpyinfo->name_list_element))
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
10227 w32_display_name_list = XCDR (w32_display_name_list);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10228 else
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10229 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10230 Lisp_Object tail;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10231
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10232 tail = w32_display_name_list;
25646
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
10233 while (CONSP (tail) && CONSP (XCDR (tail)))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10234 {
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10235 if (EQ (XCAR (XCDR (tail)), dpyinfo->name_list_element))
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10236 {
25646
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
10237 XCDR (tail) = XCDR (XCDR (tail));
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10238 break;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10239 }
25646
9154af188477 Use XCAR and XCDR instead of explicit member references.
Ken Raeburn <raeburn@raeburn.org>
parents: 25236
diff changeset
10240 tail = XCDR (tail);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10241 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10242 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10243
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10244 /* free palette table */
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10245 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10246 struct w32_palette_entry * plist;
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10247
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10248 plist = dpyinfo->color_list;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10249 while (plist)
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10250 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10251 struct w32_palette_entry * pentry = plist;
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10252 plist = plist->next;
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
10253 xfree (pentry);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10254 }
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10255 dpyinfo->color_list = NULL;
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10256 if (dpyinfo->palette)
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10257 DeleteObject(dpyinfo->palette);
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10258 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10259 xfree (dpyinfo->font_table);
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10260 xfree (dpyinfo->w32_id_name);
27889
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10261
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10262 /* Destroy row bitmaps. */
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10263 DeleteObject (left_bmp);
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10264 DeleteObject (ov_bmp);
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10265 DeleteObject (right_bmp);
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10266 DeleteObject (continued_bmp);
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10267 DeleteObject (continuation_bmp);
51d0b4b8fc6a (w32_display_info_for_display): Remove unused function.
Jason Rumney <jasonr@gnu.org>
parents: 27631
diff changeset
10268 DeleteObject (zv_bmp);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10269 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10270
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10271 /* Set up use of W32. */
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10272
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10273 DWORD w32_msg_worker ();
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10274
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10275 void
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10276 x_flush (struct frame * f)
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10277 { /* Nothing to do */ }
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10278
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10279 static struct redisplay_interface w32_redisplay_interface =
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10280 {
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10281 x_produce_glyphs,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10282 x_write_glyphs,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10283 x_insert_glyphs,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10284 x_clear_end_of_line,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10285 x_scroll_run,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10286 x_after_update_window_line,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10287 x_update_window_begin,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10288 x_update_window_end,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10289 w32_cursor_to,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10290 x_flush,
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
10291 x_clear_mouse_face,
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10292 x_get_glyph_overhangs,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10293 x_fix_overlapping_area
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10294 };
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10295
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10296 void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10297 w32_initialize ()
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10298 {
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10299 rif = &w32_redisplay_interface;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10300
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
10301 /* MSVC does not type K&R functions with no arguments correctly, and
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
10302 so we must explicitly cast them. */
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10303 clear_frame_hook = (void (*)(void)) x_clear_frame;
21831
6b659713b90b Forward declare hooks with full function prototypes.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21740
diff changeset
10304 ring_bell_hook = (void (*)(void)) w32_ring_bell;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10305 update_begin_hook = x_update_begin;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10306 update_end_hook = x_update_end;
35449
98d65e364070 (w32_ring_bell): Only support visible bell on w32
Andrew Innes <andrewi@gnu.org>
parents: 35384
diff changeset
10307
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10308 read_socket_hook = w32_read_socket;
35449
98d65e364070 (w32_ring_bell): Only support visible bell on w32
Andrew Innes <andrewi@gnu.org>
parents: 35384
diff changeset
10309
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10310 frame_up_to_date_hook = w32_frame_up_to_date;
35449
98d65e364070 (w32_ring_bell): Only support visible bell on w32
Andrew Innes <andrewi@gnu.org>
parents: 35384
diff changeset
10311
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10312 mouse_position_hook = w32_mouse_position;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10313 frame_rehighlight_hook = w32_frame_rehighlight;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10314 frame_raise_lower_hook = w32_frame_raise_lower;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10315 set_vertical_scroll_bar_hook = w32_set_vertical_scroll_bar;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10316 condemn_scroll_bars_hook = w32_condemn_scroll_bars;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10317 redeem_scroll_bar_hook = w32_redeem_scroll_bar;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10318 judge_scroll_bars_hook = w32_judge_scroll_bars;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10319 estimate_mode_line_height_hook = x_estimate_mode_line_height;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10320
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10321 scroll_region_ok = 1; /* we'll scroll partial frames */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10322 char_ins_del_ok = 0; /* just as fast to write the line */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10323 line_ins_del_ok = 1; /* we'll just blt 'em */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10324 fast_clear_end_of_line = 1; /* X does this well */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10325 memory_below_frame = 0; /* we don't remember what scrolls
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10326 off the bottom */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10327 baud_rate = 19200;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10328
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10329 last_tool_bar_item = -1;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10330 any_help_event_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10331
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10332 /* Initialize input mode: interrupt_input off, no flow control, allow
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10333 8 bit character input, standard quit char. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10334 Fset_input_mode (Qnil, Qnil, make_number (2), Qnil);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10335
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10336 /* Create the window thread - it will terminate itself or when the app terminates */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10337
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10338 init_crit ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10339
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10340 dwMainThreadId = GetCurrentThreadId ();
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10341 DuplicateHandle (GetCurrentProcess (), GetCurrentThread (),
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10342 GetCurrentProcess (), &hMainThread, 0, TRUE, DUPLICATE_SAME_ACCESS);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10343
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10344 /* Wait for thread to start */
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10345
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10346 {
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10347 MSG msg;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10348
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10349 PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10350
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
10351 hWindowsThread = CreateThread (NULL, 0,
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10352 (LPTHREAD_START_ROUTINE) w32_msg_worker,
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
10353 0, 0, &dwWindowsThreadId);
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10354
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10355 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10356 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10357
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10358 /* It is desirable that mainThread should have the same notion of
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
10359 focus window and active window as windowsThread. Unfortunately, the
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10360 following call to AttachThreadInput, which should do precisely what
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10361 we need, causes major problems when Emacs is linked as a console
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10362 program. Unfortunately, we have good reasons for doing that, so
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
10363 instead we need to send messages to windowsThread to make some API
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10364 calls for us (ones that affect, or depend on, the active/focus
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10365 window state. */
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10366 #ifdef ATTACH_THREADS
16884
36babc489b0c Change all uses of win95, winnt, and win32
Geoff Voelker <voelker@cs.washington.edu>
parents: 16588
diff changeset
10367 AttachThreadInput (dwMainThreadId, dwWindowsThreadId, TRUE);
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10368 #endif
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10369
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10370 /* Dynamically link to optional system components. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10371 {
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10372 HANDLE user_lib = LoadLibrary ("user32.dll");
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10373
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10374 #define LOAD_PROC(fn) pfn##fn = (void *) GetProcAddress (user_lib, #fn)
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10375
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10376 /* New proportional scroll bar functions. */
32022
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
10377 LOAD_PROC (SetScrollInfo);
1f26caa05cd7 (w32_char_font_type, w32_encode_char, x_produce_glyphs): Distinguish
Jason Rumney <jasonr@gnu.org>
parents: 31624
diff changeset
10378 LOAD_PROC (GetScrollInfo);
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10379
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10380 #undef LOAD_PROC
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10381
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10382 FreeLibrary (user_lib);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10383
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10384 /* If using proportional scroll bars, ensure handle is at least 5 pixels;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10385 otherwise use the fixed height. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10386 vertical_scroll_bar_min_handle = (pfnSetScrollInfo != NULL) ? 5 :
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10387 GetSystemMetrics (SM_CYVTHUMB);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10388
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10389 /* For either kind of scroll bar, take account of the arrows; these
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10390 effectively form the border of the main scroll bar range. */
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10391 vertical_scroll_bar_top_border = vertical_scroll_bar_bottom_border
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10392 = GetSystemMetrics (SM_CYVSCROLL);
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10393 }
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10394 }
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10395
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10396 void
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10397 syms_of_w32term ()
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10398 {
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10399 staticpro (&w32_display_name_list);
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10400 w32_display_name_list = Qnil;
13434
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10401
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10402 staticpro (&last_mouse_scroll_bar);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10403 last_mouse_scroll_bar = Qnil;
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10404
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10405 staticpro (&Qvendor_specific_keysyms);
53ba95a88cf2 Initial revision
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff changeset
10406 Qvendor_specific_keysyms = intern ("vendor-specific-keysyms");
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10407
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10408 DEFVAR_INT ("w32-num-mouse-buttons",
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10409 &Vw32_num_mouse_buttons,
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10410 "Number of physical mouse buttons.");
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10411 Vw32_num_mouse_buttons = Qnil;
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10412
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10413 DEFVAR_LISP ("w32-swap-mouse-buttons",
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10414 &Vw32_swap_mouse_buttons,
15151
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10415 "Swap the mapping of middle and right mouse buttons.\n\
ed6ddfc0d954 (Vwindow_system): Declared.
Geoff Voelker <voelker@cs.washington.edu>
parents: 15035
diff changeset
10416 When nil, middle button is mouse-2 and right button is mouse-3.");
16588
481b7874a1e9 Change identifiers of the form win32* to w32*.
Geoff Voelker <voelker@cs.washington.edu>
parents: 16326
diff changeset
10417 Vw32_swap_mouse_buttons = Qnil;
19713
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10418
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10419 DEFVAR_LISP ("w32-grab-focus-on-raise",
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10420 &Vw32_grab_focus_on_raise,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10421 "Raised frame grabs input focus.\n\
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10422 When t, `raise-frame' grabs input focus as well. This fits well\n\
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10423 with the normal Windows click-to-focus policy, but might not be\n\
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10424 desirable when using a point-to-focus policy.");
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10425 Vw32_grab_focus_on_raise = Qt;
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10426
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10427 DEFVAR_LISP ("w32-capslock-is-shiftlock",
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10428 &Vw32_capslock_is_shiftlock,
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10429 "Apply CapsLock state to non character input keys.\n\
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10430 When nil, CapsLock only affects normal character input keys.");
043ccce224fb (SIF_*): Win95 macros defined for NT.
Geoff Voelker <voelker@cs.washington.edu>
parents: 18877
diff changeset
10431 Vw32_capslock_is_shiftlock = Qnil;
21614
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
10432
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
10433 DEFVAR_LISP ("w32-recognize-altgr",
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
10434 &Vw32_recognize_altgr,
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
10435 "Recognize right-alt and left-ctrl as AltGr.\n\
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
10436 When nil, the right-alt and left-ctrl key combination is\n\
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
10437 interpreted normally.");
2624d8dcc73f (Vw32_recognize_altgr): New variable.
Geoff Voelker <voelker@cs.washington.edu>
parents: 21456
diff changeset
10438 Vw32_recognize_altgr = Qt;
23638
e6fb9ffee4f4 (dumpglyphs): Use FRAME_FONT for w32_fill_area.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23510
diff changeset
10439
23639
516fc58a7b7b (w32_enable_unicode_output): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 23638
diff changeset
10440 DEFVAR_BOOL ("w32-enable-unicode-output",
516fc58a7b7b (w32_enable_unicode_output): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 23638
diff changeset
10441 &w32_enable_unicode_output,
516fc58a7b7b (w32_enable_unicode_output): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 23638
diff changeset
10442 "Enable the use of Unicode for text output if non-nil.\n\
23507
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
10443 Unicode output may prevent some third party applications for displaying\n\
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
10444 Far-East Languages on Windows 95/98 from working properly.\n\
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
10445 NT uses Unicode internally anyway, so this flag will probably have no\n\
8a448630a9b5 Include fontset.h. Define codepage macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 22059
diff changeset
10446 affect on NT machines.");
23639
516fc58a7b7b (w32_enable_unicode_output): Rename from
Geoff Voelker <voelker@cs.washington.edu>
parents: 23638
diff changeset
10447 w32_enable_unicode_output = 1;
24131
34f6ec762e5e Remove codepage macros. Remove redundant BIG5 macros.
Geoff Voelker <voelker@cs.washington.edu>
parents: 23951
diff changeset
10448
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
10449 help_echo = Qnil;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10450 staticpro (&help_echo);
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
10451 help_echo_object = Qnil;
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
10452 staticpro (&help_echo_object);
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
10453 help_echo_window = Qnil;
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
10454 staticpro (&help_echo_window);
30240
2c2a7ebd2c15 (help_echo_object, help_echo_pos): New variables.
Jason Rumney <jasonr@gnu.org>
parents: 30199
diff changeset
10455 previous_help_echo = Qnil;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10456 staticpro (&previous_help_echo);
30988
a69a2ac4345b (help_echo_window): New variable.
Jason Rumney <jasonr@gnu.org>
parents: 30730
diff changeset
10457 help_echo_pos = -1;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10458
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10459 DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p,
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10460 "*Non-nil means draw block cursor as wide as the glyph under it.\n\
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10461 For example, if a block cursor is over a tab, it will be drawn as\n\
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10462 wide as that tab on the display.");
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10463 x_stretch_cursor_p = 0;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10464
34869
1d671133e618 (syms_of_xterm): DEFVAR_LISP x-toolkit-scroll-bars
Gerd Moellmann <gerd@gnu.org>
parents: 34823
diff changeset
10465 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars,
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10466 "If not nil, Emacs uses toolkit scroll bars.");
34869
1d671133e618 (syms_of_xterm): DEFVAR_LISP x-toolkit-scroll-bars
Gerd Moellmann <gerd@gnu.org>
parents: 34823
diff changeset
10467 Vx_toolkit_scroll_bars = Qt;
27402
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10468
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10469 staticpro (&last_mouse_motion_frame);
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10470 last_mouse_motion_frame = Qnil;
044fe520ab6e Complete rewrite based on xterm.c.
Jason Rumney <jasonr@gnu.org>
parents: 26088
diff changeset
10471 }