annotate src/redisplay-msw.c @ 422:95016f13131a r21-2-19

Import from CVS: tag r21-2-19
author cvs
date Mon, 13 Aug 2007 11:25:01 +0200
parents e804706bfb8c
children 11054d720c21
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1 /* mswindows output and frame manipulation routines.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
3 Copyright (C) 1994 Lucid, Inc.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
4 Copyright (C) 1995 Sun Microsystems, Inc.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
5
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
6 This file is part of XEmacs.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
7
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
8 XEmacs is free software; you can redistribute it and/or modify it
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
11 later version.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
12
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
16 for more details.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
17
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
19 along with XEmacs; see the file COPYING. If not, write to
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
21 Boston, MA 02111-1307, USA. */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
22
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
23 /* Synched up with: Not in FSF. */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
24
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
25 /* Authorship:
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
26
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
27 Chuck Thompson
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
28 Lots of work done by Ben Wing for Mule
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
29 Partially rewritten for mswindows by Jonathan Harris, November 1997 for 21.0.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
30 */
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
31
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
32 #include <config.h>
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
33 #include "lisp.h"
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
34
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
35 #include "console-msw.h"
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
36 #include "objects-msw.h"
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
37
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
38 #include "buffer.h"
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
39 #include "debug.h"
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
40 #include "events.h"
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
41 #include "faces.h"
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
42 #include "frame.h"
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
43 #include "glyphs-msw.h"
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
44 #include "gutter.h"
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
45 #include "redisplay.h"
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
46 #include "sysdep.h"
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
47 #include "window.h"
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
48
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
49 #include "windows.h"
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
50 #ifdef MULE
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
51 #include "mule-ccl.h"
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
52 #include "mule-charset.h"
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
53 #endif
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
54
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
55 #define MSWINDOWS_EOL_CURSOR_WIDTH 5
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
56
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
57 /*
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 294
diff changeset
58 * Random forward declarations
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
59 */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
60 static void mswindows_update_dc (HDC hdc, Lisp_Object font, Lisp_Object fg,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
61 Lisp_Object bg, Lisp_Object bg_pmap);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
62 static void mswindows_output_vertical_divider (struct window *w, int clear);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
63 static void mswindows_redraw_exposed_windows (Lisp_Object window, int x,
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
64 int y, int width, int height);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
65 static void mswindows_output_dibitmap (struct frame *f,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
66 struct Lisp_Image_Instance *p,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
67 int x, int y,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
68 int clip_x, int clip_y,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
69 int clip_width, int clip_height,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
70 int width, int height,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
71 int pixmap_offset,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
72 int offset_bitmap);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
73 static void mswindows_output_pixmap (struct window *w, struct display_line *dl,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
74 Lisp_Object image_instance, int xpos,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
75 int xoffset, int start_pixpos, int width,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
76 face_index findex, int cursor_start,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
77 int cursor_width, int cursor_height,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
78 int offset_bitmap);
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
79 void bevel_modeline (struct window *w, struct display_line *dl);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
80
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
81 typedef struct textual_run
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
82 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
83 Lisp_Object charset;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
84 unsigned char *ptr;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
85 int len;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
86 int dimension;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
87 } textual_run;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
88
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
89 /* Separate out the text in DYN into a series of textual runs of a
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
90 particular charset. Also convert the characters as necessary into
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
91 the format needed by XDrawImageString(), XDrawImageString16(), et
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
92 al. (This means converting to one or two byte format, possibly
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
93 tweaking the high bits, and possibly running a CCL program.) You
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
94 must pre-allocate the space used and pass it in. (This is done so
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
95 you can alloca() the space.) You need to allocate (2 * len) bytes
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
96 of TEXT_STORAGE and (len * sizeof (textual_run)) bytes of
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
97 RUN_STORAGE, where LEN is the length of the dynarr.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
98
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
99 Returns the number of runs actually used. */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
100
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
101 static int
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
102 separate_textual_runs (unsigned char *text_storage,
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
103 textual_run *run_storage,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
104 CONST Emchar *str, Charcount len)
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
105 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
106 Lisp_Object prev_charset = Qunbound; /* not Qnil because that is a
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
107 possible valid charset when
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
108 MULE is not defined */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
109 int runs_so_far = 0;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
110 int i;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
111 #ifdef MULE
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
112 struct ccl_program char_converter;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
113 int need_ccl_conversion = 0;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
114 #endif
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
115
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
116 for (i = 0; i < len; i++)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
117 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
118 Emchar ch = str[i];
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
119 Lisp_Object charset;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
120 int byte1, byte2;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
121 int dimension;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
122 int graphic;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
123
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
124 BREAKUP_CHAR (ch, charset, byte1, byte2);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
125 dimension = XCHARSET_DIMENSION (charset);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
126 graphic = XCHARSET_GRAPHIC (charset);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
127
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
128 if (!EQ (charset, prev_charset))
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
129 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
130 run_storage[runs_so_far].ptr = text_storage;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
131 run_storage[runs_so_far].charset = charset;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
132 run_storage[runs_so_far].dimension = dimension;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
133
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
134 if (runs_so_far)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
135 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
136 run_storage[runs_so_far - 1].len =
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
137 text_storage - run_storage[runs_so_far - 1].ptr;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
138 if (run_storage[runs_so_far - 1].dimension == 2)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
139 run_storage[runs_so_far - 1].len >>= 1;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
140 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
141 runs_so_far++;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
142 prev_charset = charset;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
143 #ifdef MULE
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
144 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
145 Lisp_Object ccl_prog = XCHARSET_CCL_PROGRAM (charset);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
146 need_ccl_conversion = !NILP (ccl_prog);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
147 if (need_ccl_conversion)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
148 setup_ccl_program (&char_converter, ccl_prog);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
149 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
150 #endif
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
151 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
152
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
153 if (graphic == 0)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
154 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
155 byte1 &= 0x7F;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
156 byte2 &= 0x7F;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
157 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
158 else if (graphic == 1)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
159 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
160 byte1 |= 0x80;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
161 byte2 |= 0x80;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
162 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
163 #ifdef MULE
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
164 if (need_ccl_conversion)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
165 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
166 char_converter.reg[0] = XCHARSET_ID (charset);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
167 char_converter.reg[1] = byte1;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
168 char_converter.reg[2] = byte2;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
169 char_converter.ic = 0; /* start at beginning each time */
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 412
diff changeset
170 ccl_driver (&char_converter, 0, 0, 0, 0, CCL_MODE_ENCODING);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
171 byte1 = char_converter.reg[1];
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
172 byte2 = char_converter.reg[2];
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
173 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
174 #endif
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
175 *text_storage++ = (unsigned char) byte1;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
176 if (dimension == 2)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
177 *text_storage++ = (unsigned char) byte2;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
178 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
179
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
180 if (runs_so_far)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
181 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
182 run_storage[runs_so_far - 1].len =
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
183 text_storage - run_storage[runs_so_far - 1].ptr;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
184 if (run_storage[runs_so_far - 1].dimension == 2)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
185 run_storage[runs_so_far - 1].len >>= 1;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
186 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
187
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
188 return runs_so_far;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
189 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
190
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
191
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
192 static int
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
193 mswindows_text_width_single_run (HDC hdc, struct face_cachel *cachel,
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
194 textual_run *run)
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
195 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
196 Lisp_Object font_inst = FACE_CACHEL_FONT (cachel, run->charset);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
197 struct Lisp_Font_Instance *fi = XFONT_INSTANCE (font_inst);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
198 SIZE size;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
199
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
200 if (!fi->proportional_p || !hdc)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
201 return (fi->width * run->len);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
202 else
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
203 {
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
204 assert(run->dimension == 1); /* #### FIXME! */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
205 mswindows_update_dc (hdc, font_inst, Qnil, Qnil, Qnil);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
206 GetTextExtentPoint32 (hdc, run->ptr, run->len, &size);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
207 return(size.cx);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
208 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
209 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
210
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
211
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
212 /*****************************************************************************
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
213 mswindows_update_dc
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
214
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
215 Given a number of parameters munge the DC so it has those properties.
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
216 ****************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
217 static void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
218 mswindows_update_dc (HDC hdc, Lisp_Object font, Lisp_Object fg,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
219 Lisp_Object bg, Lisp_Object bg_pmap)
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
220 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
221 if (!NILP (font))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
222 SelectObject(hdc, FONT_INSTANCE_MSWINDOWS_HFONT (XFONT_INSTANCE (font)));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
223
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
224
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
225 if (!NILP (fg))
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
226 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
227 SetTextColor (hdc, COLOR_INSTANCE_MSWINDOWS_COLOR
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
228 (XCOLOR_INSTANCE (fg)));
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
229 }
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
230 if (!NILP (bg))
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
231 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
232 SetBkMode (hdc, OPAQUE);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
233 SetBkColor (hdc, COLOR_INSTANCE_MSWINDOWS_COLOR (XCOLOR_INSTANCE (bg)));
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
234 }
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
235 else
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
236 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
237 SetBkMode (hdc, TRANSPARENT);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
238 }
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
239 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
240
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
241
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
242 /*****************************************************************************
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
243 mswindows_apply_face_effects
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
244
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
245 Draw underline and strikeout as if this was X.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
246 #### On mswindows this really should be done as part of drawing the font.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
247 The line width used is chosen arbitrarily from the font height.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
248 ****************************************************************************/
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
249 static void
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
250 mswindows_apply_face_effects (HDC hdc, struct display_line *dl, int xpos,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
251 int width, struct Lisp_Font_Instance *fi,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
252 struct face_cachel *cachel,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
253 struct face_cachel *color_cachel)
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
254 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
255 int yclip;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
256 HBRUSH brush, oldbrush;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
257 RECT rect;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
258
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
259 brush = CreateSolidBrush (COLOR_INSTANCE_MSWINDOWS_COLOR (
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
260 XCOLOR_INSTANCE (color_cachel->foreground)));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
261 if (brush)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
262 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
263 yclip = dl->ypos + dl->descent - dl->clip;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
264 rect.left = xpos;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
265 rect.right = xpos + width;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
266 oldbrush = SelectObject (hdc, brush);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
267
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
268 if (cachel->underline)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
269 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
270 rect.top = dl->ypos + dl->descent/2;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
271 rect.bottom = rect.top + (fi->height >= 0x20 ? 2 : 1);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
272 if (rect.bottom <= yclip)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
273 FillRect (hdc, &rect, brush);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
274 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
275 if (cachel->strikethru)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
276 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
277 rect.top = dl->ypos + dl->descent - (dl->ascent + dl->descent)/2;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
278 rect.bottom = rect.top + (fi->height >= 0x20 ? 2 : 1);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
279 if (rect.bottom <= yclip)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
280 FillRect (hdc, &rect, brush);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
281 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
282
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
283 SelectObject (hdc, oldbrush);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
284 DeleteObject (brush);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
285 }
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
286 }
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
287
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
288
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
289 /*****************************************************************************
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
290 mswindows_output_hline
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
291
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
292 Output a horizontal line in the foreground of its face.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
293 ****************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
294 static void
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
295 mswindows_output_hline (struct window *w, struct display_line *dl, struct rune *rb)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
296 { /* XXX Implement me */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
297 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
298
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
299
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
300 /*****************************************************************************
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
301 mswindows_output_blank
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
302
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
303 Output a blank by clearing the area it covers in the background color
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
304 of its face.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
305 ****************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
306 static void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
307 mswindows_output_blank (struct window *w, struct display_line *dl, struct rune *rb, int start_pixpos)
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
308 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
309 struct frame *f = XFRAME (w->frame);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
310 RECT rect = { rb->xpos, dl->ypos-dl->ascent,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
311 rb->xpos+rb->width, dl->ypos+dl->descent-dl->clip };
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
312 struct face_cachel *cachel = WINDOW_FACE_CACHEL (w, rb->findex);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
313
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
314 Lisp_Object bg_pmap = WINDOW_FACE_CACHEL_BACKGROUND_PIXMAP (w, rb->findex);
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
315
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
316 if (!IMAGE_INSTANCEP (bg_pmap)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
317 || !IMAGE_INSTANCE_PIXMAP_TYPE_P (XIMAGE_INSTANCE (bg_pmap)))
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
318 bg_pmap = Qnil;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
319
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
320 if (!NILP(bg_pmap))
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
321 {
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
322 /* blank the background in the appropriate color */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
323 mswindows_update_dc (FRAME_MSWINDOWS_DC (f), Qnil, cachel->foreground,
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
324 cachel->background, Qnil);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
325
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
326 mswindows_output_pixmap (w, dl, bg_pmap,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
327 rb->xpos, 0 /*rb->object.dglyph.xoffset*/,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
328 start_pixpos, rb->width, rb->findex,
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
329 0, 0, 0, TRUE);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
330 }
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
331 else
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
332 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
333 mswindows_update_dc (FRAME_MSWINDOWS_DC (f), Qnil, Qnil,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
334 cachel->background, Qnil);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
335
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
336 ExtTextOut (FRAME_MSWINDOWS_DC (f), 0, 0, ETO_OPAQUE,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
337 &rect, NULL, 0, NULL);
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
338 }
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
339 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
340
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
341
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
342 /*****************************************************************************
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
343 mswindows_output_cursor
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
344
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
345 Draw a normal or end-of-line cursor. The end-of-line cursor is
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
346 narrower than the normal cursor.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
347 ****************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
348 static void
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
349 mswindows_output_cursor (struct window *w, struct display_line *dl, int xpos,
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
350 int width, face_index findex, Emchar ch, int image_p)
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
351 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
352 struct frame *f = XFRAME (w->frame);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
353 struct device *d = XDEVICE (f->device);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
354 struct face_cachel *cachel=0;
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
355 Lisp_Object font = Qnil;
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
356 int focus = EQ (w->frame, DEVICE_FRAME_WITH_FOCUS_REAL (d));
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
357 HDC hdc = FRAME_MSWINDOWS_DC (f);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
358 unsigned int face_index=0;
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
359 char *p_char = NULL;
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
360 int n_char = 0;
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
361 RECT rect = { xpos,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
362 dl->ypos - dl->ascent,
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
363 xpos + width,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
364 dl->ypos + dl->descent - dl->clip};
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
365 Lisp_Object bar = symbol_value_in_buffer (Qbar_cursor,
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
366 WINDOW_BUFFER (w));
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
367 int bar_p = image_p || !NILP (bar);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
368 int cursor_p = !NILP (w->text_cursor_visible_p);
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
369 int real_char_p = ch != 0;
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
370
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
371 if (real_char_p)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
372 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
373 /* Use the font from the underlying character */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
374 cachel = WINDOW_FACE_CACHEL (w, findex);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
375
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
376 /* #### MULE: Need to know the charset! */
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
377 font = FACE_CACHEL_FONT (cachel, Vcharset_ascii);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
378 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
379
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
380 if ((focus || bar_p) && real_char_p)
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
381 {
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
382 p_char = (char*) &ch;
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
383 n_char = 1;
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
384 }
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
385
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
386 if (!image_p)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
387 {
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
388 struct face_cachel *color_cachel;
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
389
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
390 /* Use cursor fg/bg for block cursor, or character fg/bg for the bar
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
391 or when we need to erase the cursor. Output nothing at eol if bar
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
392 cursor */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
393 face_index = get_builtin_face_cache_index (w, Vtext_cursor_face);
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
394 color_cachel = WINDOW_FACE_CACHEL (w, ((!cursor_p || bar_p) ?
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
395 findex : face_index));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
396 mswindows_update_dc (hdc, font, color_cachel->foreground,
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
397 color_cachel->background, Qnil);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
398 ExtTextOut (hdc, xpos, dl->ypos, ETO_OPAQUE|ETO_CLIPPED, &rect, p_char, n_char, NULL);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
399 if (real_char_p && (cachel->underline || cachel->strikethru))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
400 mswindows_apply_face_effects (hdc, dl, xpos, width,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
401 XFONT_INSTANCE (font),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
402 cachel, color_cachel);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
403 }
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
404
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
405 if (!cursor_p)
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
406 return;
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
407
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
408 if (focus && bar_p)
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
409 {
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
410 rect.right = rect.left + (EQ (bar, Qt) ? 1 : min (2, width));
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
411 face_index = get_builtin_face_cache_index (w, Vtext_cursor_face);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
412 cachel = WINDOW_FACE_CACHEL (w, face_index);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
413 mswindows_update_dc (hdc, Qnil, Qnil, cachel->background, Qnil);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
414 ExtTextOut (hdc, xpos, dl->ypos, ETO_OPAQUE, &rect, NULL, 0, NULL);
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
415 }
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
416 else if (!focus)
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
417 {
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
418 /* Now have real character drawn in its own color. We deflate
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
419 the rectangle so character cell will be bounded by the
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
420 previously drawn cursor shape */
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
421 InflateRect (&rect, -1, -1);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
422
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
423 if (real_char_p)
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
424 {
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
425 p_char = (char*) &ch;
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
426 n_char = 1;
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
427 }
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
428
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
429 face_index = get_builtin_face_cache_index (w, Vdefault_face);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
430 cachel = WINDOW_FACE_CACHEL (w, (real_char_p ? findex : face_index));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
431 mswindows_update_dc (hdc, Qnil, cachel->foreground,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
432 cachel->background, Qnil);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
433 ExtTextOut (hdc, xpos, dl->ypos, ETO_OPAQUE | ETO_CLIPPED,
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
434 &rect, p_char, n_char, NULL);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
435 if (cachel->underline || cachel->strikethru)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
436 mswindows_apply_face_effects (hdc, dl, xpos+1, width-2,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
437 XFONT_INSTANCE (font),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
438 cachel, cachel);
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
439 }
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
440 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
441
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
442
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
443 /*****************************************************************************
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
444 mswindows_output_string
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
445
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
446 Given a string and a starting position, output that string in the
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
447 given face.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
448 Correctly handles multiple charsets in the string.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
449
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
450 The meaning of the parameters is something like this:
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
451
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
452 W Window that the text is to be displayed in.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
453 DL Display line that this text is on. The values in the
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
454 structure are used to determine the vertical position and
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
455 clipping range of the text.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
456 BUF Dynamic array of Emchars specifying what is actually to be
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
457 drawn.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
458 XPOS X position in pixels where the text should start being drawn.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
459 XOFFSET Number of pixels to be chopped off the left side of the
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
460 text. The effect is as if the text were shifted to the
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
461 left this many pixels and clipped at XPOS.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
462 CLIP_START Clip everything left of this X position.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
463 WIDTH Clip everything right of XPOS + WIDTH.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
464 FINDEX Index for the face cache element describing how to display
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
465 the text.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
466 ****************************************************************************/
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
467 void
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
468 mswindows_output_string (struct window *w, struct display_line *dl,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
469 Emchar_dynarr *buf, int xpos, int xoffset, int clip_start,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
470 int width, face_index findex)
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
471 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
472 struct frame *f = XFRAME (w->frame);
245
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 239
diff changeset
473 /* struct device *d = XDEVICE (f->device);*/
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
474 Lisp_Object window;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
475 HDC hdc = FRAME_MSWINDOWS_DC (f);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
476 int clip_end;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
477 Lisp_Object bg_pmap;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
478 int len = Dynarr_length (buf);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
479 unsigned char *text_storage = (unsigned char *) alloca (2 * len);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
480 textual_run *runs = alloca_array (textual_run, len);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
481 int nruns;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
482 int i, height;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
483 RECT rect;
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
484 struct face_cachel *cachel = WINDOW_FACE_CACHEL (w, findex);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
485
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
486 XSETWINDOW (window, w);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
487
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
488 #if 0 /* #### FIXME? */
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
489 /* We can't work out the width before we've set the font in the DC */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
490 if (width < 0)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
491 width = mswindows_text_width (cachel, Dynarr_atp (buf, 0), Dynarr_length (buf));
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
492 #else
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
493 assert(width>=0);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
494 #endif
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
495
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
496 /* Regularize the variables passed in. */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
497 if (clip_start < xpos)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
498 clip_start = xpos;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
499 clip_end = xpos + width;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
500 if (clip_start >= clip_end)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
501 /* It's all clipped out. */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
502 return;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
503
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
504 xpos -= xoffset;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
505
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
506 /* sort out the destination rectangle */
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 384
diff changeset
507 height = DISPLAY_LINE_HEIGHT (dl);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
508 rect.left = clip_start;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
509 rect.top = dl->ypos - dl->ascent;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
510 rect.right = clip_end;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
511 rect.bottom = height + dl->ypos - dl->ascent;
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
512
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
513 /* output the background pixmap if there is one */
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
514 bg_pmap = cachel->background_pixmap;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
515 if (!IMAGE_INSTANCEP (bg_pmap)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
516 || !IMAGE_INSTANCE_PIXMAP_TYPE_P (XIMAGE_INSTANCE (bg_pmap)))
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
517 bg_pmap = Qnil;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
518
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
519 if (!NILP(bg_pmap))
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
520 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
521 /* blank the background in the appropriate color */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
522 mswindows_update_dc (hdc, Qnil, cachel->foreground,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
523 cachel->background, Qnil);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
524
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
525 mswindows_output_pixmap (w, dl, bg_pmap,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
526 xpos, xoffset,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
527 clip_start, width, findex,
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
528 0, 0, 0, TRUE);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
529 /* output pixmap calls this so we have to recall to get correct
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
530 references */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
531 cachel = WINDOW_FACE_CACHEL (w, findex);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
532 }
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
533
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
534 nruns = separate_textual_runs (text_storage, runs, Dynarr_atp (buf, 0),
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
535 Dynarr_length (buf));
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
536
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
537 for (i = 0; i < nruns; i++)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
538 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
539 Lisp_Object font = FACE_CACHEL_FONT (cachel, runs[i].charset);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
540 struct Lisp_Font_Instance *fi = XFONT_INSTANCE (font);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
541 int this_width;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
542
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
543 if (EQ (font, Vthe_null_font_instance))
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
544 continue;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
545
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
546 mswindows_update_dc (hdc, font, cachel->foreground,
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
547 NILP(bg_pmap) ? cachel->background : Qnil, Qnil);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
548
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
549 this_width = mswindows_text_width_single_run (hdc, cachel, runs + i);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
550
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
551 /* cope with fonts taller than lines */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
552 if ((int) fi->height < (int) (height + dl->clip))
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
553 {
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
554 int clear_start = max (xpos, clip_start);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
555 int clear_end = min (xpos + this_width, clip_end);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
556
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
557 {
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
558 redisplay_clear_region (window, findex, clear_start,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
559 dl->ypos - dl->ascent,
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
560 clear_end - clear_start,
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
561 height);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
562 /* output pixmap calls this so we have to recall to get correct
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
563 references */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
564 cachel = WINDOW_FACE_CACHEL (w, findex);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
565 }
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
566 }
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
567
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 288
diff changeset
568 assert (runs[i].dimension == 1); /* #### FIXME: Broken when Mule? */
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
569 ExtTextOut (hdc, xpos, dl->ypos,
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
570 NILP(bg_pmap) ? ETO_CLIPPED | ETO_OPAQUE : ETO_CLIPPED,
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
571 &rect, (char *) runs[i].ptr, runs[i].len, NULL);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
572
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
573 /* #### X does underline/strikethrough here so we do the same.
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
574 On mswindows, underline/strikethrough really belongs to the font */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
575 if (cachel->underline || cachel->strikethru)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
576 mswindows_apply_face_effects (hdc, dl, xpos, this_width, fi,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
577 cachel, cachel);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
578 xpos += this_width;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
579 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
580 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
581
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
582 static void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
583 mswindows_output_dibitmap (struct frame *f, struct Lisp_Image_Instance *p,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
584 int x, int y,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
585 int clip_x, int clip_y,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
586 int clip_width, int clip_height,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
587 int width, int height, int pixmap_offset,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
588 int offset_bitmap)
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
589 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
590 HDC hdc = FRAME_MSWINDOWS_DC (f);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
591 HGDIOBJ old=NULL;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
592 COLORREF bgcolor = GetBkColor (hdc);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
593 int need_clipping = (clip_x || clip_y);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
594 int yoffset=0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
595 int xoffset=0;
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
596
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
597 /* do we need to offset the pixmap vertically? this is necessary
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
598 for background pixmaps. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
599 if (offset_bitmap)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
600 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
601 yoffset = y % IMAGE_INSTANCE_PIXMAP_HEIGHT (p);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
602 xoffset = x % IMAGE_INSTANCE_PIXMAP_WIDTH (p);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
603 /* the width is handled by mswindows_output_pixmap_region */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
604 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
605
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
606 if (need_clipping)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
607 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
608 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
609
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
610 /* first blt the mask */
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
611 if (IMAGE_INSTANCE_MSWINDOWS_MASK (p))
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
612 {
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
613 RGBQUAD col;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
614 col.rgbBlue = GetBValue (bgcolor);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
615 col.rgbRed = GetRValue (bgcolor);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
616 col.rgbGreen = GetGValue (bgcolor);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
617 col.rgbReserved = 0;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
618
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
619 old = SelectObject (FRAME_MSWINDOWS_CDC (f),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
620 IMAGE_INSTANCE_MSWINDOWS_MASK (p));
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
621
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
622 SetDIBColorTable (FRAME_MSWINDOWS_CDC (f), 1, 1, &col);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
623
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
624 BitBlt (hdc,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
625 x,y,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
626 width, height,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
627 FRAME_MSWINDOWS_CDC (f),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
628 xoffset,yoffset,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
629 SRCCOPY);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
630
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
631 SelectObject (FRAME_MSWINDOWS_CDC (f), old);
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
632 }
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
633
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
634 /* now blt the bitmap itself. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
635 old = SelectObject (FRAME_MSWINDOWS_CDC (f),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
636 IMAGE_INSTANCE_MSWINDOWS_BITMAP (p));
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
637
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
638 BitBlt (hdc,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
639 x,y,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
640 width, height,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
641 FRAME_MSWINDOWS_CDC (f),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
642 xoffset, yoffset,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
643 IMAGE_INSTANCE_MSWINDOWS_MASK (p) ? SRCINVERT : SRCCOPY);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
644
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
645 SelectObject (FRAME_MSWINDOWS_CDC (f),old);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
646
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
647 if (need_clipping)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
648 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
649 }
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
650 }
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
651
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
652 /*
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
653 * X gc's have this nice property that setting the bg pixmap will
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
654 * output it offset relative to the window. Windows doesn't have this
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
655 * feature so we have to emulate this by outputting multiple pixmaps
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
656 */
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
657 static void
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
658 mswindows_output_dibitmap_region (struct frame *f,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
659 struct Lisp_Image_Instance *p,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
660 int x, int y,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
661 int clip_x, int clip_y,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
662 int clip_width, int clip_height,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
663 int width, int height, int pixmap_offset,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
664 int offset_bitmap)
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
665 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
666 int pwidth = min (width, IMAGE_INSTANCE_PIXMAP_WIDTH (p));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
667 int pheight = min (height, IMAGE_INSTANCE_PIXMAP_HEIGHT (p));
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
668 int pxoffset = 0, pyoffset = 0;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
669
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
670 /* when doing a bg pixmap do a partial pixmap first so that we
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
671 blt whole pixmaps thereafter */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
672
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
673 if (offset_bitmap)
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
674 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
675 pheight = min (pheight, IMAGE_INSTANCE_PIXMAP_HEIGHT (p) -
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
676 y % IMAGE_INSTANCE_PIXMAP_HEIGHT (p));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
677 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
678
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
679 while (pheight > 0)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
680 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
681 if (offset_bitmap)
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
682 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
683 pwidth = min (min (width, IMAGE_INSTANCE_PIXMAP_WIDTH (p)),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
684 IMAGE_INSTANCE_PIXMAP_WIDTH (p) -
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
685 x % IMAGE_INSTANCE_PIXMAP_WIDTH (p));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
686 pxoffset = 0;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
687 }
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
688 while (pwidth > 0)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
689 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
690 mswindows_output_dibitmap (f, p,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
691 x + pxoffset, y + pyoffset,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
692 clip_x, clip_y,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
693 clip_width, clip_height,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
694 pwidth, pheight, pixmap_offset,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
695 offset_bitmap);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
696 pxoffset += pwidth;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
697 pwidth = min ((width-pxoffset),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
698 IMAGE_INSTANCE_PIXMAP_WIDTH (p));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
699 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
700 pyoffset += pheight;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
701 pheight = min ((height-pyoffset),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
702 IMAGE_INSTANCE_PIXMAP_HEIGHT (p));
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
703 }
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
704 }
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
705
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
706 static void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
707 mswindows_output_pixmap (struct window *w, struct display_line *dl,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
708 Lisp_Object image_instance, int xpos, int xoffset,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
709 int start_pixpos, int width, face_index findex,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
710 int cursor_start, int cursor_width, int cursor_height,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
711 int offset_bitmap)
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
712 {
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
713 struct frame *f = XFRAME (w->frame);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
714 HDC hdc = FRAME_MSWINDOWS_DC (f);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
715
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
716 struct Lisp_Image_Instance *p = XIMAGE_INSTANCE (image_instance);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
717 Lisp_Object window;
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
718
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
719 int lheight = DISPLAY_LINE_HEIGHT (dl);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
720 int pheight = ((int) IMAGE_INSTANCE_PIXMAP_HEIGHT (p) > lheight ? lheight :
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
721 IMAGE_INSTANCE_PIXMAP_HEIGHT (p));
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
722 int clip_x, clip_y, clip_width, clip_height;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
723
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
724 /* The pixmap_offset is used to center the pixmap on lines which are
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
725 shorter than it is. This results in odd effects when scrolling
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
726 pixmaps off of the bottom. Let's try not using it. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
727 #if 0
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
728 int pixmap_offset = (int) (IMAGE_INSTANCE_PIXMAP_HEIGHT (p) - lheight) / 2;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
729 #else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
730 int pixmap_offset = 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
731 #endif
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
732
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
733 XSETWINDOW (window, w);
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
734
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
735 if ((start_pixpos >= 0 && start_pixpos > xpos) || xoffset)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
736 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
737 if (start_pixpos > xpos && start_pixpos > xpos + width)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
738 return;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
739
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
740 clip_x = xoffset;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
741 clip_width = width;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
742 if (start_pixpos > xpos)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
743 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
744 clip_x += (start_pixpos - xpos);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
745 clip_width -= (start_pixpos - xpos);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
746 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
747 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
748 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
749 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
750 clip_x = 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
751 clip_width = 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
752 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
753
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
754 /* Place markers for possible future functionality (clipping the top
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
755 half instead of the bottom half; think pixel scrolling). */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
756 clip_y = 0;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
757 clip_height = pheight;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
758
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
759 /* Clear the area the pixmap is going into. The pixmap itself will
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
760 always take care of the full width. We don't want to clear where
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
761 it is going to go in order to avoid flicker. So, all we have to
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
762 take care of is any area above or below the pixmap. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
763 /* #### We take a shortcut for now. We know that since we have
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
764 pixmap_offset hardwired to 0 that the pixmap is against the top
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
765 edge so all we have to worry about is below it. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
766 /* #### Unless the pixmap has a mask in which case we have to clear
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
767 the whole damn thing since we can't yet clear just the area not
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
768 included in the mask. */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
769 if (((int) (dl->ypos - dl->ascent + pheight) <
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
770 (int) (dl->ypos + dl->descent - dl->clip))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
771 || IMAGE_INSTANCE_MSWINDOWS_MASK (p))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
772 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
773 int clear_x, clear_y, clear_width, clear_height;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
774
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
775 if (IMAGE_INSTANCE_MSWINDOWS_MASK (p))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
776 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
777 clear_y = dl->ypos - dl->ascent;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
778 clear_height = lheight;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
779 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
780 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
781 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
782 clear_y = dl->ypos - dl->ascent + pheight;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
783 clear_height = lheight - pheight;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
784 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
785
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
786 if (start_pixpos >= 0 && start_pixpos > xpos)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
787 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
788 clear_x = start_pixpos;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
789 clear_width = xpos + width - start_pixpos;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
790 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
791 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
792 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
793 clear_x = xpos;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
794 clear_width = width;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
795 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
796
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
797 if (!offset_bitmap) /* i.e. not a bg pixmap */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
798 redisplay_clear_region (window, findex, clear_x, clear_y,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
799 clear_width, clear_height);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
800 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
801
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
802 /* Output the pixmap. Have to do this as many times as is required
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
803 to fill the given area */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
804 mswindows_update_dc (hdc, Qnil,
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
805 WINDOW_FACE_CACHEL_FOREGROUND (w, findex),
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
806 WINDOW_FACE_CACHEL_BACKGROUND (w, findex), Qnil);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
807
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
808 mswindows_output_dibitmap_region (f, p, xpos - xoffset,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
809 dl->ypos - dl->ascent,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
810 clip_x, clip_y, clip_width, clip_height,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
811 width + xoffset, pheight, pixmap_offset,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
812 offset_bitmap);
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
813 }
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
814
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
815 #ifdef HAVE_SCROLLBARS
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
816 /*
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
817 * This function paints window's deadbox, a rectangle between window
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
818 * borders and two short edges of both scrollbars.
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
819 *
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
820 * Function checks whether deadbox intersects with the rectangle pointed
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
821 * to by PRC, and paints only the intersection
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
822 */
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
823 static void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
824 mswindows_redisplay_deadbox_maybe (struct window *w, CONST RECT* prc)
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
825 {
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
826 int sbh = window_scrollbar_height (w);
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
827 int sbw = window_scrollbar_width (w);
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
828 RECT rect_dead, rect_paint;
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
829 if (sbh == 0 || sbw == 0)
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
830 return;
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
831
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
832 if (!NILP (w->scrollbar_on_left_p))
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
833 rect_dead.left = WINDOW_LEFT (w);
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
834 else
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
835 rect_dead.left = WINDOW_TEXT_RIGHT (w);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
836 rect_dead.right = rect_dead.left + sbw;
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
837
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
838 if (!NILP (w->scrollbar_on_top_p))
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
839 rect_dead.top = WINDOW_TOP (w);
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
840 else
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
841 rect_dead.top = WINDOW_TEXT_BOTTOM (w);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
842 rect_dead.bottom = rect_dead.top + sbh;
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
843
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
844 if (IntersectRect (&rect_paint, &rect_dead, prc))
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
845 {
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
846 struct frame *f = XFRAME (WINDOW_FRAME (w));
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
847 FillRect (FRAME_MSWINDOWS_DC (f), &rect_paint,
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
848 (HBRUSH) (COLOR_BTNFACE+1));
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
849 }
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
850 }
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
851
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
852 #endif /* HAVE_SCROLLBARS */
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
853
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
854 /*****************************************************************************
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
855 mswindows_redraw_exposed_window
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
856
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
857 Given a bounding box for an area that needs to be redrawn, determine
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
858 what parts of what lines are contained within and re-output their
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
859 contents.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
860 Copied from redisplay-x.c
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
861 ****************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
862 static void
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
863 mswindows_redraw_exposed_window (struct window *w, int x, int y, int width,
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
864 int height)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
865 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
866 struct frame *f = XFRAME (w->frame);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
867 int line;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
868 int orig_windows_structure_changed;
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
869 RECT rect_window = { WINDOW_LEFT (w), WINDOW_TOP (w),
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
870 WINDOW_RIGHT (w), WINDOW_BOTTOM (w) };
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
871 RECT rect_expose = { x, y, x + width, y + height };
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
872 RECT rect_draw;
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
873
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
874 display_line_dynarr *cdla = window_display_lines (w, CURRENT_DISP);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
875
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
876 if (!NILP (w->vchild))
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
877 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
878 mswindows_redraw_exposed_windows (w->vchild, x, y, width, height);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
879 return;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
880 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
881 else if (!NILP (w->hchild))
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
882 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
883 mswindows_redraw_exposed_windows (w->hchild, x, y, width, height);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
884 return;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
885 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
886
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
887 /* If the window doesn't intersect the exposed region, we're done here. */
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
888 if (!IntersectRect (&rect_draw, &rect_window, &rect_expose))
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
889 return;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
890
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
891 /* We do this to make sure that the 3D modelines get redrawn if
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
892 they are in the exposed region. */
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
893 orig_windows_structure_changed = f->windows_structure_changed;
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
894 f->windows_structure_changed = 1;
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
895
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
896 if (window_needs_vertical_divider (w))
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
897 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
898 mswindows_output_vertical_divider (w, 0);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
899 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
900
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
901 for (line = 0; line < Dynarr_length (cdla); line++)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
902 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
903 struct display_line *cdl = Dynarr_atp (cdla, line);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
904 int top_y = cdl->ypos - cdl->ascent;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
905 int bottom_y = cdl->ypos + cdl->descent;
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
906
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
907 if (bottom_y >= rect_draw.top)
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
908 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
909 if (top_y > rect_draw.bottom)
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
910 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
911 if (line == 0)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
912 continue;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
913 else
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
914 break;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
915 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
916 else
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
917 {
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
918 output_display_line (w, 0, cdla, line,
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
919 rect_draw.left, rect_draw.right);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
920 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
921 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
922 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
923
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
924 f->windows_structure_changed = orig_windows_structure_changed;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
925
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
926 /* If there have never been any face cache_elements created, then this
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
927 expose event doesn't actually have anything to do. */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
928 if (Dynarr_largest (w->face_cachels))
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
929 redisplay_clear_bottom_of_window (w, cdla, rect_draw.top, rect_draw.bottom);
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
930
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
931 #ifdef HAVE_SCROLLBARS
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
932 mswindows_redisplay_deadbox_maybe (w, &rect_expose);
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
933 #endif
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
934 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
935
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
936 /*****************************************************************************
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
937 mswindows_redraw_exposed_windows
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
938
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
939 For each window beneath the given window in the window hierarchy,
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
940 ensure that it is redrawn if necessary after an Expose event.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
941 ****************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
942 static void
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
943 mswindows_redraw_exposed_windows (Lisp_Object window, int x, int y, int width,
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
944 int height)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
945 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
946 for (; !NILP (window); window = XWINDOW (window)->next)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
947 mswindows_redraw_exposed_window (XWINDOW (window), x, y, width, height);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
948 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
949
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
950 /*****************************************************************************
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
951 mswindows_redraw_exposed_area
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
952
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
953 For each window on the given frame, ensure that any area in the
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
954 Exposed area is redrawn.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
955 ****************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
956 void
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
957 mswindows_redraw_exposed_area (struct frame *f, int x, int y, int width, int height)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
958 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
959 /* If any window on the frame has had its face cache reset then the
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
960 redisplay structures are effectively invalid. If we attempt to
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
961 use them we'll blow up. We mark the frame as changed to ensure
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
962 that redisplay will do a full update. This probably isn't
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
963 necessary but it can't hurt. */
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
964 #ifdef HAVE_TOOLBARS
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
965 /* #### We would rather put these off as well but there is currently
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
966 no combination of flags which will force an unchanged toolbar to
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
967 redraw anyhow. */
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
968 MAYBE_FRAMEMETH (f, redraw_exposed_toolbars, (f, x, y, width, height));
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
969 #endif
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
970 redraw_exposed_gutters (f, x, y, width, height);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
971
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
972 if (!f->window_face_cache_reset)
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
973 {
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
974 mswindows_redraw_exposed_windows (f->root_window, x, y, width, height);
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
975 GdiFlush();
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
976 }
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
977 else
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
978 MARK_FRAME_CHANGED (f);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
979 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
980
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
981
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
982 /*****************************************************************************
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
983 mswindows_bevel_area
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
984
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
985 Draw a 3d border around the specified area on window W.
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
986 ****************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
987 static void
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
988 mswindows_bevel_area (struct window *w, face_index findex, int x, int y,
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
989 int width, int height, int shadow_thickness)
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
990 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
991 struct frame *f = XFRAME (w->frame);
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
992 UINT edge;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
993
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
994 if (shadow_thickness < -1)
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
995 edge = EDGE_SUNKEN;
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
996 else if (shadow_thickness < 0)
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
997 edge = BDR_SUNKENINNER;
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
998 else if (shadow_thickness == 1)
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
999 edge = BDR_RAISEDINNER;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1000 else
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1001 edge = EDGE_RAISED;
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1002
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1003 if (shadow_thickness < 0)
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1004 shadow_thickness = -shadow_thickness;
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1005
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1006 {
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1007 RECT rect = { x, y, x + width, y + height };
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1008 Lisp_Object color = WINDOW_FACE_CACHEL_BACKGROUND (w, findex);
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1009 mswindows_update_dc (FRAME_MSWINDOWS_DC (f), Qnil, Qnil, color, Qnil);
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1010
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1011 DrawEdge (FRAME_MSWINDOWS_DC (f), &rect, edge, BF_RECT);
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1012 }
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1013 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1014
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1015
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1016 /*****************************************************************************
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1017 Display methods
245
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 239
diff changeset
1018 *****************************************************************************/
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1019
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1020 /*****************************************************************************
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1021 mswindows_divider_height
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1022
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1023 Return the height of the horizontal divider.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1024 ****************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1025 static int
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1026 mswindows_divider_height (void)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1027 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1028 return 1; /* XXX Copied from redisplay-X.c. What is this? */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1029 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1030
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1031 /*****************************************************************************
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1032 mswindows_eol_cursor_width
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1033
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1034 Return the width of the end-of-line cursor.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1035 ****************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1036 static int
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1037 mswindows_eol_cursor_width (void)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1038 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1039 return MSWINDOWS_EOL_CURSOR_WIDTH;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1040 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1041
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1042 /*****************************************************************************
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1043 mswindows_output_begin
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1044
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1045 Perform any necessary initialization prior to an update.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1046 ****************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1047 static void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1048 mswindows_output_begin (struct device *d)
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1049 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1050 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1051
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1052 /*****************************************************************************
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1053 mswindows_output_end
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1054
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1055 Perform any necessary flushing of queues when an update has completed.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1056 ****************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1057 static void
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1058 mswindows_output_end (struct device *d)
410
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 408
diff changeset
1059 {
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 408
diff changeset
1060 GdiFlush();
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 408
diff changeset
1061 }
de805c49cfc1 Import from CVS: tag r21-2-35
cvs
parents: 408
diff changeset
1062
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1063 static int
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1064 mswindows_flash (struct device *d)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1065 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1066 struct frame *f = device_selected_frame (d);
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
1067 RECT rc;
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1068
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
1069 GetClientRect (FRAME_MSWINDOWS_HANDLE (f), &rc);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1070 InvertRect (FRAME_MSWINDOWS_DC (f), &rc);
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
1071 GdiFlush ();
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
1072 Sleep (25);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1073 InvertRect (FRAME_MSWINDOWS_DC (f), &rc);
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
1074
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 227
diff changeset
1075 return 1;
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1076 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1077
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1078 static void
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1079 mswindows_ring_bell (struct device *d, int volume, int pitch, int duration)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1080 {
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 215
diff changeset
1081 /* Beep does not work at all, anyways! -kkm */
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 215
diff changeset
1082 MessageBeep (MB_OK);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1083 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1084
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1085 /*****************************************************************************
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1086 mswindows_output_display_block
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1087
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1088 Given a display line, a block number for that start line, output all
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1089 runes between start and end in the specified display block.
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 294
diff changeset
1090 Ripped off with minimal thought from the corresponding X routine.
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1091 ****************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1092 static void
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1093 mswindows_output_display_block (struct window *w, struct display_line *dl, int block,
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1094 int start, int end, int start_pixpos, int cursor_start,
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1095 int cursor_width, int cursor_height)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1096 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1097 struct frame *f = XFRAME (w->frame);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1098 Emchar_dynarr *buf = Dynarr_new (Emchar);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1099 Lisp_Object window;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1100
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1101 struct display_block *db = Dynarr_atp (dl->display_blocks, block);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1102 rune_dynarr *rba = db->runes;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1103 struct rune *rb;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1104
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1105 int elt = start;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1106 face_index findex;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1107 int xpos, width;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1108 Lisp_Object charset = Qunbound; /* Qnil is a valid charset when
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1109 MULE is not defined */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1110 XSETWINDOW (window, w);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1111 rb = Dynarr_atp (rba, start);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1112
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1113 if (!rb)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1114 /* Nothing to do so don't do anything. */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1115 return;
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1116
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1117 findex = rb->findex;
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1118 xpos = rb->xpos;
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1119 width = 0;
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1120 if (rb->type == RUNE_CHAR)
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1121 charset = CHAR_CHARSET (rb->object.chr.ch);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1122
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1123 if (end < 0)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1124 end = Dynarr_length (rba);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1125 Dynarr_reset (buf);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1126
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1127 while (elt < end)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1128 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1129 rb = Dynarr_atp (rba, elt);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1130
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1131 if (rb->findex == findex && rb->type == RUNE_CHAR
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1132 && rb->object.chr.ch != '\n' && rb->cursor_type != CURSOR_ON
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1133 && EQ (charset, CHAR_CHARSET (rb->object.chr.ch)))
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1134 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1135 Dynarr_add (buf, rb->object.chr.ch);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1136 width += rb->width;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1137 elt++;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1138 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1139 else
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1140 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1141 if (Dynarr_length (buf))
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1142 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1143 mswindows_output_string (w, dl, buf, xpos, 0, start_pixpos, width,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1144 findex);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1145 xpos = rb->xpos;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1146 width = 0;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1147 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1148 Dynarr_reset (buf);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1149 width = 0;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1150
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1151 if (rb->type == RUNE_CHAR)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1152 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1153 findex = rb->findex;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1154 xpos = rb->xpos;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1155 charset = CHAR_CHARSET (rb->object.chr.ch);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1156
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1157 if (rb->cursor_type == CURSOR_ON)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1158 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1159 if (rb->object.chr.ch == '\n')
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1160 {
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
1161 mswindows_output_cursor (w, dl, xpos, cursor_width,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
1162 findex, 0, 0);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1163 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1164 else
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1165 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1166 Dynarr_add (buf, rb->object.chr.ch);
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
1167 mswindows_output_cursor (w, dl, xpos, cursor_width,
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
1168 findex, rb->object.chr.ch, 0);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1169 Dynarr_reset (buf);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1170 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1171
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1172 xpos += rb->width;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1173 elt++;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1174 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1175 else if (rb->object.chr.ch == '\n')
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1176 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1177 /* Clear in case a cursor was formerly here. */
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1178 int height = DISPLAY_LINE_HEIGHT (dl);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1179
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1180 redisplay_clear_region (window, findex, xpos, dl->ypos - dl->ascent,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1181 rb->width, height);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1182 elt++;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1183 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1184 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1185 else if (rb->type == RUNE_BLANK || rb->type == RUNE_HLINE)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1186 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1187 if (rb->type == RUNE_BLANK)
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
1188 mswindows_output_blank (w, dl, rb, start_pixpos);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1189 else
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1190 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1191 /* #### Our flagging of when we need to redraw the
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1192 modeline shadows sucks. Since RUNE_HLINE is only used
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1193 by the modeline at the moment it is a good bet
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1194 that if it gets redrawn then we should also
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1195 redraw the shadows. This won't be true forever.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1196 We borrow the shadow_thickness_changed flag for
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1197 now. */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1198 w->shadow_thickness_changed = 1;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1199 mswindows_output_hline (w, dl, rb);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1200 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1201
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1202 if (rb->cursor_type == CURSOR_ON)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
1203 mswindows_output_cursor (w, dl, xpos, cursor_width, rb->findex, 0, 0);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1204
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1205 elt++;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1206 if (elt < end)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1207 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1208 rb = Dynarr_atp (rba, elt);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1209
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1210 findex = rb->findex;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1211 xpos = rb->xpos;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1212 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1213 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1214 else if (rb->type == RUNE_DGLYPH)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1215 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1216 Lisp_Object instance;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1217
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1218 XSETWINDOW (window, w);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1219 instance = glyph_image_instance (rb->object.dglyph.glyph,
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1220 window, ERROR_ME_NOT, 1);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1221 findex = rb->findex;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1222
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1223 if (IMAGE_INSTANCEP (instance))
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1224 switch (XIMAGE_INSTANCE_TYPE (instance))
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1225 {
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1226 case IMAGE_TEXT:
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1227 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1228 /* #### This is way losing. See the comment in
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1229 add_glyph_rune(). */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1230 Lisp_Object string =
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1231 XIMAGE_INSTANCE_TEXT_STRING (instance);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1232 convert_bufbyte_string_into_emchar_dynarr
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1233 (XSTRING_DATA (string), XSTRING_LENGTH (string), buf);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1234
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1235 if (rb->cursor_type == CURSOR_ON)
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
1236 mswindows_output_cursor (w, dl, xpos, cursor_width,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1237 findex, Dynarr_at (buf, 0), 0);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1238 else /* #### redisplay-x passes -1 as the width: why ? */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1239 mswindows_output_string (w, dl, buf, xpos,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1240 rb->object.dglyph.xoffset,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1241 start_pixpos, rb->width, findex);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1242 Dynarr_reset (buf);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1243 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1244 break;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1245
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1246 case IMAGE_MONO_PIXMAP:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1247 case IMAGE_COLOR_PIXMAP:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1248 mswindows_output_pixmap (w, dl, instance, xpos,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1249 rb->object.dglyph.xoffset, start_pixpos,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1250 rb->width, findex, cursor_start,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1251 cursor_width, cursor_height, 0);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1252 if (rb->cursor_type == CURSOR_ON)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1253 mswindows_output_cursor (w, dl, xpos, cursor_width,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1254 findex, 0, 1);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1255 break;
406
b8cc9ab3f761 Import from CVS: tag r21-2-33
cvs
parents: 404
diff changeset
1256
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1257 case IMAGE_POINTER:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1258 abort ();
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1259
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1260 case IMAGE_SUBWINDOW:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1261 case IMAGE_WIDGET:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1262 redisplay_output_subwindow (w, dl, instance, xpos,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1263 rb->object.dglyph.xoffset, start_pixpos,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1264 rb->width, findex, cursor_start,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1265 cursor_width, cursor_height);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1266 if (rb->cursor_type == CURSOR_ON)
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1267 mswindows_output_cursor (w, dl, xpos, cursor_width,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1268 findex, 0, 1);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1269 break;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1270
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1271 case IMAGE_NOTHING:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1272 /* nothing is as nothing does */
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1273 break;
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1274
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1275 default:
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1276 abort ();
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1277 }
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1278
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1279 xpos += rb->width;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1280 elt++;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1281 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1282 else
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1283 abort ();
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1284 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1285 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1286
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1287 if (Dynarr_length (buf))
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1288 mswindows_output_string (w, dl, buf, xpos, 0, start_pixpos, width, findex);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1289
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1290 if (dl->modeline
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1291 && !EQ (Qzero, w->modeline_shadow_thickness)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1292 && (f->clear
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1293 || f->windows_structure_changed
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1294 || w->shadow_thickness_changed))
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1295 bevel_modeline (w, dl);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1296
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1297 Dynarr_free (buf);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1298 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1299
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1300
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1301 /*****************************************************************************
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1302 mswindows_output_vertical_divider
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1303
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1304 Draw a vertical divider down the right side of the given window.
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1305 ****************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1306 static void
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1307 mswindows_output_vertical_divider (struct window *w, int clear_unused)
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1308 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1309 struct frame *f = XFRAME (w->frame);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1310 RECT rect;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1311 int spacing = XINT (w->vertical_divider_spacing);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1312 int shadow = XINT (w->vertical_divider_shadow_thickness);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1313 int abs_shadow = abs (shadow);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1314 int line_width = XINT (w->vertical_divider_line_width);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1315 int div_left = WINDOW_RIGHT (w) - window_divider_width (w);
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1316 int y1 = WINDOW_TOP (w) + FRAME_TOP_GUTTER_BOUNDS (f);
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1317 int y2 = WINDOW_BOTTOM (w) + FRAME_BOTTOM_GUTTER_BOUNDS (f);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1318
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1319 /* Clear left and right spacing areas */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1320 if (spacing)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1321 {
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1322 rect.top = y1;
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1323 rect.bottom = y2;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1324 mswindows_update_dc (FRAME_MSWINDOWS_DC (f), Qnil, Qnil,
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1325 WINDOW_FACE_CACHEL_BACKGROUND (w, DEFAULT_INDEX), Qnil);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1326 rect.right = WINDOW_RIGHT (w);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1327 rect.left = rect.right - spacing;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1328 ExtTextOut (FRAME_MSWINDOWS_DC (f), 0, 0, ETO_OPAQUE,
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1329 &rect, NULL, 0, NULL);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1330 rect.left = div_left;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1331 rect.right = div_left + spacing;
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1332 ExtTextOut (FRAME_MSWINDOWS_DC (f), 0, 0, ETO_OPAQUE,
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1333 &rect, NULL, 0, NULL);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1334 }
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1335
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1336 /* Clear divider face */
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1337 rect.top = y1 + abs_shadow;
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1338 rect.bottom = y2 - abs_shadow;
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1339 rect.left = div_left + spacing + abs_shadow;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1340 rect.right = rect.left + line_width;
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1341 if (rect.left < rect.right)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1342 {
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1343 face_index div_face
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1344 = get_builtin_face_cache_index (w, Vvertical_divider_face);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1345 mswindows_update_dc (FRAME_MSWINDOWS_DC (f), Qnil, Qnil,
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1346 WINDOW_FACE_CACHEL_BACKGROUND (w, div_face), Qnil);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1347 ExtTextOut (FRAME_MSWINDOWS_DC (f), 0, 0, ETO_OPAQUE,
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1348 &rect, NULL, 0, NULL);
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1349 }
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1350
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1351 /* Draw a shadow around the divider */
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1352 if (shadow != 0)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1353 {
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 294
diff changeset
1354 /* #### This will be fixed to support arbitrary thickness */
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1355 InflateRect (&rect, abs_shadow, abs_shadow);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1356 DrawEdge (FRAME_MSWINDOWS_DC (f), &rect,
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1357 shadow > 0 ? EDGE_RAISED : EDGE_SUNKEN, BF_RECT);
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
1358 }
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1359 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1360
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1361 /****************************************************************************
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1362 mswindows_text_width
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1363
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1364 Given a string and a face, return the string's length in pixels when
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1365 displayed in the font associated with the face.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1366 ****************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1367 static int
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
1368 mswindows_text_width (struct frame *f, struct face_cachel *cachel,
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1369 CONST Emchar *str, Charcount len)
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1370 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1371 int width_so_far = 0;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1372 unsigned char *text_storage = (unsigned char *) alloca (2 * len);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1373 textual_run *runs = alloca_array (textual_run, len);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1374 int nruns;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1375 int i;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1376
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1377 nruns = separate_textual_runs (text_storage, runs, str, len);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1378
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1379 for (i = 0; i < nruns; i++)
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1380 width_so_far += mswindows_text_width_single_run (FRAME_MSWINDOWS_DC (f),
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
1381 cachel, runs + i);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1382
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1383 return width_so_far;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1384 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1385
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1386
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1387 /****************************************************************************
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1388 mswindows_clear_region
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1389
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1390 Clear the area in the box defined by the given parameters using the
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1391 given face.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1392 ****************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1393 static void
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1394 mswindows_clear_region (Lisp_Object locale, struct device* d, struct frame* f,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1395 face_index findex, int x, int y,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1396 int width, int height, Lisp_Object fcolor, Lisp_Object bcolor,
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1397 Lisp_Object background_pixmap)
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1398 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1399 RECT rect = { x, y, x+width, y+height };
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1400
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1401 if (!NILP (background_pixmap))
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1402 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1403 mswindows_update_dc (FRAME_MSWINDOWS_DC (f),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1404 Qnil, fcolor, bcolor, background_pixmap);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1405
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
1406 mswindows_output_dibitmap_region
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1407 ( f, XIMAGE_INSTANCE (background_pixmap),
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1408 x, y, 0, 0, 0, 0, width, height, 0, TRUE);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1409 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1410 else
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1411 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1412 mswindows_update_dc (FRAME_MSWINDOWS_DC (f), Qnil, Qnil, fcolor, Qnil);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1413 ExtTextOut (FRAME_MSWINDOWS_DC (f), 0, 0, ETO_OPAQUE,
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1414 &rect, NULL, 0, NULL);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1415 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1416
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
1417 #ifdef HAVE_SCROLLBARS
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
1418 if (WINDOWP (locale))
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
1419 mswindows_redisplay_deadbox_maybe (XWINDOW (locale), &rect);
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 223
diff changeset
1420 #endif
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1421 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1422
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
1423 /* XXX Implement me! */
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1424 static void
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1425 mswindows_clear_frame (struct frame *f)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1426 {
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
1427 GdiFlush();
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1428 }
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1429
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1430
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1431
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1432 /************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1433 /* initialization */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1434 /************************************************************************/
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1435
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1436 void
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1437 console_type_create_redisplay_mswindows (void)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1438 {
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1439 /* redisplay methods */
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1440 CONSOLE_HAS_METHOD (mswindows, text_width);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1441 CONSOLE_HAS_METHOD (mswindows, output_display_block);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1442 CONSOLE_HAS_METHOD (mswindows, divider_height);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1443 CONSOLE_HAS_METHOD (mswindows, eol_cursor_width);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1444 CONSOLE_HAS_METHOD (mswindows, output_vertical_divider);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1445 CONSOLE_HAS_METHOD (mswindows, clear_region);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1446 CONSOLE_HAS_METHOD (mswindows, clear_frame);
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1447 CONSOLE_HAS_METHOD (mswindows, output_begin);
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 410
diff changeset
1448 CONSOLE_HAS_METHOD (mswindows, output_end);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1449 CONSOLE_HAS_METHOD (mswindows, flash);
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1450 CONSOLE_HAS_METHOD (mswindows, ring_bell);
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 418
diff changeset
1451 CONSOLE_HAS_METHOD (mswindows, bevel_area);
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1452 }