Mercurial > emacs
annotate src/dispnew.c @ 31903:3e0a1f91c149
(freeze_window_starts): Construct last argument for
foreach_window differently.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Tue, 26 Sep 2000 12:36:55 +0000 |
parents | 799ee0223550 |
children | 081edde76197 |
rev | line source |
---|---|
314 | 1 /* Updating of data structures for redisplay. |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25781
diff
changeset
|
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 97, 98, 1999 |
18853
4501a367a887
(direct_output_forward_char): Reenable check against
Richard M. Stallman <rms@gnu.org>
parents:
18774
diff
changeset
|
3 Free Software Foundation, Inc. |
314 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
1777
4edfaa19c7a7
* window.c (window_internal_width): New function.
Jim Blandy <jimb@redhat.com>
parents:
1766
diff
changeset
|
9 the Free Software Foundation; either version 2, or (at your option) |
314 | 10 any later version. |
11 | |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with GNU Emacs; see the file COPYING. If not, write to | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14125
diff
changeset
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14125
diff
changeset
|
20 Boston, MA 02111-1307, USA. */ |
314 | 21 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25781
diff
changeset
|
22 #include <config.h> |
314 | 23 #include <signal.h> |
7900
60795e826dad
Put stdio.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents:
7814
diff
changeset
|
24 #include <stdio.h> |
314 | 25 #include <ctype.h> |
26 | |
21514 | 27 #ifdef HAVE_UNISTD_H |
28 #include <unistd.h> | |
29 #endif | |
30 | |
3525
58e789baa27a
Include lisp.h earlier (before termhooks.h).
Richard M. Stallman <rms@gnu.org>
parents:
3517
diff
changeset
|
31 #include "lisp.h" |
314 | 32 #include "termchar.h" |
33 #include "termopts.h" | |
2198 | 34 #include "termhooks.h" |
13526
34382f4e23cb
Always include dispextern.h before cm.h.
Richard M. Stallman <rms@gnu.org>
parents:
13448
diff
changeset
|
35 /* cm.h must come after dispextern.h on Windows. */ |
13408
7e92386e1cf7
[HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13220
diff
changeset
|
36 #include "dispextern.h" |
7e92386e1cf7
[HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13220
diff
changeset
|
37 #include "cm.h" |
314 | 38 #include "buffer.h" |
17015
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
39 #include "charset.h" |
31093
6da961dff718
Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents:
30720
diff
changeset
|
40 #include "keyboard.h" |
764 | 41 #include "frame.h" |
314 | 42 #include "window.h" |
43 #include "commands.h" | |
44 #include "disptab.h" | |
45 #include "indent.h" | |
4384
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
46 #include "intervals.h" |
15065 | 47 #include "blockinput.h" |
21514 | 48 #include "process.h" |
314 | 49 |
17015
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
50 /* I don't know why DEC Alpha OSF1 fail to compile this file if we |
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
51 include the following file. */ |
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
52 /* #include "systty.h" */ |
12917 | 53 #include "syssignal.h" |
554 | 54 |
314 | 55 #ifdef HAVE_X_WINDOWS |
56 #include "xterm.h" | |
25012 | 57 #endif /* HAVE_X_WINDOWS */ |
314 | 58 |
13408
7e92386e1cf7
[HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13220
diff
changeset
|
59 #ifdef HAVE_NTGUI |
7e92386e1cf7
[HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13220
diff
changeset
|
60 #include "w32term.h" |
7e92386e1cf7
[HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13220
diff
changeset
|
61 #endif /* HAVE_NTGUI */ |
7e92386e1cf7
[HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13220
diff
changeset
|
62 |
25012 | 63 /* Include systime.h after xterm.h to avoid double inclusion of time.h. */ |
64 | |
7808
52e2eb6245d4
Include systime.h after xterm.h.
Richard M. Stallman <rms@gnu.org>
parents:
7648
diff
changeset
|
65 #include "systime.h" |
7558
8497bcb9fb8e
(PENDING_OUTPUT_COUNT): If __GNU_LIBRARY__,
Richard M. Stallman <rms@gnu.org>
parents:
7530
diff
changeset
|
66 #include <errno.h> |
8497bcb9fb8e
(PENDING_OUTPUT_COUNT): If __GNU_LIBRARY__,
Richard M. Stallman <rms@gnu.org>
parents:
7530
diff
changeset
|
67 |
25012 | 68 /* To get the prototype for `sleep'. */ |
69 | |
70 #ifdef HAVE_UNISTD_H | |
71 #include <unistd.h> | |
72 #endif | |
73 | |
314 | 74 #define max(a, b) ((a) > (b) ? (a) : (b)) |
75 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
76 | |
77 /* Get number of chars of output now in the buffer of a stdio stream. | |
25012 | 78 This ought to be built in in stdio, but it isn't. Some s- files |
79 override this because their stdio internals differ. */ | |
80 | |
5214
c4bf07b226be
(PENDING_OUTPUT_COUNT) [__GNU_LIBRARY__]: Alternate definition for the GNU
Roland McGrath <roland@gnu.org>
parents:
5083
diff
changeset
|
81 #ifdef __GNU_LIBRARY__ |
25012 | 82 |
83 /* The s- file might have overridden the definition with one that | |
84 works for the system's C library. But we are using the GNU C | |
85 library, so this is the right definition for every system. */ | |
86 | |
7558
8497bcb9fb8e
(PENDING_OUTPUT_COUNT): If __GNU_LIBRARY__,
Richard M. Stallman <rms@gnu.org>
parents:
7530
diff
changeset
|
87 #ifdef GNU_LIBRARY_PENDING_OUTPUT_COUNT |
8497bcb9fb8e
(PENDING_OUTPUT_COUNT): If __GNU_LIBRARY__,
Richard M. Stallman <rms@gnu.org>
parents:
7530
diff
changeset
|
88 #define PENDING_OUTPUT_COUNT GNU_LIBRARY_PENDING_OUTPUT_COUNT |
8497bcb9fb8e
(PENDING_OUTPUT_COUNT): If __GNU_LIBRARY__,
Richard M. Stallman <rms@gnu.org>
parents:
7530
diff
changeset
|
89 #else |
7443
a9cb818e5316
[__GNU_LIBRARY__]: Redefine PENDING_OUTPUT_COUNT even if already defined.
Roland McGrath <roland@gnu.org>
parents:
7247
diff
changeset
|
90 #undef PENDING_OUTPUT_COUNT |
5214
c4bf07b226be
(PENDING_OUTPUT_COUNT) [__GNU_LIBRARY__]: Alternate definition for the GNU
Roland McGrath <roland@gnu.org>
parents:
5083
diff
changeset
|
91 #define PENDING_OUTPUT_COUNT(FILE) ((FILE)->__bufp - (FILE)->__buffer) |
7558
8497bcb9fb8e
(PENDING_OUTPUT_COUNT): If __GNU_LIBRARY__,
Richard M. Stallman <rms@gnu.org>
parents:
7530
diff
changeset
|
92 #endif |
8497bcb9fb8e
(PENDING_OUTPUT_COUNT): If __GNU_LIBRARY__,
Richard M. Stallman <rms@gnu.org>
parents:
7530
diff
changeset
|
93 #else /* not __GNU_LIBRARY__ */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25781
diff
changeset
|
94 #if !defined (PENDING_OUTPUT_COUNT) && HAVE_STDIO_EXT_H && HAVE___FPENDING |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25781
diff
changeset
|
95 #include <stdio_ext.h> |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25781
diff
changeset
|
96 #define PENDING_OUTPUT_COUNT(FILE) __fpending (FILE) |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25781
diff
changeset
|
97 #endif |
7443
a9cb818e5316
[__GNU_LIBRARY__]: Redefine PENDING_OUTPUT_COUNT even if already defined.
Roland McGrath <roland@gnu.org>
parents:
7247
diff
changeset
|
98 #ifndef PENDING_OUTPUT_COUNT |
314 | 99 #define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_ptr - (FILE)->_base) |
100 #endif | |
25012 | 101 #endif /* not __GNU_LIBRARY__ */ |
102 | |
29437 | 103 #if defined (LINUX) && defined (HAVE_LIBNCURSES) |
104 #include <term.h> /* for tgetent */ | |
105 #endif | |
25012 | 106 |
107 /* Structure to pass dimensions around. Used for character bounding | |
108 boxes, glyph matrix dimensions and alike. */ | |
109 | |
110 struct dim | |
111 { | |
112 int width; | |
113 int height; | |
114 }; | |
115 | |
116 | |
117 /* Function prototypes. */ | |
118 | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
119 static void redraw_overlapping_rows P_ ((struct window *, int)); |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
120 static void redraw_overlapped_rows P_ ((struct window *, int)); |
25012 | 121 static int count_blanks P_ ((struct glyph *, int)); |
122 static int count_match P_ ((struct glyph *, struct glyph *, | |
123 struct glyph *, struct glyph *)); | |
124 static unsigned line_draw_cost P_ ((struct glyph_matrix *, int)); | |
125 static void update_frame_line P_ ((struct frame *, int)); | |
126 static struct dim allocate_matrices_for_frame_redisplay | |
127 P_ ((Lisp_Object, int, int, struct dim, int, int *)); | |
128 static void allocate_matrices_for_window_redisplay P_ ((struct window *, | |
129 struct dim)); | |
130 static int realloc_glyph_pool P_ ((struct glyph_pool *, struct dim)); | |
131 static void adjust_frame_glyphs P_ ((struct frame *)); | |
132 struct glyph_matrix *new_glyph_matrix P_ ((struct glyph_pool *)); | |
133 static void free_glyph_matrix P_ ((struct glyph_matrix *)); | |
134 static void adjust_glyph_matrix P_ ((struct window *, struct glyph_matrix *, | |
135 int, int, struct dim)); | |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
136 static void change_frame_size_1 P_ ((struct frame *, int, int, int, int, int)); |
25012 | 137 static void swap_glyph_pointers P_ ((struct glyph_row *, struct glyph_row *)); |
30323
4cd1b8fe118c
(direct_output_for_insert): Remove confusing
Gerd Moellmann <gerd@gnu.org>
parents:
30307
diff
changeset
|
138 #ifdef GLYPH_DEBUG |
25012 | 139 static int glyph_row_slice_p P_ ((struct glyph_row *, struct glyph_row *)); |
30323
4cd1b8fe118c
(direct_output_for_insert): Remove confusing
Gerd Moellmann <gerd@gnu.org>
parents:
30307
diff
changeset
|
140 #endif |
25012 | 141 static void fill_up_frame_row_with_spaces P_ ((struct glyph_row *, int)); |
142 static void build_frame_matrix_from_window_tree P_ ((struct glyph_matrix *, | |
143 struct window *)); | |
144 static void build_frame_matrix_from_leaf_window P_ ((struct glyph_matrix *, | |
145 struct window *)); | |
146 static struct glyph_pool *new_glyph_pool P_ ((void)); | |
147 static void free_glyph_pool P_ ((struct glyph_pool *)); | |
148 static void adjust_frame_glyphs_initially P_ ((void)); | |
149 static void adjust_frame_message_buffer P_ ((struct frame *)); | |
150 static void adjust_decode_mode_spec_buffer P_ ((struct frame *)); | |
151 static void fill_up_glyph_row_with_spaces P_ ((struct glyph_row *)); | |
152 static void build_frame_matrix P_ ((struct frame *)); | |
153 void clear_current_matrices P_ ((struct frame *)); | |
154 void scroll_glyph_matrix_range P_ ((struct glyph_matrix *, int, int, | |
155 int, int)); | |
156 static void clear_window_matrices P_ ((struct window *, int)); | |
157 static void fill_up_glyph_row_area_with_spaces P_ ((struct glyph_row *, int)); | |
158 static int scrolling_window P_ ((struct window *, int)); | |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
159 static int update_window_line P_ ((struct window *, int, int *)); |
25012 | 160 static void update_marginal_area P_ ((struct window *, int, int)); |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
161 static int update_text_area P_ ((struct window *, int)); |
25012 | 162 static void make_current P_ ((struct glyph_matrix *, struct glyph_matrix *, |
163 int)); | |
164 static void mirror_make_current P_ ((struct window *, int)); | |
165 void check_window_matrix_pointers P_ ((struct window *)); | |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
166 #if GLYPH_DEBUG |
25012 | 167 static void check_matrix_pointers P_ ((struct glyph_matrix *, |
168 struct glyph_matrix *)); | |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
169 #endif |
25012 | 170 static void mirror_line_dance P_ ((struct window *, int, int, int *, char *)); |
171 static int update_window_tree P_ ((struct window *, int)); | |
172 static int update_window P_ ((struct window *, int)); | |
173 static int update_frame_1 P_ ((struct frame *, int, int)); | |
174 static void set_window_cursor_after_update P_ ((struct window *)); | |
175 static int row_equal_p P_ ((struct window *, struct glyph_row *, | |
30152
f6270e5282da
(direct_output_forward_char): Give up if currently
Gerd Moellmann <gerd@gnu.org>
parents:
30041
diff
changeset
|
176 struct glyph_row *, int)); |
25012 | 177 static void adjust_frame_glyphs_for_window_redisplay P_ ((struct frame *)); |
178 static void adjust_frame_glyphs_for_frame_redisplay P_ ((struct frame *)); | |
179 static void reverse_rows P_ ((struct glyph_matrix *, int, int)); | |
180 static int margin_glyphs_to_reserve P_ ((struct window *, int, Lisp_Object)); | |
27855
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
181 static void sync_window_with_frame_matrix_rows P_ ((struct window *)); |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
182 struct window *frame_row_to_window P_ ((struct window *, int)); |
25012 | 183 |
184 | |
185 | |
186 /* Non-zero means don't pause redisplay for pending input. (This is | |
187 for debugging and for a future implementation of EDT-like | |
188 scrolling. */ | |
189 | |
190 int redisplay_dont_pause; | |
10770
79745e047484
(change_frame_size_1): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10745
diff
changeset
|
191 |
554 | 192 /* Nonzero upon entry to redisplay means do not assume anything about |
764 | 193 current contents of actual terminal frame; clear and redraw it. */ |
314 | 194 |
764 | 195 int frame_garbaged; |
314 | 196 |
25012 | 197 /* Nonzero means last display completed. Zero means it was preempted. */ |
314 | 198 |
199 int display_completed; | |
200 | |
25012 | 201 /* Lisp variable visible-bell; enables use of screen-flash instead of |
202 audible bell. */ | |
314 | 203 |
204 int visible_bell; | |
205 | |
764 | 206 /* Invert the color of the whole frame, at a low level. */ |
314 | 207 |
208 int inverse_video; | |
209 | |
210 /* Line speed of the terminal. */ | |
211 | |
212 int baud_rate; | |
213 | |
25012 | 214 /* Either nil or a symbol naming the window system under which Emacs |
215 is running. */ | |
314 | 216 |
217 Lisp_Object Vwindow_system; | |
218 | |
219 /* Version number of X windows: 10, 11 or nil. */ | |
25012 | 220 |
314 | 221 Lisp_Object Vwindow_system_version; |
222 | |
25012 | 223 /* Vector of glyph definitions. Indexed by glyph number, the contents |
224 are a string which is how to output the glyph. | |
314 | 225 |
226 If Vglyph_table is nil, a glyph is output by using its low 8 bits | |
25012 | 227 as a character code. |
228 | |
229 This is an obsolete feature that is no longer used. The variable | |
230 is retained for compatibility. */ | |
314 | 231 |
232 Lisp_Object Vglyph_table; | |
233 | |
234 /* Display table to use for vectors that don't specify their own. */ | |
235 | |
236 Lisp_Object Vstandard_display_table; | |
237 | |
25012 | 238 /* Nonzero means reading single-character input with prompt so put |
239 cursor on mini-buffer after the prompt. positive means at end of | |
240 text in echo area; negative means at beginning of line. */ | |
241 | |
314 | 242 int cursor_in_echo_area; |
13220
2e9014617492
(Qdisplay_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13105
diff
changeset
|
243 |
30720
64f3338f72d8
(Qredisplay_dont_pause): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30713
diff
changeset
|
244 Lisp_Object Qdisplay_table, Qredisplay_dont_pause; |
25012 | 245 |
314 | 246 |
25012 | 247 /* The currently selected frame. In a single-frame version, this |
25666
063da8f6a487
(selected_frame): Make it a Lisp_Object.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
248 variable always equals the_only_frame. */ |
063da8f6a487
(selected_frame): Make it a Lisp_Object.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
249 |
063da8f6a487
(selected_frame): Make it a Lisp_Object.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
250 Lisp_Object selected_frame; |
25012 | 251 |
252 /* A frame which is not just a mini-buffer, or 0 if there are no such | |
764 | 253 frames. This is usually the most recent such frame that was |
9572 | 254 selected. In a single-frame version, this variable always holds |
255 the address of the_only_frame. */ | |
25012 | 256 |
257 struct frame *last_nonminibuf_frame; | |
258 | |
259 /* Stdio stream being used for copy of all output. */ | |
260 | |
261 FILE *termscript; | |
262 | |
263 /* Structure for info on cursor positioning. */ | |
264 | |
265 struct cm Wcm; | |
266 | |
267 /* 1 means SIGWINCH happened when not safe. */ | |
268 | |
269 int delayed_size_change; | |
270 | |
271 /* 1 means glyph initialization has been completed at startup. */ | |
272 | |
273 static int glyphs_initialized_initially_p; | |
274 | |
275 /* Updated window if != 0. Set by update_window. */ | |
276 | |
277 struct window *updated_window; | |
278 | |
279 /* Glyph row updated in update_window_line, and area that is updated. */ | |
280 | |
281 struct glyph_row *updated_row; | |
282 int updated_area; | |
283 | |
284 /* A glyph for a space. */ | |
285 | |
286 struct glyph space_glyph; | |
287 | |
288 /* Non-zero means update has been performed directly, so that there's | |
289 no need for redisplay_internal to do much work. Set by | |
290 direct_output_for_insert. */ | |
291 | |
292 int redisplay_performed_directly_p; | |
293 | |
294 /* Counts of allocated structures. These counts serve to diagnose | |
295 memory leaks and double frees. */ | |
296 | |
297 int glyph_matrix_count; | |
298 int glyph_pool_count; | |
299 | |
300 /* If non-null, the frame whose frame matrices are manipulated. If | |
301 null, window matrices are worked on. */ | |
302 | |
303 static struct frame *frame_matrix_frame; | |
304 | |
305 /* Current interface for window-based redisplay. Set from init_xterm. | |
306 A null value means we are not using window-based redisplay. */ | |
307 | |
308 struct redisplay_interface *rif; | |
309 | |
310 /* Non-zero means that fonts have been loaded since the last glyph | |
311 matrix adjustments. Redisplay must stop, and glyph matrices must | |
312 be adjusted when this flag becomes non-zero during display. The | |
313 reason fonts can be loaded so late is that fonts of fontsets are | |
314 loaded on demand. */ | |
315 | |
316 int fonts_changed_p; | |
317 | |
318 /* Convert vpos and hpos from frame to window and vice versa. | |
319 This may only be used for terminal frames. */ | |
320 | |
321 #if GLYPH_DEBUG | |
322 | |
323 static int window_to_frame_vpos P_ ((struct window *, int)); | |
324 static int window_to_frame_hpos P_ ((struct window *, int)); | |
325 #define WINDOW_TO_FRAME_VPOS(W, VPOS) window_to_frame_vpos ((W), (VPOS)) | |
326 #define WINDOW_TO_FRAME_HPOS(W, HPOS) window_to_frame_hpos ((W), (HPOS)) | |
327 | |
328 #else /* GLYPH_DEBUG == 0 */ | |
329 | |
330 #define WINDOW_TO_FRAME_VPOS(W, VPOS) ((VPOS) + XFASTINT ((W)->top)) | |
331 #define WINDOW_TO_FRAME_HPOS(W, HPOS) ((HPOS) + XFASTINT ((W)->left)) | |
332 | |
333 #endif /* GLYPH_DEBUG == 0 */ | |
334 | |
335 | |
336 /* Like bcopy except never gets confused by overlap. Let this be the | |
337 first function defined in this file, or change emacs.c where the | |
338 address of this function is used. */ | |
314 | 339 |
340 void | |
341 safe_bcopy (from, to, size) | |
342 char *from, *to; | |
343 int size; | |
344 { | |
1588
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
345 if (size <= 0 || from == to) |
314 | 346 return; |
347 | |
1588
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
348 /* If the source and destination don't overlap, then bcopy can |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
349 handle it. If they do overlap, but the destination is lower in |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
350 memory than the source, we'll assume bcopy can handle that. */ |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
351 if (to < from || from + size <= to) |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
352 bcopy (from, to, size); |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
353 |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
354 /* Otherwise, we'll copy from the end. */ |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
355 else |
314 | 356 { |
1588
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
357 register char *endf = from + size; |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
358 register char *endt = to + size; |
314 | 359 |
360 /* If TO - FROM is large, then we should break the copy into | |
361 nonoverlapping chunks of TO - FROM bytes each. However, if | |
362 TO - FROM is small, then the bcopy function call overhead | |
363 makes this not worth it. The crossover point could be about | |
1588
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
364 anywhere. Since I don't think the obvious copy loop is too |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
365 bad, I'm trying to err in its favor. */ |
314 | 366 if (to - from < 64) |
367 { | |
368 do | |
369 *--endt = *--endf; | |
370 while (endf != from); | |
371 } | |
372 else | |
373 { | |
1588
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
374 for (;;) |
314 | 375 { |
376 endt -= (to - from); | |
377 endf -= (to - from); | |
378 | |
1588
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
379 if (endt < to) |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
380 break; |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
381 |
314 | 382 bcopy (endf, endt, to - from); |
383 } | |
1588
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
384 |
732a88db381f
* dispnew.c [not MULTI_FRAME] (Fredraw_display): Pass the correct
Jim Blandy <jimb@redhat.com>
parents:
1495
diff
changeset
|
385 /* If SIZE wasn't a multiple of TO - FROM, there will be a |
25012 | 386 little left over. The amount left over is (endt + (to - |
387 from)) - to, which is endt - from. */ | |
314 | 388 bcopy (from, to, endt - from); |
389 } | |
390 } | |
391 } | |
392 | |
25012 | 393 |
394 | |
395 /*********************************************************************** | |
396 Glyph Matrices | |
397 ***********************************************************************/ | |
398 | |
399 /* Allocate and return a glyph_matrix structure. POOL is the glyph | |
400 pool from which memory for the matrix should be allocated, or null | |
401 for window-based redisplay where no glyph pools are used. The | |
402 member `pool' of the glyph matrix structure returned is set to | |
403 POOL, the structure is otherwise zeroed. */ | |
404 | |
405 struct glyph_matrix * | |
406 new_glyph_matrix (pool) | |
407 struct glyph_pool *pool; | |
408 { | |
409 struct glyph_matrix *result; | |
410 | |
411 /* Allocate and clear. */ | |
412 result = (struct glyph_matrix *) xmalloc (sizeof *result); | |
413 bzero (result, sizeof *result); | |
414 | |
415 /* Increment number of allocated matrices. This count is used | |
416 to detect memory leaks. */ | |
417 ++glyph_matrix_count; | |
418 | |
419 /* Set pool and return. */ | |
420 result->pool = pool; | |
421 return result; | |
422 } | |
423 | |
424 | |
425 /* Free glyph matrix MATRIX. Passing in a null MATRIX is allowed. | |
426 | |
427 The global counter glyph_matrix_count is decremented when a matrix | |
428 is freed. If the count gets negative, more structures were freed | |
429 than allocated, i.e. one matrix was freed more than once or a bogus | |
430 pointer was passed to this function. | |
431 | |
432 If MATRIX->pool is null, this means that the matrix manages its own | |
433 glyph memory---this is done for matrices on X frames. Freeing the | |
434 matrix also frees the glyph memory in this case. */ | |
435 | |
436 static void | |
437 free_glyph_matrix (matrix) | |
438 struct glyph_matrix *matrix; | |
439 { | |
440 if (matrix) | |
441 { | |
442 int i; | |
443 | |
444 /* Detect the case that more matrices are freed than were | |
445 allocated. */ | |
446 if (--glyph_matrix_count < 0) | |
447 abort (); | |
448 | |
449 /* Free glyph memory if MATRIX owns it. */ | |
450 if (matrix->pool == NULL) | |
451 for (i = 0; i < matrix->rows_allocated; ++i) | |
452 xfree (matrix->rows[i].glyphs[LEFT_MARGIN_AREA]); | |
453 | |
454 /* Free row structures and the matrix itself. */ | |
455 xfree (matrix->rows); | |
456 xfree (matrix); | |
457 } | |
458 } | |
459 | |
460 | |
461 /* Return the number of glyphs to reserve for a marginal area of | |
462 window W. TOTAL_GLYPHS is the number of glyphs in a complete | |
463 display line of window W. MARGIN gives the width of the marginal | |
464 area in canonical character units. MARGIN should be an integer | |
465 or a float. */ | |
466 | |
467 static int | |
468 margin_glyphs_to_reserve (w, total_glyphs, margin) | |
469 struct window *w; | |
470 int total_glyphs; | |
471 Lisp_Object margin; | |
472 { | |
473 int n; | |
474 | |
475 if (NUMBERP (margin)) | |
476 { | |
477 int width = XFASTINT (w->width); | |
478 double d = max (0, XFLOATINT (margin)); | |
479 d = min (width / 2 - 1, d); | |
480 n = (int) ((double) total_glyphs / width * d); | |
481 } | |
482 else | |
483 n = 0; | |
484 | |
485 return n; | |
486 } | |
487 | |
488 | |
489 /* Adjust glyph matrix MATRIX on window W or on a frame to changed | |
490 window sizes. | |
491 | |
492 W is null if the function is called for a frame glyph matrix. | |
493 Otherwise it is the window MATRIX is a member of. X and Y are the | |
494 indices of the first column and row of MATRIX within the frame | |
495 matrix, if such a matrix exists. They are zero for purely | |
496 window-based redisplay. DIM is the needed size of the matrix. | |
497 | |
498 In window-based redisplay, where no frame matrices exist, glyph | |
499 matrices manage their own glyph storage. Otherwise, they allocate | |
500 storage from a common frame glyph pool which can be found in | |
501 MATRIX->pool. | |
502 | |
503 The reason for this memory management strategy is to avoid complete | |
504 frame redraws if possible. When we allocate from a common pool, a | |
505 change of the location or size of a sub-matrix within the pool | |
506 requires a complete redisplay of the frame because we cannot easily | |
507 make sure that the current matrices of all windows still agree with | |
508 what is displayed on the screen. While this is usually fast, it | |
509 leads to screen flickering. */ | |
510 | |
511 static void | |
512 adjust_glyph_matrix (w, matrix, x, y, dim) | |
513 struct window *w; | |
514 struct glyph_matrix *matrix; | |
515 int x, y; | |
516 struct dim dim; | |
517 { | |
518 int i; | |
519 int new_rows; | |
520 int marginal_areas_changed_p = 0; | |
25546 | 521 int header_line_changed_p = 0; |
522 int header_line_p = 0; | |
25012 | 523 int left = -1, right = -1; |
524 int window_x, window_y, window_width, window_height; | |
525 | |
526 /* See if W had a top line that has disappeared now, or vice versa. */ | |
527 if (w) | |
528 { | |
25546 | 529 header_line_p = WINDOW_WANTS_HEADER_LINE_P (w); |
530 header_line_changed_p = header_line_p != matrix->header_line_p; | |
25012 | 531 } |
25546 | 532 matrix->header_line_p = header_line_p; |
25012 | 533 |
534 /* Do nothing if MATRIX' size, position, vscroll, and marginal areas | |
535 haven't changed. This optimization is important because preserving | |
536 the matrix means preventing redisplay. */ | |
537 if (matrix->pool == NULL) | |
538 { | |
539 window_box (w, -1, &window_x, &window_y, &window_width, &window_height); | |
540 left = margin_glyphs_to_reserve (w, dim.width, w->left_margin_width); | |
541 right = margin_glyphs_to_reserve (w, dim.width, w->right_margin_width); | |
542 xassert (left >= 0 && right >= 0); | |
543 marginal_areas_changed_p = (left != matrix->left_margin_glyphs | |
544 || right != matrix->right_margin_glyphs); | |
545 | |
546 if (!marginal_areas_changed_p | |
547 && !fonts_changed_p | |
25546 | 548 && !header_line_changed_p |
25012 | 549 && matrix->window_top_y == XFASTINT (w->top) |
550 && matrix->window_height == window_height | |
551 && matrix->window_vscroll == w->vscroll | |
552 && matrix->window_width == window_width) | |
553 return; | |
554 } | |
555 | |
556 /* Enlarge MATRIX->rows if necessary. New rows are cleared. */ | |
557 if (matrix->rows_allocated < dim.height) | |
558 { | |
559 int size = dim.height * sizeof (struct glyph_row); | |
560 new_rows = dim.height - matrix->rows_allocated; | |
561 matrix->rows = (struct glyph_row *) xrealloc (matrix->rows, size); | |
562 bzero (matrix->rows + matrix->rows_allocated, | |
563 new_rows * sizeof *matrix->rows); | |
564 matrix->rows_allocated = dim.height; | |
565 } | |
566 else | |
567 new_rows = 0; | |
568 | |
569 /* If POOL is not null, MATRIX is a frame matrix or a window matrix | |
570 on a frame not using window-based redisplay. Set up pointers for | |
571 each row into the glyph pool. */ | |
572 if (matrix->pool) | |
573 { | |
574 xassert (matrix->pool->glyphs); | |
575 | |
576 if (w) | |
577 { | |
578 left = margin_glyphs_to_reserve (w, dim.width, | |
579 w->left_margin_width); | |
580 right = margin_glyphs_to_reserve (w, dim.width, | |
581 w->right_margin_width); | |
582 } | |
583 else | |
584 left = right = 0; | |
585 | |
586 for (i = 0; i < dim.height; ++i) | |
587 { | |
588 struct glyph_row *row = &matrix->rows[i]; | |
589 | |
590 row->glyphs[LEFT_MARGIN_AREA] | |
591 = (matrix->pool->glyphs | |
592 + (y + i) * matrix->pool->ncolumns | |
593 + x); | |
594 | |
595 if (w == NULL | |
596 || row == matrix->rows + dim.height - 1 | |
25546 | 597 || (row == matrix->rows && matrix->header_line_p)) |
25012 | 598 { |
599 row->glyphs[TEXT_AREA] | |
600 = row->glyphs[LEFT_MARGIN_AREA]; | |
601 row->glyphs[RIGHT_MARGIN_AREA] | |
602 = row->glyphs[TEXT_AREA] + dim.width; | |
603 row->glyphs[LAST_AREA] | |
604 = row->glyphs[RIGHT_MARGIN_AREA]; | |
605 } | |
606 else | |
607 { | |
608 row->glyphs[TEXT_AREA] | |
609 = row->glyphs[LEFT_MARGIN_AREA] + left; | |
610 row->glyphs[RIGHT_MARGIN_AREA] | |
611 = row->glyphs[TEXT_AREA] + dim.width - left - right; | |
612 row->glyphs[LAST_AREA] | |
613 = row->glyphs[LEFT_MARGIN_AREA] + dim.width; | |
614 } | |
615 } | |
616 | |
617 matrix->left_margin_glyphs = left; | |
618 matrix->right_margin_glyphs = right; | |
619 } | |
620 else | |
621 { | |
622 /* If MATRIX->pool is null, MATRIX is responsible for managing | |
623 its own memory. Allocate glyph memory from the heap. */ | |
624 if (dim.width > matrix->matrix_w | |
625 || new_rows | |
25546 | 626 || header_line_changed_p |
25012 | 627 || marginal_areas_changed_p) |
628 { | |
629 struct glyph_row *row = matrix->rows; | |
630 struct glyph_row *end = row + matrix->rows_allocated; | |
631 | |
632 while (row < end) | |
633 { | |
634 row->glyphs[LEFT_MARGIN_AREA] | |
635 = (struct glyph *) xrealloc (row->glyphs[LEFT_MARGIN_AREA], | |
636 (dim.width | |
637 * sizeof (struct glyph))); | |
638 | |
639 /* The mode line never has marginal areas. */ | |
640 if (row == matrix->rows + dim.height - 1 | |
25546 | 641 || (row == matrix->rows && matrix->header_line_p)) |
25012 | 642 { |
643 row->glyphs[TEXT_AREA] | |
644 = row->glyphs[LEFT_MARGIN_AREA]; | |
645 row->glyphs[RIGHT_MARGIN_AREA] | |
646 = row->glyphs[TEXT_AREA] + dim.width; | |
647 row->glyphs[LAST_AREA] | |
648 = row->glyphs[RIGHT_MARGIN_AREA]; | |
649 } | |
650 else | |
651 { | |
652 row->glyphs[TEXT_AREA] | |
653 = row->glyphs[LEFT_MARGIN_AREA] + left; | |
654 row->glyphs[RIGHT_MARGIN_AREA] | |
655 = row->glyphs[TEXT_AREA] + dim.width - left - right; | |
656 row->glyphs[LAST_AREA] | |
657 = row->glyphs[LEFT_MARGIN_AREA] + dim.width; | |
658 } | |
659 ++row; | |
660 } | |
661 } | |
662 | |
663 xassert (left >= 0 && right >= 0); | |
664 matrix->left_margin_glyphs = left; | |
665 matrix->right_margin_glyphs = right; | |
666 } | |
667 | |
668 /* Number of rows to be used by MATRIX. */ | |
669 matrix->nrows = dim.height; | |
670 | |
671 /* Mark rows in a current matrix of a window as not having valid | |
672 contents. It's important to not do this for desired matrices. | |
673 When Emacs starts, it may already be building desired matrices | |
674 when this function runs. */ | |
675 if (w && matrix == w->current_matrix) | |
676 { | |
677 /* Optimize the case that only the height has changed (C-x 2, | |
678 upper window). Invalidate all rows that are no longer part | |
679 of the window. */ | |
680 if (!marginal_areas_changed_p | |
681 && matrix->window_top_y == XFASTINT (w->top) | |
682 && matrix->window_width == window_width) | |
683 { | |
684 i = 0; | |
685 while (matrix->rows[i].enabled_p | |
686 && (MATRIX_ROW_BOTTOM_Y (matrix->rows + i) | |
687 < matrix->window_height)) | |
688 ++i; | |
689 | |
690 /* Window end is invalid, if inside of the rows that | |
691 are invalidated. */ | |
692 if (INTEGERP (w->window_end_vpos) | |
693 && XFASTINT (w->window_end_vpos) >= i) | |
694 w->window_end_valid = Qnil; | |
695 | |
696 while (i < matrix->nrows) | |
697 matrix->rows[i++].enabled_p = 0; | |
698 } | |
699 else | |
700 { | |
701 for (i = 0; i < matrix->nrows; ++i) | |
702 matrix->rows[i].enabled_p = 0; | |
703 } | |
704 } | |
705 | |
706 /* Remember last values to be able to optimize frame redraws. */ | |
707 matrix->matrix_x = x; | |
708 matrix->matrix_y = y; | |
709 matrix->matrix_w = dim.width; | |
710 matrix->matrix_h = dim.height; | |
711 | |
712 /* Record the top y location and height of W at the time the matrix | |
713 was last adjusted. This is used to optimize redisplay above. */ | |
714 if (w) | |
715 { | |
716 matrix->window_top_y = XFASTINT (w->top); | |
717 matrix->window_height = window_height; | |
718 matrix->window_width = window_width; | |
719 matrix->window_vscroll = w->vscroll; | |
720 } | |
721 } | |
722 | |
723 | |
724 /* Reverse the contents of rows in MATRIX between START and END. The | |
725 contents of the row at END - 1 end up at START, END - 2 at START + | |
726 1 etc. This is part of the implementation of rotate_matrix (see | |
727 below). */ | |
314 | 728 |
729 static void | |
25012 | 730 reverse_rows (matrix, start, end) |
731 struct glyph_matrix *matrix; | |
732 int start, end; | |
314 | 733 { |
25012 | 734 int i, j; |
735 | |
736 for (i = start, j = end - 1; i < j; ++i, --j) | |
737 { | |
738 /* Non-ISO HP/UX compiler doesn't like auto struct | |
739 initialization. */ | |
740 struct glyph_row temp; | |
741 temp = matrix->rows[i]; | |
742 matrix->rows[i] = matrix->rows[j]; | |
743 matrix->rows[j] = temp; | |
744 } | |
314 | 745 } |
746 | |
25012 | 747 |
748 /* Rotate the contents of rows in MATRIX in the range FIRST .. LAST - | |
749 1 by BY positions. BY < 0 means rotate left, i.e. towards lower | |
750 indices. (Note: this does not copy glyphs, only glyph pointers in | |
751 row structures are moved around). | |
752 | |
753 The algorithm used for rotating the vector was, I believe, first | |
754 described by Kernighan. See the vector R as consisting of two | |
755 sub-vectors AB, where A has length BY for BY >= 0. The result | |
756 after rotating is then BA. Reverse both sub-vectors to get ArBr | |
757 and reverse the result to get (ArBr)r which is BA. Similar for | |
758 rotating right. */ | |
759 | |
760 void | |
761 rotate_matrix (matrix, first, last, by) | |
762 struct glyph_matrix *matrix; | |
763 int first, last, by; | |
314 | 764 { |
25012 | 765 if (by < 0) |
766 { | |
767 /* Up (rotate left, i.e. towards lower indices). */ | |
768 by = -by; | |
769 reverse_rows (matrix, first, first + by); | |
770 reverse_rows (matrix, first + by, last); | |
771 reverse_rows (matrix, first, last); | |
772 } | |
773 else if (by > 0) | |
314 | 774 { |
25012 | 775 /* Down (rotate right, i.e. towards higher indices). */ |
776 reverse_rows (matrix, last - by, last); | |
777 reverse_rows (matrix, first, last - by); | |
778 reverse_rows (matrix, first, last); | |
314 | 779 } |
25012 | 780 } |
781 | |
782 | |
783 /* Increment buffer positions in glyph rows of MATRIX. Do it for rows | |
784 with indices START <= index < END. Increment positions by DELTA/ | |
785 DELTA_BYTES. */ | |
786 | |
787 void | |
28708
4e2497e6757e
(increment_matrix_positions): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
28682
diff
changeset
|
788 increment_matrix_positions (matrix, start, end, delta, delta_bytes) |
25012 | 789 struct glyph_matrix *matrix; |
790 int start, end, delta, delta_bytes; | |
791 { | |
792 /* Check that START and END are reasonable values. */ | |
793 xassert (start >= 0 && start <= matrix->nrows); | |
794 xassert (end >= 0 && end <= matrix->nrows); | |
795 xassert (start <= end); | |
796 | |
797 for (; start < end; ++start) | |
28708
4e2497e6757e
(increment_matrix_positions): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
28682
diff
changeset
|
798 increment_row_positions (matrix->rows + start, delta, delta_bytes); |
25012 | 799 } |
800 | |
801 | |
802 /* Enable a range of rows in glyph matrix MATRIX. START and END are | |
803 the row indices of the first and last + 1 row to enable. If | |
804 ENABLED_P is non-zero, enabled_p flags in rows will be set to 1. */ | |
805 | |
806 void | |
807 enable_glyph_matrix_rows (matrix, start, end, enabled_p) | |
808 struct glyph_matrix *matrix; | |
809 int start, end; | |
810 int enabled_p; | |
811 { | |
812 for (; start < end; ++start) | |
813 matrix->rows[start].enabled_p = enabled_p != 0; | |
814 } | |
815 | |
816 | |
817 /* Clear MATRIX. | |
818 | |
819 This empties all rows in MATRIX by setting the enabled_p flag for | |
820 all rows of the matrix to zero. The function prepare_desired_row | |
821 will eventually really clear a row when it sees one with a zero | |
822 enabled_p flag. | |
823 | |
824 Resets update hints to defaults value. The only update hint | |
825 currently present is the flag MATRIX->no_scrolling_p. */ | |
826 | |
827 void | |
828 clear_glyph_matrix (matrix) | |
829 struct glyph_matrix *matrix; | |
830 { | |
831 if (matrix) | |
314 | 832 { |
25012 | 833 enable_glyph_matrix_rows (matrix, 0, matrix->nrows, 0); |
834 matrix->no_scrolling_p = 0; | |
314 | 835 } |
836 } | |
25012 | 837 |
838 | |
839 /* Shift part of the glyph matrix MATRIX of window W up or down. | |
840 Increment y-positions in glyph rows between START and END by DY, | |
841 and recompute their visible height. */ | |
842 | |
843 void | |
844 shift_glyph_matrix (w, matrix, start, end, dy) | |
845 struct window *w; | |
846 struct glyph_matrix *matrix; | |
847 int start, end, dy; | |
848 { | |
849 int min_y, max_y; | |
850 | |
851 xassert (start <= end); | |
852 xassert (start >= 0 && start < matrix->nrows); | |
853 xassert (end >= 0 && end <= matrix->nrows); | |
854 | |
25546 | 855 min_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w); |
25012 | 856 max_y = WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE (w); |
857 | |
858 for (; start < end; ++start) | |
859 { | |
860 struct glyph_row *row = &matrix->rows[start]; | |
861 | |
862 row->y += dy; | |
863 | |
864 if (row->y < min_y) | |
865 row->visible_height = row->height - (min_y - row->y); | |
866 else if (row->y + row->height > max_y) | |
867 row->visible_height = row->height - (row->y + row->height - max_y); | |
868 else | |
869 row->visible_height = row->height; | |
870 } | |
871 } | |
872 | |
873 | |
874 /* Mark all rows in current matrices of frame F as invalid. Marking | |
875 invalid is done by setting enabled_p to zero for all rows in a | |
876 current matrix. */ | |
877 | |
878 void | |
879 clear_current_matrices (f) | |
880 register struct frame *f; | |
881 { | |
882 /* Clear frame current matrix, if we have one. */ | |
883 if (f->current_matrix) | |
884 clear_glyph_matrix (f->current_matrix); | |
885 | |
886 /* Clear the matrix of the menu bar window, if such a window exists. | |
887 The menu bar window is currently used to display menus on X when | |
888 no toolkit support is compiled in. */ | |
889 if (WINDOWP (f->menu_bar_window)) | |
890 clear_glyph_matrix (XWINDOW (f->menu_bar_window)->current_matrix); | |
891 | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
892 /* Clear the matrix of the tool-bar window, if any. */ |
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
893 if (WINDOWP (f->tool_bar_window)) |
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
894 clear_glyph_matrix (XWINDOW (f->tool_bar_window)->current_matrix); |
25012 | 895 |
896 /* Clear current window matrices. */ | |
897 xassert (WINDOWP (FRAME_ROOT_WINDOW (f))); | |
898 clear_window_matrices (XWINDOW (FRAME_ROOT_WINDOW (f)), 0); | |
899 } | |
900 | |
901 | |
902 /* Clear out all display lines of F for a coming redisplay. */ | |
314 | 903 |
21514 | 904 void |
25012 | 905 clear_desired_matrices (f) |
906 register struct frame *f; | |
314 | 907 { |
25012 | 908 if (f->desired_matrix) |
909 clear_glyph_matrix (f->desired_matrix); | |
910 | |
911 if (WINDOWP (f->menu_bar_window)) | |
912 clear_glyph_matrix (XWINDOW (f->menu_bar_window)->desired_matrix); | |
913 | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
914 if (WINDOWP (f->tool_bar_window)) |
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
915 clear_glyph_matrix (XWINDOW (f->tool_bar_window)->desired_matrix); |
25012 | 916 |
917 /* Do it for window matrices. */ | |
918 xassert (WINDOWP (FRAME_ROOT_WINDOW (f))); | |
919 clear_window_matrices (XWINDOW (FRAME_ROOT_WINDOW (f)), 1); | |
920 } | |
921 | |
922 | |
923 /* Clear matrices in window tree rooted in W. If DESIRED_P is | |
924 non-zero clear desired matrices, otherwise clear current matrices. */ | |
925 | |
926 static void | |
927 clear_window_matrices (w, desired_p) | |
928 struct window *w; | |
929 int desired_p; | |
930 { | |
931 while (w) | |
314 | 932 { |
25012 | 933 if (!NILP (w->hchild)) |
934 { | |
935 xassert (WINDOWP (w->hchild)); | |
936 clear_window_matrices (XWINDOW (w->hchild), desired_p); | |
937 } | |
938 else if (!NILP (w->vchild)) | |
314 | 939 { |
25012 | 940 xassert (WINDOWP (w->vchild)); |
941 clear_window_matrices (XWINDOW (w->vchild), desired_p); | |
942 } | |
943 else | |
944 { | |
945 if (desired_p) | |
946 clear_glyph_matrix (w->desired_matrix); | |
947 else | |
314 | 948 { |
25012 | 949 clear_glyph_matrix (w->current_matrix); |
950 w->window_end_valid = Qnil; | |
314 | 951 } |
25012 | 952 } |
953 | |
954 w = NILP (w->next) ? 0 : XWINDOW (w->next); | |
955 } | |
956 } | |
957 | |
958 | |
959 | |
960 /*********************************************************************** | |
961 Glyph Rows | |
962 | |
963 See dispextern.h for an overall explanation of glyph rows. | |
964 ***********************************************************************/ | |
965 | |
966 /* Clear glyph row ROW. Do it in a way that makes it robust against | |
967 changes in the glyph_row structure, i.e. addition or removal of | |
968 structure members. */ | |
969 | |
970 void | |
971 clear_glyph_row (row) | |
972 struct glyph_row *row; | |
973 { | |
974 struct glyph *p[1 + LAST_AREA]; | |
975 static struct glyph_row null_row; | |
976 | |
977 /* Save pointers. */ | |
978 p[LEFT_MARGIN_AREA] = row->glyphs[LEFT_MARGIN_AREA]; | |
979 p[TEXT_AREA] = row->glyphs[TEXT_AREA]; | |
980 p[RIGHT_MARGIN_AREA] = row->glyphs[RIGHT_MARGIN_AREA]; | |
981 p[LAST_AREA] = row->glyphs[LAST_AREA]; | |
982 | |
983 /* Clear. */ | |
984 *row = null_row; | |
985 | |
986 /* Restore pointers. */ | |
987 row->glyphs[LEFT_MARGIN_AREA] = p[LEFT_MARGIN_AREA]; | |
988 row->glyphs[TEXT_AREA] = p[TEXT_AREA]; | |
989 row->glyphs[RIGHT_MARGIN_AREA] = p[RIGHT_MARGIN_AREA]; | |
990 row->glyphs[LAST_AREA] = p[LAST_AREA]; | |
30041
b20d72b7aa4b
(clear_glyph_row): Add debug code in #if 0.
Gerd Moellmann <gerd@gnu.org>
parents:
29980
diff
changeset
|
991 |
b20d72b7aa4b
(clear_glyph_row): Add debug code in #if 0.
Gerd Moellmann <gerd@gnu.org>
parents:
29980
diff
changeset
|
992 #if 0 /* At some point, some bit-fields of struct glyph were not set, |
b20d72b7aa4b
(clear_glyph_row): Add debug code in #if 0.
Gerd Moellmann <gerd@gnu.org>
parents:
29980
diff
changeset
|
993 which made glyphs unequal when compared with GLYPH_EQUAL_P. |
b20d72b7aa4b
(clear_glyph_row): Add debug code in #if 0.
Gerd Moellmann <gerd@gnu.org>
parents:
29980
diff
changeset
|
994 Redisplay outputs such glyphs, and flickering effects were |
b20d72b7aa4b
(clear_glyph_row): Add debug code in #if 0.
Gerd Moellmann <gerd@gnu.org>
parents:
29980
diff
changeset
|
995 the result. This also depended on the contents of memory |
b20d72b7aa4b
(clear_glyph_row): Add debug code in #if 0.
Gerd Moellmann <gerd@gnu.org>
parents:
29980
diff
changeset
|
996 returned by xmalloc. If flickering happens again, activate |
b20d72b7aa4b
(clear_glyph_row): Add debug code in #if 0.
Gerd Moellmann <gerd@gnu.org>
parents:
29980
diff
changeset
|
997 the code below If the flickering is gone with that, chances |
b20d72b7aa4b
(clear_glyph_row): Add debug code in #if 0.
Gerd Moellmann <gerd@gnu.org>
parents:
29980
diff
changeset
|
998 are that the flickering has the same reason as here. */ |
b20d72b7aa4b
(clear_glyph_row): Add debug code in #if 0.
Gerd Moellmann <gerd@gnu.org>
parents:
29980
diff
changeset
|
999 bzero (p[0], (char *) p[LAST_AREA] - (char *) p[0]); |
b20d72b7aa4b
(clear_glyph_row): Add debug code in #if 0.
Gerd Moellmann <gerd@gnu.org>
parents:
29980
diff
changeset
|
1000 #endif |
25012 | 1001 } |
1002 | |
1003 | |
1004 /* Make ROW an empty, enabled row of canonical character height, | |
1005 in window W starting at y-position Y. */ | |
1006 | |
1007 void | |
1008 blank_row (w, row, y) | |
1009 struct window *w; | |
1010 struct glyph_row *row; | |
1011 int y; | |
1012 { | |
1013 int min_y, max_y; | |
1014 | |
25546 | 1015 min_y = WINDOW_DISPLAY_HEADER_LINE_HEIGHT (w); |
25012 | 1016 max_y = WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE (w); |
1017 | |
1018 clear_glyph_row (row); | |
1019 row->y = y; | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
1020 row->ascent = row->phys_ascent = 0; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
1021 row->height = row->phys_height = CANON_Y_UNIT (XFRAME (w->frame)); |
25012 | 1022 |
1023 if (row->y < min_y) | |
1024 row->visible_height = row->height - (min_y - row->y); | |
1025 else if (row->y + row->height > max_y) | |
1026 row->visible_height = row->height - (row->y + row->height - max_y); | |
1027 else | |
1028 row->visible_height = row->height; | |
1029 | |
1030 row->enabled_p = 1; | |
1031 } | |
1032 | |
1033 | |
1034 /* Increment buffer positions in glyph row ROW. DELTA and DELTA_BYTES | |
1035 are the amounts by which to change positions. Note that the first | |
1036 glyph of the text area of a row can have a buffer position even if | |
1037 the used count of the text area is zero. Such rows display line | |
1038 ends. */ | |
1039 | |
1040 void | |
28708
4e2497e6757e
(increment_matrix_positions): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
28682
diff
changeset
|
1041 increment_row_positions (row, delta, delta_bytes) |
25012 | 1042 struct glyph_row *row; |
1043 int delta, delta_bytes; | |
1044 { | |
1045 int area, i; | |
1046 | |
1047 /* Increment start and end positions. */ | |
1048 MATRIX_ROW_START_CHARPOS (row) += delta; | |
1049 MATRIX_ROW_START_BYTEPOS (row) += delta_bytes; | |
1050 MATRIX_ROW_END_CHARPOS (row) += delta; | |
1051 MATRIX_ROW_END_BYTEPOS (row) += delta_bytes; | |
1052 | |
1053 /* Increment positions in glyphs. */ | |
1054 for (area = 0; area < LAST_AREA; ++area) | |
1055 for (i = 0; i < row->used[area]; ++i) | |
1056 if (BUFFERP (row->glyphs[area][i].object) | |
1057 && row->glyphs[area][i].charpos > 0) | |
1058 row->glyphs[area][i].charpos += delta; | |
1059 | |
1060 /* Capture the case of rows displaying a line end. */ | |
1061 if (row->used[TEXT_AREA] == 0 | |
1062 && MATRIX_ROW_DISPLAYS_TEXT_P (row)) | |
1063 row->glyphs[TEXT_AREA]->charpos += delta; | |
1064 } | |
1065 | |
1066 | |
29336
5ccfe8a1638f
(find_glyph_row_slice, swap_glyphs_in_rows): Put in #if 0.
Gerd Moellmann <gerd@gnu.org>
parents:
28708
diff
changeset
|
1067 #if 0 |
25012 | 1068 /* Swap glyphs between two glyph rows A and B. This exchanges glyph |
1069 contents, i.e. glyph structure contents are exchanged between A and | |
1070 B without changing glyph pointers in A and B. */ | |
1071 | |
1072 static void | |
1073 swap_glyphs_in_rows (a, b) | |
1074 struct glyph_row *a, *b; | |
1075 { | |
1076 int area; | |
1077 | |
1078 for (area = 0; area < LAST_AREA; ++area) | |
1079 { | |
1080 /* Number of glyphs to swap. */ | |
1081 int max_used = max (a->used[area], b->used[area]); | |
1082 | |
1083 /* Start of glyphs in area of row A. */ | |
1084 struct glyph *glyph_a = a->glyphs[area]; | |
1085 | |
1086 /* End + 1 of glyphs in area of row A. */ | |
1087 struct glyph *glyph_a_end = a->glyphs[max_used]; | |
1088 | |
1089 /* Start of glyphs in area of row B. */ | |
1090 struct glyph *glyph_b = b->glyphs[area]; | |
1091 | |
1092 while (glyph_a < glyph_a_end) | |
1093 { | |
1094 /* Non-ISO HP/UX compiler doesn't like auto struct | |
1095 initialization. */ | |
1096 struct glyph temp; | |
1097 temp = *glyph_a; | |
1098 *glyph_a = *glyph_b; | |
1099 *glyph_b = temp; | |
1100 ++glyph_a; | |
1101 ++glyph_b; | |
314 | 1102 } |
1103 } | |
1104 } | |
25012 | 1105 |
29336
5ccfe8a1638f
(find_glyph_row_slice, swap_glyphs_in_rows): Put in #if 0.
Gerd Moellmann <gerd@gnu.org>
parents:
28708
diff
changeset
|
1106 #endif /* 0 */ |
25012 | 1107 |
1108 /* Exchange pointers to glyph memory between glyph rows A and B. */ | |
1109 | |
1110 static INLINE void | |
1111 swap_glyph_pointers (a, b) | |
1112 struct glyph_row *a, *b; | |
1113 { | |
1114 int i; | |
1115 for (i = 0; i < LAST_AREA + 1; ++i) | |
1116 { | |
1117 struct glyph *temp = a->glyphs[i]; | |
1118 a->glyphs[i] = b->glyphs[i]; | |
1119 b->glyphs[i] = temp; | |
1120 } | |
1121 } | |
1122 | |
1123 | |
1124 /* Copy glyph row structure FROM to glyph row structure TO, except | |
1125 that glyph pointers in the structures are left unchanged. */ | |
1126 | |
1127 INLINE void | |
1128 copy_row_except_pointers (to, from) | |
1129 struct glyph_row *to, *from; | |
1130 { | |
1131 struct glyph *pointers[1 + LAST_AREA]; | |
1132 | |
1133 /* Save glyph pointers of TO. */ | |
1134 bcopy (to->glyphs, pointers, sizeof to->glyphs); | |
1135 | |
1136 /* Do a structure assignment. */ | |
1137 *to = *from; | |
1138 | |
1139 /* Restore original pointers of TO. */ | |
1140 bcopy (pointers, to->glyphs, sizeof to->glyphs); | |
1141 } | |
1142 | |
1143 | |
1144 /* Copy contents of glyph row FROM to glyph row TO. Glyph pointers in | |
1145 TO and FROM are left unchanged. Glyph contents are copied from the | |
1146 glyph memory of FROM to the glyph memory of TO. Increment buffer | |
1147 positions in row TO by DELTA/ DELTA_BYTES. */ | |
1148 | |
1149 void | |
1150 copy_glyph_row_contents (to, from, delta, delta_bytes) | |
1151 struct glyph_row *to, *from; | |
1152 int delta, delta_bytes; | |
1153 { | |
1154 int area; | |
1155 | |
1156 /* This is like a structure assignment TO = FROM, except that | |
1157 glyph pointers in the rows are left unchanged. */ | |
1158 copy_row_except_pointers (to, from); | |
1159 | |
1160 /* Copy glyphs from FROM to TO. */ | |
1161 for (area = 0; area < LAST_AREA; ++area) | |
1162 if (from->used[area]) | |
1163 bcopy (from->glyphs[area], to->glyphs[area], | |
1164 from->used[area] * sizeof (struct glyph)); | |
1165 | |
1166 /* Increment buffer positions in TO by DELTA. */ | |
28708
4e2497e6757e
(increment_matrix_positions): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
28682
diff
changeset
|
1167 increment_row_positions (to, delta, delta_bytes); |
25012 | 1168 } |
1169 | |
1170 | |
1171 /* Assign glyph row FROM to glyph row TO. This works like a structure | |
1172 assignment TO = FROM, except that glyph pointers are not copied but | |
1173 exchanged between TO and FROM. Pointers must be exchanged to avoid | |
1174 a memory leak. */ | |
1175 | |
1176 static INLINE void | |
1177 assign_row (to, from) | |
1178 struct glyph_row *to, *from; | |
1179 { | |
1180 swap_glyph_pointers (to, from); | |
1181 copy_row_except_pointers (to, from); | |
1182 } | |
1183 | |
1184 | |
1185 /* Test whether the glyph memory of the glyph row WINDOW_ROW, which is | |
1186 a row in a window matrix, is a slice of the glyph memory of the | |
1187 glyph row FRAME_ROW which is a row in a frame glyph matrix. Value | |
1188 is non-zero if the glyph memory of WINDOW_ROW is part of the glyph | |
1189 memory of FRAME_ROW. */ | |
1190 | |
30323
4cd1b8fe118c
(direct_output_for_insert): Remove confusing
Gerd Moellmann <gerd@gnu.org>
parents:
30307
diff
changeset
|
1191 #ifdef GLYPH_DEBUG |
4cd1b8fe118c
(direct_output_for_insert): Remove confusing
Gerd Moellmann <gerd@gnu.org>
parents:
30307
diff
changeset
|
1192 |
25012 | 1193 static int |
1194 glyph_row_slice_p (window_row, frame_row) | |
1195 struct glyph_row *window_row, *frame_row; | |
1196 { | |
1197 struct glyph *window_glyph_start = window_row->glyphs[0]; | |
1198 struct glyph *frame_glyph_start = frame_row->glyphs[0]; | |
1199 struct glyph *frame_glyph_end = frame_row->glyphs[LAST_AREA]; | |
1200 | |
1201 return (frame_glyph_start <= window_glyph_start | |
1202 && window_glyph_start < frame_glyph_end); | |
1203 } | |
1204 | |
30323
4cd1b8fe118c
(direct_output_for_insert): Remove confusing
Gerd Moellmann <gerd@gnu.org>
parents:
30307
diff
changeset
|
1205 #endif /* GLYPH_DEBUG */ |
25012 | 1206 |
29336
5ccfe8a1638f
(find_glyph_row_slice, swap_glyphs_in_rows): Put in #if 0.
Gerd Moellmann <gerd@gnu.org>
parents:
28708
diff
changeset
|
1207 #if 0 |
5ccfe8a1638f
(find_glyph_row_slice, swap_glyphs_in_rows): Put in #if 0.
Gerd Moellmann <gerd@gnu.org>
parents:
28708
diff
changeset
|
1208 |
25012 | 1209 /* Find the row in the window glyph matrix WINDOW_MATRIX being a slice |
1210 of ROW in the frame matrix FRAME_MATRIX. Value is null if no row | |
1211 in WINDOW_MATRIX is found satisfying the condition. */ | |
1212 | |
1213 static struct glyph_row * | |
1214 find_glyph_row_slice (window_matrix, frame_matrix, row) | |
1215 struct glyph_matrix *window_matrix, *frame_matrix; | |
1216 int row; | |
1217 { | |
1218 int i; | |
1219 | |
1220 xassert (row >= 0 && row < frame_matrix->nrows); | |
1221 | |
1222 for (i = 0; i < window_matrix->nrows; ++i) | |
1223 if (glyph_row_slice_p (window_matrix->rows + i, | |
1224 frame_matrix->rows + row)) | |
1225 break; | |
1226 | |
1227 return i < window_matrix->nrows ? window_matrix->rows + i : 0; | |
1228 } | |
1229 | |
29336
5ccfe8a1638f
(find_glyph_row_slice, swap_glyphs_in_rows): Put in #if 0.
Gerd Moellmann <gerd@gnu.org>
parents:
28708
diff
changeset
|
1230 #endif /* 0 */ |
25012 | 1231 |
1232 /* Prepare ROW for display. Desired rows are cleared lazily, | |
1233 i.e. they are only marked as to be cleared by setting their | |
1234 enabled_p flag to zero. When a row is to be displayed, a prior | |
1235 call to this function really clears it. */ | |
1236 | |
1237 void | |
1238 prepare_desired_row (row) | |
1239 struct glyph_row *row; | |
1240 { | |
1241 if (!row->enabled_p) | |
1242 { | |
1243 clear_glyph_row (row); | |
1244 row->enabled_p = 1; | |
1245 } | |
1246 } | |
1247 | |
1248 | |
1249 /* Return a hash code for glyph row ROW. */ | |
1250 | |
1251 int | |
1252 line_hash_code (row) | |
1253 struct glyph_row *row; | |
1254 { | |
1255 int hash = 0; | |
1256 | |
1257 if (row->enabled_p) | |
1258 { | |
1259 if (row->inverse_p) | |
1260 { | |
1261 /* Give all highlighted lines the same hash code | |
1262 so as to encourage scrolling to leave them in place. */ | |
1263 hash = -1; | |
1264 } | |
1265 else | |
1266 { | |
1267 struct glyph *glyph = row->glyphs[TEXT_AREA]; | |
1268 struct glyph *end = glyph + row->used[TEXT_AREA]; | |
1269 | |
1270 while (glyph < end) | |
1271 { | |
26998
02e902f732d1
(line_hash_code) (direct_output_for_insert): Adjusted
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1272 int c = glyph->u.ch; |
02e902f732d1
(line_hash_code) (direct_output_for_insert): Adjusted
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1273 int face_id = glyph->face_id; |
25012 | 1274 if (must_write_spaces) |
26998
02e902f732d1
(line_hash_code) (direct_output_for_insert): Adjusted
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1275 c -= SPACEGLYPH; |
02e902f732d1
(line_hash_code) (direct_output_for_insert): Adjusted
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1276 hash = (((hash << 4) + (hash >> 24)) & 0x0fffffff) + c; |
02e902f732d1
(line_hash_code) (direct_output_for_insert): Adjusted
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1277 hash = (((hash << 4) + (hash >> 24)) & 0x0fffffff) + face_id; |
25012 | 1278 ++glyph; |
1279 } | |
1280 | |
1281 if (hash == 0) | |
1282 hash = 1; | |
1283 } | |
1284 } | |
1285 | |
1286 return hash; | |
1287 } | |
1288 | |
1289 | |
1290 /* Return the cost of drawing line VPOS In MATRIX. The cost equals | |
1291 the number of characters in the line. If must_write_spaces is | |
1292 zero, leading and trailing spaces are ignored. */ | |
1293 | |
1294 static unsigned int | |
1295 line_draw_cost (matrix, vpos) | |
1296 struct glyph_matrix *matrix; | |
1297 int vpos; | |
1298 { | |
1299 struct glyph_row *row = matrix->rows + vpos; | |
1300 struct glyph *beg = row->glyphs[TEXT_AREA]; | |
1301 struct glyph *end = beg + row->used[TEXT_AREA]; | |
1302 int len; | |
1303 Lisp_Object *glyph_table_base = GLYPH_TABLE_BASE; | |
1304 int glyph_table_len = GLYPH_TABLE_LENGTH; | |
1305 | |
1306 /* Ignore trailing and leading spaces if we can. */ | |
1307 if (!must_write_spaces) | |
1308 { | |
1309 /* Skip from the end over trailing spaces. */ | |
1310 while (end != beg && CHAR_GLYPH_SPACE_P (*end)) | |
1311 --end; | |
1312 | |
1313 /* All blank line. */ | |
1314 if (end == beg) | |
1315 return 0; | |
1316 | |
1317 /* Skip over leading spaces. */ | |
1318 while (CHAR_GLYPH_SPACE_P (*beg)) | |
1319 ++beg; | |
1320 } | |
1321 | |
1322 /* If we don't have a glyph-table, each glyph is one character, | |
1323 so return the number of glyphs. */ | |
1324 if (glyph_table_base == 0) | |
1325 len = end - beg; | |
1326 else | |
1327 { | |
1328 /* Otherwise, scan the glyphs and accumulate their total length | |
1329 in LEN. */ | |
1330 len = 0; | |
1331 while (beg < end) | |
1332 { | |
1333 GLYPH g = GLYPH_FROM_CHAR_GLYPH (*beg); | |
1334 | |
26998
02e902f732d1
(line_hash_code) (direct_output_for_insert): Adjusted
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1335 if (g < 0 |
02e902f732d1
(line_hash_code) (direct_output_for_insert): Adjusted
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
1336 || GLYPH_SIMPLE_P (glyph_table_base, glyph_table_len, g)) |
25012 | 1337 len += 1; |
1338 else | |
1339 len += GLYPH_LENGTH (glyph_table_base, g); | |
1340 | |
1341 ++beg; | |
1342 } | |
1343 } | |
1344 | |
1345 return len; | |
1346 } | |
1347 | |
1348 | |
1349 /* Test two glyph rows A and B for equality. Value is non-zero if A | |
1350 and B have equal contents. W is the window to which the glyphs | |
1351 rows A and B belong. It is needed here to test for partial row | |
30152
f6270e5282da
(direct_output_forward_char): Give up if currently
Gerd Moellmann <gerd@gnu.org>
parents:
30041
diff
changeset
|
1352 visibility. MOUSE_FACE_P non-zero means compare the mouse_face_p |
f6270e5282da
(direct_output_forward_char): Give up if currently
Gerd Moellmann <gerd@gnu.org>
parents:
30041
diff
changeset
|
1353 flags of A and B, too. */ |
25012 | 1354 |
1355 static INLINE int | |
30152
f6270e5282da
(direct_output_forward_char): Give up if currently
Gerd Moellmann <gerd@gnu.org>
parents:
30041
diff
changeset
|
1356 row_equal_p (w, a, b, mouse_face_p) |
25012 | 1357 struct window *w; |
1358 struct glyph_row *a, *b; | |
30152
f6270e5282da
(direct_output_forward_char): Give up if currently
Gerd Moellmann <gerd@gnu.org>
parents:
30041
diff
changeset
|
1359 int mouse_face_p; |
25012 | 1360 { |
1361 if (a == b) | |
1362 return 1; | |
1363 else if (a->hash != b->hash) | |
1364 return 0; | |
1365 else | |
1366 { | |
1367 struct glyph *a_glyph, *b_glyph, *a_end; | |
1368 int area; | |
1369 | |
30152
f6270e5282da
(direct_output_forward_char): Give up if currently
Gerd Moellmann <gerd@gnu.org>
parents:
30041
diff
changeset
|
1370 if (mouse_face_p && a->mouse_face_p != b->mouse_face_p) |
f6270e5282da
(direct_output_forward_char): Give up if currently
Gerd Moellmann <gerd@gnu.org>
parents:
30041
diff
changeset
|
1371 return 0; |
f6270e5282da
(direct_output_forward_char): Give up if currently
Gerd Moellmann <gerd@gnu.org>
parents:
30041
diff
changeset
|
1372 |
25012 | 1373 /* Compare glyphs. */ |
1374 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area) | |
1375 { | |
1376 if (a->used[area] != b->used[area]) | |
1377 return 0; | |
1378 | |
1379 a_glyph = a->glyphs[area]; | |
1380 a_end = a_glyph + a->used[area]; | |
1381 b_glyph = b->glyphs[area]; | |
1382 | |
1383 while (a_glyph < a_end | |
1384 && GLYPH_EQUAL_P (a_glyph, b_glyph)) | |
1385 ++a_glyph, ++b_glyph; | |
1386 | |
1387 if (a_glyph != a_end) | |
1388 return 0; | |
1389 } | |
1390 | |
1391 if (a->truncated_on_left_p != b->truncated_on_left_p | |
1392 || a->inverse_p != b->inverse_p | |
1393 || a->fill_line_p != b->fill_line_p | |
1394 || a->truncated_on_right_p != b->truncated_on_right_p | |
1395 || a->overlay_arrow_p != b->overlay_arrow_p | |
1396 || a->continued_p != b->continued_p | |
1397 || a->indicate_empty_line_p != b->indicate_empty_line_p | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
1398 || a->overlapped_p != b->overlapped_p |
25012 | 1399 || (MATRIX_ROW_CONTINUATION_LINE_P (a) |
1400 != MATRIX_ROW_CONTINUATION_LINE_P (b)) | |
1401 /* Different partially visible characters on left margin. */ | |
1402 || a->x != b->x | |
1403 /* Different height. */ | |
1404 || a->ascent != b->ascent | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
1405 || a->phys_ascent != b->phys_ascent |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
1406 || a->phys_height != b->phys_height |
25012 | 1407 || a->visible_height != b->visible_height) |
1408 return 0; | |
1409 } | |
1410 | |
1411 return 1; | |
1412 } | |
1413 | |
1414 | |
314 | 1415 |
25012 | 1416 /*********************************************************************** |
1417 Glyph Pool | |
1418 | |
1419 See dispextern.h for an overall explanation of glyph pools. | |
1420 ***********************************************************************/ | |
1421 | |
1422 /* Allocate a glyph_pool structure. The structure returned is | |
1423 initialized with zeros. The global variable glyph_pool_count is | |
1424 incremented for each pool allocated. */ | |
1425 | |
1426 static struct glyph_pool * | |
1427 new_glyph_pool () | |
1428 { | |
1429 struct glyph_pool *result; | |
1430 | |
1431 /* Allocate a new glyph_pool and clear it. */ | |
1432 result = (struct glyph_pool *) xmalloc (sizeof *result); | |
1433 bzero (result, sizeof *result); | |
1434 | |
1435 /* For memory leak and double deletion checking. */ | |
1436 ++glyph_pool_count; | |
1437 | |
1438 return result; | |
1439 } | |
1440 | |
1441 | |
1442 /* Free a glyph_pool structure POOL. The function may be called with | |
1443 a null POOL pointer. The global variable glyph_pool_count is | |
1444 decremented with every pool structure freed. If this count gets | |
1445 negative, more structures were freed than allocated, i.e. one | |
1446 structure must have been freed more than once or a bogus pointer | |
1447 was passed to free_glyph_pool. */ | |
1448 | |
1449 static void | |
1450 free_glyph_pool (pool) | |
1451 struct glyph_pool *pool; | |
1452 { | |
1453 if (pool) | |
1454 { | |
1455 /* More freed than allocated? */ | |
1456 --glyph_pool_count; | |
1457 xassert (glyph_pool_count >= 0); | |
1458 | |
1459 xfree (pool->glyphs); | |
1460 xfree (pool); | |
1461 } | |
1462 } | |
1463 | |
1464 | |
1465 /* Enlarge a glyph pool POOL. MATRIX_DIM gives the number of rows and | |
1466 columns we need. This function never shrinks a pool. The only | |
1467 case in which this would make sense, would be when a frame's size | |
1468 is changed from a large value to a smaller one. But, if someone | |
1469 does it once, we can expect that he will do it again. | |
1470 | |
1471 Value is non-zero if the pool changed in a way which makes | |
1472 re-adjusting window glyph matrices necessary. */ | |
1473 | |
1474 static int | |
1475 realloc_glyph_pool (pool, matrix_dim) | |
1476 struct glyph_pool *pool; | |
1477 struct dim matrix_dim; | |
1478 { | |
1479 int needed; | |
1480 int changed_p; | |
1481 | |
1482 changed_p = (pool->glyphs == 0 | |
1483 || matrix_dim.height != pool->nrows | |
1484 || matrix_dim.width != pool->ncolumns); | |
1485 | |
1486 /* Enlarge the glyph pool. */ | |
1487 needed = matrix_dim.width * matrix_dim.height; | |
1488 if (needed > pool->nglyphs) | |
1489 { | |
1490 int size = needed * sizeof (struct glyph); | |
1491 | |
1492 if (pool->glyphs) | |
1493 pool->glyphs = (struct glyph *) xrealloc (pool->glyphs, size); | |
1494 else | |
1495 { | |
1496 pool->glyphs = (struct glyph *) xmalloc (size); | |
1497 bzero (pool->glyphs, size); | |
1498 } | |
1499 | |
1500 pool->nglyphs = needed; | |
1501 } | |
1502 | |
1503 /* Remember the number of rows and columns because (a) we use then | |
1504 to do sanity checks, and (b) the number of columns determines | |
1505 where rows in the frame matrix start---this must be available to | |
1506 determine pointers to rows of window sub-matrices. */ | |
1507 pool->nrows = matrix_dim.height; | |
1508 pool->ncolumns = matrix_dim.width; | |
1509 | |
1510 return changed_p; | |
1511 } | |
1512 | |
1513 | |
1514 | |
1515 /*********************************************************************** | |
1516 Debug Code | |
1517 ***********************************************************************/ | |
1518 | |
1519 #if GLYPH_DEBUG | |
1520 | |
27855
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
1521 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
1522 /* Flush standard output. This is sometimes useful to call from |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
1523 the debugger. */ |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
1524 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
1525 void |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
1526 flush_stdout () |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
1527 { |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
1528 fflush (stdout); |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
1529 } |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
1530 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
1531 |
25012 | 1532 /* Check that no glyph pointers have been lost in MATRIX. If a |
1533 pointer has been lost, e.g. by using a structure assignment between | |
1534 rows, at least one pointer must occur more than once in the rows of | |
1535 MATRIX. */ | |
1536 | |
1537 void | |
1538 check_matrix_pointer_lossage (matrix) | |
1539 struct glyph_matrix *matrix; | |
1540 { | |
1541 int i, j; | |
1542 | |
1543 for (i = 0; i < matrix->nrows; ++i) | |
1544 for (j = 0; j < matrix->nrows; ++j) | |
1545 xassert (i == j | |
1546 || (matrix->rows[i].glyphs[TEXT_AREA] | |
1547 != matrix->rows[j].glyphs[TEXT_AREA])); | |
1548 } | |
1549 | |
1550 | |
1551 /* Get a pointer to glyph row ROW in MATRIX, with bounds checks. */ | |
1552 | |
1553 struct glyph_row * | |
1554 matrix_row (matrix, row) | |
1555 struct glyph_matrix *matrix; | |
1556 int row; | |
1557 { | |
1558 xassert (matrix && matrix->rows); | |
1559 xassert (row >= 0 && row < matrix->nrows); | |
1560 | |
1561 /* That's really too slow for normal testing because this function | |
1562 is called almost everywhere. Although---it's still astonishingly | |
1563 fast, so it is valuable to have for debugging purposes. */ | |
314 | 1564 #if 0 |
25012 | 1565 check_matrix_pointer_lossage (matrix); |
1566 #endif | |
1567 | |
1568 return matrix->rows + row; | |
1569 } | |
1570 | |
1571 | |
1572 #if 0 /* This function makes invalid assumptions when text is | |
1573 partially invisible. But it might come handy for debugging | |
1574 nevertheless. */ | |
1575 | |
1576 /* Check invariants that must hold for an up to date current matrix of | |
1577 window W. */ | |
1578 | |
1579 static void | |
1580 check_matrix_invariants (w) | |
314 | 1581 struct window *w; |
1582 { | |
25012 | 1583 struct glyph_matrix *matrix = w->current_matrix; |
1584 int yb = window_text_bottom_y (w); | |
1585 struct glyph_row *row = matrix->rows; | |
1586 struct glyph_row *last_text_row = NULL; | |
1587 struct buffer *saved = current_buffer; | |
1588 struct buffer *buffer = XBUFFER (w->buffer); | |
1589 int c; | |
1590 | |
1591 /* This can sometimes happen for a fresh window. */ | |
1592 if (matrix->nrows < 2) | |
1593 return; | |
1594 | |
1595 set_buffer_temp (buffer); | |
1596 | |
1597 /* Note: last row is always reserved for the mode line. */ | |
1598 while (MATRIX_ROW_DISPLAYS_TEXT_P (row) | |
1599 && MATRIX_ROW_BOTTOM_Y (row) < yb) | |
1600 { | |
1601 struct glyph_row *next = row + 1; | |
1602 | |
1603 if (MATRIX_ROW_DISPLAYS_TEXT_P (row)) | |
1604 last_text_row = row; | |
1605 | |
1606 /* Check that character and byte positions are in sync. */ | |
1607 xassert (MATRIX_ROW_START_BYTEPOS (row) | |
1608 == CHAR_TO_BYTE (MATRIX_ROW_START_CHARPOS (row))); | |
1609 | |
1610 /* CHAR_TO_BYTE aborts when invoked for a position > Z. We can | |
1611 have such a position temporarily in case of a minibuffer | |
1612 displaying something like `[Sole completion]' at its end. */ | |
1613 if (MATRIX_ROW_END_CHARPOS (row) < BUF_ZV (current_buffer)) | |
1614 xassert (MATRIX_ROW_END_BYTEPOS (row) | |
1615 == CHAR_TO_BYTE (MATRIX_ROW_END_CHARPOS (row))); | |
1616 | |
1617 /* Check that end position of `row' is equal to start position | |
1618 of next row. */ | |
1619 if (next->enabled_p && MATRIX_ROW_DISPLAYS_TEXT_P (next)) | |
1620 { | |
1621 xassert (MATRIX_ROW_END_CHARPOS (row) | |
1622 == MATRIX_ROW_START_CHARPOS (next)); | |
1623 xassert (MATRIX_ROW_END_BYTEPOS (row) | |
1624 == MATRIX_ROW_START_BYTEPOS (next)); | |
1625 } | |
1626 row = next; | |
1627 } | |
1628 | |
1629 xassert (w->current_matrix->nrows == w->desired_matrix->nrows); | |
1630 xassert (w->desired_matrix->rows != NULL); | |
1631 set_buffer_temp (saved); | |
1632 } | |
1633 | |
1634 #endif /* 0 */ | |
1635 | |
1636 #endif /* GLYPH_DEBUG != 0 */ | |
1637 | |
1638 | |
1639 | |
1640 /********************************************************************** | |
1641 Allocating/ Adjusting Glyph Matrices | |
1642 **********************************************************************/ | |
1643 | |
1644 /* Allocate glyph matrices over a window tree for a frame-based | |
1645 redisplay | |
1646 | |
1647 X and Y are column/row within the frame glyph matrix where | |
1648 sub-matrices for the window tree rooted at WINDOW must be | |
1649 allocated. CH_DIM contains the dimensions of the smallest | |
1650 character that could be used during display. DIM_ONLY_P non-zero | |
1651 means that the caller of this function is only interested in the | |
1652 result matrix dimension, and matrix adjustments should not be | |
1653 performed. | |
1654 | |
1655 The function returns the total width/height of the sub-matrices of | |
1656 the window tree. If called on a frame root window, the computation | |
1657 will take the mini-buffer window into account. | |
1658 | |
1659 *WINDOW_CHANGE_FLAGS is set to a bit mask with bits | |
1660 | |
1661 NEW_LEAF_MATRIX set if any window in the tree did not have a | |
1662 glyph matrices yet, and | |
1663 | |
1664 CHANGED_LEAF_MATRIX set if the dimension or location of a matrix of | |
1665 any window in the tree will be changed or have been changed (see | |
1666 DIM_ONLY_P). | |
1667 | |
1668 *WINDOW_CHANGE_FLAGS must be initialized by the caller of this | |
1669 function. | |
1670 | |
1671 Windows are arranged into chains of windows on the same level | |
1672 through the next fields of window structures. Such a level can be | |
1673 either a sequence of horizontally adjacent windows from left to | |
1674 right, or a sequence of vertically adjacent windows from top to | |
1675 bottom. Each window in a horizontal sequence can be either a leaf | |
1676 window or a vertical sequence; a window in a vertical sequence can | |
1677 be either a leaf or a horizontal sequence. All windows in a | |
1678 horizontal sequence have the same height, and all windows in a | |
1679 vertical sequence have the same width. | |
1680 | |
1681 This function uses, for historical reasons, a more general | |
1682 algorithm to determine glyph matrix dimensions that would be | |
1683 necessary. | |
1684 | |
1685 The matrix height of a horizontal sequence is determined by the | |
1686 maximum height of any matrix in the sequence. The matrix width of | |
1687 a horizontal sequence is computed by adding up matrix widths of | |
1688 windows in the sequence. | |
1689 | |
1690 |<------- result width ------->| | |
1691 +---------+----------+---------+ --- | |
1692 | | | | | | |
1693 | | | | | |
1694 +---------+ | | result height | |
1695 | +---------+ | |
1696 | | | | |
1697 +----------+ --- | |
1698 | |
1699 The matrix width of a vertical sequence is the maximum matrix width | |
1700 of any window in the sequence. Its height is computed by adding up | |
1701 matrix heights of windows in the sequence. | |
1702 | |
1703 |<---- result width -->| | |
1704 +---------+ --- | |
1705 | | | | |
1706 | | | | |
1707 +---------+--+ | | |
1708 | | | | |
1709 | | result height | |
1710 | | | |
1711 +------------+---------+ | | |
1712 | | | | |
1713 | | | | |
1714 +------------+---------+ --- */ | |
1715 | |
1716 /* Bit indicating that a new matrix will be allocated or has been | |
1717 allocated. */ | |
1718 | |
1719 #define NEW_LEAF_MATRIX (1 << 0) | |
1720 | |
1721 /* Bit indicating that a matrix will or has changed its location or | |
1722 size. */ | |
1723 | |
1724 #define CHANGED_LEAF_MATRIX (1 << 1) | |
1725 | |
1726 static struct dim | |
1727 allocate_matrices_for_frame_redisplay (window, x, y, ch_dim, | |
1728 dim_only_p, window_change_flags) | |
1729 Lisp_Object window; | |
1730 int x, y; | |
1731 struct dim ch_dim; | |
1732 int dim_only_p; | |
1733 int *window_change_flags; | |
1734 { | |
1735 struct frame *f = XFRAME (WINDOW_FRAME (XWINDOW (window))); | |
1736 int x0 = x, y0 = y; | |
1737 int wmax = 0, hmax = 0; | |
1738 struct dim total; | |
1739 struct dim dim; | |
1740 struct window *w; | |
1741 int in_horz_combination_p; | |
1742 | |
1743 /* What combination is WINDOW part of? Compute this once since the | |
1744 result is the same for all windows in the `next' chain. The | |
1745 special case of a root window (parent equal to nil) is treated | |
1746 like a vertical combination because a root window's `next' | |
1747 points to the mini-buffer window, if any, which is arranged | |
1748 vertically below other windows. */ | |
1749 in_horz_combination_p | |
1750 = (!NILP (XWINDOW (window)->parent) | |
1751 && !NILP (XWINDOW (XWINDOW (window)->parent)->hchild)); | |
1752 | |
1753 /* For WINDOW and all windows on the same level. */ | |
1754 do | |
1755 { | |
1756 w = XWINDOW (window); | |
1757 | |
1758 /* Get the dimension of the window sub-matrix for W, depending | |
1759 on whether this a combination or a leaf window. */ | |
1760 if (!NILP (w->hchild)) | |
1761 dim = allocate_matrices_for_frame_redisplay (w->hchild, x, y, ch_dim, | |
1762 dim_only_p, | |
1763 window_change_flags); | |
1764 else if (!NILP (w->vchild)) | |
1765 dim = allocate_matrices_for_frame_redisplay (w->vchild, x, y, ch_dim, | |
1766 dim_only_p, | |
1767 window_change_flags); | |
1768 else | |
1769 { | |
1770 /* If not already done, allocate sub-matrix structures. */ | |
1771 if (w->desired_matrix == NULL) | |
1772 { | |
1773 w->desired_matrix = new_glyph_matrix (f->desired_pool); | |
1774 w->current_matrix = new_glyph_matrix (f->current_pool); | |
1775 *window_change_flags |= NEW_LEAF_MATRIX; | |
1776 } | |
1777 | |
1778 /* Width and height MUST be chosen so that there are no | |
1779 holes in the frame matrix. */ | |
28507
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28361
diff
changeset
|
1780 dim.width = XINT (w->width); |
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28361
diff
changeset
|
1781 dim.height = XINT (w->height); |
25012 | 1782 |
1783 /* Will matrix be re-allocated? */ | |
1784 if (x != w->desired_matrix->matrix_x | |
1785 || y != w->desired_matrix->matrix_y | |
1786 || dim.width != w->desired_matrix->matrix_w | |
1787 || dim.height != w->desired_matrix->matrix_h | |
1788 || (margin_glyphs_to_reserve (w, dim.width, | |
1789 w->right_margin_width) | |
1790 != w->desired_matrix->left_margin_glyphs) | |
1791 || (margin_glyphs_to_reserve (w, dim.width, | |
1792 w->left_margin_width) | |
1793 != w->desired_matrix->right_margin_glyphs)) | |
1794 *window_change_flags |= CHANGED_LEAF_MATRIX; | |
1795 | |
1796 /* Actually change matrices, if allowed. Do not consider | |
1797 CHANGED_LEAF_MATRIX computed above here because the pool | |
1798 may have been changed which we don't now here. We trust | |
1799 that we only will be called with DIM_ONLY_P != 0 when | |
1800 necessary. */ | |
1801 if (!dim_only_p) | |
1802 { | |
1803 adjust_glyph_matrix (w, w->desired_matrix, x, y, dim); | |
1804 adjust_glyph_matrix (w, w->current_matrix, x, y, dim); | |
1805 } | |
1806 } | |
1807 | |
1808 /* If we are part of a horizontal combination, advance x for | |
1809 windows to the right of W; otherwise advance y for windows | |
1810 below W. */ | |
1811 if (in_horz_combination_p) | |
1812 x += dim.width; | |
1813 else | |
1814 y += dim.height; | |
1815 | |
1816 /* Remember maximum glyph matrix dimensions. */ | |
1817 wmax = max (wmax, dim.width); | |
1818 hmax = max (hmax, dim.height); | |
1819 | |
1820 /* Next window on same level. */ | |
1821 window = w->next; | |
1822 } | |
1823 while (!NILP (window)); | |
1824 | |
1825 /* Set `total' to the total glyph matrix dimension of this window | |
1826 level. In a vertical combination, the width is the width of the | |
1827 widest window; the height is the y we finally reached, corrected | |
1828 by the y we started with. In a horizontal combination, the total | |
1829 height is the height of the tallest window, and the width is the | |
1830 x we finally reached, corrected by the x we started with. */ | |
1831 if (in_horz_combination_p) | |
1832 { | |
1833 total.width = x - x0; | |
1834 total.height = hmax; | |
1835 } | |
1836 else | |
1837 { | |
1838 total.width = wmax; | |
1839 total.height = y - y0; | |
1840 } | |
1841 | |
1842 return total; | |
1843 } | |
1844 | |
1845 | |
1846 /* Allocate window matrices for window-based redisplay. W is the | |
1847 window whose matrices must be allocated/reallocated. CH_DIM is the | |
1848 size of the smallest character that could potentially be used on W. */ | |
1849 | |
1850 static void | |
1851 allocate_matrices_for_window_redisplay (w, ch_dim) | |
1852 struct window *w; | |
1853 struct dim ch_dim; | |
1854 { | |
1855 struct frame *f = XFRAME (w->frame); | |
1856 | |
1857 while (w) | |
314 | 1858 { |
25012 | 1859 if (!NILP (w->vchild)) |
1860 allocate_matrices_for_window_redisplay (XWINDOW (w->vchild), ch_dim); | |
1861 else if (!NILP (w->hchild)) | |
1862 allocate_matrices_for_window_redisplay (XWINDOW (w->hchild), ch_dim); | |
1863 else | |
314 | 1864 { |
25012 | 1865 /* W is a leaf window. */ |
1866 int window_pixel_width = XFLOATINT (w->width) * CANON_X_UNIT (f); | |
1867 int window_pixel_height = window_box_height (w) + abs (w->vscroll); | |
1868 struct dim dim; | |
1869 | |
1870 /* If matrices are not yet allocated, allocate them now. */ | |
1871 if (w->desired_matrix == NULL) | |
314 | 1872 { |
25012 | 1873 w->desired_matrix = new_glyph_matrix (NULL); |
1874 w->current_matrix = new_glyph_matrix (NULL); | |
314 | 1875 } |
25012 | 1876 |
1877 /* Compute number of glyphs needed in a glyph row. */ | |
1878 dim.width = (((window_pixel_width + ch_dim.width - 1) | |
1879 / ch_dim.width) | |
1880 /* 2 partially visible columns in the text area. */ | |
1881 + 2 | |
1882 /* One partially visible column at the right | |
1883 edge of each marginal area. */ | |
1884 + 1 + 1); | |
1885 | |
1886 /* Compute number of glyph rows needed. */ | |
1887 dim.height = (((window_pixel_height + ch_dim.height - 1) | |
1888 / ch_dim.height) | |
1889 /* One partially visible line at the top and | |
1890 bottom of the window. */ | |
1891 + 2 | |
1892 /* 2 for top and mode line. */ | |
1893 + 2); | |
1894 | |
1895 /* Change matrices. */ | |
1896 adjust_glyph_matrix (w, w->desired_matrix, 0, 0, dim); | |
1897 adjust_glyph_matrix (w, w->current_matrix, 0, 0, dim); | |
1898 } | |
1899 | |
1900 w = NILP (w->next) ? NULL : XWINDOW (w->next); | |
1901 } | |
1902 } | |
1903 | |
1904 | |
1905 /* Re-allocate/ re-compute glyph matrices on frame F. If F is null, | |
1906 do it for all frames; otherwise do it just for the given frame. | |
1907 This function must be called when a new frame is created, its size | |
1908 changes, or its window configuration changes. */ | |
1909 | |
1910 void | |
1911 adjust_glyphs (f) | |
1912 struct frame *f; | |
1913 { | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
1914 /* Block input so that expose events and other events that access |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
1915 glyph matrices are not processed while we are changing them. */ |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
1916 BLOCK_INPUT; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
1917 |
25012 | 1918 if (f) |
1919 adjust_frame_glyphs (f); | |
1920 else | |
1921 { | |
1922 Lisp_Object tail, lisp_frame; | |
1923 | |
1924 FOR_EACH_FRAME (tail, lisp_frame) | |
1925 adjust_frame_glyphs (XFRAME (lisp_frame)); | |
1926 } | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
1927 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
1928 UNBLOCK_INPUT; |
25012 | 1929 } |
1930 | |
1931 | |
1932 /* Adjust frame glyphs when Emacs is initialized. | |
1933 | |
1934 To be called from init_display. | |
1935 | |
1936 We need a glyph matrix because redraw will happen soon. | |
1937 Unfortunately, window sizes on selected_frame are not yet set to | |
1938 meaningful values. I believe we can assume that there are only two | |
1939 windows on the frame---the mini-buffer and the root window. Frame | |
1940 height and width seem to be correct so far. So, set the sizes of | |
1941 windows to estimated values. */ | |
1942 | |
1943 static void | |
1944 adjust_frame_glyphs_initially () | |
1945 { | |
25666
063da8f6a487
(selected_frame): Make it a Lisp_Object.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
1946 struct frame *sf = SELECTED_FRAME (); |
063da8f6a487
(selected_frame): Make it a Lisp_Object.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
1947 struct window *root = XWINDOW (sf->root_window); |
25012 | 1948 struct window *mini = XWINDOW (root->next); |
25666
063da8f6a487
(selected_frame): Make it a Lisp_Object.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
1949 int frame_height = FRAME_HEIGHT (sf); |
063da8f6a487
(selected_frame): Make it a Lisp_Object.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
1950 int frame_width = FRAME_WIDTH (sf); |
063da8f6a487
(selected_frame): Make it a Lisp_Object.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
1951 int top_margin = FRAME_TOP_MARGIN (sf); |
25012 | 1952 |
1953 /* Do it for the root window. */ | |
1954 XSETFASTINT (root->top, top_margin); | |
1955 XSETFASTINT (root->width, frame_width); | |
25666
063da8f6a487
(selected_frame): Make it a Lisp_Object.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
1956 set_window_height (sf->root_window, frame_height - 1 - top_margin, 0); |
25012 | 1957 |
1958 /* Do it for the mini-buffer window. */ | |
1959 XSETFASTINT (mini->top, frame_height - 1); | |
1960 XSETFASTINT (mini->width, frame_width); | |
1961 set_window_height (root->next, 1, 0); | |
1962 | |
25666
063da8f6a487
(selected_frame): Make it a Lisp_Object.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
1963 adjust_frame_glyphs (sf); |
25012 | 1964 glyphs_initialized_initially_p = 1; |
1965 } | |
1966 | |
1967 | |
1968 /* Allocate/reallocate glyph matrices of a single frame F. */ | |
1969 | |
1970 static void | |
1971 adjust_frame_glyphs (f) | |
1972 struct frame *f; | |
1973 { | |
1974 if (FRAME_WINDOW_P (f)) | |
1975 adjust_frame_glyphs_for_window_redisplay (f); | |
1976 else | |
1977 adjust_frame_glyphs_for_frame_redisplay (f); | |
1978 | |
1979 /* Don't forget the message buffer and the buffer for | |
1980 decode_mode_spec. */ | |
1981 adjust_frame_message_buffer (f); | |
1982 adjust_decode_mode_spec_buffer (f); | |
1983 | |
1984 f->glyphs_initialized_p = 1; | |
1985 } | |
1986 | |
1987 | |
1988 /* Allocate/reallocate glyph matrices of a single frame F for | |
1989 frame-based redisplay. */ | |
1990 | |
1991 static void | |
1992 adjust_frame_glyphs_for_frame_redisplay (f) | |
1993 struct frame *f; | |
1994 { | |
1995 struct dim ch_dim; | |
1996 struct dim matrix_dim; | |
1997 int pool_changed_p; | |
1998 int window_change_flags; | |
1999 int top_window_y; | |
2000 | |
2001 if (!FRAME_LIVE_P (f)) | |
2002 return; | |
2003 | |
2004 /* Determine the smallest character in any font for F. On | |
2005 console windows, all characters have dimension (1, 1). */ | |
2006 ch_dim.width = ch_dim.height = 1; | |
2007 | |
2008 top_window_y = FRAME_TOP_MARGIN (f); | |
2009 | |
2010 /* Allocate glyph pool structures if not already done. */ | |
2011 if (f->desired_pool == NULL) | |
2012 { | |
2013 f->desired_pool = new_glyph_pool (); | |
2014 f->current_pool = new_glyph_pool (); | |
2015 } | |
2016 | |
2017 /* Allocate frames matrix structures if needed. */ | |
2018 if (f->desired_matrix == NULL) | |
2019 { | |
2020 f->desired_matrix = new_glyph_matrix (f->desired_pool); | |
2021 f->current_matrix = new_glyph_matrix (f->current_pool); | |
2022 } | |
2023 | |
2024 /* Compute window glyph matrices. (This takes the mini-buffer | |
2025 window into account). The result is the size of the frame glyph | |
2026 matrix needed. The variable window_change_flags is set to a bit | |
2027 mask indicating whether new matrices will be allocated or | |
2028 existing matrices change their size or location within the frame | |
2029 matrix. */ | |
2030 window_change_flags = 0; | |
2031 matrix_dim | |
2032 = allocate_matrices_for_frame_redisplay (FRAME_ROOT_WINDOW (f), | |
2033 0, top_window_y, | |
2034 ch_dim, 1, | |
2035 &window_change_flags); | |
2036 | |
2037 /* Add in menu bar lines, if any. */ | |
2038 matrix_dim.height += top_window_y; | |
2039 | |
2040 /* Enlarge pools as necessary. */ | |
2041 pool_changed_p = realloc_glyph_pool (f->desired_pool, matrix_dim); | |
2042 realloc_glyph_pool (f->current_pool, matrix_dim); | |
2043 | |
2044 /* Set up glyph pointers within window matrices. Do this only if | |
2045 absolutely necessary since it requires a frame redraw. */ | |
2046 if (pool_changed_p || window_change_flags) | |
2047 { | |
2048 /* Do it for window matrices. */ | |
2049 allocate_matrices_for_frame_redisplay (FRAME_ROOT_WINDOW (f), | |
2050 0, top_window_y, ch_dim, 0, | |
2051 &window_change_flags); | |
2052 | |
2053 /* Size of frame matrices must equal size of frame. Note | |
2054 that we are called for X frames with window widths NOT equal | |
2055 to the frame width (from CHANGE_FRAME_SIZE_1). */ | |
2056 xassert (matrix_dim.width == FRAME_WIDTH (f) | |
2057 && matrix_dim.height == FRAME_HEIGHT (f)); | |
2058 | |
2059 /* Resize frame matrices. */ | |
2060 adjust_glyph_matrix (NULL, f->desired_matrix, 0, 0, matrix_dim); | |
2061 adjust_glyph_matrix (NULL, f->current_matrix, 0, 0, matrix_dim); | |
2062 | |
2063 /* Since location and size of sub-matrices within the pool may | |
2064 have changed, and current matrices don't have meaningful | |
2065 contents anymore, mark the frame garbaged. */ | |
2066 SET_FRAME_GARBAGED (f); | |
2067 } | |
2068 } | |
2069 | |
2070 | |
2071 /* Allocate/reallocate glyph matrices of a single frame F for | |
2072 window-based redisplay. */ | |
2073 | |
2074 static void | |
2075 adjust_frame_glyphs_for_window_redisplay (f) | |
2076 struct frame *f; | |
2077 { | |
2078 struct dim ch_dim; | |
2079 struct window *w; | |
2080 | |
2081 xassert (FRAME_WINDOW_P (f) && FRAME_LIVE_P (f)); | |
2082 | |
2083 /* Get minimum sizes. */ | |
2084 #ifdef HAVE_WINDOW_SYSTEM | |
2085 ch_dim.width = FRAME_SMALLEST_CHAR_WIDTH (f); | |
2086 ch_dim.height = FRAME_SMALLEST_FONT_HEIGHT (f); | |
2087 #else | |
2088 ch_dim.width = ch_dim.height = 1; | |
2089 #endif | |
2090 | |
2091 /* Allocate/reallocate window matrices. */ | |
2092 allocate_matrices_for_window_redisplay (XWINDOW (FRAME_ROOT_WINDOW (f)), | |
2093 ch_dim); | |
2094 | |
2095 /* Allocate/ reallocate matrices of the dummy window used to display | |
2096 the menu bar under X when no X toolkit support is available. */ | |
2097 #ifndef USE_X_TOOLKIT | |
2098 { | |
2099 /* Allocate a dummy window if not already done. */ | |
2100 if (NILP (f->menu_bar_window)) | |
2101 { | |
2102 f->menu_bar_window = make_window (); | |
2103 w = XWINDOW (f->menu_bar_window); | |
2104 XSETFRAME (w->frame, f); | |
2105 w->pseudo_window_p = 1; | |
2106 } | |
2107 else | |
2108 w = XWINDOW (f->menu_bar_window); | |
2109 | |
2110 /* Set window dimensions to frame dimensions and allocate or | |
2111 adjust glyph matrices of W. */ | |
2112 XSETFASTINT (w->top, 0); | |
2113 XSETFASTINT (w->left, 0); | |
2114 XSETFASTINT (w->height, FRAME_MENU_BAR_LINES (f)); | |
2115 XSETFASTINT (w->width, FRAME_WINDOW_WIDTH (f)); | |
2116 allocate_matrices_for_window_redisplay (w, ch_dim); | |
2117 } | |
2118 #endif /* not USE_X_TOOLKIT */ | |
2119 | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
2120 /* Allocate/ reallocate matrices of the tool bar window. If we |
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
2121 don't have a tool bar window yet, make one. */ |
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
2122 if (NILP (f->tool_bar_window)) |
25012 | 2123 { |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
2124 f->tool_bar_window = make_window (); |
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
2125 w = XWINDOW (f->tool_bar_window); |
25012 | 2126 XSETFRAME (w->frame, f); |
2127 w->pseudo_window_p = 1; | |
2128 } | |
2129 else | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
2130 w = XWINDOW (f->tool_bar_window); |
25012 | 2131 |
2132 XSETFASTINT (w->top, FRAME_MENU_BAR_LINES (f)); | |
2133 XSETFASTINT (w->left, 0); | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
2134 XSETFASTINT (w->height, FRAME_TOOL_BAR_LINES (f)); |
25012 | 2135 XSETFASTINT (w->width, FRAME_WINDOW_WIDTH (f)); |
2136 allocate_matrices_for_window_redisplay (w, ch_dim); | |
2137 } | |
2138 | |
2139 | |
2140 /* Adjust/ allocate message buffer of frame F. | |
2141 | |
2142 Note that the message buffer is never freed. Since I could not | |
2143 find a free in 19.34, I assume that freeing it would be | |
2144 problematic in some way and don't do it either. | |
2145 | |
2146 (Implementation note: It should be checked if we can free it | |
2147 eventually without causing trouble). */ | |
2148 | |
2149 static void | |
2150 adjust_frame_message_buffer (f) | |
2151 struct frame *f; | |
2152 { | |
2153 int size = FRAME_MESSAGE_BUF_SIZE (f) + 1; | |
2154 | |
2155 if (FRAME_MESSAGE_BUF (f)) | |
2156 { | |
2157 char *buffer = FRAME_MESSAGE_BUF (f); | |
2158 char *new_buffer = (char *) xrealloc (buffer, size); | |
2159 FRAME_MESSAGE_BUF (f) = new_buffer; | |
2160 } | |
2161 else | |
2162 FRAME_MESSAGE_BUF (f) = (char *) xmalloc (size); | |
2163 } | |
2164 | |
2165 | |
2166 /* Re-allocate buffer for decode_mode_spec on frame F. */ | |
2167 | |
2168 static void | |
2169 adjust_decode_mode_spec_buffer (f) | |
2170 struct frame *f; | |
2171 { | |
2172 f->decode_mode_spec_buffer | |
2173 = (char *) xrealloc (f->decode_mode_spec_buffer, | |
2174 FRAME_MESSAGE_BUF_SIZE (f) + 1); | |
2175 } | |
2176 | |
2177 | |
2178 | |
2179 /********************************************************************** | |
2180 Freeing Glyph Matrices | |
2181 **********************************************************************/ | |
2182 | |
2183 /* Free glyph memory for a frame F. F may be null. This function can | |
2184 be called for the same frame more than once. The root window of | |
2185 F may be nil when this function is called. This is the case when | |
2186 the function is called when F is destroyed. */ | |
2187 | |
2188 void | |
2189 free_glyphs (f) | |
2190 struct frame *f; | |
2191 { | |
2192 if (f && f->glyphs_initialized_p) | |
2193 { | |
27968
7634011b93f3
(free_glyphs): Block input while freeing matrices.
Gerd Moellmann <gerd@gnu.org>
parents:
27855
diff
changeset
|
2194 /* Block interrupt input so that we don't get surprised by an X |
7634011b93f3
(free_glyphs): Block input while freeing matrices.
Gerd Moellmann <gerd@gnu.org>
parents:
27855
diff
changeset
|
2195 event while we're in an inconsistent state. */ |
7634011b93f3
(free_glyphs): Block input while freeing matrices.
Gerd Moellmann <gerd@gnu.org>
parents:
27855
diff
changeset
|
2196 BLOCK_INPUT; |
25012 | 2197 f->glyphs_initialized_p = 0; |
2198 | |
2199 /* Release window sub-matrices. */ | |
2200 if (!NILP (f->root_window)) | |
2201 free_window_matrices (XWINDOW (f->root_window)); | |
2202 | |
2203 /* Free the dummy window for menu bars without X toolkit and its | |
2204 glyph matrices. */ | |
2205 if (!NILP (f->menu_bar_window)) | |
2206 { | |
2207 struct window *w = XWINDOW (f->menu_bar_window); | |
2208 free_glyph_matrix (w->desired_matrix); | |
2209 free_glyph_matrix (w->current_matrix); | |
2210 w->desired_matrix = w->current_matrix = NULL; | |
2211 f->menu_bar_window = Qnil; | |
2212 } | |
2213 | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
2214 /* Free the tool bar window and its glyph matrices. */ |
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
2215 if (!NILP (f->tool_bar_window)) |
25012 | 2216 { |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
2217 struct window *w = XWINDOW (f->tool_bar_window); |
25012 | 2218 free_glyph_matrix (w->desired_matrix); |
2219 free_glyph_matrix (w->current_matrix); | |
2220 w->desired_matrix = w->current_matrix = NULL; | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
2221 f->tool_bar_window = Qnil; |
25012 | 2222 } |
2223 | |
2224 /* Release frame glyph matrices. Reset fields to zero in | |
2225 case we are called a second time. */ | |
2226 if (f->desired_matrix) | |
2227 { | |
2228 free_glyph_matrix (f->desired_matrix); | |
2229 free_glyph_matrix (f->current_matrix); | |
2230 f->desired_matrix = f->current_matrix = NULL; | |
2231 } | |
2232 | |
2233 /* Release glyph pools. */ | |
2234 if (f->desired_pool) | |
2235 { | |
2236 free_glyph_pool (f->desired_pool); | |
2237 free_glyph_pool (f->current_pool); | |
2238 f->desired_pool = f->current_pool = NULL; | |
314 | 2239 } |
27968
7634011b93f3
(free_glyphs): Block input while freeing matrices.
Gerd Moellmann <gerd@gnu.org>
parents:
27855
diff
changeset
|
2240 |
7634011b93f3
(free_glyphs): Block input while freeing matrices.
Gerd Moellmann <gerd@gnu.org>
parents:
27855
diff
changeset
|
2241 UNBLOCK_INPUT; |
314 | 2242 } |
2243 } | |
2244 | |
25012 | 2245 |
2246 /* Free glyph sub-matrices in the window tree rooted at W. This | |
2247 function may be called with a null pointer, and it may be called on | |
2248 the same tree more than once. */ | |
2249 | |
2250 void | |
2251 free_window_matrices (w) | |
2252 struct window *w; | |
2253 { | |
2254 while (w) | |
2255 { | |
2256 if (!NILP (w->hchild)) | |
2257 free_window_matrices (XWINDOW (w->hchild)); | |
2258 else if (!NILP (w->vchild)) | |
2259 free_window_matrices (XWINDOW (w->vchild)); | |
2260 else | |
2261 { | |
2262 /* This is a leaf window. Free its memory and reset fields | |
2263 to zero in case this function is called a second time for | |
2264 W. */ | |
2265 free_glyph_matrix (w->current_matrix); | |
2266 free_glyph_matrix (w->desired_matrix); | |
2267 w->current_matrix = w->desired_matrix = NULL; | |
2268 } | |
2269 | |
2270 /* Next window on same level. */ | |
2271 w = NILP (w->next) ? 0 : XWINDOW (w->next); | |
2272 } | |
2273 } | |
2274 | |
2275 | |
2276 /* Check glyph memory leaks. This function is called from | |
2277 shut_down_emacs. Note that frames are not destroyed when Emacs | |
2278 exits. We therefore free all glyph memory for all active frames | |
2279 explicitly and check that nothing is left allocated. */ | |
6620
990d7d5095dc
(adjust_window_charstarts): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6617
diff
changeset
|
2280 |
990d7d5095dc
(adjust_window_charstarts): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6617
diff
changeset
|
2281 void |
25012 | 2282 check_glyph_memory () |
6620
990d7d5095dc
(adjust_window_charstarts): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6617
diff
changeset
|
2283 { |
25012 | 2284 Lisp_Object tail, frame; |
2285 | |
2286 /* Free glyph memory for all frames. */ | |
2287 FOR_EACH_FRAME (tail, frame) | |
2288 free_glyphs (XFRAME (frame)); | |
2289 | |
2290 /* Check that nothing is left allocated. */ | |
2291 if (glyph_matrix_count) | |
2292 abort (); | |
2293 if (glyph_pool_count) | |
2294 abort (); | |
2295 } | |
2296 | |
2297 | |
2298 | |
2299 /********************************************************************** | |
2300 Building a Frame Matrix | |
2301 **********************************************************************/ | |
2302 | |
2303 /* Most of the redisplay code works on glyph matrices attached to | |
2304 windows. This is a good solution most of the time, but it is not | |
2305 suitable for terminal code. Terminal output functions cannot rely | |
2306 on being able to set an arbitrary terminal window. Instead they | |
2307 must be provided with a view of the whole frame, i.e. the whole | |
2308 screen. We build such a view by constructing a frame matrix from | |
2309 window matrices in this section. | |
2310 | |
2311 Windows that must be updated have their must_be_update_p flag set. | |
2312 For all such windows, their desired matrix is made part of the | |
2313 desired frame matrix. For other windows, their current matrix is | |
2314 made part of the desired frame matrix. | |
2315 | |
2316 +-----------------+----------------+ | |
2317 | desired | desired | | |
2318 | | | | |
2319 +-----------------+----------------+ | |
2320 | current | | |
2321 | | | |
2322 +----------------------------------+ | |
2323 | |
2324 Desired window matrices can be made part of the frame matrix in a | |
2325 cheap way: We exploit the fact that the desired frame matrix and | |
2326 desired window matrices share their glyph memory. This is not | |
2327 possible for current window matrices. Their glyphs are copied to | |
2328 the desired frame matrix. The latter is equivalent to | |
2329 preserve_other_columns in the old redisplay. | |
2330 | |
2331 Used glyphs counters for frame matrix rows are the result of adding | |
2332 up glyph lengths of the window matrices. A line in the frame | |
2333 matrix is enabled, if a corresponding line in a window matrix is | |
2334 enabled. | |
2335 | |
2336 After building the desired frame matrix, it will be passed to | |
2337 terminal code, which will manipulate both the desired and current | |
2338 frame matrix. Changes applied to the frame's current matrix have | |
2339 to be visible in current window matrices afterwards, of course. | |
2340 | |
2341 This problem is solved like this: | |
2342 | |
2343 1. Window and frame matrices share glyphs. Window matrices are | |
2344 constructed in a way that their glyph contents ARE the glyph | |
2345 contents needed in a frame matrix. Thus, any modification of | |
2346 glyphs done in terminal code will be reflected in window matrices | |
2347 automatically. | |
2348 | |
2349 2. Exchanges of rows in a frame matrix done by terminal code are | |
2350 intercepted by hook functions so that corresponding row operations | |
2351 on window matrices can be performed. This is necessary because we | |
2352 use pointers to glyphs in glyph row structures. To satisfy the | |
2353 assumption of point 1 above that glyphs are updated implicitly in | |
2354 window matrices when they are manipulated via the frame matrix, | |
2355 window and frame matrix must of course agree where to find the | |
2356 glyphs for their rows. Possible manipulations that must be | |
2357 mirrored are assignments of rows of the desired frame matrix to the | |
2358 current frame matrix and scrolling the current frame matrix. */ | |
2359 | |
2360 /* Build frame F's desired matrix from window matrices. Only windows | |
2361 which have the flag must_be_updated_p set have to be updated. Menu | |
2362 bar lines of a frame are not covered by window matrices, so make | |
2363 sure not to touch them in this function. */ | |
2364 | |
2365 static void | |
2366 build_frame_matrix (f) | |
2367 struct frame *f; | |
2368 { | |
6620
990d7d5095dc
(adjust_window_charstarts): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6617
diff
changeset
|
2369 int i; |
990d7d5095dc
(adjust_window_charstarts): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6617
diff
changeset
|
2370 |
25012 | 2371 /* F must have a frame matrix when this function is called. */ |
2372 xassert (!FRAME_WINDOW_P (f)); | |
2373 | |
2374 /* Clear all rows in the frame matrix covered by window matrices. | |
2375 Menu bar lines are not covered by windows. */ | |
2376 for (i = FRAME_TOP_MARGIN (f); i < f->desired_matrix->nrows; ++i) | |
2377 clear_glyph_row (MATRIX_ROW (f->desired_matrix, i)); | |
2378 | |
2379 /* Build the matrix by walking the window tree. */ | |
2380 build_frame_matrix_from_window_tree (f->desired_matrix, | |
2381 XWINDOW (FRAME_ROOT_WINDOW (f))); | |
2382 } | |
2383 | |
2384 | |
2385 /* Walk a window tree, building a frame matrix MATRIX from window | |
2386 matrices. W is the root of a window tree. */ | |
2387 | |
2388 static void | |
2389 build_frame_matrix_from_window_tree (matrix, w) | |
2390 struct glyph_matrix *matrix; | |
2391 struct window *w; | |
2392 { | |
2393 while (w) | |
6620
990d7d5095dc
(adjust_window_charstarts): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6617
diff
changeset
|
2394 { |
25012 | 2395 if (!NILP (w->hchild)) |
2396 build_frame_matrix_from_window_tree (matrix, XWINDOW (w->hchild)); | |
2397 else if (!NILP (w->vchild)) | |
2398 build_frame_matrix_from_window_tree (matrix, XWINDOW (w->vchild)); | |
2399 else | |
2400 build_frame_matrix_from_leaf_window (matrix, w); | |
2401 | |
2402 w = NILP (w->next) ? 0 : XWINDOW (w->next); | |
6620
990d7d5095dc
(adjust_window_charstarts): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6617
diff
changeset
|
2403 } |
990d7d5095dc
(adjust_window_charstarts): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6617
diff
changeset
|
2404 } |
6642
2fda5dd17356
(verify_charstarts): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6627
diff
changeset
|
2405 |
25012 | 2406 |
2407 /* Add a window's matrix to a frame matrix. FRAME_MATRIX is the | |
2408 desired frame matrix built. W is a leaf window whose desired or | |
2409 current matrix is to be added to FRAME_MATRIX. W's flag | |
2410 must_be_updated_p determines which matrix it contributes to | |
2411 FRAME_MATRIX. If must_be_updated_p is non-zero, W's desired matrix | |
2412 is added to FRAME_MATRIX, otherwise W's current matrix is added. | |
2413 Adding a desired matrix means setting up used counters and such in | |
2414 frame rows, while adding a current window matrix to FRAME_MATRIX | |
2415 means copying glyphs. The latter case corresponds to | |
2416 preserve_other_columns in the old redisplay. */ | |
2417 | |
2418 static void | |
2419 build_frame_matrix_from_leaf_window (frame_matrix, w) | |
2420 struct glyph_matrix *frame_matrix; | |
6642
2fda5dd17356
(verify_charstarts): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6627
diff
changeset
|
2421 struct window *w; |
2fda5dd17356
(verify_charstarts): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6627
diff
changeset
|
2422 { |
25012 | 2423 struct glyph_matrix *window_matrix; |
2424 int window_y, frame_y; | |
2425 /* If non-zero, a glyph to insert at the right border of W. */ | |
2426 GLYPH right_border_glyph = 0; | |
2427 | |
2428 /* Set window_matrix to the matrix we have to add to FRAME_MATRIX. */ | |
2429 if (w->must_be_updated_p) | |
2430 { | |
2431 window_matrix = w->desired_matrix; | |
2432 | |
2433 /* Decide whether we want to add a vertical border glyph. */ | |
2434 if (!WINDOW_RIGHTMOST_P (w)) | |
2435 { | |
2436 struct Lisp_Char_Table *dp = window_display_table (w); | |
2437 right_border_glyph = (dp && INTEGERP (DISP_BORDER_GLYPH (dp)) | |
2438 ? XINT (DISP_BORDER_GLYPH (dp)) | |
2439 : '|'); | |
2440 } | |
2441 } | |
2442 else | |
2443 window_matrix = w->current_matrix; | |
2444 | |
2445 /* For all rows in the window matrix and corresponding rows in the | |
2446 frame matrix. */ | |
2447 window_y = 0; | |
2448 frame_y = window_matrix->matrix_y; | |
2449 while (window_y < window_matrix->nrows) | |
6642
2fda5dd17356
(verify_charstarts): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6627
diff
changeset
|
2450 { |
25012 | 2451 struct glyph_row *frame_row = frame_matrix->rows + frame_y; |
2452 struct glyph_row *window_row = window_matrix->rows + window_y; | |
31271
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2453 int current_row_p = window_matrix == w->current_matrix; |
25012 | 2454 |
2455 /* Fill up the frame row with spaces up to the left margin of the | |
2456 window row. */ | |
2457 fill_up_frame_row_with_spaces (frame_row, window_matrix->matrix_x); | |
2458 | |
2459 /* Fill up areas in the window matrix row with spaces. */ | |
2460 fill_up_glyph_row_with_spaces (window_row); | |
31271
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2461 |
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2462 /* If only part of W's desired matrix has been built, and |
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2463 window_row wasn't displayed, use the corresponding current |
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2464 row instead. */ |
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2465 if (window_matrix == w->desired_matrix |
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2466 && !window_row->enabled_p) |
6682
16ab14205588
(verify_charstarts): Handle truncation of lines.
Richard M. Stallman <rms@gnu.org>
parents:
6648
diff
changeset
|
2467 { |
31271
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2468 window_row = w->current_matrix->rows + window_y; |
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2469 current_row_p = 1; |
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2470 } |
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2471 |
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2472 if (current_row_p) |
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2473 { |
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2474 /* Copy window row to frame row. */ |
25012 | 2475 bcopy (window_row->glyphs[0], |
2476 frame_row->glyphs[TEXT_AREA] + window_matrix->matrix_x, | |
2477 window_matrix->matrix_w * sizeof (struct glyph)); | |
2478 } | |
2479 else | |
2480 { | |
31271
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2481 xassert (window_row->enabled_p); |
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2482 |
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2483 /* Only when a desired row has been displayed, we want |
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2484 the corresponding frame row to be updated. */ |
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2485 frame_row->enabled_p = 1; |
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2486 |
25012 | 2487 /* Maybe insert a vertical border between horizontally adjacent |
2488 windows. */ | |
2489 if (right_border_glyph) | |
2490 { | |
2491 struct glyph *border = window_row->glyphs[LAST_AREA] - 1; | |
2492 SET_CHAR_GLYPH_FROM_GLYPH (*border, right_border_glyph); | |
2493 } | |
2494 | |
27855
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2495 #if 0 /* This shouldn't be necessary. Let's check it. */ |
25012 | 2496 /* Due to hooks installed, it normally doesn't happen that |
2497 window rows and frame rows of the same matrix are out of | |
2498 sync, i.e. have a different understanding of where to | |
2499 find glyphs for the row. The following is a safety-belt | |
2500 that doesn't cost much and makes absolutely sure that | |
2501 window and frame matrices are in sync. */ | |
2502 if (!glyph_row_slice_p (window_row, frame_row)) | |
6682
16ab14205588
(verify_charstarts): Handle truncation of lines.
Richard M. Stallman <rms@gnu.org>
parents:
6648
diff
changeset
|
2503 { |
25012 | 2504 /* Find the row in the window being a slice. There |
2505 should exist one from program logic. */ | |
2506 struct glyph_row *slice_row | |
2507 = find_glyph_row_slice (window_matrix, frame_matrix, frame_y); | |
2508 xassert (slice_row != 0); | |
2509 | |
2510 /* Exchange glyphs between both window rows. */ | |
2511 swap_glyphs_in_rows (window_row, slice_row); | |
2512 | |
2513 /* Exchange pointers between both rows. */ | |
2514 swap_glyph_pointers (window_row, slice_row); | |
6682
16ab14205588
(verify_charstarts): Handle truncation of lines.
Richard M. Stallman <rms@gnu.org>
parents:
6648
diff
changeset
|
2515 } |
27855
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2516 #endif |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2517 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2518 /* Window row window_y must be a slice of frame row |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2519 frame_y. */ |
25012 | 2520 xassert (glyph_row_slice_p (window_row, frame_row)); |
27855
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2521 |
25012 | 2522 /* If rows are in sync, we don't have to copy glyphs because |
2523 frame and window share glyphs. */ | |
25241
35674d7c4136
(mirror_make_current): If desired row isn't enabled,
Gerd Moellmann <gerd@gnu.org>
parents:
25190
diff
changeset
|
2524 |
35674d7c4136
(mirror_make_current): If desired row isn't enabled,
Gerd Moellmann <gerd@gnu.org>
parents:
25190
diff
changeset
|
2525 #if GLYPH_DEBUG |
35674d7c4136
(mirror_make_current): If desired row isn't enabled,
Gerd Moellmann <gerd@gnu.org>
parents:
25190
diff
changeset
|
2526 strcpy (w->current_matrix->method, w->desired_matrix->method); |
35674d7c4136
(mirror_make_current): If desired row isn't enabled,
Gerd Moellmann <gerd@gnu.org>
parents:
25190
diff
changeset
|
2527 #endif |
25012 | 2528 } |
2529 | |
2530 /* Set number of used glyphs in the frame matrix. Since we fill | |
2531 up with spaces, and visit leaf windows from left to right it | |
2532 can be done simply. */ | |
2533 frame_row->used[TEXT_AREA] | |
2534 = window_matrix->matrix_x + window_matrix->matrix_w; | |
2535 | |
31271
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
2536 /* Or in other flags. */ |
25012 | 2537 frame_row->inverse_p |= window_row->inverse_p; |
2538 | |
2539 /* Next row. */ | |
2540 ++window_y; | |
2541 ++frame_y; | |
2542 } | |
2543 } | |
2544 | |
2545 | |
2546 /* Add spaces to a glyph row ROW in a window matrix. | |
2547 | |
2548 Each row has the form: | |
2549 | |
2550 +---------+-----------------------------+------------+ | |
2551 | left | text | right | | |
2552 +---------+-----------------------------+------------+ | |
2553 | |
2554 Left and right marginal areas are optional. This function adds | |
2555 spaces to areas so that there are no empty holes between areas. | |
2556 In other words: If the right area is not empty, the text area | |
2557 is filled up with spaces up to the right area. If the text area | |
2558 is not empty, the left area is filled up. | |
2559 | |
2560 To be called for frame-based redisplay, only. */ | |
2561 | |
2562 static void | |
2563 fill_up_glyph_row_with_spaces (row) | |
2564 struct glyph_row *row; | |
2565 { | |
2566 fill_up_glyph_row_area_with_spaces (row, LEFT_MARGIN_AREA); | |
2567 fill_up_glyph_row_area_with_spaces (row, TEXT_AREA); | |
2568 fill_up_glyph_row_area_with_spaces (row, RIGHT_MARGIN_AREA); | |
2569 } | |
2570 | |
2571 | |
2572 /* Fill area AREA of glyph row ROW with spaces. To be called for | |
2573 frame-based redisplay only. */ | |
2574 | |
2575 static void | |
2576 fill_up_glyph_row_area_with_spaces (row, area) | |
2577 struct glyph_row *row; | |
2578 int area; | |
2579 { | |
2580 if (row->glyphs[area] < row->glyphs[area + 1]) | |
2581 { | |
2582 struct glyph *end = row->glyphs[area + 1]; | |
2583 struct glyph *text = row->glyphs[area] + row->used[area]; | |
2584 | |
2585 while (text < end) | |
2586 *text++ = space_glyph; | |
2587 row->used[area] = text - row->glyphs[area]; | |
2588 } | |
2589 } | |
2590 | |
2591 | |
2592 /* Add spaces to the end of ROW in a frame matrix until index UPTO is | |
2593 reached. In frame matrices only one area, TEXT_AREA, is used. */ | |
2594 | |
2595 static void | |
2596 fill_up_frame_row_with_spaces (row, upto) | |
2597 struct glyph_row *row; | |
2598 int upto; | |
2599 { | |
2600 int i = row->used[TEXT_AREA]; | |
2601 struct glyph *glyph = row->glyphs[TEXT_AREA]; | |
2602 | |
2603 while (i < upto) | |
2604 glyph[i++] = space_glyph; | |
2605 | |
2606 row->used[TEXT_AREA] = i; | |
2607 } | |
2608 | |
2609 | |
2610 | |
2611 /********************************************************************** | |
2612 Mirroring operations on frame matrices in window matrices | |
2613 **********************************************************************/ | |
2614 | |
2615 /* Set frame being updated via frame-based redisplay to F. This | |
2616 function must be called before updates to make explicit that we are | |
2617 working on frame matrices or not. */ | |
2618 | |
2619 static INLINE void | |
2620 set_frame_matrix_frame (f) | |
2621 struct frame *f; | |
2622 { | |
2623 frame_matrix_frame = f; | |
2624 } | |
2625 | |
2626 | |
2627 /* Make sure glyph row ROW in CURRENT_MATRIX is up to date. | |
2628 DESIRED_MATRIX is the desired matrix corresponding to | |
2629 CURRENT_MATRIX. The update is done by exchanging glyph pointers | |
2630 between rows in CURRENT_MATRIX and DESIRED_MATRIX. If | |
2631 frame_matrix_frame is non-null, this indicates that the exchange is | |
2632 done in frame matrices, and that we have to perform analogous | |
2633 operations in window matrices of frame_matrix_frame. */ | |
2634 | |
2635 static INLINE void | |
2636 make_current (desired_matrix, current_matrix, row) | |
2637 struct glyph_matrix *desired_matrix, *current_matrix; | |
2638 int row; | |
2639 { | |
2640 struct glyph_row *current_row = MATRIX_ROW (current_matrix, row); | |
2641 struct glyph_row *desired_row = MATRIX_ROW (desired_matrix, row); | |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
2642 int mouse_face_p = current_row->mouse_face_p; |
25012 | 2643 |
2644 /* Do current_row = desired_row. This exchanges glyph pointers | |
2645 between both rows, and does a structure assignment otherwise. */ | |
2646 assign_row (current_row, desired_row); | |
2647 | |
2648 /* Enable current_row to mark it as valid. */ | |
2649 current_row->enabled_p = 1; | |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
2650 current_row->mouse_face_p = mouse_face_p; |
25012 | 2651 |
2652 /* If we are called on frame matrices, perform analogous operations | |
2653 for window matrices. */ | |
2654 if (frame_matrix_frame) | |
2655 mirror_make_current (XWINDOW (frame_matrix_frame->root_window), row); | |
2656 } | |
2657 | |
2658 | |
2659 /* W is the root of a window tree. FRAME_ROW is the index of a row in | |
2660 W's frame which has been made current (by swapping pointers between | |
2661 current and desired matrix). Perform analogous operations in the | |
2662 matrices of leaf windows in the window tree rooted at W. */ | |
2663 | |
2664 static void | |
2665 mirror_make_current (w, frame_row) | |
2666 struct window *w; | |
2667 int frame_row; | |
2668 { | |
2669 while (w) | |
2670 { | |
2671 if (!NILP (w->hchild)) | |
2672 mirror_make_current (XWINDOW (w->hchild), frame_row); | |
2673 else if (!NILP (w->vchild)) | |
2674 mirror_make_current (XWINDOW (w->vchild), frame_row); | |
2675 else | |
2676 { | |
2677 /* Row relative to window W. Don't use FRAME_TO_WINDOW_VPOS | |
2678 here because the checks performed in debug mode there | |
2679 will not allow the conversion. */ | |
2680 int row = frame_row - w->desired_matrix->matrix_y; | |
2681 | |
2682 /* If FRAME_ROW is within W, assign the desired row to the | |
2683 current row (exchanging glyph pointers). */ | |
2684 if (row >= 0 && row < w->desired_matrix->matrix_h) | |
6682
16ab14205588
(verify_charstarts): Handle truncation of lines.
Richard M. Stallman <rms@gnu.org>
parents:
6648
diff
changeset
|
2685 { |
25012 | 2686 struct glyph_row *current_row |
2687 = MATRIX_ROW (w->current_matrix, row); | |
2688 struct glyph_row *desired_row | |
2689 = MATRIX_ROW (w->desired_matrix, row); | |
25241
35674d7c4136
(mirror_make_current): If desired row isn't enabled,
Gerd Moellmann <gerd@gnu.org>
parents:
25190
diff
changeset
|
2690 |
35674d7c4136
(mirror_make_current): If desired row isn't enabled,
Gerd Moellmann <gerd@gnu.org>
parents:
25190
diff
changeset
|
2691 if (desired_row->enabled_p) |
35674d7c4136
(mirror_make_current): If desired row isn't enabled,
Gerd Moellmann <gerd@gnu.org>
parents:
25190
diff
changeset
|
2692 assign_row (current_row, desired_row); |
35674d7c4136
(mirror_make_current): If desired row isn't enabled,
Gerd Moellmann <gerd@gnu.org>
parents:
25190
diff
changeset
|
2693 else |
35674d7c4136
(mirror_make_current): If desired row isn't enabled,
Gerd Moellmann <gerd@gnu.org>
parents:
25190
diff
changeset
|
2694 swap_glyph_pointers (desired_row, current_row); |
25012 | 2695 current_row->enabled_p = 1; |
6682
16ab14205588
(verify_charstarts): Handle truncation of lines.
Richard M. Stallman <rms@gnu.org>
parents:
6648
diff
changeset
|
2696 } |
16ab14205588
(verify_charstarts): Handle truncation of lines.
Richard M. Stallman <rms@gnu.org>
parents:
6648
diff
changeset
|
2697 } |
25012 | 2698 |
2699 w = NILP (w->next) ? 0 : XWINDOW (w->next); | |
6642
2fda5dd17356
(verify_charstarts): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6627
diff
changeset
|
2700 } |
2fda5dd17356
(verify_charstarts): New function.
Richard M. Stallman <rms@gnu.org>
parents:
6627
diff
changeset
|
2701 } |
25012 | 2702 |
2703 | |
2704 /* Perform row dance after scrolling. We are working on the range of | |
2705 lines UNCHANGED_AT_TOP + 1 to UNCHANGED_AT_TOP + NLINES (not | |
2706 including) in MATRIX. COPY_FROM is a vector containing, for each | |
2707 row I in the range 0 <= I < NLINES, the index of the original line | |
2708 to move to I. This index is relative to the row range, i.e. 0 <= | |
2709 index < NLINES. RETAINED_P is a vector containing zero for each | |
2710 row 0 <= I < NLINES which is empty. | |
2711 | |
2712 This function is called from do_scrolling and do_direct_scrolling. */ | |
2713 | |
2714 void | |
2715 mirrored_line_dance (matrix, unchanged_at_top, nlines, copy_from, | |
2716 retained_p) | |
2717 struct glyph_matrix *matrix; | |
2718 int unchanged_at_top, nlines; | |
2719 int *copy_from; | |
2720 char *retained_p; | |
2721 { | |
2722 /* A copy of original rows. */ | |
2723 struct glyph_row *old_rows; | |
2724 | |
2725 /* Rows to assign to. */ | |
2726 struct glyph_row *new_rows = MATRIX_ROW (matrix, unchanged_at_top); | |
2727 | |
2728 int i; | |
2729 | |
2730 /* Make a copy of the original rows. */ | |
2731 old_rows = (struct glyph_row *) alloca (nlines * sizeof *old_rows); | |
2732 bcopy (new_rows, old_rows, nlines * sizeof *old_rows); | |
2733 | |
2734 /* Assign new rows, maybe clear lines. */ | |
2735 for (i = 0; i < nlines; ++i) | |
2736 { | |
2737 int enabled_before_p = new_rows[i].enabled_p; | |
2738 | |
2739 xassert (i + unchanged_at_top < matrix->nrows); | |
2740 xassert (unchanged_at_top + copy_from[i] < matrix->nrows); | |
2741 new_rows[i] = old_rows[copy_from[i]]; | |
2742 new_rows[i].enabled_p = enabled_before_p; | |
2743 | |
2744 /* RETAINED_P is zero for empty lines. */ | |
2745 if (!retained_p[copy_from[i]]) | |
2746 new_rows[i].enabled_p = 0; | |
2747 } | |
2748 | |
2749 /* Do the same for window matrices, if MATRIX Is a frame matrix. */ | |
2750 if (frame_matrix_frame) | |
2751 mirror_line_dance (XWINDOW (frame_matrix_frame->root_window), | |
2752 unchanged_at_top, nlines, copy_from, retained_p); | |
2753 } | |
2754 | |
2755 | |
27855
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2756 /* Synchronize glyph pointers in the current matrix of window W with |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2757 the current frame matrix. W must be full-width, and be on a tty |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2758 frame. */ |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2759 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2760 static void |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2761 sync_window_with_frame_matrix_rows (w) |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2762 struct window *w; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2763 { |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2764 struct frame *f = XFRAME (w->frame); |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2765 struct glyph_row *window_row, *window_row_end, *frame_row; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2766 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2767 /* Preconditions: W must be a leaf window and full-width. Its frame |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2768 must have a frame matrix. */ |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2769 xassert (NILP (w->hchild) && NILP (w->vchild)); |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2770 xassert (WINDOW_FULL_WIDTH_P (w)); |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2771 xassert (!FRAME_WINDOW_P (f)); |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2772 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2773 /* If W is a full-width window, glyph pointers in W's current matrix |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2774 have, by definition, to be the same as glyph pointers in the |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2775 corresponding frame matrix. */ |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2776 window_row = w->current_matrix->rows; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2777 window_row_end = window_row + w->current_matrix->nrows; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2778 frame_row = f->current_matrix->rows + XFASTINT (w->top); |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2779 while (window_row < window_row_end) |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2780 { |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2781 int area; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2782 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2783 for (area = LEFT_MARGIN_AREA; area <= LAST_AREA; ++area) |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2784 window_row->glyphs[area] = frame_row->glyphs[area]; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2785 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2786 ++window_row, ++frame_row; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2787 } |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2788 } |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2789 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2790 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2791 /* Return the window in the window tree rooted in W containing frame |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2792 row ROW. Value is null if none is found. */ |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2793 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2794 struct window * |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2795 frame_row_to_window (w, row) |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2796 struct window *w; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2797 int row; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2798 { |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2799 struct window *found = NULL; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2800 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2801 while (w && !found) |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2802 { |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2803 if (!NILP (w->hchild)) |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2804 found = frame_row_to_window (XWINDOW (w->hchild), row); |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2805 else if (!NILP (w->vchild)) |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2806 found = frame_row_to_window (XWINDOW (w->vchild), row); |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2807 else if (row >= XFASTINT (w->top) |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2808 && row < XFASTINT (w->top) + XFASTINT (w->height)) |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2809 found = w; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2810 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2811 w = NILP (w->next) ? 0 : XWINDOW (w->next); |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2812 } |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2813 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2814 return found; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2815 } |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2816 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2817 |
25012 | 2818 /* Perform a line dance in the window tree rooted at W, after |
2819 scrolling a frame matrix in mirrored_line_dance. | |
2820 | |
2821 We are working on the range of lines UNCHANGED_AT_TOP + 1 to | |
2822 UNCHANGED_AT_TOP + NLINES (not including) in W's frame matrix. | |
2823 COPY_FROM is a vector containing, for each row I in the range 0 <= | |
2824 I < NLINES, the index of the original line to move to I. This | |
2825 index is relative to the row range, i.e. 0 <= index < NLINES. | |
2826 RETAINED_P is a vector containing zero for each row 0 <= I < NLINES | |
2827 which is empty. */ | |
2828 | |
2829 static void | |
2830 mirror_line_dance (w, unchanged_at_top, nlines, copy_from, retained_p) | |
2831 struct window *w; | |
2832 int unchanged_at_top, nlines; | |
2833 int *copy_from; | |
2834 char *retained_p; | |
2835 { | |
2836 while (w) | |
2837 { | |
2838 if (!NILP (w->hchild)) | |
2839 mirror_line_dance (XWINDOW (w->hchild), unchanged_at_top, | |
2840 nlines, copy_from, retained_p); | |
2841 else if (!NILP (w->vchild)) | |
2842 mirror_line_dance (XWINDOW (w->vchild), unchanged_at_top, | |
2843 nlines, copy_from, retained_p); | |
2844 else | |
2845 { | |
2846 /* W is a leaf window, and we are working on its current | |
2847 matrix m. */ | |
2848 struct glyph_matrix *m = w->current_matrix; | |
27855
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2849 int i, sync_p = 0; |
25012 | 2850 struct glyph_row *old_rows; |
2851 | |
2852 /* Make a copy of the original rows of matrix m. */ | |
2853 old_rows = (struct glyph_row *) alloca (m->nrows * sizeof *old_rows); | |
2854 bcopy (m->rows, old_rows, m->nrows * sizeof *old_rows); | |
2855 | |
2856 for (i = 0; i < nlines; ++i) | |
2857 { | |
2858 /* Frame relative line assigned to. */ | |
2859 int frame_to = i + unchanged_at_top; | |
2860 | |
2861 /* Frame relative line assigned. */ | |
2862 int frame_from = copy_from[i] + unchanged_at_top; | |
2863 | |
2864 /* Window relative line assigned to. */ | |
2865 int window_to = frame_to - m->matrix_y; | |
2866 | |
2867 /* Window relative line assigned. */ | |
2868 int window_from = frame_from - m->matrix_y; | |
2869 | |
2870 /* Is assigned line inside window? */ | |
2871 int from_inside_window_p | |
2872 = window_from >= 0 && window_from < m->matrix_h; | |
2873 | |
27855
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2874 /* Is assigned to line inside window? */ |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2875 int to_inside_window_p |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2876 = window_to >= 0 && window_to < m->matrix_h; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2877 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2878 if (from_inside_window_p && to_inside_window_p) |
25012 | 2879 { |
2880 /* Enabled setting before assignment. */ | |
2881 int enabled_before_p; | |
2882 | |
2883 /* Do the assignment. The enabled_p flag is saved | |
2884 over the assignment because the old redisplay did | |
2885 that. */ | |
2886 enabled_before_p = m->rows[window_to].enabled_p; | |
2887 m->rows[window_to] = old_rows[window_from]; | |
2888 m->rows[window_to].enabled_p = enabled_before_p; | |
2889 | |
2890 /* If frame line is empty, window line is empty, too. */ | |
2891 if (!retained_p[copy_from[i]]) | |
2892 m->rows[window_to].enabled_p = 0; | |
2893 } | |
27855
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2894 else if (to_inside_window_p) |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2895 { |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2896 /* A copy between windows. This is an infrequent |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2897 case not worth optimizing. */ |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2898 struct frame *f = XFRAME (w->frame); |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2899 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f)); |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2900 struct window *w2; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2901 struct glyph_matrix *m2; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2902 int m2_from; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2903 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2904 w2 = frame_row_to_window (root, frame_to); |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2905 m2 = w2->current_matrix; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2906 m2_from = frame_from - m2->matrix_y; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2907 copy_row_except_pointers (m->rows + window_to, |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2908 m2->rows + m2_from); |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2909 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2910 /* If frame line is empty, window line is empty, too. */ |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2911 if (!retained_p[copy_from[i]]) |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2912 m->rows[window_to].enabled_p = 0; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2913 sync_p = 1; |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2914 } |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2915 else if (from_inside_window_p) |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2916 sync_p = 1; |
25012 | 2917 } |
27855
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2918 |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2919 /* If there was a copy between windows, make sure glyph |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2920 pointers are in sync with the frame matrix. */ |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2921 if (sync_p) |
ecfe912fd73c
(flush_stdout) [GLYPH_DEBUG]: New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27727
diff
changeset
|
2922 sync_window_with_frame_matrix_rows (w); |
25012 | 2923 |
2924 /* Check that no pointers are lost. */ | |
2925 CHECK_MATRIX (m); | |
2926 } | |
2927 | |
2928 /* Next window on same level. */ | |
2929 w = NILP (w->next) ? 0 : XWINDOW (w->next); | |
2930 } | |
2931 } | |
2932 | |
2933 | |
2934 #if GLYPH_DEBUG | |
2935 | |
2936 /* Check that window and frame matrices agree about their | |
2937 understanding where glyphs of the rows are to find. For each | |
2938 window in the window tree rooted at W, check that rows in the | |
2939 matrices of leaf window agree with their frame matrices about | |
2940 glyph pointers. */ | |
314 | 2941 |
21514 | 2942 void |
25012 | 2943 check_window_matrix_pointers (w) |
314 | 2944 struct window *w; |
2945 { | |
25012 | 2946 while (w) |
2947 { | |
2948 if (!NILP (w->hchild)) | |
2949 check_window_matrix_pointers (XWINDOW (w->hchild)); | |
2950 else if (!NILP (w->vchild)) | |
2951 check_window_matrix_pointers (XWINDOW (w->vchild)); | |
2952 else | |
2953 { | |
2954 struct frame *f = XFRAME (w->frame); | |
2955 check_matrix_pointers (w->desired_matrix, f->desired_matrix); | |
2956 check_matrix_pointers (w->current_matrix, f->current_matrix); | |
2957 } | |
2958 | |
2959 w = NILP (w->next) ? 0 : XWINDOW (w->next); | |
2960 } | |
2961 } | |
2962 | |
2963 | |
2964 /* Check that window rows are slices of frame rows. WINDOW_MATRIX is | |
2965 a window and FRAME_MATRIX is the corresponding frame matrix. For | |
2966 each row in WINDOW_MATRIX check that it's a slice of the | |
2967 corresponding frame row. If it isn't, abort. */ | |
2968 | |
2969 static void | |
2970 check_matrix_pointers (window_matrix, frame_matrix) | |
2971 struct glyph_matrix *window_matrix, *frame_matrix; | |
2972 { | |
2973 /* Row number in WINDOW_MATRIX. */ | |
2974 int i = 0; | |
2975 | |
2976 /* Row number corresponding to I in FRAME_MATRIX. */ | |
2977 int j = window_matrix->matrix_y; | |
2978 | |
2979 /* For all rows check that the row in the window matrix is a | |
2980 slice of the row in the frame matrix. If it isn't we didn't | |
2981 mirror an operation on the frame matrix correctly. */ | |
2982 while (i < window_matrix->nrows) | |
2983 { | |
2984 if (!glyph_row_slice_p (window_matrix->rows + i, | |
2985 frame_matrix->rows + j)) | |
2986 abort (); | |
2987 ++i, ++j; | |
2988 } | |
2989 } | |
2990 | |
2991 #endif /* GLYPH_DEBUG != 0 */ | |
2992 | |
2993 | |
2994 | |
2995 /********************************************************************** | |
2996 VPOS and HPOS translations | |
2997 **********************************************************************/ | |
2998 | |
2999 #if GLYPH_DEBUG | |
3000 | |
3001 /* Translate vertical position VPOS which is relative to window W to a | |
3002 vertical position relative to W's frame. */ | |
3003 | |
3004 static int | |
3005 window_to_frame_vpos (w, vpos) | |
3006 struct window *w; | |
3007 int vpos; | |
3008 { | |
3009 struct frame *f = XFRAME (w->frame); | |
3010 | |
3011 xassert (!FRAME_WINDOW_P (f)); | |
3012 xassert (vpos >= 0 && vpos <= w->desired_matrix->nrows); | |
3013 vpos += XFASTINT (w->top); | |
3014 xassert (vpos >= 0 && vpos <= FRAME_HEIGHT (f)); | |
3015 return vpos; | |
3016 } | |
3017 | |
3018 | |
3019 /* Translate horizontal position HPOS which is relative to window W to | |
3020 a vertical position relative to W's frame. */ | |
3021 | |
3022 static int | |
3023 window_to_frame_hpos (w, hpos) | |
3024 struct window *w; | |
3025 int hpos; | |
3026 { | |
3027 struct frame *f = XFRAME (w->frame); | |
3028 | |
3029 xassert (!FRAME_WINDOW_P (f)); | |
3030 hpos += XFASTINT (w->left); | |
3031 return hpos; | |
314 | 3032 } |
25012 | 3033 |
3034 #endif /* GLYPH_DEBUG */ | |
3035 | |
3036 | |
314 | 3037 |
25012 | 3038 /********************************************************************** |
3039 Redrawing Frames | |
3040 **********************************************************************/ | |
3041 | |
3042 DEFUN ("redraw-frame", Fredraw_frame, Sredraw_frame, 1, 1, 0, | |
3043 "Clear frame FRAME and output again what is supposed to appear on it.") | |
3044 (frame) | |
3045 Lisp_Object frame; | |
3046 { | |
3047 struct frame *f; | |
3048 | |
3049 CHECK_LIVE_FRAME (frame, 0); | |
3050 f = XFRAME (frame); | |
3051 | |
3052 /* Ignore redraw requests, if frame has no glyphs yet. | |
3053 (Implementation note: It still has to be checked why we are | |
3054 called so early here). */ | |
3055 if (!glyphs_initialized_initially_p) | |
3056 return Qnil; | |
3057 | |
3058 update_begin (f); | |
3059 if (FRAME_MSDOS_P (f)) | |
3060 set_terminal_modes (); | |
3061 clear_frame (); | |
3062 clear_current_matrices (f); | |
3063 update_end (f); | |
3064 fflush (stdout); | |
3065 windows_or_buffers_changed++; | |
3066 /* Mark all windows as inaccurate, so that every window will have | |
3067 its redisplay done. */ | |
3068 mark_window_display_accurate (FRAME_ROOT_WINDOW (f), 0); | |
3069 set_window_update_flags (XWINDOW (FRAME_ROOT_WINDOW (f)), 1); | |
3070 f->garbaged = 0; | |
3071 return Qnil; | |
3072 } | |
3073 | |
3074 | |
3075 /* Redraw frame F. This is nothing more than a call to the Lisp | |
3076 function redraw-frame. */ | |
3077 | |
3078 void | |
3079 redraw_frame (f) | |
3080 struct frame *f; | |
3081 { | |
3082 Lisp_Object frame; | |
3083 XSETFRAME (frame, f); | |
3084 Fredraw_frame (frame); | |
3085 } | |
3086 | |
3087 | |
3088 DEFUN ("redraw-display", Fredraw_display, Sredraw_display, 0, 0, "", | |
3089 "Clear and redisplay all visible frames.") | |
3090 () | |
3091 { | |
3092 Lisp_Object tail, frame; | |
3093 | |
3094 FOR_EACH_FRAME (tail, frame) | |
3095 if (FRAME_VISIBLE_P (XFRAME (frame))) | |
3096 Fredraw_frame (frame); | |
3097 | |
3098 return Qnil; | |
3099 } | |
3100 | |
3101 | |
3102 /* This is used when frame_garbaged is set. Call Fredraw_frame on all | |
3103 visible frames marked as garbaged. */ | |
3104 | |
3105 void | |
3106 redraw_garbaged_frames () | |
3107 { | |
3108 Lisp_Object tail, frame; | |
3109 | |
3110 FOR_EACH_FRAME (tail, frame) | |
3111 if (FRAME_VISIBLE_P (XFRAME (frame)) | |
3112 && FRAME_GARBAGED_P (XFRAME (frame))) | |
3113 Fredraw_frame (frame); | |
3114 } | |
3115 | |
3116 | |
3117 | |
3118 /*********************************************************************** | |
3119 Direct Operations | |
3120 ***********************************************************************/ | |
3121 | |
3122 /* Try to update display and current glyph matrix directly. | |
3123 | |
3124 This function is called after a character G has been inserted into | |
3125 current_buffer. It tries to update the current glyph matrix and | |
3126 perform appropriate screen output to reflect the insertion. If it | |
3127 succeeds, the global flag redisplay_performed_directly_p will be | |
3128 set to 1, and thereby prevent the more costly general redisplay | |
3129 from running (see redisplay_internal). | |
3130 | |
3131 This function is not called for `hairy' character insertions. | |
3132 In particular, it is not called when after or before change | |
3133 functions exist, like they are used by font-lock. See keyboard.c | |
3134 for details where this function is called. */ | |
314 | 3135 |
3136 int | |
3137 direct_output_for_insert (g) | |
3138 int g; | |
3139 { | |
25666
063da8f6a487
(selected_frame): Make it a Lisp_Object.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3140 register struct frame *f = SELECTED_FRAME (); |
25012 | 3141 struct window *w = XWINDOW (selected_window); |
3142 struct it it, it2; | |
3143 struct glyph_row *glyph_row; | |
3144 struct glyph *glyphs, *glyph, *end; | |
3145 int n; | |
3146 /* Non-null means that Redisplay of W is based on window matrices. */ | |
3147 int window_redisplay_p = FRAME_WINDOW_P (f); | |
3148 /* Non-null means we are in overwrite mode. */ | |
3149 int overwrite_p = !NILP (current_buffer->overwrite_mode); | |
3150 int added_width; | |
3151 struct text_pos pos; | |
3152 int delta, delta_bytes; | |
3153 | |
3154 /* Not done directly. */ | |
3155 redisplay_performed_directly_p = 0; | |
3156 | |
3157 /* Quickly give up for some common cases. */ | |
3158 if (cursor_in_echo_area | |
3159 /* Give up if fonts have changed. */ | |
3160 || fonts_changed_p | |
3161 /* Give up if face attributes have been changed. */ | |
3162 || face_change_count | |
3163 /* Give up if cursor position not really known. */ | |
314 | 3164 || !display_completed |
25012 | 3165 /* Give up if buffer appears in two places. */ |
314 | 3166 || buffer_shared > 1 |
25012 | 3167 /* Give up if w is mini-buffer and a message is being displayed there */ |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
3168 || (MINI_WINDOW_P (w) && !NILP (echo_area_buffer[0])) |
25012 | 3169 /* Give up for hscrolled mini-buffer because display of the prompt |
3170 is handled specially there (see display_line). */ | |
3171 || (MINI_WINDOW_P (w) && XFASTINT (w->hscroll)) | |
3172 /* Give up if overwriting in the middle of a line. */ | |
3173 || (overwrite_p | |
3174 && PT != ZV | |
3175 && FETCH_BYTE (PT) != '\n') | |
3176 /* Give up for tabs and line ends. */ | |
3177 || g == '\t' | |
3178 || g == '\n' | |
3179 || g == '\r' | |
3180 /* Give up if unable to display the cursor in the window. */ | |
3181 || w->cursor.vpos < 0 | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3182 || (glyph_row = MATRIX_ROW (w->current_matrix, w->cursor.vpos), |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3183 /* Can't do it in a continued line because continuation |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3184 lines would change. */ |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3185 (glyph_row->continued_p |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3186 /* Can't use this method if the line overlaps others or is |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3187 overlapped by others because these other lines would |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3188 have to be redisplayed. */ |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3189 || glyph_row->overlapping_p |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3190 || glyph_row->overlapped_p)) |
25012 | 3191 /* Can't do it for partial width windows on terminal frames |
3192 because we can't clear to eol in such a window. */ | |
3193 || (!window_redisplay_p && !WINDOW_FULL_WIDTH_P (w))) | |
3194 return 0; | |
3195 | |
3196 /* Set up a display iterator structure for W. Glyphs will be | |
3197 produced in scratch_glyph_row. Current position is W's cursor | |
3198 position. */ | |
3199 clear_glyph_row (&scratch_glyph_row); | |
3200 SET_TEXT_POS (pos, PT, PT_BYTE); | |
28361
eccb57c44da5
(direct_output_for_insert): Use DEC_TEXT_POS
Gerd Moellmann <gerd@gnu.org>
parents:
27968
diff
changeset
|
3201 DEC_TEXT_POS (pos, !NILP (current_buffer->enable_multibyte_characters)); |
25012 | 3202 init_iterator (&it, w, CHARPOS (pos), BYTEPOS (pos), &scratch_glyph_row, |
3203 DEFAULT_FACE_ID); | |
3204 | |
3205 glyph_row = MATRIX_ROW (w->current_matrix, w->cursor.vpos); | |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3206 if (glyph_row->mouse_face_p) |
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3207 return 0; |
25012 | 3208 |
3209 /* Give up if highlighting trailing whitespace and we have trailing | |
3210 whitespace in glyph_row. We would have to remove the trailing | |
3211 whitespace face in that case. */ | |
25304
4b75c26bd356
(direct_output_for_insert): Use
Gerd Moellmann <gerd@gnu.org>
parents:
25241
diff
changeset
|
3212 if (!NILP (Vshow_trailing_whitespace) |
25012 | 3213 && glyph_row->used[TEXT_AREA]) |
3214 { | |
3215 struct glyph *last; | |
3216 | |
3217 last = glyph_row->glyphs[TEXT_AREA] + glyph_row->used[TEXT_AREA] - 1; | |
3218 if (last->type == STRETCH_GLYPH | |
3219 || (last->type == CHAR_GLYPH | |
26998
02e902f732d1
(line_hash_code) (direct_output_for_insert): Adjusted
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
3220 && last->u.ch == ' ')) |
25012 | 3221 return 0; |
3222 } | |
3223 | |
3224 /* Give up if there are overlay strings at pos. This would fail | |
3225 if the overlay string has newlines in it. */ | |
3226 if (STRINGP (it.string)) | |
3227 return 0; | |
3228 | |
3229 it.hpos = w->cursor.hpos; | |
3230 it.vpos = w->cursor.vpos; | |
3231 it.current_x = w->cursor.x + it.first_visible_x; | |
3232 it.current_y = w->cursor.y; | |
3233 it.end_charpos = PT; | |
3234 it.stop_charpos = min (PT, it.stop_charpos); | |
3235 | |
3236 /* More than one display element may be returned for PT - 1 if | |
3237 (i) it's a control character which is translated into `\003' or | |
3238 `^C', or (ii) it has a display table entry, or (iii) it's a | |
3239 combination of both. */ | |
3240 delta = delta_bytes = 0; | |
3241 while (get_next_display_element (&it)) | |
3242 { | |
3243 PRODUCE_GLYPHS (&it); | |
3244 | |
3245 /* Give up if glyph doesn't fit completely on the line. */ | |
3246 if (it.current_x >= it.last_visible_x) | |
3247 return 0; | |
3248 | |
3249 /* Give up if new glyph has different ascent or descent than | |
3250 the original row, or if it is not a character glyph. */ | |
3251 if (glyph_row->ascent != it.ascent | |
3252 || glyph_row->height != it.ascent + it.descent | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3253 || glyph_row->phys_ascent != it.phys_ascent |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3254 || glyph_row->phys_height != it.phys_ascent + it.phys_descent |
25012 | 3255 || it.what != IT_CHARACTER) |
3256 return 0; | |
3257 | |
3258 delta += 1; | |
3259 delta_bytes += it.len; | |
3260 set_iterator_to_next (&it); | |
3261 } | |
3262 | |
3263 /* Give up if we hit the right edge of the window. We would have | |
3264 to insert truncation or continuation glyphs. */ | |
3265 added_width = it.current_x - (w->cursor.x + it.first_visible_x); | |
3266 if (glyph_row->pixel_width + added_width >= it.last_visible_x) | |
314 | 3267 return 0; |
3268 | |
25012 | 3269 /* Give up if there is a \t following in the line. */ |
3270 it2 = it; | |
3271 it2.end_charpos = ZV; | |
3272 it2.stop_charpos = min (it2.stop_charpos, ZV); | |
3273 while (get_next_display_element (&it2) | |
3274 && !ITERATOR_AT_END_OF_LINE_P (&it2)) | |
3275 { | |
3276 if (it2.c == '\t') | |
3277 return 0; | |
3278 set_iterator_to_next (&it2); | |
3279 } | |
3280 | |
3281 /* Number of new glyphs produced. */ | |
3282 n = it.glyph_row->used[TEXT_AREA]; | |
3283 | |
3284 /* Start and end of glyphs in original row. */ | |
3285 glyphs = glyph_row->glyphs[TEXT_AREA] + w->cursor.hpos; | |
3286 end = glyph_row->glyphs[1 + TEXT_AREA]; | |
3287 | |
3288 /* Make room for new glyphs, then insert them. */ | |
3289 xassert (end - glyphs - n >= 0); | |
25781
e5579bc77d9e
(direct_output_for_insert): Cast arguments to
Gerd Moellmann <gerd@gnu.org>
parents:
25735
diff
changeset
|
3290 safe_bcopy ((char *) glyphs, (char *) (glyphs + n), |
e5579bc77d9e
(direct_output_for_insert): Cast arguments to
Gerd Moellmann <gerd@gnu.org>
parents:
25735
diff
changeset
|
3291 (end - glyphs - n) * sizeof (*end)); |
25012 | 3292 bcopy (it.glyph_row->glyphs[TEXT_AREA], glyphs, n * sizeof *glyphs); |
3293 glyph_row->used[TEXT_AREA] = min (glyph_row->used[TEXT_AREA] + n, | |
3294 end - glyph_row->glyphs[TEXT_AREA]); | |
3295 | |
3296 /* Compute new line width. */ | |
3297 glyph = glyph_row->glyphs[TEXT_AREA]; | |
3298 end = glyph + glyph_row->used[TEXT_AREA]; | |
3299 glyph_row->pixel_width = glyph_row->x; | |
3300 while (glyph < end) | |
3301 { | |
3302 glyph_row->pixel_width += glyph->pixel_width; | |
3303 ++glyph; | |
3304 } | |
3305 | |
3306 /* Increment buffer positions for glyphs following the newly | |
3307 inserted ones. */ | |
3308 for (glyph = glyphs + n; glyph < end; ++glyph) | |
26546
0f43cc91d6a5
(direct_output_for_insert): Increment glyph positions
Gerd Moellmann <gerd@gnu.org>
parents:
26499
diff
changeset
|
3309 if (glyph->charpos > 0 && BUFFERP (glyph->object)) |
25012 | 3310 glyph->charpos += delta; |
3311 | |
3312 if (MATRIX_ROW_END_CHARPOS (glyph_row) > 0) | |
3313 { | |
3314 MATRIX_ROW_END_CHARPOS (glyph_row) += delta; | |
3315 MATRIX_ROW_END_BYTEPOS (glyph_row) += delta_bytes; | |
3316 } | |
3317 | |
3318 /* Adjust positions in lines following the one we are in. */ | |
28708
4e2497e6757e
(increment_matrix_positions): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
28682
diff
changeset
|
3319 increment_matrix_positions (w->current_matrix, |
4e2497e6757e
(increment_matrix_positions): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
28682
diff
changeset
|
3320 w->cursor.vpos + 1, |
4e2497e6757e
(increment_matrix_positions): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
28682
diff
changeset
|
3321 w->current_matrix->nrows, |
4e2497e6757e
(increment_matrix_positions): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
28682
diff
changeset
|
3322 delta, delta_bytes); |
25012 | 3323 |
3324 glyph_row->contains_overlapping_glyphs_p | |
3325 |= it.glyph_row->contains_overlapping_glyphs_p; | |
3326 | |
26591
f7c7ef351f04
(direct_output_for_insert): Set glyph row's
Gerd Moellmann <gerd@gnu.org>
parents:
26546
diff
changeset
|
3327 glyph_row->displays_text_p = 1; |
f7c7ef351f04
(direct_output_for_insert): Set glyph row's
Gerd Moellmann <gerd@gnu.org>
parents:
26546
diff
changeset
|
3328 w->window_end_vpos = make_number (max (w->cursor.vpos, |
f7c7ef351f04
(direct_output_for_insert): Set glyph row's
Gerd Moellmann <gerd@gnu.org>
parents:
26546
diff
changeset
|
3329 XFASTINT (w->window_end_vpos))); |
f7c7ef351f04
(direct_output_for_insert): Set glyph row's
Gerd Moellmann <gerd@gnu.org>
parents:
26546
diff
changeset
|
3330 |
25304
4b75c26bd356
(direct_output_for_insert): Use
Gerd Moellmann <gerd@gnu.org>
parents:
25241
diff
changeset
|
3331 if (!NILP (Vshow_trailing_whitespace)) |
25012 | 3332 highlight_trailing_whitespace (it.f, glyph_row); |
3333 | |
3334 /* Write glyphs. If at end of row, we can simply call write_glyphs. | |
3335 In the middle, we have to insert glyphs. Note that this is now | |
3336 implemented for X frames. The implementation uses updated_window | |
3337 and updated_row. */ | |
3338 updated_row = glyph_row; | |
3339 update_begin (f); | |
3340 if (rif) | |
3341 { | |
3342 rif->update_window_begin_hook (w); | |
3343 | |
3344 if (glyphs == end - n) | |
3345 rif->write_glyphs (glyphs, n); | |
3346 else | |
3347 rif->insert_glyphs (glyphs, n); | |
3348 } | |
3349 else | |
3350 { | |
3351 if (glyphs == end - n) | |
3352 write_glyphs (glyphs, n); | |
3353 else | |
3354 insert_glyphs (glyphs, n); | |
3355 } | |
3356 | |
3357 w->cursor.hpos += n; | |
3358 w->cursor.x = it.current_x - it.first_visible_x; | |
3359 xassert (w->cursor.hpos >= 0 | |
3360 && w->cursor.hpos < w->desired_matrix->matrix_w); | |
3361 | |
3362 /* How to set the cursor differs depending on whether we are | |
3363 using a frame matrix or a window matrix. Note that when | |
3364 a frame matrix is used, cursor_to expects frame coordinates, | |
3365 and the X and Y parameters are not used. */ | |
3366 if (window_redisplay_p) | |
3367 rif->cursor_to (w->cursor.vpos, w->cursor.hpos, | |
3368 w->cursor.y, w->cursor.x); | |
3369 else | |
3370 { | |
3371 int x, y; | |
3372 x = (WINDOW_TO_FRAME_HPOS (w, w->cursor.hpos) | |
3373 + (INTEGERP (w->left_margin_width) | |
3374 ? XFASTINT (w->left_margin_width) | |
3375 : 0)); | |
3376 y = WINDOW_TO_FRAME_VPOS (w, w->cursor.vpos); | |
3377 cursor_to (y, x); | |
3378 } | |
3379 | |
3380 if (rif) | |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3381 rif->update_window_end_hook (w, 1, 0); |
25012 | 3382 update_end (f); |
3383 updated_row = NULL; | |
3384 fflush (stdout); | |
3385 | |
3386 TRACE ((stderr, "direct output for insert\n")); | |
3387 | |
25372
acf281b41a38
(direct_output_for_insert): Set beg_unchanged
Gerd Moellmann <gerd@gnu.org>
parents:
25345
diff
changeset
|
3388 UNCHANGED_MODIFIED = MODIFF; |
acf281b41a38
(direct_output_for_insert): Set beg_unchanged
Gerd Moellmann <gerd@gnu.org>
parents:
25345
diff
changeset
|
3389 BEG_UNCHANGED = GPT - BEG; |
16039
855c8d8ba0f0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
15896
diff
changeset
|
3390 XSETFASTINT (w->last_point, PT); |
25012 | 3391 w->last_cursor = w->cursor; |
9303
3115ae493c30
(direct_output_for_insert, direct_output_forward_char, change_frame_size,
Karl Heuer <kwzh@gnu.org>
parents:
9264
diff
changeset
|
3392 XSETFASTINT (w->last_modified, MODIFF); |
16195
e15e4bdcb8cc
(direct_output_for_insert): Set last_overlay_modified field in window.
Richard M. Stallman <rms@gnu.org>
parents:
16051
diff
changeset
|
3393 XSETFASTINT (w->last_overlay_modified, OVERLAY_MODIFF); |
314 | 3394 |
25012 | 3395 redisplay_performed_directly_p = 1; |
314 | 3396 return 1; |
3397 } | |
3398 | |
25012 | 3399 |
3400 /* Perform a direct display update for moving PT by N positions | |
3401 left or right. N < 0 means a movement backwards. This function | |
3402 is currently only called for N == 1 or N == -1. */ | |
3403 | |
314 | 3404 int |
3405 direct_output_forward_char (n) | |
3406 int n; | |
3407 { | |
25666
063da8f6a487
(selected_frame): Make it a Lisp_Object.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
3408 struct frame *f = SELECTED_FRAME (); |
25012 | 3409 struct window *w = XWINDOW (selected_window); |
3410 struct glyph_row *row; | |
3411 | |
26851
2513566d55fd
(direct_output_forward_char): Check point moving into
Kenichi Handa <handa@m17n.org>
parents:
26729
diff
changeset
|
3412 /* Give up if point moved out of or into a composition. */ |
28507
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28361
diff
changeset
|
3413 if (check_point_in_composition (current_buffer, XINT (w->last_point), |
26851
2513566d55fd
(direct_output_forward_char): Check point moving into
Kenichi Handa <handa@m17n.org>
parents:
26729
diff
changeset
|
3414 current_buffer, PT)) |
2513566d55fd
(direct_output_forward_char): Check point moving into
Kenichi Handa <handa@m17n.org>
parents:
26729
diff
changeset
|
3415 return 0; |
2513566d55fd
(direct_output_forward_char): Check point moving into
Kenichi Handa <handa@m17n.org>
parents:
26729
diff
changeset
|
3416 |
25012 | 3417 /* Give up if face attributes have been changed. */ |
3418 if (face_change_count) | |
17015
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
3419 return 0; |
25012 | 3420 |
3421 /* Give up if current matrix is not up to date or we are | |
3422 displaying a message. */ | |
3423 if (!display_completed || cursor_in_echo_area) | |
3424 return 0; | |
3425 | |
3426 /* Give up if the buffer's direction is reversed. */ | |
3427 if (!NILP (XBUFFER (w->buffer)->direction_reversed)) | |
314 | 3428 return 0; |
11096
cac0367b1794
(direct_output_forward_char): Don't use direct output at an overlay boundary.
Karl Heuer <kwzh@gnu.org>
parents:
10770
diff
changeset
|
3429 |
2794
9163e4e4752c
(direct_output_forward_char): Just give up
Richard M. Stallman <rms@gnu.org>
parents:
2778
diff
changeset
|
3430 /* Can't use direct output if highlighting a region. */ |
9163e4e4752c
(direct_output_forward_char): Just give up
Richard M. Stallman <rms@gnu.org>
parents:
2778
diff
changeset
|
3431 if (!NILP (Vtransient_mark_mode) && !NILP (current_buffer->mark_active)) |
9163e4e4752c
(direct_output_forward_char): Just give up
Richard M. Stallman <rms@gnu.org>
parents:
2778
diff
changeset
|
3432 return 0; |
9163e4e4752c
(direct_output_forward_char): Just give up
Richard M. Stallman <rms@gnu.org>
parents:
2778
diff
changeset
|
3433 |
25304
4b75c26bd356
(direct_output_for_insert): Use
Gerd Moellmann <gerd@gnu.org>
parents:
25241
diff
changeset
|
3434 /* Can't use direct output if highlighting trailing whitespace. */ |
4b75c26bd356
(direct_output_for_insert): Use
Gerd Moellmann <gerd@gnu.org>
parents:
25241
diff
changeset
|
3435 if (!NILP (Vshow_trailing_whitespace)) |
4b75c26bd356
(direct_output_for_insert): Use
Gerd Moellmann <gerd@gnu.org>
parents:
25241
diff
changeset
|
3436 return 0; |
4b75c26bd356
(direct_output_for_insert): Use
Gerd Moellmann <gerd@gnu.org>
parents:
25241
diff
changeset
|
3437 |
25735
fcb92c26acf2
(direct_output_forward_char): Don't use this method
Gerd Moellmann <gerd@gnu.org>
parents:
25725
diff
changeset
|
3438 /* Give up if we are showing a message or just cleared the message |
fcb92c26acf2
(direct_output_forward_char): Don't use this method
Gerd Moellmann <gerd@gnu.org>
parents:
25725
diff
changeset
|
3439 because we might need to resize the echo area window. */ |
fcb92c26acf2
(direct_output_forward_char): Don't use this method
Gerd Moellmann <gerd@gnu.org>
parents:
25725
diff
changeset
|
3440 if (!NILP (echo_area_buffer[0]) || !NILP (echo_area_buffer[1])) |
fcb92c26acf2
(direct_output_forward_char): Don't use this method
Gerd Moellmann <gerd@gnu.org>
parents:
25725
diff
changeset
|
3441 return 0; |
fcb92c26acf2
(direct_output_forward_char): Don't use this method
Gerd Moellmann <gerd@gnu.org>
parents:
25725
diff
changeset
|
3442 |
30152
f6270e5282da
(direct_output_forward_char): Give up if currently
Gerd Moellmann <gerd@gnu.org>
parents:
30041
diff
changeset
|
3443 /* Give up if currently displaying a message instead of the |
f6270e5282da
(direct_output_forward_char): Give up if currently
Gerd Moellmann <gerd@gnu.org>
parents:
30041
diff
changeset
|
3444 minibuffer contents. */ |
f6270e5282da
(direct_output_forward_char): Give up if currently
Gerd Moellmann <gerd@gnu.org>
parents:
30041
diff
changeset
|
3445 if (XWINDOW (minibuf_window) == w |
f6270e5282da
(direct_output_forward_char): Give up if currently
Gerd Moellmann <gerd@gnu.org>
parents:
30041
diff
changeset
|
3446 && EQ (minibuf_window, echo_area_window)) |
f6270e5282da
(direct_output_forward_char): Give up if currently
Gerd Moellmann <gerd@gnu.org>
parents:
30041
diff
changeset
|
3447 return 0; |
f6270e5282da
(direct_output_forward_char): Give up if currently
Gerd Moellmann <gerd@gnu.org>
parents:
30041
diff
changeset
|
3448 |
25735
fcb92c26acf2
(direct_output_forward_char): Don't use this method
Gerd Moellmann <gerd@gnu.org>
parents:
25725
diff
changeset
|
3449 /* Give up if we don't know where the cursor is. */ |
fcb92c26acf2
(direct_output_forward_char): Don't use this method
Gerd Moellmann <gerd@gnu.org>
parents:
25725
diff
changeset
|
3450 if (w->cursor.vpos < 0) |
fcb92c26acf2
(direct_output_forward_char): Don't use this method
Gerd Moellmann <gerd@gnu.org>
parents:
25725
diff
changeset
|
3451 return 0; |
fcb92c26acf2
(direct_output_forward_char): Don't use this method
Gerd Moellmann <gerd@gnu.org>
parents:
25725
diff
changeset
|
3452 |
25012 | 3453 row = MATRIX_ROW (w->current_matrix, w->cursor.vpos); |
3454 | |
31271
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
3455 /* Give up if PT is outside of the last known cursor row. */ |
25012 | 3456 if (PT <= MATRIX_ROW_START_BYTEPOS (row) |
3457 || PT >= MATRIX_ROW_END_BYTEPOS (row)) | |
6069
07045ca8ff19
(direct_output_forward_char): Use Fget_char_property to test for invisibility.
Karl Heuer <kwzh@gnu.org>
parents:
6068
diff
changeset
|
3458 return 0; |
4384
98605d0ea3cf
(direct_output_for_insert): Fail if character
Richard M. Stallman <rms@gnu.org>
parents:
4290
diff
changeset
|
3459 |
25012 | 3460 set_cursor_from_row (w, row, w->current_matrix, 0, 0, 0, 0); |
31271
4f0c5eecc5a6
(build_frame_matrix_from_leaf_window): If a row of a
Gerd Moellmann <gerd@gnu.org>
parents:
31093
diff
changeset
|
3461 |
25012 | 3462 w->last_cursor = w->cursor; |
16039
855c8d8ba0f0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
15896
diff
changeset
|
3463 XSETFASTINT (w->last_point, PT); |
25012 | 3464 |
3465 xassert (w->cursor.hpos >= 0 | |
3466 && w->cursor.hpos < w->desired_matrix->matrix_w); | |
3467 | |
3468 if (FRAME_WINDOW_P (f)) | |
3469 rif->cursor_to (w->cursor.vpos, w->cursor.hpos, | |
3470 w->cursor.y, w->cursor.x); | |
3471 else | |
3472 { | |
3473 int x, y; | |
3474 x = (WINDOW_TO_FRAME_HPOS (w, w->cursor.hpos) | |
3475 + (INTEGERP (w->left_margin_width) | |
3476 ? XFASTINT (w->left_margin_width) | |
3477 : 0)); | |
3478 y = WINDOW_TO_FRAME_VPOS (w, w->cursor.vpos); | |
3479 cursor_to (y, x); | |
3480 } | |
3481 | |
314 | 3482 fflush (stdout); |
25012 | 3483 redisplay_performed_directly_p = 1; |
314 | 3484 return 1; |
3485 } | |
25012 | 3486 |
3487 | |
314 | 3488 |
25012 | 3489 /*********************************************************************** |
3490 Frame Update | |
3491 ***********************************************************************/ | |
3492 | |
3493 /* Update frame F based on the data in desired matrices. | |
3494 | |
3495 If FORCE_P is non-zero, don't let redisplay be stopped by detecting | |
3496 pending input. If INHIBIT_HAIRY_ID_P is non-zero, don't try | |
3497 scrolling. | |
3498 | |
3499 Value is non-zero if redisplay was stopped due to pending input. */ | |
314 | 3500 |
3501 int | |
25012 | 3502 update_frame (f, force_p, inhibit_hairy_id_p) |
3503 struct frame *f; | |
3504 int force_p; | |
3505 int inhibit_hairy_id_p; | |
3506 { | |
3507 /* 1 means display has been paused because of pending input. */ | |
3508 int paused_p; | |
3509 struct window *root_window = XWINDOW (f->root_window); | |
3510 | |
3511 if (FRAME_WINDOW_P (f)) | |
3512 { | |
3513 /* We are working on window matrix basis. All windows whose | |
3514 flag must_be_updated_p is set have to be updated. */ | |
3515 | |
3516 /* Record that we are not working on frame matrices. */ | |
3517 set_frame_matrix_frame (NULL); | |
3518 | |
3519 /* Update all windows in the window tree of F, maybe stopping | |
3520 when pending input is detected. */ | |
3521 update_begin (f); | |
3522 | |
3523 /* Update the menu bar on X frames that don't have toolkit | |
3524 support. */ | |
3525 if (WINDOWP (f->menu_bar_window)) | |
3526 update_window (XWINDOW (f->menu_bar_window), 1); | |
3527 | |
3528 /* Update the tool-bar window, if present. */ | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
3529 if (WINDOWP (f->tool_bar_window)) |
25012 | 3530 { |
3531 Lisp_Object tem; | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
3532 struct window *w = XWINDOW (f->tool_bar_window); |
25012 | 3533 |
3534 /* Update tool-bar window. */ | |
3535 if (w->must_be_updated_p) | |
3536 { | |
3537 update_window (w, 1); | |
3538 w->must_be_updated_p = 0; | |
3539 | |
3540 /* Swap tool-bar strings. We swap because we want to | |
3541 reuse strings. */ | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
3542 tem = f->current_tool_bar_string; |
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
3543 f->current_tool_bar_string = f->desired_tool_bar_string; |
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
3544 f->desired_tool_bar_string = tem; |
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
3545 f->n_current_tool_bar_items = f->n_desired_tool_bar_items; |
25012 | 3546 |
3547 /* Swap tool-bar items. We swap because we want to | |
3548 reuse vectors. */ | |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
3549 tem = f->current_tool_bar_items; |
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
3550 f->current_tool_bar_items = f->desired_tool_bar_items; |
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
3551 f->desired_tool_bar_items = tem; |
25012 | 3552 } |
3553 } | |
3554 | |
3555 | |
3556 /* Update windows. */ | |
3557 paused_p = update_window_tree (root_window, force_p); | |
3558 update_end (f); | |
31295
d4f918f0b184
(update_frame): Only set display_completed here; use
Gerd Moellmann <gerd@gnu.org>
parents:
31271
diff
changeset
|
3559 |
d4f918f0b184
(update_frame): Only set display_completed here; use
Gerd Moellmann <gerd@gnu.org>
parents:
31271
diff
changeset
|
3560 #if 0 /* This flush is a performance bottleneck under X, |
d4f918f0b184
(update_frame): Only set display_completed here; use
Gerd Moellmann <gerd@gnu.org>
parents:
31271
diff
changeset
|
3561 and it doesn't seem to be necessary anyway. */ |
25012 | 3562 rif->flush_display (f); |
3563 #endif | |
3564 } | |
3565 else | |
3566 { | |
3567 /* We are working on frame matrix basis. Set the frame on whose | |
3568 frame matrix we operate. */ | |
3569 set_frame_matrix_frame (f); | |
3570 | |
31295
d4f918f0b184
(update_frame): Only set display_completed here; use
Gerd Moellmann <gerd@gnu.org>
parents:
31271
diff
changeset
|
3571 /* Build F's desired matrix from window matrices. */ |
25012 | 3572 build_frame_matrix (f); |
3573 | |
31295
d4f918f0b184
(update_frame): Only set display_completed here; use
Gerd Moellmann <gerd@gnu.org>
parents:
31271
diff
changeset
|
3574 /* Update the display */ |
d4f918f0b184
(update_frame): Only set display_completed here; use
Gerd Moellmann <gerd@gnu.org>
parents:
31271
diff
changeset
|
3575 update_begin (f); |
25012 | 3576 paused_p = update_frame_1 (f, force_p, inhibit_hairy_id_p); |
31295
d4f918f0b184
(update_frame): Only set display_completed here; use
Gerd Moellmann <gerd@gnu.org>
parents:
31271
diff
changeset
|
3577 update_end (f); |
d4f918f0b184
(update_frame): Only set display_completed here; use
Gerd Moellmann <gerd@gnu.org>
parents:
31271
diff
changeset
|
3578 |
d4f918f0b184
(update_frame): Only set display_completed here; use
Gerd Moellmann <gerd@gnu.org>
parents:
31271
diff
changeset
|
3579 if (termscript) |
d4f918f0b184
(update_frame): Only set display_completed here; use
Gerd Moellmann <gerd@gnu.org>
parents:
31271
diff
changeset
|
3580 fflush (termscript); |
d4f918f0b184
(update_frame): Only set display_completed here; use
Gerd Moellmann <gerd@gnu.org>
parents:
31271
diff
changeset
|
3581 fflush (stdout); |
d4f918f0b184
(update_frame): Only set display_completed here; use
Gerd Moellmann <gerd@gnu.org>
parents:
31271
diff
changeset
|
3582 |
25012 | 3583 /* Check window matrices for lost pointers. */ |
3584 IF_DEBUG (check_window_matrix_pointers (root_window)); | |
3585 } | |
3586 | |
3587 /* Reset flags indicating that a window should be updated. */ | |
3588 set_window_update_flags (root_window, 0); | |
31295
d4f918f0b184
(update_frame): Only set display_completed here; use
Gerd Moellmann <gerd@gnu.org>
parents:
31271
diff
changeset
|
3589 |
d4f918f0b184
(update_frame): Only set display_completed here; use
Gerd Moellmann <gerd@gnu.org>
parents:
31271
diff
changeset
|
3590 display_completed = !paused_p; |
25012 | 3591 return paused_p; |
3592 } | |
3593 | |
3594 | |
3595 | |
3596 /************************************************************************ | |
3597 Window-based updates | |
3598 ************************************************************************/ | |
3599 | |
3600 /* Perform updates in window tree rooted at W. FORCE_P non-zero means | |
3601 don't stop updating when input is pending. */ | |
3602 | |
3603 static int | |
3604 update_window_tree (w, force_p) | |
3605 struct window *w; | |
3606 int force_p; | |
3607 { | |
3608 int paused_p = 0; | |
3609 | |
3610 while (w && !paused_p) | |
3611 { | |
3612 if (!NILP (w->hchild)) | |
3613 paused_p |= update_window_tree (XWINDOW (w->hchild), force_p); | |
3614 else if (!NILP (w->vchild)) | |
3615 paused_p |= update_window_tree (XWINDOW (w->vchild), force_p); | |
3616 else if (w->must_be_updated_p) | |
3617 paused_p |= update_window (w, force_p); | |
3618 | |
3619 w = NILP (w->next) ? 0 : XWINDOW (w->next); | |
3620 } | |
3621 | |
3622 return paused_p; | |
3623 } | |
3624 | |
3625 | |
3626 /* Update window W if its flag must_be_updated_p is non-zero. If | |
3627 FORCE_P is non-zero, don't stop updating if input is pending. */ | |
3628 | |
3629 void | |
3630 update_single_window (w, force_p) | |
3631 struct window *w; | |
3632 int force_p; | |
3633 { | |
3634 if (w->must_be_updated_p) | |
3635 { | |
3636 struct frame *f = XFRAME (WINDOW_FRAME (w)); | |
3637 | |
3638 /* Record that this is not a frame-based redisplay. */ | |
3639 set_frame_matrix_frame (NULL); | |
3640 | |
3641 /* Update W. */ | |
3642 update_begin (f); | |
3643 update_window (w, force_p); | |
3644 update_end (f); | |
3645 | |
3646 /* Reset flag in W. */ | |
3647 w->must_be_updated_p = 0; | |
3648 } | |
3649 } | |
3650 | |
3651 | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3652 /* Redraw lines from the current matrix of window W that are |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3653 overlapped by other rows. YB is bottom-most y-position in W. */ |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3654 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3655 static void |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3656 redraw_overlapped_rows (w, yb) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3657 struct window *w; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3658 int yb; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3659 { |
30165
d7ec5b3caccc
(redraw_overlapped_rows): Add missing local.
Gerd Moellmann <gerd@gnu.org>
parents:
30161
diff
changeset
|
3660 int i; |
d7ec5b3caccc
(redraw_overlapped_rows): Add missing local.
Gerd Moellmann <gerd@gnu.org>
parents:
30161
diff
changeset
|
3661 |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3662 /* If rows overlapping others have been changed, the rows being |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3663 overlapped have to be redrawn. This won't draw lines that have |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3664 already been drawn in update_window_line because overlapped_p in |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3665 desired rows is 0, so after row assignment overlapped_p in |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3666 current rows is 0. */ |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3667 for (i = 0; i < w->current_matrix->nrows; ++i) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3668 { |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3669 struct glyph_row *row = w->current_matrix->rows + i; |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3670 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3671 if (!row->enabled_p) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3672 break; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3673 else if (row->mode_line_p) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3674 continue; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3675 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3676 if (row->overlapped_p) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3677 { |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3678 enum glyph_row_area area; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3679 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3680 for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3681 { |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3682 updated_row = row; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3683 updated_area = area; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3684 rif->cursor_to (i, 0, row->y, area == TEXT_AREA ? row->x : 0); |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3685 if (row->used[area]) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3686 rif->write_glyphs (row->glyphs[area], row->used[area]); |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3687 rif->clear_end_of_line (-1); |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3688 } |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3689 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3690 row->overlapped_p = 0; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3691 } |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3692 |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3693 if (MATRIX_ROW_BOTTOM_Y (row) >= yb) |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3694 break; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3695 } |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3696 } |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3697 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3698 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3699 /* Redraw lines from the current matrix of window W that overlap |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3700 others. YB is bottom-most y-position in W. */ |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3701 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3702 static void |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3703 redraw_overlapping_rows (w, yb) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3704 struct window *w; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3705 int yb; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3706 { |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3707 int i, bottom_y; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3708 struct glyph_row *row; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3709 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3710 for (i = 0; i < w->current_matrix->nrows; ++i) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3711 { |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3712 row = w->current_matrix->rows + i; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3713 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3714 if (!row->enabled_p) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3715 break; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3716 else if (row->mode_line_p) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3717 continue; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3718 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3719 bottom_y = MATRIX_ROW_BOTTOM_Y (row); |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3720 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3721 if (row->overlapping_p && i > 0 && bottom_y < yb) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3722 { |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3723 if (row->used[LEFT_MARGIN_AREA]) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3724 rif->fix_overlapping_area (w, row, LEFT_MARGIN_AREA); |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3725 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3726 if (row->used[TEXT_AREA]) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3727 rif->fix_overlapping_area (w, row, TEXT_AREA); |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3728 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3729 if (row->used[RIGHT_MARGIN_AREA]) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3730 rif->fix_overlapping_area (w, row, RIGHT_MARGIN_AREA); |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3731 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3732 /* Record in neighbor rows that ROW overwrites part of their |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3733 display. */ |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3734 if (row->phys_ascent > row->ascent && i > 0) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3735 MATRIX_ROW (w->current_matrix, i - 1)->overlapped_p = 1; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3736 if ((row->phys_height - row->phys_ascent |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3737 > row->height - row->ascent) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3738 && bottom_y < yb) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3739 MATRIX_ROW (w->current_matrix, i + 1)->overlapped_p = 1; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3740 } |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3741 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3742 if (bottom_y >= yb) |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3743 break; |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3744 } |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3745 } |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3746 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3747 |
25012 | 3748 /* Update display of window W. FORCE_P non-zero means that we should |
3749 not stop when detecting pending input. */ | |
3750 | |
3751 static int | |
3752 update_window (w, force_p) | |
3753 struct window *w; | |
3754 int force_p; | |
3755 { | |
3756 struct glyph_matrix *desired_matrix = w->desired_matrix; | |
3757 int paused_p; | |
3758 int preempt_count = baud_rate / 2400 + 1; | |
3759 extern int input_pending; | |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
3760 #if GLYPH_DEBUG |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
3761 struct frame *f = XFRAME (WINDOW_FRAME (w)); |
25012 | 3762 extern struct frame *updating_frame; |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
3763 #endif |
25012 | 3764 |
3765 /* Check that W's frame doesn't have glyph matrices. */ | |
3766 xassert (FRAME_WINDOW_P (f)); | |
3767 xassert (updating_frame != NULL); | |
3768 | |
3769 /* Check pending input the first time so that we can quickly return. */ | |
3770 if (redisplay_dont_pause) | |
3771 force_p = 1; | |
3772 else | |
3773 detect_input_pending (); | |
3774 | |
3775 /* If forced to complete the update, or if no input is pending, do | |
3776 the update. */ | |
3777 if (force_p || !input_pending) | |
3778 { | |
3779 struct glyph_row *row, *end; | |
3780 struct glyph_row *mode_line_row; | |
25546 | 3781 struct glyph_row *header_line_row = NULL; |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3782 int yb, changed_p = 0, mouse_face_overwritten_p = 0; |
25012 | 3783 |
3784 rif->update_window_begin_hook (w); | |
3785 yb = window_text_bottom_y (w); | |
3786 | |
3787 /* If window has a top line, update it before everything else. | |
3788 Adjust y-positions of other rows by the top line height. */ | |
3789 row = desired_matrix->rows; | |
3790 end = row + desired_matrix->nrows - 1; | |
3791 if (row->mode_line_p) | |
25546 | 3792 header_line_row = row++; |
25012 | 3793 |
3794 /* Update the mode line, if necessary. */ | |
3795 mode_line_row = MATRIX_MODE_LINE_ROW (desired_matrix); | |
3796 if (mode_line_row->mode_line_p && mode_line_row->enabled_p) | |
3797 { | |
3798 mode_line_row->y = yb; | |
3799 update_window_line (w, MATRIX_ROW_VPOS (mode_line_row, | |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3800 desired_matrix), |
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3801 &mouse_face_overwritten_p); |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3802 changed_p = 1; |
25012 | 3803 } |
3804 | |
3805 /* Find first enabled row. Optimizations in redisplay_internal | |
3806 may lead to an update with only one row enabled. There may | |
3807 be also completely empty matrices. */ | |
3808 while (row < end && !row->enabled_p) | |
3809 ++row; | |
3810 | |
31825
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
3811 /* Try reusing part of the display by copying. */ |
25012 | 3812 if (row < end && !desired_matrix->no_scrolling_p) |
3813 { | |
25546 | 3814 int rc = scrolling_window (w, header_line_row != NULL); |
25012 | 3815 if (rc < 0) |
3816 { | |
3817 /* All rows were found to be equal. */ | |
3818 paused_p = 0; | |
3819 goto set_cursor; | |
3820 } | |
3821 else if (rc > 0) | |
3822 force_p = 1; | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3823 changed_p = 1; |
25012 | 3824 } |
3825 | |
3826 /* Update the top mode line after scrolling because a new top | |
3827 line would otherwise overwrite lines at the top of the window | |
3828 that can be scrolled. */ | |
25546 | 3829 if (header_line_row && header_line_row->enabled_p) |
25012 | 3830 { |
25546 | 3831 header_line_row->y = 0; |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3832 update_window_line (w, 0, &mouse_face_overwritten_p); |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3833 changed_p = 1; |
25012 | 3834 } |
3835 | |
3836 /* Update the rest of the lines. */ | |
3837 for (; row < end && (force_p || !input_pending); ++row) | |
31653
2554afbeb88d
(update_window): Make sure to make desired rows
Gerd Moellmann <gerd@gnu.org>
parents:
31295
diff
changeset
|
3838 if (row->enabled_p) |
25012 | 3839 { |
3840 int vpos = MATRIX_ROW_VPOS (row, desired_matrix); | |
3841 int i; | |
3842 | |
3843 /* We'll Have to play a little bit with when to | |
3844 detect_input_pending. If it's done too often, | |
3845 scrolling large windows with repeated scroll-up | |
3846 commands will too quickly pause redisplay. */ | |
3847 if (!force_p && vpos % preempt_count == 0) | |
3848 detect_input_pending (); | |
3849 | |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3850 changed_p |= update_window_line (w, vpos, |
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3851 &mouse_face_overwritten_p); |
25012 | 3852 |
3853 /* Mark all rows below the last visible one in the current | |
3854 matrix as invalid. This is necessary because of | |
3855 variable line heights. Consider the case of three | |
3856 successive redisplays, where the first displays 5 | |
3857 lines, the second 3 lines, and the third 5 lines again. | |
3858 If the second redisplay wouldn't mark rows in the | |
3859 current matrix invalid, the third redisplay might be | |
3860 tempted to optimize redisplay based on lines displayed | |
3861 in the first redisplay. */ | |
3862 if (MATRIX_ROW_BOTTOM_Y (row) >= yb) | |
3863 for (i = vpos + 1; i < w->current_matrix->nrows - 1; ++i) | |
3864 MATRIX_ROW (w->current_matrix, i)->enabled_p = 0; | |
3865 } | |
3866 | |
3867 /* Was display preempted? */ | |
3868 paused_p = row < end; | |
3869 | |
3870 set_cursor: | |
3871 | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3872 /* Fix the appearance of overlapping(overlapped rows. */ |
25012 | 3873 if (!paused_p && !w->pseudo_window_p) |
3874 { | |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3875 if (changed_p && rif->fix_overlapping_area) |
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3876 { |
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3877 redraw_overlapped_rows (w, yb); |
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3878 redraw_overlapping_rows (w, yb); |
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3879 } |
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3880 |
25012 | 3881 /* Make cursor visible at cursor position of W. */ |
3882 set_window_cursor_after_update (w); | |
3883 | |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3884 #if 0 /* Check that current matrix invariants are satisfied. This is |
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3885 for debugging only. See the comment of check_matrix_invariants. */ |
25012 | 3886 IF_DEBUG (check_matrix_invariants (w)); |
3887 #endif | |
3888 } | |
3889 | |
3890 #if GLYPH_DEBUG | |
3891 /* Remember the redisplay method used to display the matrix. */ | |
3892 strcpy (w->current_matrix->method, w->desired_matrix->method); | |
3893 #endif | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3894 |
25012 | 3895 /* End of update of window W. */ |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
3896 rif->update_window_end_hook (w, 1, mouse_face_overwritten_p); |
25012 | 3897 } |
3898 else | |
3899 paused_p = 1; | |
3900 | |
3901 clear_glyph_matrix (desired_matrix); | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3902 |
25012 | 3903 return paused_p; |
3904 } | |
3905 | |
3906 | |
3907 /* Update the display of area AREA in window W, row number VPOS. | |
3908 AREA can be either LEFT_MARGIN_AREA or RIGHT_MARGIN_AREA. */ | |
3909 | |
3910 static void | |
3911 update_marginal_area (w, area, vpos) | |
3912 struct window *w; | |
3913 int area, vpos; | |
3914 { | |
3915 struct glyph_row *desired_row = MATRIX_ROW (w->desired_matrix, vpos); | |
3916 | |
3917 /* Let functions in xterm.c know what area subsequent X positions | |
3918 will be relative to. */ | |
3919 updated_area = area; | |
3920 | |
3921 /* Set cursor to start of glyphs, write them, and clear to the end | |
3922 of the area. I don't think that something more sophisticated is | |
3923 necessary here, since marginal areas will not be the default. */ | |
3924 rif->cursor_to (vpos, 0, desired_row->y, 0); | |
3925 if (desired_row->used[area]) | |
3926 rif->write_glyphs (desired_row->glyphs[area], desired_row->used[area]); | |
3927 rif->clear_end_of_line (-1); | |
3928 } | |
3929 | |
3930 | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3931 /* Update the display of the text area of row VPOS in window W. |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3932 Value is non-zero if display has changed. */ |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3933 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3934 static int |
25012 | 3935 update_text_area (w, vpos) |
3936 struct window *w; | |
3937 int vpos; | |
314 | 3938 { |
25012 | 3939 struct glyph_row *current_row = MATRIX_ROW (w->current_matrix, vpos); |
3940 struct glyph_row *desired_row = MATRIX_ROW (w->desired_matrix, vpos); | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3941 int changed_p = 0; |
25012 | 3942 |
3943 /* Let functions in xterm.c know what area subsequent X positions | |
3944 will be relative to. */ | |
3945 updated_area = TEXT_AREA; | |
3946 | |
3947 /* If rows are at different X or Y, or rows have different height, | |
3948 or the current row is marked invalid, write the entire line. */ | |
3949 if (!current_row->enabled_p | |
3950 || desired_row->y != current_row->y | |
3951 || desired_row->ascent != current_row->ascent | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3952 || desired_row->phys_ascent != current_row->phys_ascent |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3953 || desired_row->phys_height != current_row->phys_height |
25012 | 3954 || desired_row->visible_height != current_row->visible_height |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3955 || current_row->overlapped_p |
30307
faf4e303bab7
(update_text_area): Write the whole row if it
Gerd Moellmann <gerd@gnu.org>
parents:
30165
diff
changeset
|
3956 || current_row->mouse_face_p |
25012 | 3957 || current_row->x != desired_row->x) |
3958 { | |
3959 rif->cursor_to (vpos, 0, desired_row->y, desired_row->x); | |
3960 | |
3961 if (desired_row->used[TEXT_AREA]) | |
3962 rif->write_glyphs (desired_row->glyphs[TEXT_AREA], | |
3963 desired_row->used[TEXT_AREA]); | |
3964 | |
3965 /* Clear to end of window. */ | |
3966 rif->clear_end_of_line (-1); | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
3967 changed_p = 1; |
25012 | 3968 } |
3969 else | |
3970 { | |
3971 int stop, i, x; | |
3972 struct glyph *current_glyph = current_row->glyphs[TEXT_AREA]; | |
3973 struct glyph *desired_glyph = desired_row->glyphs[TEXT_AREA]; | |
3974 | |
3975 /* If the desired row extends its face to the text area end, | |
3976 make sure we write at least one glyph, so that the face | |
3977 extension actually takes place. */ | |
3978 int desired_stop_pos = (desired_row->used[TEXT_AREA] | |
3979 - (MATRIX_ROW_EXTENDS_FACE_P (desired_row) | |
3980 ? 1 : 0)); | |
3981 | |
3982 stop = min (current_row->used[TEXT_AREA], desired_stop_pos); | |
3983 i = 0; | |
3984 x = desired_row->x; | |
3985 | |
3986 while (i < stop) | |
3987 { | |
3988 /* Skip over glyphs that both rows have in common. These | |
3989 don't have to be written. */ | |
3990 while (i < stop | |
3991 && GLYPH_EQUAL_P (desired_glyph, current_glyph)) | |
3992 { | |
3993 x += desired_glyph->pixel_width; | |
3994 ++desired_glyph, ++current_glyph, ++i; | |
3995 } | |
3996 | |
3997 /* Consider the case that the current row contains "xxx ppp | |
3998 ggg" in italic Courier font, and the desired row is "xxx | |
3999 ggg". The character `p' has lbearing, `g' has not. The | |
4000 loop above will stop in front of the first `p' in the | |
4001 current row. If we would start writing glyphs there, we | |
4002 wouldn't erase the lbearing of the `p'. The rest of the | |
4003 lbearing problem is then taken care of by x_draw_glyphs. */ | |
4004 if (current_row->contains_overlapping_glyphs_p | |
4005 && i > 0 | |
4006 && i < current_row->used[TEXT_AREA] | |
4007 && current_row->used[TEXT_AREA] != desired_row->used[TEXT_AREA]) | |
4008 { | |
4009 int left, right; | |
4010 rif->get_glyph_overhangs (current_glyph, XFRAME (w->frame), | |
4011 &left, &right); | |
4012 while (left > 0 && i > 0) | |
4013 { | |
4014 --i, --desired_glyph, --current_glyph; | |
4015 x -= desired_glyph->pixel_width; | |
4016 left -= desired_glyph->pixel_width; | |
4017 } | |
4018 } | |
4019 | |
4020 /* Try to avoid writing the entire rest of the desired row | |
4021 by looking for a resync point. This mainly prevents | |
4022 mode line flickering in the case the mode line is in | |
4023 fixed-pitch font, which it usually will be. */ | |
4024 if (i < desired_row->used[TEXT_AREA]) | |
4025 { | |
4026 int start_x = x, start_hpos = i; | |
4027 struct glyph *start = desired_glyph; | |
4028 int current_x = x; | |
4029 | |
4030 /* Find the next glyph that's equal again. */ | |
4031 while (i < stop | |
4032 && !GLYPH_EQUAL_P (desired_glyph, current_glyph) | |
4033 && x == current_x) | |
4034 { | |
4035 x += desired_glyph->pixel_width; | |
4036 current_x += current_glyph->pixel_width; | |
4037 ++desired_glyph, ++current_glyph, ++i; | |
4038 } | |
4039 | |
4040 if (i == start_hpos || x != current_x) | |
4041 { | |
4042 i = start_hpos; | |
4043 x = start_x; | |
4044 desired_glyph = start; | |
4045 break; | |
4046 } | |
4047 | |
4048 rif->cursor_to (vpos, start_hpos, desired_row->y, start_x); | |
4049 rif->write_glyphs (start, i - start_hpos); | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
4050 changed_p = 1; |
25012 | 4051 } |
4052 } | |
4053 | |
4054 /* Write the rest. */ | |
4055 if (i < desired_row->used[TEXT_AREA]) | |
4056 { | |
4057 rif->cursor_to (vpos, i, desired_row->y, x); | |
4058 rif->write_glyphs (desired_glyph, desired_row->used[TEXT_AREA] - i); | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
4059 changed_p = 1; |
25012 | 4060 } |
4061 | |
4062 /* Maybe clear to end of line. */ | |
4063 if (MATRIX_ROW_EXTENDS_FACE_P (desired_row)) | |
4064 { | |
4065 /* If new row extends to the end of the text area, nothing | |
4066 has to be cleared, if and only if we did a write_glyphs | |
4067 above. This is made sure by setting desired_stop_pos | |
4068 appropriately above. */ | |
4069 xassert (i < desired_row->used[TEXT_AREA]); | |
4070 } | |
4071 else if (MATRIX_ROW_EXTENDS_FACE_P (current_row)) | |
4072 { | |
4073 /* If old row extends to the end of the text area, clear. */ | |
4074 if (i >= desired_row->used[TEXT_AREA]) | |
4075 rif->cursor_to (vpos, i, desired_row->y, | |
4076 desired_row->x + desired_row->pixel_width); | |
4077 rif->clear_end_of_line (-1); | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
4078 changed_p = 1; |
25012 | 4079 } |
4080 else if (desired_row->pixel_width < current_row->pixel_width) | |
4081 { | |
4082 /* Otherwise clear to the end of the old row. Everything | |
4083 after that position should be clear already. */ | |
4084 int x; | |
4085 | |
4086 if (i >= desired_row->used[TEXT_AREA]) | |
4087 rif->cursor_to (vpos, i, desired_row->y, | |
4088 desired_row->x + desired_row->pixel_width); | |
4089 | |
4090 /* If cursor is displayed at the end of the line, make sure | |
4091 it's cleared. Nowadays we don't have a phys_cursor_glyph | |
4092 with which to erase the cursor (because this method | |
4093 doesn't work with lbearing/rbearing), so we must do it | |
4094 this way. */ | |
4095 if (vpos == w->phys_cursor.vpos | |
4096 && w->phys_cursor.hpos >= desired_row->used[TEXT_AREA]) | |
4097 { | |
4098 w->phys_cursor_on_p = 0; | |
4099 x = -1; | |
4100 } | |
4101 else | |
4102 x = current_row->x + current_row->pixel_width; | |
4103 rif->clear_end_of_line (x); | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
4104 changed_p = 1; |
25012 | 4105 } |
4106 } | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
4107 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
4108 return changed_p; |
25012 | 4109 } |
4110 | |
4111 | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
4112 /* Update row VPOS in window W. Value is non-zero if display has been |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
4113 changed. */ |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
4114 |
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
4115 static int |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
4116 update_window_line (w, vpos, mouse_face_overwritten_p) |
25012 | 4117 struct window *w; |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
4118 int vpos, *mouse_face_overwritten_p; |
25012 | 4119 { |
4120 struct glyph_row *current_row = MATRIX_ROW (w->current_matrix, vpos); | |
4121 struct glyph_row *desired_row = MATRIX_ROW (w->desired_matrix, vpos); | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
4122 int changed_p = 0; |
25012 | 4123 |
4124 /* Set the row being updated. This is important to let xterm.c | |
4125 know what line height values are in effect. */ | |
4126 updated_row = desired_row; | |
4127 | |
31690
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4128 /* A row can be completely invisible in case a desired matrix was |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4129 built with a vscroll and then make_cursor_line_fully_visible shifts |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4130 the matrix. Make sure to make such rows current anyway, since |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4131 we need the correct y-position, for example, in the current matrix. */ |
31726
59b455472b56
(update_window_line): Make sure to always draw
Gerd Moellmann <gerd@gnu.org>
parents:
31690
diff
changeset
|
4132 if (desired_row->mode_line_p |
59b455472b56
(update_window_line): Make sure to always draw
Gerd Moellmann <gerd@gnu.org>
parents:
31690
diff
changeset
|
4133 || desired_row->visible_height > 0) |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
4134 { |
31690
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4135 xassert (desired_row->enabled_p); |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4136 |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4137 /* Update display of the left margin area, if there is one. */ |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4138 if (!desired_row->full_width_p |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4139 && !NILP (w->left_margin_width)) |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4140 { |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4141 changed_p = 1; |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4142 update_marginal_area (w, LEFT_MARGIN_AREA, vpos); |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4143 } |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4144 |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4145 /* Update the display of the text area. */ |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4146 if (update_text_area (w, vpos)) |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4147 { |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4148 changed_p = 1; |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4149 if (current_row->mouse_face_p) |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4150 *mouse_face_overwritten_p = 1; |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4151 } |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4152 |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4153 /* Update display of the right margin area, if there is one. */ |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4154 if (!desired_row->full_width_p |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4155 && !NILP (w->right_margin_width)) |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4156 { |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4157 changed_p = 1; |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4158 update_marginal_area (w, RIGHT_MARGIN_AREA, vpos); |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4159 } |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4160 |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4161 /* Draw truncation marks etc. */ |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4162 if (!current_row->enabled_p |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4163 || desired_row->y != current_row->y |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4164 || desired_row->visible_height != current_row->visible_height |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4165 || desired_row->overlay_arrow_p != current_row->overlay_arrow_p |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4166 || desired_row->truncated_on_left_p != current_row->truncated_on_left_p |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4167 || desired_row->truncated_on_right_p != current_row->truncated_on_right_p |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4168 || desired_row->continued_p != current_row->continued_p |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4169 || desired_row->mode_line_p != current_row->mode_line_p |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4170 || (desired_row->indicate_empty_line_p |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4171 != current_row->indicate_empty_line_p) |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4172 || (MATRIX_ROW_CONTINUATION_LINE_P (desired_row) |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4173 != MATRIX_ROW_CONTINUATION_LINE_P (current_row))) |
6abff42174ea
(update_window): Move test for invisible lines
Gerd Moellmann <gerd@gnu.org>
parents:
31653
diff
changeset
|
4174 rif->after_update_window_line_hook (desired_row); |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
4175 } |
25012 | 4176 |
4177 /* Update current_row from desired_row. */ | |
4178 make_current (w->desired_matrix, w->current_matrix, vpos); | |
4179 updated_row = NULL; | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
4180 return changed_p; |
25012 | 4181 } |
4182 | |
4183 | |
4184 /* Set the cursor after an update of window W. This function may only | |
4185 be called from update_window. */ | |
4186 | |
4187 static void | |
4188 set_window_cursor_after_update (w) | |
4189 struct window *w; | |
4190 { | |
4191 struct frame *f = XFRAME (w->frame); | |
4192 int cx, cy, vpos, hpos; | |
4193 | |
4194 /* Not intended for frame matrix updates. */ | |
4195 xassert (FRAME_WINDOW_P (f)); | |
4196 | |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
4197 if (cursor_in_echo_area |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
4198 && !NILP (echo_area_buffer[0]) |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
4199 /* If we are showing a message instead of the mini-buffer, |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
4200 show the cursor for the message instead. */ |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
4201 && XWINDOW (minibuf_window) == w |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
4202 && EQ (minibuf_window, echo_area_window) |
25012 | 4203 /* These cases apply only to the frame that contains |
4204 the active mini-buffer window. */ | |
4205 && FRAME_HAS_MINIBUF_P (f) | |
4206 && EQ (FRAME_MINIBUF_WINDOW (f), echo_area_window)) | |
4207 { | |
4208 cx = cy = vpos = hpos = 0; | |
4209 | |
4210 if (cursor_in_echo_area >= 0) | |
4211 { | |
4212 /* If the mini-buffer is several lines high, find the last | |
4213 line that has any text on it. Note: either all lines | |
4214 are enabled or none. Otherwise we wouldn't be able to | |
4215 determine Y. */ | |
25190
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4216 struct glyph_row *row, *last_row; |
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4217 struct glyph *glyph; |
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4218 int yb = window_text_bottom_y (w); |
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4219 |
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4220 last_row = NULL; |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
4221 for (row = MATRIX_ROW (w->current_matrix, 0); |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
4222 row->enabled_p; |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
4223 ++row) |
25012 | 4224 { |
25190
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4225 if (row->used[TEXT_AREA] |
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4226 && row->glyphs[TEXT_AREA][0].charpos >= 0) |
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4227 last_row = row; |
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4228 |
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4229 if (MATRIX_ROW_BOTTOM_Y (row) >= yb) |
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4230 break; |
25012 | 4231 } |
25190
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4232 |
25012 | 4233 if (last_row) |
4234 { | |
25190
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4235 struct glyph *start = row->glyphs[TEXT_AREA]; |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
4236 struct glyph *last = start + row->used[TEXT_AREA] - 1; |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
4237 |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
4238 while (last > start && last->charpos < 0) |
25190
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4239 --last; |
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4240 |
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4241 for (glyph = start; glyph < last; ++glyph) |
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4242 { |
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4243 cx += glyph->pixel_width; |
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4244 ++hpos; |
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4245 } |
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4246 |
25012 | 4247 cy = last_row->y; |
25190
a14edd4a5f4a
(set_window_cursor_after_update): Correct cursor
Gerd Moellmann <gerd@gnu.org>
parents:
25186
diff
changeset
|
4248 vpos = MATRIX_ROW_VPOS (last_row, w->current_matrix); |
25012 | 4249 } |
4250 } | |
4251 } | |
4252 else | |
4253 { | |
4254 cx = w->cursor.x; | |
4255 cy = w->cursor.y; | |
4256 hpos = w->cursor.hpos; | |
4257 vpos = w->cursor.vpos; | |
4258 } | |
4259 | |
4260 /* Window cursor can be out of sync for horizontally split windows. */ | |
4261 hpos = max (0, hpos); | |
4262 hpos = min (w->current_matrix->matrix_w - 1, hpos); | |
4263 vpos = max (0, vpos); | |
4264 vpos = min (w->current_matrix->nrows - 1, vpos); | |
4265 rif->cursor_to (vpos, hpos, cy, cx); | |
4266 } | |
4267 | |
4268 | |
29980
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4269 /* Set WINDOW->must_be_updated_p to ON_P for all windows in the window |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4270 tree rooted at W. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4271 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4272 void |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4273 set_window_update_flags (w, on_p) |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4274 struct window *w; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4275 int on_p; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4276 { |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4277 while (w) |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4278 { |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4279 if (!NILP (w->hchild)) |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4280 set_window_update_flags (XWINDOW (w->hchild), on_p); |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4281 else if (!NILP (w->vchild)) |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4282 set_window_update_flags (XWINDOW (w->vchild), on_p); |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4283 else |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4284 w->must_be_updated_p = on_p; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4285 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4286 w = NILP (w->next) ? 0 : XWINDOW (w->next); |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4287 } |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4288 } |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4289 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4290 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4291 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4292 /*********************************************************************** |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4293 Window-Based Scrolling |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4294 ***********************************************************************/ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4295 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4296 /* Structure describing rows in scrolling_window. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4297 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4298 struct row_entry |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4299 { |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4300 /* Number of occurrences of this row in desired and current matrix. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4301 int old_uses, new_uses; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4302 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4303 /* Vpos of row in new matrix. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4304 int new_line_number; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4305 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4306 /* Bucket index of this row_entry in the hash table row_table. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4307 int bucket; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4308 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4309 /* The row described by this entry. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4310 struct glyph_row *row; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4311 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4312 /* Hash collision chain. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4313 struct row_entry *next; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4314 }; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4315 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4316 /* A pool to allocate row_entry structures from, and the size of the |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4317 pool. The pool is reallocated in scrolling_window when we find |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4318 that we need a larger one. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4319 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4320 static struct row_entry *row_entry_pool; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4321 static int row_entry_pool_size; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4322 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4323 /* Index of next free entry in row_entry_pool. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4324 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4325 static int row_entry_idx; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4326 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4327 /* The hash table used during scrolling, and the table's size. This |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4328 table is used to quickly identify equal rows in the desired and |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4329 current matrix. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4330 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4331 static struct row_entry **row_table; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4332 static int row_table_size; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4333 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4334 /* Vectors of pointers to row_entry structures belonging to the |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4335 current and desired matrix, and the size of the vectors. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4336 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4337 static struct row_entry **old_lines, **new_lines; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4338 static int old_lines_size, new_lines_size; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4339 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4340 /* A pool to allocate run structures from, and its size. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4341 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4342 static struct run *run_pool; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4343 static int runs_size; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4344 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4345 /* A vector of runs of lines found during scrolling. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4346 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4347 static struct run **runs; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4348 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4349 static struct row_entry *add_row_entry P_ ((struct window *, |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4350 struct glyph_row *)); |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4351 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4352 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4353 /* Add glyph row ROW to the scrolling hash table during the scrolling |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4354 of window W. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4355 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4356 static INLINE struct row_entry * |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4357 add_row_entry (w, row) |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4358 struct window *w; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4359 struct glyph_row *row; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4360 { |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4361 struct row_entry *entry; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4362 int i = row->hash % row_table_size; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4363 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4364 entry = row_table[i]; |
30152
f6270e5282da
(direct_output_forward_char): Give up if currently
Gerd Moellmann <gerd@gnu.org>
parents:
30041
diff
changeset
|
4365 while (entry && !row_equal_p (w, entry->row, row, 1)) |
29980
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4366 entry = entry->next; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4367 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4368 if (entry == NULL) |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4369 { |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4370 entry = row_entry_pool + row_entry_idx++; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4371 entry->row = row; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4372 entry->old_uses = entry->new_uses = 0; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4373 entry->new_line_number = 0; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4374 entry->bucket = i; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4375 entry->next = row_table[i]; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4376 row_table[i] = entry; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4377 } |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4378 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4379 return entry; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4380 } |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4381 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4382 |
25012 | 4383 /* Try to reuse part of the current display of W by scrolling lines. |
25546 | 4384 HEADER_LINE_P non-zero means W has a top mode line. |
25012 | 4385 |
4386 The algorithm is taken from Communications of the ACM, Apr78 "A | |
4387 Technique for Isolating Differences Between Files." It should take | |
4388 O(N) time. | |
4389 | |
4390 A short outline of the steps of the algorithm | |
4391 | |
4392 1. Skip lines equal at the start and end of both matrices. | |
4393 | |
4394 2. Enter rows in the current and desired matrix into a symbol | |
4395 table, counting how often they appear in both matrices. | |
4396 | |
4397 3. Rows that appear exactly once in both matrices serve as anchors, | |
4398 i.e. we assume that such lines are likely to have been moved. | |
4399 | |
4400 4. Starting from anchor lines, extend regions to be scrolled both | |
4401 forward and backward. | |
4402 | |
4403 Value is | |
4404 | |
4405 -1 if all rows were found to be equal. | |
4406 0 to indicate that we did not scroll the display, or | |
4407 1 if we did scroll. */ | |
4408 | |
4409 static int | |
25546 | 4410 scrolling_window (w, header_line_p) |
25012 | 4411 struct window *w; |
25546 | 4412 int header_line_p; |
25012 | 4413 { |
4414 struct glyph_matrix *desired_matrix = w->desired_matrix; | |
4415 struct glyph_matrix *current_matrix = w->current_matrix; | |
4416 int yb = window_text_bottom_y (w); | |
29980
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4417 int i, j, first_old, first_new, last_old, last_new; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4418 int nruns, nbytes, n, run_idx; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4419 struct row_entry *entry; |
25012 | 4420 |
4421 /* Skip over rows equal at the start. */ | |
31825
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
4422 for (i = header_line_p ? 1 : 0; i < current_matrix->nrows - 1; ++i) |
25012 | 4423 { |
31825
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
4424 struct glyph_row *d = MATRIX_ROW (desired_matrix, i); |
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
4425 struct glyph_row *c = MATRIX_ROW (current_matrix, i); |
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
4426 |
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
4427 if (c->enabled_p |
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
4428 && d->enabled_p |
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
4429 && c->y == d->y |
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
4430 && MATRIX_ROW_BOTTOM_Y (c) <= yb |
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
4431 && MATRIX_ROW_BOTTOM_Y (d) <= yb |
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
4432 && row_equal_p (w, c, d, 1)) |
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
4433 { |
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
4434 assign_row (c, d); |
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
4435 d->enabled_p = 0; |
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
4436 } |
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
4437 else |
62830644b967
(scrolling_window): Compare y-positions of rows
Gerd Moellmann <gerd@gnu.org>
parents:
31726
diff
changeset
|
4438 break; |
25012 | 4439 } |
4440 | |
4441 /* Give up if some rows in the desired matrix are not enabled. */ | |
4442 if (!MATRIX_ROW (desired_matrix, i)->enabled_p) | |
4443 return -1; | |
4444 | |
4445 first_old = first_new = i; | |
4446 | |
4447 /* Set last_new to the index + 1 of the last enabled row in the | |
4448 desired matrix. */ | |
4449 i = first_new + 1; | |
4450 while (i < desired_matrix->nrows - 1 | |
4451 && MATRIX_ROW (desired_matrix, i)->enabled_p | |
29980
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4452 && MATRIX_ROW_BOTTOM_Y (MATRIX_ROW (desired_matrix, i)) <= yb) |
25012 | 4453 ++i; |
4454 | |
4455 if (!MATRIX_ROW (desired_matrix, i)->enabled_p) | |
4456 return 0; | |
4457 | |
4458 last_new = i; | |
4459 | |
4460 /* Set last_old to the index + 1 of the last enabled row in the | |
4461 current matrix. We don't look at the enabled flag here because | |
4462 we plan to reuse part of the display even if other parts are | |
4463 disabled. */ | |
4464 i = first_old + 1; | |
4465 while (i < current_matrix->nrows - 1 | |
29980
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4466 && MATRIX_ROW_BOTTOM_Y (MATRIX_ROW (current_matrix, i)) <= yb) |
25012 | 4467 ++i; |
4468 last_old = i; | |
4469 | |
4470 /* Skip over rows equal at the bottom. */ | |
4471 i = last_new; | |
4472 j = last_old; | |
4473 while (i - 1 > first_new | |
4474 && j - 1 > first_old | |
4475 && MATRIX_ROW (current_matrix, i - 1)->enabled_p | |
4476 && (MATRIX_ROW (current_matrix, i - 1)->y | |
4477 == MATRIX_ROW (desired_matrix, j - 1)->y) | |
4478 && row_equal_p (w, | |
4479 MATRIX_ROW (desired_matrix, i - 1), | |
30152
f6270e5282da
(direct_output_forward_char): Give up if currently
Gerd Moellmann <gerd@gnu.org>
parents:
30041
diff
changeset
|
4480 MATRIX_ROW (current_matrix, j - 1), 1)) |
25012 | 4481 --i, --j; |
4482 last_new = i; | |
4483 last_old = j; | |
4484 | |
4485 /* Nothing to do if all rows are equal. */ | |
4486 if (last_new == first_new) | |
4487 return 0; | |
4488 | |
29980
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4489 /* Reallocate vectors, tables etc. if necessary. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4490 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4491 if (current_matrix->nrows > old_lines_size) |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4492 { |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4493 old_lines_size = current_matrix->nrows; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4494 nbytes = old_lines_size * sizeof *old_lines; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4495 old_lines = (struct row_entry **) xrealloc (old_lines, nbytes); |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4496 } |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4497 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4498 if (desired_matrix->nrows > new_lines_size) |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4499 { |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4500 new_lines_size = desired_matrix->nrows; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4501 nbytes = new_lines_size * sizeof *new_lines; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4502 new_lines = (struct row_entry **) xrealloc (new_lines, nbytes); |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4503 } |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4504 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4505 n = desired_matrix->nrows + current_matrix->nrows; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4506 if (3 * n > row_table_size) |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4507 { |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4508 row_table_size = next_almost_prime (3 * n); |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4509 nbytes = row_table_size * sizeof *row_table; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4510 row_table = (struct row_entry **) xrealloc (row_table, nbytes); |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4511 bzero (row_table, nbytes); |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4512 } |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4513 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4514 if (n > row_entry_pool_size) |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4515 { |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4516 row_entry_pool_size = n; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4517 nbytes = row_entry_pool_size * sizeof *row_entry_pool; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4518 row_entry_pool = (struct row_entry *) xrealloc (row_entry_pool, nbytes); |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4519 } |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4520 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4521 if (desired_matrix->nrows > runs_size) |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4522 { |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4523 runs_size = desired_matrix->nrows; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4524 nbytes = runs_size * sizeof *runs; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4525 runs = (struct run **) xrealloc (runs, nbytes); |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4526 nbytes = runs_size * sizeof *run_pool; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4527 run_pool = (struct run *) xrealloc (run_pool, nbytes); |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4528 } |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4529 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4530 nruns = run_idx = 0; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4531 row_entry_idx = 0; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4532 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4533 /* Add rows from the current and desired matrix to the hash table |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4534 row_hash_table to be able to find equal ones quickly. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4535 |
25012 | 4536 for (i = first_old; i < last_old; ++i) |
4537 { | |
4538 if (MATRIX_ROW (current_matrix, i)->enabled_p) | |
4539 { | |
29980
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4540 entry = add_row_entry (w, MATRIX_ROW (current_matrix, i)); |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4541 old_lines[i] = entry; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4542 ++entry->old_uses; |
25012 | 4543 } |
4544 else | |
29980
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4545 old_lines[i] = NULL; |
25012 | 4546 } |
4547 | |
4548 for (i = first_new; i < last_new; ++i) | |
4549 { | |
4550 xassert (MATRIX_ROW_ENABLED_P (desired_matrix, i)); | |
29980
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4551 entry = add_row_entry (w, MATRIX_ROW (desired_matrix, i)); |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4552 ++entry->new_uses; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4553 entry->new_line_number = i; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4554 new_lines[i] = entry; |
25012 | 4555 } |
4556 | |
4557 /* Identify moves based on lines that are unique and equal | |
4558 in both matrices. */ | |
4559 for (i = first_old; i < last_old;) | |
29980
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4560 if (old_lines[i] |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4561 && old_lines[i]->old_uses == 1 |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4562 && old_lines[i]->new_uses == 1) |
25012 | 4563 { |
4564 int j, k; | |
29980
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4565 int new_line = old_lines[i]->new_line_number; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4566 struct run *run = run_pool + run_idx++; |
25012 | 4567 |
4568 /* Record move. */ | |
4569 run->current_vpos = i; | |
4570 run->current_y = MATRIX_ROW (current_matrix, i)->y; | |
4571 run->desired_vpos = new_line; | |
4572 run->desired_y = MATRIX_ROW (desired_matrix, new_line)->y; | |
4573 run->nrows = 1; | |
4574 run->height = MATRIX_ROW (current_matrix, i)->height; | |
4575 | |
4576 /* Extend backward. */ | |
4577 j = i - 1; | |
4578 k = new_line - 1; | |
4579 while (j > first_old | |
4580 && k > first_new | |
29980
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4581 && old_lines[j] == new_lines[k]) |
25012 | 4582 { |
4583 int h = MATRIX_ROW (current_matrix, j)->height; | |
4584 --run->current_vpos; | |
4585 --run->desired_vpos; | |
4586 ++run->nrows; | |
4587 run->height += h; | |
4588 run->desired_y -= h; | |
4589 run->current_y -= h; | |
4590 --j, --k; | |
4591 } | |
4592 | |
4593 /* Extend forward. */ | |
4594 j = i + 1; | |
4595 k = new_line + 1; | |
4596 while (j < last_old | |
4597 && k < last_new | |
29980
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4598 && old_lines[j] == new_lines[k]) |
25012 | 4599 { |
4600 int h = MATRIX_ROW (current_matrix, j)->height; | |
4601 ++run->nrows; | |
4602 run->height += h; | |
4603 ++j, ++k; | |
4604 } | |
4605 | |
4606 /* Insert run into list of all runs. Order runs by copied | |
4607 pixel lines. Note that we record runs that don't have to | |
4608 be copied because they are already in place. This is done | |
4609 because we can avoid calling update_window_line in this | |
4610 case. */ | |
4611 for (j = 0; j < nruns && runs[j]->height > run->height; ++j) | |
4612 ; | |
4613 for (k = nruns; k >= j; --k) | |
4614 runs[k] = runs[k - 1]; | |
4615 runs[j] = run; | |
4616 ++nruns; | |
4617 | |
4618 i += run->nrows; | |
4619 } | |
4620 else | |
4621 ++i; | |
4622 | |
4623 /* Do the moves. Do it in a way that we don't overwrite something | |
4624 we want to copy later on. This is not solvable in general | |
4625 because there is only one display and we don't have a way to | |
4626 exchange areas on this display. Example: | |
4627 | |
4628 +-----------+ +-----------+ | |
4629 | A | | B | | |
4630 +-----------+ --> +-----------+ | |
4631 | B | | A | | |
4632 +-----------+ +-----------+ | |
4633 | |
4634 Instead, prefer bigger moves, and invalidate moves that would | |
4635 copy from where we copied to. */ | |
4636 | |
4637 for (i = 0; i < nruns; ++i) | |
4638 if (runs[i]->nrows > 0) | |
4639 { | |
4640 struct run *r = runs[i]; | |
4641 | |
4642 /* Copy on the display. */ | |
4643 if (r->current_y != r->desired_y) | |
4644 { | |
4645 rif->scroll_run_hook (w, r); | |
4646 | |
4647 /* Invalidate runs that copy from where we copied to. */ | |
4648 for (j = i + 1; j < nruns; ++j) | |
4649 { | |
4650 struct run *p = runs[j]; | |
4651 | |
4652 if ((p->current_y >= r->desired_y | |
4653 && p->current_y < r->desired_y + r->height) | |
4654 || (p->current_y + p->height >= r->desired_y | |
4655 && (p->current_y + p->height | |
4656 < r->desired_y + r->height))) | |
4657 p->nrows = 0; | |
4658 } | |
4659 } | |
4660 | |
4661 /* Assign matrix rows. */ | |
4662 for (j = 0; j < r->nrows; ++j) | |
4663 { | |
4664 struct glyph_row *from, *to; | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
4665 int to_overlapped_p; |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
4666 |
25012 | 4667 to = MATRIX_ROW (current_matrix, r->desired_vpos + j); |
30161
8be2bf27e9ad
(make_current): Preserve the mouse_face_p flag of the
Gerd Moellmann <gerd@gnu.org>
parents:
30152
diff
changeset
|
4668 from = MATRIX_ROW (desired_matrix, r->desired_vpos + j); |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
4669 to_overlapped_p = to->overlapped_p; |
25012 | 4670 assign_row (to, from); |
4671 to->enabled_p = 1, from->enabled_p = 0; | |
25186
d6c941334567
(redraw_overlapping_rows): Use flag overlapping_p.
Gerd Moellmann <gerd@gnu.org>
parents:
25118
diff
changeset
|
4672 to->overlapped_p = to_overlapped_p; |
25012 | 4673 } |
4674 } | |
4675 | |
29980
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4676 /* Clear the hash table, for the next time. */ |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4677 for (i = 0; i < row_entry_idx; ++i) |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4678 row_table[row_entry_pool[i].bucket] = NULL; |
171ba59e1cb0
(struct row_entry): New structure.
Gerd Moellmann <gerd@gnu.org>
parents:
29687
diff
changeset
|
4679 |
25012 | 4680 /* Value is non-zero to indicate that we scrolled the display. */ |
4681 return 1; | |
4682 } | |
4683 | |
4684 | |
4685 | |
4686 /************************************************************************ | |
4687 Frame-Based Updates | |
4688 ************************************************************************/ | |
4689 | |
4690 /* Update the desired frame matrix of frame F. | |
4691 | |
4692 FORCE_P non-zero means that the update should not be stopped by | |
4693 pending input. INHIBIT_HAIRY_ID_P non-zero means that scrolling | |
4694 should not be tried. | |
4695 | |
4696 Value is non-zero if update was stopped due to pending input. */ | |
4697 | |
4698 static int | |
4699 update_frame_1 (f, force_p, inhibit_id_p) | |
4700 struct frame *f; | |
4701 int force_p; | |
4702 int inhibit_id_p; | |
4703 { | |
4704 /* Frame matrices to work on. */ | |
4705 struct glyph_matrix *current_matrix = f->current_matrix; | |
4706 struct glyph_matrix *desired_matrix = f->desired_matrix; | |
4707 int i; | |
314 | 4708 int pause; |
4709 int preempt_count = baud_rate / 2400 + 1; | |
21514 | 4710 extern int input_pending; |
25012 | 4711 |
4712 xassert (current_matrix && desired_matrix); | |
314 | 4713 |
10122
3de6776ae141
(update_frame): Call calculate_costs if baud_rate changed.
Richard M. Stallman <rms@gnu.org>
parents:
9963
diff
changeset
|
4714 if (baud_rate != FRAME_COST_BAUD_RATE (f)) |
3de6776ae141
(update_frame): Call calculate_costs if baud_rate changed.
Richard M. Stallman <rms@gnu.org>
parents:
9963
diff
changeset
|
4715 calculate_costs (f); |
3de6776ae141
(update_frame): Call calculate_costs if baud_rate changed.
Richard M. Stallman <rms@gnu.org>
parents:
9963
diff
changeset
|
4716 |
3357
d9523a958b3c
(update_frame): Make preempt_count positive.
Richard M. Stallman <rms@gnu.org>
parents:
3317
diff
changeset
|
4717 if (preempt_count <= 0) |
d9523a958b3c
(update_frame): Make preempt_count positive.
Richard M. Stallman <rms@gnu.org>
parents:
3317
diff
changeset
|
4718 preempt_count = 1; |
d9523a958b3c
(update_frame): Make preempt_count positive.
Richard M. Stallman <rms@gnu.org>
parents:
3317
diff
changeset
|
4719 |
30720
64f3338f72d8
(Qredisplay_dont_pause): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30713
diff
changeset
|
4720 if (redisplay_dont_pause) |
64f3338f72d8
(Qredisplay_dont_pause): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30713
diff
changeset
|
4721 force_p = 1; |
64f3338f72d8
(Qredisplay_dont_pause): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30713
diff
changeset
|
4722 else if (!force_p && detect_input_pending ()) |
314 | 4723 { |
4724 pause = 1; | |
4725 goto do_pause; | |
4726 } | |
4727 | |
25012 | 4728 /* If we cannot insert/delete lines, it's no use trying it. */ |
314 | 4729 if (!line_ins_del_ok) |
25012 | 4730 inhibit_id_p = 1; |
7188
7da4ad9a2a8f
(update_frame): Move those assignments even farther down.
Richard M. Stallman <rms@gnu.org>
parents:
7179
diff
changeset
|
4731 |
493 | 4732 /* See if any of the desired lines are enabled; don't compute for |
25012 | 4733 i/d line if just want cursor motion. */ |
4734 for (i = 0; i < desired_matrix->nrows; i++) | |
4735 if (MATRIX_ROW_ENABLED_P (desired_matrix, i)) | |
314 | 4736 break; |
4737 | |
4738 /* Try doing i/d line, if not yet inhibited. */ | |
25012 | 4739 if (!inhibit_id_p && i < desired_matrix->nrows) |
4740 force_p |= scrolling (f); | |
314 | 4741 |
4742 /* Update the individual lines as needed. Do bottom line first. */ | |
25012 | 4743 if (MATRIX_ROW_ENABLED_P (desired_matrix, desired_matrix->nrows - 1)) |
4744 update_frame_line (f, desired_matrix->nrows - 1); | |
4745 | |
4746 /* Now update the rest of the lines. */ | |
4747 for (i = 0; i < desired_matrix->nrows - 1 && (force_p || !input_pending); i++) | |
314 | 4748 { |
25012 | 4749 if (MATRIX_ROW_ENABLED_P (desired_matrix, i)) |
314 | 4750 { |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
4751 if (FRAME_TERMCAP_P (f)) |
314 | 4752 { |
4753 /* Flush out every so many lines. | |
4754 Also flush out if likely to have more than 1k buffered | |
4755 otherwise. I'm told that some telnet connections get | |
4756 really screwed by more than 1k output at once. */ | |
4757 int outq = PENDING_OUTPUT_COUNT (stdout); | |
4758 if (outq > 900 | |
4759 || (outq > 20 && ((i - 1) % preempt_count == 0))) | |
4760 { | |
4761 fflush (stdout); | |
4762 if (preempt_count == 1) | |
4763 { | |
554 | 4764 #ifdef EMACS_OUTQSIZE |
4765 if (EMACS_OUTQSIZE (0, &outq) < 0) | |
314 | 4766 /* Probably not a tty. Ignore the error and reset |
25012 | 4767 * the outq count. */ |
314 | 4768 outq = PENDING_OUTPUT_COUNT (stdout); |
4769 #endif | |
4770 outq *= 10; | |
7530
57c2345a9002
(update_frame): Fix test of outq and baud_rate some more.
Richard M. Stallman <rms@gnu.org>
parents:
7529
diff
changeset
|
4771 if (baud_rate <= outq && baud_rate > 0) |
3357
d9523a958b3c
(update_frame): Make preempt_count positive.
Richard M. Stallman <rms@gnu.org>
parents:
3317
diff
changeset
|
4772 sleep (outq / baud_rate); |
314 | 4773 } |
4774 } | |
4775 } | |
4776 | |
16822
483e137d5384
(update_frame): Call detect_input_pending
Richard M. Stallman <rms@gnu.org>
parents:
16589
diff
changeset
|
4777 if ((i - 1) % preempt_count == 0) |
483e137d5384
(update_frame): Call detect_input_pending
Richard M. Stallman <rms@gnu.org>
parents:
16589
diff
changeset
|
4778 detect_input_pending (); |
483e137d5384
(update_frame): Call detect_input_pending
Richard M. Stallman <rms@gnu.org>
parents:
16589
diff
changeset
|
4779 |
25012 | 4780 update_frame_line (f, i); |
314 | 4781 } |
4782 } | |
25012 | 4783 |
764 | 4784 pause = (i < FRAME_HEIGHT (f) - 1) ? i : 0; |
314 | 4785 |
4786 /* Now just clean up termcap drivers and set cursor, etc. */ | |
4787 if (!pause) | |
4788 { | |
12409
6e374b28ecc3
(update_frame): Pretend cursor is in echo area
Richard M. Stallman <rms@gnu.org>
parents:
12193
diff
changeset
|
4789 if ((cursor_in_echo_area |
25012 | 4790 /* If we are showing a message instead of the mini-buffer, |
12627
c7bc7a24b1ff
(update_frame): Check that the echo area is in the frame being displayed.
Richard M. Stallman <rms@gnu.org>
parents:
12532
diff
changeset
|
4791 show the cursor for the message instead of for the |
25012 | 4792 (now hidden) mini-buffer contents. */ |
12627
c7bc7a24b1ff
(update_frame): Check that the echo area is in the frame being displayed.
Richard M. Stallman <rms@gnu.org>
parents:
12532
diff
changeset
|
4793 || (EQ (minibuf_window, selected_window) |
c7bc7a24b1ff
(update_frame): Check that the echo area is in the frame being displayed.
Richard M. Stallman <rms@gnu.org>
parents:
12532
diff
changeset
|
4794 && EQ (minibuf_window, echo_area_window) |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
4795 && !NILP (echo_area_buffer[0]))) |
12627
c7bc7a24b1ff
(update_frame): Check that the echo area is in the frame being displayed.
Richard M. Stallman <rms@gnu.org>
parents:
12532
diff
changeset
|
4796 /* These cases apply only to the frame that contains |
25012 | 4797 the active mini-buffer window. */ |
12627
c7bc7a24b1ff
(update_frame): Check that the echo area is in the frame being displayed.
Richard M. Stallman <rms@gnu.org>
parents:
12532
diff
changeset
|
4798 && FRAME_HAS_MINIBUF_P (f) |
14459
c1d25453a95f
(update_frame): Compare FRAME_MINIBUF_WINDOW(f)
Richard M. Stallman <rms@gnu.org>
parents:
14286
diff
changeset
|
4799 && EQ (FRAME_MINIBUF_WINDOW (f), echo_area_window)) |
708 | 4800 { |
1042
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4801 int top = XINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top); |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4802 int row, col; |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4803 |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4804 if (cursor_in_echo_area < 0) |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4805 { |
25012 | 4806 /* Negative value of cursor_in_echo_area means put |
4807 cursor at beginning of line. */ | |
1042
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4808 row = top; |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4809 col = 0; |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4810 } |
708 | 4811 else |
1042
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4812 { |
25012 | 4813 /* Positive value of cursor_in_echo_area means put |
4814 cursor at the end of the prompt. If the mini-buffer | |
4815 is several lines high, find the last line that has | |
4816 any text on it. */ | |
1042
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4817 row = FRAME_HEIGHT (f); |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4818 do |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4819 { |
25012 | 4820 --row; |
4821 col = 0; | |
4822 | |
4823 if (MATRIX_ROW_ENABLED_P (current_matrix, row)) | |
4824 { | |
4825 /* Frame rows are filled up with spaces that | |
4826 must be ignored here. */ | |
4827 struct glyph_row *r = MATRIX_ROW (current_matrix, | |
4828 row); | |
4829 struct glyph *start = r->glyphs[TEXT_AREA]; | |
4830 struct glyph *last = start + r->used[TEXT_AREA]; | |
4831 | |
4832 while (last > start | |
4833 && (last - 1)->charpos < 0) | |
4834 --last; | |
4835 | |
4836 col = last - start; | |
4837 } | |
1042
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4838 } |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4839 while (row > top && col == 0); |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4840 |
21757
629f6df4a329
(update_frame): Move echo area cursor into range.
Richard M. Stallman <rms@gnu.org>
parents:
21514
diff
changeset
|
4841 /* Make sure COL is not out of range. */ |
21763
b685f9451792
(change_frame_size_1): Use FRAME_CURSOR_X_LIMIT.
Richard M. Stallman <rms@gnu.org>
parents:
21757
diff
changeset
|
4842 if (col >= FRAME_CURSOR_X_LIMIT (f)) |
1042
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4843 { |
21757
629f6df4a329
(update_frame): Move echo area cursor into range.
Richard M. Stallman <rms@gnu.org>
parents:
21514
diff
changeset
|
4844 /* If we have another row, advance cursor into it. */ |
1042
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4845 if (row < FRAME_HEIGHT (f) - 1) |
21757
629f6df4a329
(update_frame): Move echo area cursor into range.
Richard M. Stallman <rms@gnu.org>
parents:
21514
diff
changeset
|
4846 { |
629f6df4a329
(update_frame): Move echo area cursor into range.
Richard M. Stallman <rms@gnu.org>
parents:
21514
diff
changeset
|
4847 col = FRAME_LEFT_SCROLL_BAR_WIDTH (f); |
629f6df4a329
(update_frame): Move echo area cursor into range.
Richard M. Stallman <rms@gnu.org>
parents:
21514
diff
changeset
|
4848 row++; |
629f6df4a329
(update_frame): Move echo area cursor into range.
Richard M. Stallman <rms@gnu.org>
parents:
21514
diff
changeset
|
4849 } |
629f6df4a329
(update_frame): Move echo area cursor into range.
Richard M. Stallman <rms@gnu.org>
parents:
21514
diff
changeset
|
4850 /* Otherwise move it back in range. */ |
629f6df4a329
(update_frame): Move echo area cursor into range.
Richard M. Stallman <rms@gnu.org>
parents:
21514
diff
changeset
|
4851 else |
21763
b685f9451792
(change_frame_size_1): Use FRAME_CURSOR_X_LIMIT.
Richard M. Stallman <rms@gnu.org>
parents:
21757
diff
changeset
|
4852 col = FRAME_CURSOR_X_LIMIT (f) - 1; |
1042
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4853 } |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4854 } |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4855 |
41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1003
diff
changeset
|
4856 cursor_to (row, col); |
708 | 4857 } |
314 | 4858 else |
25012 | 4859 { |
4860 /* We have only one cursor on terminal frames. Use it to | |
4861 display the cursor of the selected window. */ | |
4862 struct window *w = XWINDOW (FRAME_SELECTED_WINDOW (f)); | |
29687
5d67ef29764b
(update_frame_1): Handle case that cursor vpos is
Gerd Moellmann <gerd@gnu.org>
parents:
29437
diff
changeset
|
4863 if (w->cursor.vpos >= 0 |
5d67ef29764b
(update_frame_1): Handle case that cursor vpos is
Gerd Moellmann <gerd@gnu.org>
parents:
29437
diff
changeset
|
4864 /* The cursor vpos may be temporarily out of bounds |
5d67ef29764b
(update_frame_1): Handle case that cursor vpos is
Gerd Moellmann <gerd@gnu.org>
parents:
29437
diff
changeset
|
4865 in the following situation: There is one window, |
5d67ef29764b
(update_frame_1): Handle case that cursor vpos is
Gerd Moellmann <gerd@gnu.org>
parents:
29437
diff
changeset
|
4866 with the cursor in the lower half of it. The window |
5d67ef29764b
(update_frame_1): Handle case that cursor vpos is
Gerd Moellmann <gerd@gnu.org>
parents:
29437
diff
changeset
|
4867 is split, and a message causes a redisplay before |
5d67ef29764b
(update_frame_1): Handle case that cursor vpos is
Gerd Moellmann <gerd@gnu.org>
parents:
29437
diff
changeset
|
4868 a new cursor position has been computed. */ |
5d67ef29764b
(update_frame_1): Handle case that cursor vpos is
Gerd Moellmann <gerd@gnu.org>
parents:
29437
diff
changeset
|
4869 && w->cursor.vpos < XFASTINT (w->height)) |
25012 | 4870 { |
4871 int x = WINDOW_TO_FRAME_HPOS (w, w->cursor.hpos); | |
4872 int y = WINDOW_TO_FRAME_VPOS (w, w->cursor.vpos); | |
4873 | |
4874 if (INTEGERP (w->left_margin_width)) | |
4875 x += XFASTINT (w->left_margin_width); | |
4876 | |
4877 /* x = max (min (x, FRAME_WINDOW_WIDTH (f) - 1), 0); */ | |
4878 cursor_to (y, x); | |
4879 } | |
4880 } | |
314 | 4881 } |
4882 | |
4883 do_pause: | |
4884 | |
25012 | 4885 clear_desired_matrices (f); |
314 | 4886 return pause; |
4887 } | |
4888 | |
25012 | 4889 |
4890 /* Do line insertions/deletions on frame F for frame-based redisplay. */ | |
314 | 4891 |
21514 | 4892 int |
764 | 4893 scrolling (frame) |
25012 | 4894 struct frame *frame; |
314 | 4895 { |
4896 int unchanged_at_top, unchanged_at_bottom; | |
4897 int window_size; | |
4898 int changed_lines; | |
764 | 4899 int *old_hash = (int *) alloca (FRAME_HEIGHT (frame) * sizeof (int)); |
4900 int *new_hash = (int *) alloca (FRAME_HEIGHT (frame) * sizeof (int)); | |
4901 int *draw_cost = (int *) alloca (FRAME_HEIGHT (frame) * sizeof (int)); | |
10259
48e4dfc6bb43
(scrolling): Fewer restrictions if scroll_region_ok is
Richard M. Stallman <rms@gnu.org>
parents:
10122
diff
changeset
|
4902 int *old_draw_cost = (int *) alloca (FRAME_HEIGHT (frame) * sizeof (int)); |
314 | 4903 register int i; |
764 | 4904 int free_at_end_vpos = FRAME_HEIGHT (frame); |
25012 | 4905 struct glyph_matrix *current_matrix = frame->current_matrix; |
4906 struct glyph_matrix *desired_matrix = frame->desired_matrix; | |
4907 | |
4908 if (!current_matrix) | |
4909 abort (); | |
4910 | |
4911 /* Compute hash codes of all the lines. Also calculate number of | |
4912 changed lines, number of unchanged lines at the beginning, and | |
4913 number of unchanged lines at the end. */ | |
314 | 4914 changed_lines = 0; |
4915 unchanged_at_top = 0; | |
764 | 4916 unchanged_at_bottom = FRAME_HEIGHT (frame); |
4917 for (i = 0; i < FRAME_HEIGHT (frame); i++) | |
314 | 4918 { |
4919 /* Give up on this scrolling if some old lines are not enabled. */ | |
25012 | 4920 if (!MATRIX_ROW_ENABLED_P (current_matrix, i)) |
314 | 4921 return 0; |
25012 | 4922 old_hash[i] = line_hash_code (MATRIX_ROW (current_matrix, i)); |
4923 if (! MATRIX_ROW_ENABLED_P (desired_matrix, i)) | |
18015
934a44a3b34f
(scrolling): If a line is not enabled,
Richard M. Stallman <rms@gnu.org>
parents:
17961
diff
changeset
|
4924 { |
934a44a3b34f
(scrolling): If a line is not enabled,
Richard M. Stallman <rms@gnu.org>
parents:
17961
diff
changeset
|
4925 /* This line cannot be redrawn, so don't let scrolling mess it. */ |
934a44a3b34f
(scrolling): If a line is not enabled,
Richard M. Stallman <rms@gnu.org>
parents:
17961
diff
changeset
|
4926 new_hash[i] = old_hash[i]; |
934a44a3b34f
(scrolling): If a line is not enabled,
Richard M. Stallman <rms@gnu.org>
parents:
17961
diff
changeset
|
4927 #define INFINITY 1000000 /* Taken from scroll.c */ |
934a44a3b34f
(scrolling): If a line is not enabled,
Richard M. Stallman <rms@gnu.org>
parents:
17961
diff
changeset
|
4928 draw_cost[i] = INFINITY; |
934a44a3b34f
(scrolling): If a line is not enabled,
Richard M. Stallman <rms@gnu.org>
parents:
17961
diff
changeset
|
4929 } |
314 | 4930 else |
18015
934a44a3b34f
(scrolling): If a line is not enabled,
Richard M. Stallman <rms@gnu.org>
parents:
17961
diff
changeset
|
4931 { |
25012 | 4932 new_hash[i] = line_hash_code (MATRIX_ROW (desired_matrix, i)); |
4933 draw_cost[i] = line_draw_cost (desired_matrix, i); | |
18015
934a44a3b34f
(scrolling): If a line is not enabled,
Richard M. Stallman <rms@gnu.org>
parents:
17961
diff
changeset
|
4934 } |
314 | 4935 |
4936 if (old_hash[i] != new_hash[i]) | |
4937 { | |
4938 changed_lines++; | |
764 | 4939 unchanged_at_bottom = FRAME_HEIGHT (frame) - i - 1; |
314 | 4940 } |
4941 else if (i == unchanged_at_top) | |
4942 unchanged_at_top++; | |
25012 | 4943 old_draw_cost[i] = line_draw_cost (current_matrix, i); |
314 | 4944 } |
4945 | |
4946 /* If changed lines are few, don't allow preemption, don't scroll. */ | |
25012 | 4947 if ((!scroll_region_ok && changed_lines < baud_rate / 2400) |
764 | 4948 || unchanged_at_bottom == FRAME_HEIGHT (frame)) |
314 | 4949 return 1; |
4950 | |
764 | 4951 window_size = (FRAME_HEIGHT (frame) - unchanged_at_top |
314 | 4952 - unchanged_at_bottom); |
4953 | |
4954 if (scroll_region_ok) | |
4955 free_at_end_vpos -= unchanged_at_bottom; | |
764 | 4956 else if (memory_below_frame) |
314 | 4957 free_at_end_vpos = -1; |
4958 | |
4959 /* If large window, fast terminal and few lines in common between | |
25012 | 4960 current frame and desired frame, don't bother with i/d calc. */ |
10259
48e4dfc6bb43
(scrolling): Fewer restrictions if scroll_region_ok is
Richard M. Stallman <rms@gnu.org>
parents:
10122
diff
changeset
|
4961 if (!scroll_region_ok && window_size >= 18 && baud_rate > 2400 |
314 | 4962 && (window_size >= |
4963 10 * scrolling_max_lines_saved (unchanged_at_top, | |
764 | 4964 FRAME_HEIGHT (frame) - unchanged_at_bottom, |
314 | 4965 old_hash, new_hash, draw_cost))) |
4966 return 0; | |
4967 | |
25012 | 4968 if (window_size < 2) |
4969 return 0; | |
4970 | |
764 | 4971 scrolling_1 (frame, window_size, unchanged_at_top, unchanged_at_bottom, |
314 | 4972 draw_cost + unchanged_at_top - 1, |
10259
48e4dfc6bb43
(scrolling): Fewer restrictions if scroll_region_ok is
Richard M. Stallman <rms@gnu.org>
parents:
10122
diff
changeset
|
4973 old_draw_cost + unchanged_at_top - 1, |
314 | 4974 old_hash + unchanged_at_top - 1, |
4975 new_hash + unchanged_at_top - 1, | |
4976 free_at_end_vpos - unchanged_at_top); | |
4977 | |
4978 return 0; | |
4979 } | |
25012 | 4980 |
4981 | |
4982 /* Count the number of blanks at the start of the vector of glyphs R | |
4983 which is LEN glyphs long. */ | |
4984 | |
4985 static int | |
4986 count_blanks (r, len) | |
4987 struct glyph *r; | |
4988 int len; | |
314 | 4989 { |
25012 | 4990 int i; |
4991 | |
4992 for (i = 0; i < len; ++i) | |
4993 if (!CHAR_GLYPH_SPACE_P (r[i])) | |
4994 break; | |
4995 | |
4996 return i; | |
314 | 4997 } |
25012 | 4998 |
4999 | |
5000 /* Count the number of glyphs in common at the start of the glyph | |
5001 vectors STR1 and STR2. END1 is the end of STR1 and END2 is the end | |
5002 of STR2. Value is the number of equal glyphs equal at the start. */ | |
314 | 5003 |
5004 static int | |
25012 | 5005 count_match (str1, end1, str2, end2) |
5006 struct glyph *str1, *end1, *str2, *end2; | |
314 | 5007 { |
25012 | 5008 struct glyph *p1 = str1; |
5009 struct glyph *p2 = str2; | |
5010 | |
5011 while (p1 < end1 | |
5012 && p2 < end2 | |
26998
02e902f732d1
(line_hash_code) (direct_output_for_insert): Adjusted
Kenichi Handa <handa@m17n.org>
parents:
26902
diff
changeset
|
5013 && GLYPH_CHAR_AND_FACE_EQUAL_P (p1, p2)) |
25012 | 5014 ++p1, ++p2; |
5015 | |
5016 return p1 - str1; | |
314 | 5017 } |
5018 | |
25012 | 5019 |
314 | 5020 /* Char insertion/deletion cost vector, from term.c */ |
25012 | 5021 |
314 | 5022 extern int *char_ins_del_vector; |
16267
05ca2cb9fe0f
(make_frame_glyphs, update_line, update_frame)
Richard M. Stallman <rms@gnu.org>
parents:
16256
diff
changeset
|
5023 #define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_WINDOW_WIDTH((f))]) |
314 | 5024 |
25012 | 5025 |
5026 /* Perform a frame-based update on line VPOS in frame FRAME. */ | |
5027 | |
314 | 5028 static void |
25012 | 5029 update_frame_line (frame, vpos) |
5030 register struct frame *frame; | |
314 | 5031 int vpos; |
5032 { | |
25012 | 5033 struct glyph *obody, *nbody, *op1, *op2, *np1, *nend; |
314 | 5034 int tem; |
5035 int osp, nsp, begmatch, endmatch, olen, nlen; | |
25012 | 5036 struct glyph_matrix *current_matrix = frame->current_matrix; |
5037 struct glyph_matrix *desired_matrix = frame->desired_matrix; | |
5038 struct glyph_row *current_row = MATRIX_ROW (current_matrix, vpos); | |
5039 struct glyph_row *desired_row = MATRIX_ROW (desired_matrix, vpos); | |
5040 int must_write_whole_line_p; | |
5041 | |
5042 if (desired_row->inverse_p | |
5043 != (current_row->enabled_p && current_row->inverse_p)) | |
314 | 5044 { |
25012 | 5045 int n = current_row->enabled_p ? current_row->used[TEXT_AREA] : 0; |
5046 change_line_highlight (desired_row->inverse_p, vpos, vpos, n); | |
5047 current_row->enabled_p = 0; | |
314 | 5048 } |
5049 else | |
25012 | 5050 reassert_line_highlight (desired_row->inverse_p, vpos); |
5051 | |
25725
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5052 /* Current row not enabled means it has unknown contents. We must |
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5053 write the whole desired line in that case. */ |
25012 | 5054 must_write_whole_line_p = !current_row->enabled_p; |
5055 if (must_write_whole_line_p) | |
314 | 5056 { |
25012 | 5057 obody = 0; |
314 | 5058 olen = 0; |
5059 } | |
5060 else | |
5061 { | |
25012 | 5062 obody = MATRIX_ROW_GLYPH_START (current_matrix, vpos); |
5063 olen = current_row->used[TEXT_AREA]; | |
5064 | |
5065 if (! current_row->inverse_p) | |
314 | 5066 { |
25725
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5067 /* Ignore trailing spaces, if we can. */ |
314 | 5068 if (!must_write_spaces) |
25012 | 5069 while (olen > 0 && CHAR_GLYPH_SPACE_P (obody[olen-1])) |
314 | 5070 olen--; |
5071 } | |
5072 else | |
5073 { | |
25725
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5074 /* For an inverse-video line, make sure it's filled with |
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5075 spaces all the way to the frame edge so that the reverse |
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5076 video extends all the way across. */ |
25012 | 5077 while (olen < FRAME_WIDTH (frame) - 1) |
5078 obody[olen++] = space_glyph; | |
314 | 5079 } |
5080 } | |
5081 | |
25012 | 5082 current_row->enabled_p = 1; |
5083 current_row->used[TEXT_AREA] = desired_row->used[TEXT_AREA]; | |
5084 current_row->inverse_p = desired_row->inverse_p; | |
5085 | |
5086 /* If desired line is empty, just clear the line. */ | |
5087 if (!desired_row->enabled_p) | |
314 | 5088 { |
5089 nlen = 0; | |
5090 goto just_erase; | |
5091 } | |
5092 | |
25012 | 5093 nbody = desired_row->glyphs[TEXT_AREA]; |
5094 nlen = desired_row->used[TEXT_AREA]; | |
5095 nend = nbody + nlen; | |
5096 | |
5097 /* If display line has unknown contents, write the whole line. */ | |
5098 if (must_write_whole_line_p) | |
5099 { | |
25725
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5100 /* Ignore spaces at the end, if we can. */ |
25313
6b4475fbef86
(update_frame_line): If writing whole line,
Gerd Moellmann <gerd@gnu.org>
parents:
25304
diff
changeset
|
5101 if (!must_write_spaces) |
6b4475fbef86
(update_frame_line): If writing whole line,
Gerd Moellmann <gerd@gnu.org>
parents:
25304
diff
changeset
|
5102 while (nlen > 0 && CHAR_GLYPH_SPACE_P (nbody[nlen - 1])) |
6b4475fbef86
(update_frame_line): If writing whole line,
Gerd Moellmann <gerd@gnu.org>
parents:
25304
diff
changeset
|
5103 --nlen; |
6b4475fbef86
(update_frame_line): If writing whole line,
Gerd Moellmann <gerd@gnu.org>
parents:
25304
diff
changeset
|
5104 |
25725
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5105 /* Write the contents of the desired line. */ |
25313
6b4475fbef86
(update_frame_line): If writing whole line,
Gerd Moellmann <gerd@gnu.org>
parents:
25304
diff
changeset
|
5106 if (nlen) |
25725
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5107 { |
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5108 cursor_to (vpos, 0); |
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5109 write_glyphs (nbody, nlen); |
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5110 } |
25313
6b4475fbef86
(update_frame_line): If writing whole line,
Gerd Moellmann <gerd@gnu.org>
parents:
25304
diff
changeset
|
5111 |
25725
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5112 /* Don't call clear_end_of_line if we already wrote the whole |
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5113 line. The cursor will not be at the right margin in that |
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5114 case but in the line below. */ |
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5115 if (nlen < FRAME_WINDOW_WIDTH (frame)) |
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5116 { |
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5117 cursor_to (vpos, nlen); |
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5118 clear_end_of_line (FRAME_WINDOW_WIDTH (frame)); |
b7468dc89ccb
(update_frame_line): If writing whole desired line,
Gerd Moellmann <gerd@gnu.org>
parents:
25666
diff
changeset
|
5119 } |
28682
f05d48759416
(update_frame_line): When writing a whole line, make
Gerd Moellmann <gerd@gnu.org>
parents:
28507
diff
changeset
|
5120 else |
f05d48759416
(update_frame_line): When writing a whole line, make
Gerd Moellmann <gerd@gnu.org>
parents:
28507
diff
changeset
|
5121 /* Make sure we are in the right row, otherwise cursor movement |
f05d48759416
(update_frame_line): When writing a whole line, make
Gerd Moellmann <gerd@gnu.org>
parents:
28507
diff
changeset
|
5122 with cmgoto might use `ch' in the wrong row. */ |
f05d48759416
(update_frame_line): When writing a whole line, make
Gerd Moellmann <gerd@gnu.org>
parents:
28507
diff
changeset
|
5123 cursor_to (vpos, 0); |
f05d48759416
(update_frame_line): When writing a whole line, make
Gerd Moellmann <gerd@gnu.org>
parents:
28507
diff
changeset
|
5124 |
25012 | 5125 make_current (desired_matrix, current_matrix, vpos); |
5126 return; | |
5127 } | |
314 | 5128 |
5129 /* Pretend trailing spaces are not there at all, | |
5130 unless for one reason or another we must write all spaces. */ | |
25012 | 5131 if (!desired_row->inverse_p) |
314 | 5132 { |
5133 if (!must_write_spaces) | |
25012 | 5134 while (nlen > 0 && CHAR_GLYPH_SPACE_P (nbody[nlen - 1])) |
314 | 5135 nlen--; |
5136 } | |
5137 else | |
5138 { | |
25012 | 5139 /* For an inverse-video line, give it extra trailing spaces all |
5140 the way to the frame edge so that the reverse video extends | |
5141 all the way across. */ | |
5142 while (nlen < FRAME_WIDTH (frame) - 1) | |
5143 nbody[nlen++] = space_glyph; | |
314 | 5144 } |
5145 | |
5146 /* If there's no i/d char, quickly do the best we can without it. */ | |
5147 if (!char_ins_del_ok) | |
5148 { | |
25012 | 5149 int i, j; |
5150 | |
5151 /* Find the first glyph in desired row that doesn't agree with | |
5152 a glyph in the current row, and write the rest from there on. */ | |
314 | 5153 for (i = 0; i < nlen; i++) |
5154 { | |
25012 | 5155 if (i >= olen || !GLYPH_EQUAL_P (nbody + i, obody + i)) |
314 | 5156 { |
25012 | 5157 /* Find the end of the run of different glyphs. */ |
5158 j = i + 1; | |
5159 while (j < nlen | |
5160 && (j >= olen | |
5161 || !GLYPH_EQUAL_P (nbody + j, obody + j) | |
5162 || CHAR_GLYPH_PADDING_P (nbody[j]))) | |
5163 ++j; | |
5164 | |
5165 /* Output this run of non-matching chars. */ | |
314 | 5166 cursor_to (vpos, i); |
25012 | 5167 write_glyphs (nbody + i, j - i); |
5168 i = j - 1; | |
314 | 5169 |
5170 /* Now find the next non-match. */ | |
5171 } | |
5172 } | |
5173 | |
5174 /* Clear the rest of the line, or the non-clear part of it. */ | |
5175 if (olen > nlen) | |
5176 { | |
5177 cursor_to (vpos, nlen); | |
5178 clear_end_of_line (olen); | |
5179 } | |
5180 | |
25012 | 5181 /* Make current row = desired row. */ |
5182 make_current (desired_matrix, current_matrix, vpos); | |
314 | 5183 return; |
5184 } | |
5185 | |
25012 | 5186 /* Here when CHAR_INS_DEL_OK != 0, i.e. we can insert or delete |
5187 characters in a row. */ | |
5188 | |
314 | 5189 if (!olen) |
5190 { | |
25012 | 5191 /* If current line is blank, skip over initial spaces, if |
5192 possible, and write the rest. */ | |
5193 if (must_write_spaces || desired_row->inverse_p) | |
5194 nsp = 0; | |
5195 else | |
5196 nsp = count_blanks (nbody, nlen); | |
5197 | |
314 | 5198 if (nlen > nsp) |
5199 { | |
5200 cursor_to (vpos, nsp); | |
5201 write_glyphs (nbody + nsp, nlen - nsp); | |
5202 } | |
5203 | |
764 | 5204 /* Exchange contents between current_frame and new_frame. */ |
25012 | 5205 make_current (desired_matrix, current_matrix, vpos); |
314 | 5206 return; |
5207 } | |
5208 | |
5209 /* Compute number of leading blanks in old and new contents. */ | |
25012 | 5210 osp = count_blanks (obody, olen); |
5211 nsp = desired_row->inverse_p ? 0 : count_blanks (nbody, nlen); | |
5212 | |
5213 /* Compute number of matching chars starting with first non-blank. */ | |
5214 begmatch = count_match (obody + osp, obody + olen, | |
5215 nbody + nsp, nbody + nlen); | |
314 | 5216 |
5217 /* Spaces in new match implicit space past the end of old. */ | |
5218 /* A bug causing this to be a no-op was fixed in 18.29. */ | |
5219 if (!must_write_spaces && osp + begmatch == olen) | |
5220 { | |
5221 np1 = nbody + nsp; | |
25012 | 5222 while (np1 + begmatch < nend && CHAR_GLYPH_SPACE_P (np1[begmatch])) |
5223 ++begmatch; | |
314 | 5224 } |
5225 | |
5226 /* Avoid doing insert/delete char | |
5227 just cause number of leading spaces differs | |
25012 | 5228 when the following text does not match. */ |
314 | 5229 if (begmatch == 0 && osp != nsp) |
5230 osp = nsp = min (osp, nsp); | |
5231 | |
5232 /* Find matching characters at end of line */ | |
5233 op1 = obody + olen; | |
5234 np1 = nbody + nlen; | |
5235 op2 = op1 + begmatch - min (olen - osp, nlen - nsp); | |
25012 | 5236 while (op1 > op2 |
5237 && GLYPH_EQUAL_P (op1 - 1, np1 - 1)) | |
314 | 5238 { |
5239 op1--; | |
5240 np1--; | |
5241 } | |
5242 endmatch = obody + olen - op1; | |
5243 | |
5244 /* tem gets the distance to insert or delete. | |
5245 endmatch is how many characters we save by doing so. | |
5246 Is it worth it? */ | |
5247 | |
5248 tem = (nlen - nsp) - (olen - osp); | |
5249 if (endmatch && tem | |
764 | 5250 && (!char_ins_del_ok || endmatch <= char_ins_del_cost (frame)[tem])) |
314 | 5251 endmatch = 0; |
5252 | |
5253 /* nsp - osp is the distance to insert or delete. | |
5254 If that is nonzero, begmatch is known to be nonzero also. | |
5255 begmatch + endmatch is how much we save by doing the ins/del. | |
5256 Is it worth it? */ | |
5257 | |
5258 if (nsp != osp | |
5259 && (!char_ins_del_ok | |
764 | 5260 || begmatch + endmatch <= char_ins_del_cost (frame)[nsp - osp])) |
314 | 5261 { |
5262 begmatch = 0; | |
5263 endmatch = 0; | |
5264 osp = nsp = min (osp, nsp); | |
5265 } | |
5266 | |
5267 /* Now go through the line, inserting, writing and | |
5268 deleting as appropriate. */ | |
5269 | |
5270 if (osp > nsp) | |
5271 { | |
5272 cursor_to (vpos, nsp); | |
5273 delete_glyphs (osp - nsp); | |
5274 } | |
5275 else if (nsp > osp) | |
5276 { | |
5277 /* If going to delete chars later in line | |
5278 and insert earlier in the line, | |
5279 must delete first to avoid losing data in the insert */ | |
5280 if (endmatch && nlen < olen + nsp - osp) | |
5281 { | |
5282 cursor_to (vpos, nlen - endmatch + osp - nsp); | |
5283 delete_glyphs (olen + nsp - osp - nlen); | |
5284 olen = nlen - (nsp - osp); | |
5285 } | |
5286 cursor_to (vpos, osp); | |
25012 | 5287 insert_glyphs (0, nsp - osp); |
314 | 5288 } |
5289 olen += nsp - osp; | |
5290 | |
5291 tem = nsp + begmatch + endmatch; | |
5292 if (nlen != tem || olen != tem) | |
5293 { | |
5294 cursor_to (vpos, nsp + begmatch); | |
5295 if (!endmatch || nlen == olen) | |
5296 { | |
5297 /* If new text being written reaches right margin, | |
5298 there is no need to do clear-to-eol at the end. | |
5299 (and it would not be safe, since cursor is not | |
5300 going to be "at the margin" after the text is done) */ | |
16267
05ca2cb9fe0f
(make_frame_glyphs, update_line, update_frame)
Richard M. Stallman <rms@gnu.org>
parents:
16256
diff
changeset
|
5301 if (nlen == FRAME_WINDOW_WIDTH (frame)) |
314 | 5302 olen = 0; |
5303 write_glyphs (nbody + nsp + begmatch, nlen - tem); | |
5304 } | |
5305 else if (nlen > olen) | |
5306 { | |
17015
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
5307 /* Here, we used to have the following simple code: |
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
5308 ---------------------------------------- |
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
5309 write_glyphs (nbody + nsp + begmatch, olen - tem); |
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
5310 insert_glyphs (nbody + nsp + begmatch + olen - tem, nlen - olen); |
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
5311 ---------------------------------------- |
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
5312 but it doesn't work if nbody[nsp + begmatch + olen - tem] |
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
5313 is a padding glyph. */ |
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
5314 int out = olen - tem; /* Columns to be overwritten originally. */ |
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
5315 int del; |
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
5316 |
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
5317 /* Calculate columns we can actually overwrite. */ |
25012 | 5318 while (CHAR_GLYPH_PADDING_P (nbody[nsp + begmatch + out])) out--; |
17015
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
5319 write_glyphs (nbody + nsp + begmatch, out); |
25012 | 5320 /* If we left columns to be overwritten, we must delete them. */ |
17015
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
5321 del = olen - tem - out; |
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
5322 if (del > 0) delete_glyphs (del); |
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
5323 /* At last, we insert columns not yet written out. */ |
fe0b3661b584
(direct_output_forward_char): #if-0-out redundant
Karl Heuer <kwzh@gnu.org>
parents:
16896
diff
changeset
|
5324 insert_glyphs (nbody + nsp + begmatch + out, nlen - olen + del); |
314 | 5325 olen = nlen; |
5326 } | |
5327 else if (olen > nlen) | |
5328 { | |
5329 write_glyphs (nbody + nsp + begmatch, nlen - tem); | |
5330 delete_glyphs (olen - nlen); | |
5331 olen = nlen; | |
5332 } | |
5333 } | |
5334 | |
5335 just_erase: | |
5336 /* If any unerased characters remain after the new line, erase them. */ | |
5337 if (olen > nlen) | |
5338 { | |
5339 cursor_to (vpos, nlen); | |
5340 clear_end_of_line (olen); | |
5341 } | |
5342 | |
764 | 5343 /* Exchange contents between current_frame and new_frame. */ |
25012 | 5344 make_current (desired_matrix, current_matrix, vpos); |
314 | 5345 } |
25012 | 5346 |
5347 | |
314 | 5348 |
25012 | 5349 /*********************************************************************** |
5350 X/Y Position -> Buffer Position | |
5351 ***********************************************************************/ | |
5352 | |
5353 /* Return the character position of the character at window relative | |
5354 pixel position (*X, *Y). *X and *Y are adjusted to character | |
5355 boundaries. */ | |
5356 | |
5357 int | |
5358 buffer_posn_from_coords (w, x, y) | |
5359 struct window *w; | |
5360 int *x, *y; | |
7810
15c0bf73737e
(Fframe_or_buffer_changed_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
7808
diff
changeset
|
5361 { |
25012 | 5362 struct it it; |
5363 struct buffer *old_current_buffer = current_buffer; | |
5364 struct text_pos startp; | |
5365 int left_area_width; | |
5366 | |
5367 current_buffer = XBUFFER (w->buffer); | |
5368 SET_TEXT_POS_FROM_MARKER (startp, w->start); | |
5369 CHARPOS (startp) = min (ZV, max (BEGV, CHARPOS (startp))); | |
5370 BYTEPOS (startp) = min (ZV_BYTE, max (BEGV_BYTE, BYTEPOS (startp))); | |
5371 start_display (&it, w, startp); | |
5372 | |
5373 left_area_width = WINDOW_DISPLAY_LEFT_AREA_PIXEL_WIDTH (w); | |
5374 move_it_to (&it, -1, *x + it.first_visible_x - left_area_width, *y, -1, | |
5375 MOVE_TO_X | MOVE_TO_Y); | |
5376 | |
5377 *x = it.current_x - it.first_visible_x + left_area_width; | |
5378 *y = it.current_y; | |
5379 current_buffer = old_current_buffer; | |
5380 return IT_CHARPOS (it); | |
5381 } | |
5382 | |
5383 | |
5384 /* Value is the string under window-relative coordinates X/Y in the | |
5385 mode or top line of window W, or nil if none. MODE_LINE_P non-zero | |
5386 means look at the mode line. *CHARPOS is set to the position in | |
5387 the string returned. */ | |
5388 | |
5389 Lisp_Object | |
5390 mode_line_string (w, x, y, mode_line_p, charpos) | |
5391 struct window *w; | |
30713
fee809f81f97
(mode_line_string): Declare parameter MODE_LINE_P.
Gerd Moellmann <gerd@gnu.org>
parents:
30323
diff
changeset
|
5392 int x, y, mode_line_p; |
25012 | 5393 int *charpos; |
5394 { | |
5395 struct glyph_row *row; | |
5396 struct glyph *glyph, *end; | |
5397 struct frame *f = XFRAME (w->frame); | |
5398 int x0; | |
5399 Lisp_Object string = Qnil; | |
5400 | |
5401 if (mode_line_p) | |
5402 row = MATRIX_MODE_LINE_ROW (w->current_matrix); | |
5403 else | |
25546 | 5404 row = MATRIX_HEADER_LINE_ROW (w->current_matrix); |
25012 | 5405 |
5406 if (row->mode_line_p && row->enabled_p) | |
11919
31cb053405f2
(Fframe_or_buffer_changed_p): Record frame names
Karl Heuer <kwzh@gnu.org>
parents:
11914
diff
changeset
|
5407 { |
25012 | 5408 /* The mode lines are displayed over scroll bars and bitmap |
5409 areas, and X is window-relative. Correct X by the scroll bar | |
5410 and bitmap area width. */ | |
5411 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f)) | |
5412 x += FRAME_SCROLL_BAR_COLS (f) * CANON_X_UNIT (f); | |
25459
293b78b9ff60
(mode_line_string): Add FRAME_LEFT_FLAGS_AREA_WIDTH
Gerd Moellmann <gerd@gnu.org>
parents:
25385
diff
changeset
|
5413 x += FRAME_LEFT_FLAGS_AREA_WIDTH (f); |
25012 | 5414 |
5415 /* Find the glyph under X. If we find one with a string object, | |
5416 it's the one we were looking for. */ | |
5417 glyph = row->glyphs[TEXT_AREA]; | |
5418 end = glyph + row->used[TEXT_AREA]; | |
5419 for (x0 = 0; glyph < end; x0 += glyph->pixel_width, ++glyph) | |
5420 if (x >= x0 && x < x0 + glyph->pixel_width) | |
5421 { | |
5422 string = glyph->object; | |
5423 *charpos = glyph->charpos; | |
5424 break; | |
5425 } | |
7810
15c0bf73737e
(Fframe_or_buffer_changed_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
7808
diff
changeset
|
5426 } |
25012 | 5427 |
5428 return string; | |
7810
15c0bf73737e
(Fframe_or_buffer_changed_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
7808
diff
changeset
|
5429 } |
25012 | 5430 |
5431 | |
5432 /*********************************************************************** | |
5433 Changing Frame Sizes | |
5434 ***********************************************************************/ | |
314 | 5435 |
5436 #ifdef SIGWINCH | |
25012 | 5437 |
493 | 5438 SIGTYPE |
10745
a553a08f5785
(window_change_signal): Add ignored argument.
Richard M. Stallman <rms@gnu.org>
parents:
10259
diff
changeset
|
5439 window_change_signal (signalnum) /* If we don't have an argument, */ |
25012 | 5440 int signalnum; /* some compilers complain in signal calls. */ |
314 | 5441 { |
5442 int width, height; | |
31093
6da961dff718
Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents:
30720
diff
changeset
|
5443 #ifndef USE_CRT_DLL |
314 | 5444 extern int errno; |
31093
6da961dff718
Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents:
30720
diff
changeset
|
5445 #endif |
314 | 5446 int old_errno = errno; |
5447 | |
764 | 5448 get_frame_size (&width, &height); |
314 | 5449 |
764 | 5450 /* The frame size change obviously applies to a termcap-controlled |
5451 frame. Find such a frame in the list, and assume it's the only | |
314 | 5452 one (since the redisplay code always writes to stdout, not a |
764 | 5453 FILE * specified in the frame structure). Record the new size, |
314 | 5454 but don't reallocate the data structures now. Let that be done |
5455 later outside of the signal handler. */ | |
5456 | |
5457 { | |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
5458 Lisp_Object tail, frame; |
314 | 5459 |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
5460 FOR_EACH_FRAME (tail, frame) |
314 | 5461 { |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
5462 if (FRAME_TERMCAP_P (XFRAME (frame))) |
314 | 5463 { |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5464 change_frame_size (XFRAME (frame), height, width, 0, 1, 0); |
314 | 5465 break; |
5466 } | |
5467 } | |
5468 } | |
5469 | |
5470 signal (SIGWINCH, window_change_signal); | |
5471 errno = old_errno; | |
5472 } | |
5473 #endif /* SIGWINCH */ | |
5474 | |
5475 | |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5476 /* Do any change in frame size that was requested by a signal. SAFE |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5477 non-zero means this function is called from a place where it is |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5478 safe to change frame sizes while a redisplay is in progress. */ |
314 | 5479 |
21514 | 5480 void |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5481 do_pending_window_change (safe) |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5482 int safe; |
314 | 5483 { |
5484 /* If window_change_signal should have run before, run it now. */ | |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5485 if (redisplaying_p && !safe) |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5486 return; |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5487 |
314 | 5488 while (delayed_size_change) |
5489 { | |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
5490 Lisp_Object tail, frame; |
314 | 5491 |
5492 delayed_size_change = 0; | |
5493 | |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
5494 FOR_EACH_FRAME (tail, frame) |
314 | 5495 { |
25012 | 5496 struct frame *f = XFRAME (frame); |
2252
9793d8654e23
* frame.h (FOR_EACH_FRAME): Change the definition so that
Jim Blandy <jimb@redhat.com>
parents:
2198
diff
changeset
|
5497 |
764 | 5498 int height = FRAME_NEW_HEIGHT (f); |
5499 int width = FRAME_NEW_WIDTH (f); | |
314 | 5500 |
3449
ad455da9b789
(do_pending_window_change): No need to clear
Richard M. Stallman <rms@gnu.org>
parents:
3357
diff
changeset
|
5501 if (height != 0 || width != 0) |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5502 change_frame_size (f, height, width, 0, 0, safe); |
314 | 5503 } |
5504 } | |
5505 } | |
5506 | |
5507 | |
764 | 5508 /* Change the frame height and/or width. Values may be given as zero to |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
5509 indicate no change is to take place. |
314 | 5510 |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
5511 If DELAY is non-zero, then assume we're being called from a signal |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
5512 handler, and queue the change for later - perhaps the next |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
5513 redisplay. Since this tries to resize windows, we can't call it |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5514 from a signal handler. |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5515 |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5516 SAFE non-zero means this function is called from a place where it's |
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5517 safe to change frame sizes while a redisplay is in progress. */ |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
5518 |
21514 | 5519 void |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5520 change_frame_size (f, newheight, newwidth, pretend, delay, safe) |
25012 | 5521 register struct frame *f; |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5522 int newheight, newwidth, pretend, delay, safe; |
10770
79745e047484
(change_frame_size_1): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10745
diff
changeset
|
5523 { |
79745e047484
(change_frame_size_1): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10745
diff
changeset
|
5524 Lisp_Object tail, frame; |
16881
245ba9f2781a
(change_frame_size_1): Reject new sizes if they cause overflow.
Richard M. Stallman <rms@gnu.org>
parents:
16822
diff
changeset
|
5525 |
15395
b584c2db055f
(change_frame_size, remake_frame_glyphs): Use FRAME_WINDOW_P.
Richard M. Stallman <rms@gnu.org>
parents:
15394
diff
changeset
|
5526 if (! FRAME_WINDOW_P (f)) |
10770
79745e047484
(change_frame_size_1): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10745
diff
changeset
|
5527 { |
15394
8d01f71c4797
(Fredraw_frame, remake_frame_glyphs)
Richard M. Stallman <rms@gnu.org>
parents:
15282
diff
changeset
|
5528 /* When using termcap, or on MS-DOS, all frames use |
8d01f71c4797
(Fredraw_frame, remake_frame_glyphs)
Richard M. Stallman <rms@gnu.org>
parents:
15282
diff
changeset
|
5529 the same screen, so a change in size affects all frames. */ |
10770
79745e047484
(change_frame_size_1): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10745
diff
changeset
|
5530 FOR_EACH_FRAME (tail, frame) |
15395
b584c2db055f
(change_frame_size, remake_frame_glyphs): Use FRAME_WINDOW_P.
Richard M. Stallman <rms@gnu.org>
parents:
15394
diff
changeset
|
5531 if (! FRAME_WINDOW_P (XFRAME (frame))) |
10770
79745e047484
(change_frame_size_1): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10745
diff
changeset
|
5532 change_frame_size_1 (XFRAME (frame), newheight, newwidth, |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5533 pretend, delay, safe); |
10770
79745e047484
(change_frame_size_1): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10745
diff
changeset
|
5534 } |
79745e047484
(change_frame_size_1): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10745
diff
changeset
|
5535 else |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5536 change_frame_size_1 (f, newheight, newwidth, pretend, delay, safe); |
10770
79745e047484
(change_frame_size_1): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10745
diff
changeset
|
5537 } |
79745e047484
(change_frame_size_1): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10745
diff
changeset
|
5538 |
79745e047484
(change_frame_size_1): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
10745
diff
changeset
|
5539 static void |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5540 change_frame_size_1 (f, newheight, newwidth, pretend, delay, safe) |
25012 | 5541 register struct frame *f; |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5542 int newheight, newwidth, pretend, delay, safe; |
314 | 5543 { |
16256
1ce0cb94fa68
(preserve_other_columns, preserve_my_columns): Use new
Richard M. Stallman <rms@gnu.org>
parents:
16195
diff
changeset
|
5544 int new_frame_window_width; |
19627
c6343f7a9c6c
(change_frame_size_1): Save current buffer
Richard M. Stallman <rms@gnu.org>
parents:
19063
diff
changeset
|
5545 int count = specpdl_ptr - specpdl; |
16881
245ba9f2781a
(change_frame_size_1): Reject new sizes if they cause overflow.
Richard M. Stallman <rms@gnu.org>
parents:
16822
diff
changeset
|
5546 |
314 | 5547 /* If we can't deal with the change now, queue it for later. */ |
25345
ca828f89fd6e
(do_pending_window_change): Add parameter `safe'.
Gerd Moellmann <gerd@gnu.org>
parents:
25318
diff
changeset
|
5548 if (delay || (redisplaying_p && !safe)) |
314 | 5549 { |
25012 | 5550 FRAME_NEW_HEIGHT (f) = newheight; |
5551 FRAME_NEW_WIDTH (f) = newwidth; | |
314 | 5552 delayed_size_change = 1; |
5553 return; | |
5554 } | |
5555 | |
764 | 5556 /* This size-change overrides any pending one for this frame. */ |
25012 | 5557 FRAME_NEW_HEIGHT (f) = 0; |
5558 FRAME_NEW_WIDTH (f) = 0; | |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
5559 |
3449
ad455da9b789
(do_pending_window_change): No need to clear
Richard M. Stallman <rms@gnu.org>
parents:
3357
diff
changeset
|
5560 /* If an argument is zero, set it to the current value. */ |
15896
3a3c30116313
(change_frame_size_1): Clean up conditional.
Erik Naggum <erik@naggum.no>
parents:
15687
diff
changeset
|
5561 if (newheight == 0) |
25012 | 5562 newheight = FRAME_HEIGHT (f); |
15896
3a3c30116313
(change_frame_size_1): Clean up conditional.
Erik Naggum <erik@naggum.no>
parents:
15687
diff
changeset
|
5563 if (newwidth == 0) |
25012 | 5564 newwidth = FRAME_WIDTH (f); |
5565 | |
5566 /* Compute width of windows in F. | |
5567 This is the width of the frame without vertical scroll bars. */ | |
5568 new_frame_window_width = FRAME_WINDOW_WIDTH_ARG (f, newwidth); | |
16881
245ba9f2781a
(change_frame_size_1): Reject new sizes if they cause overflow.
Richard M. Stallman <rms@gnu.org>
parents:
16822
diff
changeset
|
5569 |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
5570 /* Round up to the smallest acceptable size. */ |
25012 | 5571 check_frame_size (f, &newheight, &newwidth); |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
5572 |
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
5573 /* If we're not changing the frame size, quit now. */ |
25012 | 5574 if (newheight == FRAME_HEIGHT (f) |
5575 && new_frame_window_width == FRAME_WINDOW_WIDTH (f)) | |
314 | 5576 return; |
5577 | |
15078 | 5578 BLOCK_INPUT; |
5579 | |
14286
5d42664b4e74
(change_frame_size_1) [MSDOS]: Support frame size
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
5580 #ifdef MSDOS |
5d42664b4e74
(change_frame_size_1) [MSDOS]: Support frame size
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
5581 /* We only can set screen dimensions to certain values supported |
5d42664b4e74
(change_frame_size_1) [MSDOS]: Support frame size
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
5582 by our video hardware. Try to find the smallest size greater |
5d42664b4e74
(change_frame_size_1) [MSDOS]: Support frame size
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
5583 or equal to the requested dimensions. */ |
5d42664b4e74
(change_frame_size_1) [MSDOS]: Support frame size
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
5584 dos_set_window_size (&newheight, &newwidth); |
5d42664b4e74
(change_frame_size_1) [MSDOS]: Support frame size
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
5585 #endif |
5d42664b4e74
(change_frame_size_1) [MSDOS]: Support frame size
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
5586 |
25012 | 5587 if (newheight != FRAME_HEIGHT (f)) |
314 | 5588 { |
25012 | 5589 if (FRAME_HAS_MINIBUF_P (f) && !FRAME_MINIBUF_ONLY_P (f)) |
314 | 5590 { |
25012 | 5591 /* Frame has both root and mini-buffer. */ |
5592 XSETFASTINT (XWINDOW (FRAME_ROOT_WINDOW (f))->top, | |
5593 FRAME_TOP_MARGIN (f)); | |
5594 set_window_height (FRAME_ROOT_WINDOW (f), | |
5595 (newheight | |
5596 - 1 | |
5597 - FRAME_TOP_MARGIN (f)), | |
5598 0); | |
5599 XSETFASTINT (XWINDOW (FRAME_MINIBUF_WINDOW (f))->top, | |
9303
3115ae493c30
(direct_output_for_insert, direct_output_forward_char, change_frame_size,
Karl Heuer <kwzh@gnu.org>
parents:
9264
diff
changeset
|
5600 newheight - 1); |
25012 | 5601 set_window_height (FRAME_MINIBUF_WINDOW (f), 1, 0); |
314 | 5602 } |
5603 else | |
764 | 5604 /* Frame has just one top-level window. */ |
25012 | 5605 set_window_height (FRAME_ROOT_WINDOW (f), |
5606 newheight - FRAME_TOP_MARGIN (f), 0); | |
5607 | |
5608 if (FRAME_TERMCAP_P (f) && !pretend) | |
960
17986889d3b6
* dispnew.c (Fredraw_frame): Call clear_frame_records before
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
5609 FrameRows = newheight; |
314 | 5610 } |
5611 | |
25012 | 5612 if (new_frame_window_width != FRAME_WINDOW_WIDTH (f)) |
314 | 5613 { |
25012 | 5614 set_window_width (FRAME_ROOT_WINDOW (f), new_frame_window_width, 0); |
5615 if (FRAME_HAS_MINIBUF_P (f)) | |
5616 set_window_width (FRAME_MINIBUF_WINDOW (f), new_frame_window_width, 0); | |
5617 | |
5618 if (FRAME_TERMCAP_P (f) && !pretend) | |
764 | 5619 FrameCols = newwidth; |
25012 | 5620 |
25544
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
5621 if (WINDOWP (f->tool_bar_window)) |
693ca9ba497a
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Gerd Moellmann <gerd@gnu.org>
parents:
25514
diff
changeset
|
5622 XSETFASTINT (XWINDOW (f->tool_bar_window)->width, newwidth); |
314 | 5623 } |
5624 | |
25012 | 5625 FRAME_HEIGHT (f) = newheight; |
5626 SET_FRAME_WIDTH (f, newwidth); | |
5627 | |
5628 { | |
5629 struct window *w = XWINDOW (FRAME_SELECTED_WINDOW (f)); | |
5630 int text_area_x, text_area_y, text_area_width, text_area_height; | |
5631 | |
5632 window_box (w, TEXT_AREA, &text_area_x, &text_area_y, &text_area_width, | |
5633 &text_area_height); | |
5634 if (w->cursor.x >= text_area_x + text_area_width) | |
5635 w->cursor.hpos = w->cursor.x = 0; | |
5636 if (w->cursor.y >= text_area_y + text_area_height) | |
5637 w->cursor.vpos = w->cursor.y = 0; | |
5638 } | |
5639 | |
5640 adjust_glyphs (f); | |
5641 SET_FRAME_GARBAGED (f); | |
5642 calculate_costs (f); | |
15065 | 5643 |
5644 UNBLOCK_INPUT; | |
17282
5023bea28298
(change_frame_size_1): Call Fset_window_buffer,
Richard M. Stallman <rms@gnu.org>
parents:
17015
diff
changeset
|
5645 |
19627
c6343f7a9c6c
(change_frame_size_1): Save current buffer
Richard M. Stallman <rms@gnu.org>
parents:
19063
diff
changeset
|
5646 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); |
c6343f7a9c6c
(change_frame_size_1): Save current buffer
Richard M. Stallman <rms@gnu.org>
parents:
19063
diff
changeset
|
5647 |
17282
5023bea28298
(change_frame_size_1): Call Fset_window_buffer,
Richard M. Stallman <rms@gnu.org>
parents:
17015
diff
changeset
|
5648 /* This isn't quite a no-op: it runs window-configuration-change-hook. */ |
25012 | 5649 Fset_window_buffer (FRAME_SELECTED_WINDOW (f), |
5650 XWINDOW (FRAME_SELECTED_WINDOW (f))->buffer); | |
19627
c6343f7a9c6c
(change_frame_size_1): Save current buffer
Richard M. Stallman <rms@gnu.org>
parents:
19063
diff
changeset
|
5651 |
c6343f7a9c6c
(change_frame_size_1): Save current buffer
Richard M. Stallman <rms@gnu.org>
parents:
19063
diff
changeset
|
5652 unbind_to (count, Qnil); |
314 | 5653 } |
25012 | 5654 |
5655 | |
314 | 5656 |
25012 | 5657 /*********************************************************************** |
5658 Terminal Related Lisp Functions | |
5659 ***********************************************************************/ | |
5660 | |
5661 DEFUN ("open-termscript", Fopen_termscript, Sopen_termscript, | |
5662 1, 1, "FOpen termscript file: ", | |
5663 "Start writing all terminal output to FILE as well as the terminal.\n\ | |
5664 FILE = nil means just close any termscript file currently open.") | |
5665 (file) | |
5666 Lisp_Object file; | |
5667 { | |
5668 if (termscript != 0) fclose (termscript); | |
5669 termscript = 0; | |
5670 | |
5671 if (! NILP (file)) | |
5672 { | |
5673 file = Fexpand_file_name (file, Qnil); | |
5674 termscript = fopen (XSTRING (file)->data, "w"); | |
5675 if (termscript == 0) | |
5676 report_file_error ("Opening termscript", Fcons (file, Qnil)); | |
5677 } | |
5678 return Qnil; | |
5679 } | |
5680 | |
5681 | |
314 | 5682 DEFUN ("send-string-to-terminal", Fsend_string_to_terminal, |
5683 Ssend_string_to_terminal, 1, 1, 0, | |
5684 "Send STRING to the terminal without alteration.\n\ | |
5685 Control characters in STRING will have terminal-dependent effects.") | |
14068
a3c83dde295e
(Fsend_string_to_terminal, Fsit_for): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13526
diff
changeset
|
5686 (string) |
a3c83dde295e
(Fsend_string_to_terminal, Fsit_for): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13526
diff
changeset
|
5687 Lisp_Object string; |
314 | 5688 { |
20618
d5acac3af6e3
(Fsend_string_to_terminal): Use size_byte.
Richard M. Stallman <rms@gnu.org>
parents:
19627
diff
changeset
|
5689 /* ??? Perhaps we should do something special for multibyte strings here. */ |
14068
a3c83dde295e
(Fsend_string_to_terminal, Fsit_for): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13526
diff
changeset
|
5690 CHECK_STRING (string, 0); |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
20708
diff
changeset
|
5691 fwrite (XSTRING (string)->data, 1, STRING_BYTES (XSTRING (string)), stdout); |
314 | 5692 fflush (stdout); |
5693 if (termscript) | |
5694 { | |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
20708
diff
changeset
|
5695 fwrite (XSTRING (string)->data, 1, STRING_BYTES (XSTRING (string)), |
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
20708
diff
changeset
|
5696 termscript); |
314 | 5697 fflush (termscript); |
5698 } | |
5699 return Qnil; | |
5700 } | |
5701 | |
25012 | 5702 |
314 | 5703 DEFUN ("ding", Fding, Sding, 0, 1, 0, |
5704 "Beep, or flash the screen.\n\ | |
5705 Also, unless an argument is given,\n\ | |
5706 terminate any keyboard macro currently executing.") | |
5707 (arg) | |
5708 Lisp_Object arg; | |
5709 { | |
493 | 5710 if (!NILP (arg)) |
314 | 5711 { |
649
61deba7b73b6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
587
diff
changeset
|
5712 if (noninteractive) |
61deba7b73b6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
587
diff
changeset
|
5713 putchar (07); |
61deba7b73b6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
587
diff
changeset
|
5714 else |
61deba7b73b6
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
587
diff
changeset
|
5715 ring_bell (); |
314 | 5716 fflush (stdout); |
5717 } | |
5718 else | |
5719 bitch_at_user (); | |
5720 | |
5721 return Qnil; | |
5722 } | |
5723 | |
21514 | 5724 void |
314 | 5725 bitch_at_user () |
5726 { | |
5727 if (noninteractive) | |
5728 putchar (07); | |
25012 | 5729 else if (!INTERACTIVE) /* Stop executing a keyboard macro. */ |
314 | 5730 error ("Keyboard macro terminated by a command ringing the bell"); |
5731 else | |
5732 ring_bell (); | |
5733 fflush (stdout); | |
5734 } | |
5735 | |
25012 | 5736 |
5737 | |
5738 /*********************************************************************** | |
5739 Sleeping, Waiting | |
5740 ***********************************************************************/ | |
5741 | |
314 | 5742 DEFUN ("sleep-for", Fsleep_for, Ssleep_for, 1, 2, 0, |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5743 "Pause, without updating display, for SECONDS seconds.\n\ |
2648 | 5744 SECONDS may be a floating-point value, meaning that you can wait for a\n\ |
5745 fraction of a second. Optional second arg MILLISECONDS specifies an\n\ | |
5746 additional wait period, in milliseconds; this may be useful if your\n\ | |
5747 Emacs was built without floating point support.\n\ | |
5748 \(Not all operating systems support waiting for a fraction of a second.)") | |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5749 (seconds, milliseconds) |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5750 Lisp_Object seconds, milliseconds; |
314 | 5751 { |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5752 int sec, usec; |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5753 |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5754 if (NILP (milliseconds)) |
9264
9338a124ea84
(redraw_frame, Fsleep_for, sit_for, Fsit_for): Use new accessor macros instead
Karl Heuer <kwzh@gnu.org>
parents:
8903
diff
changeset
|
5755 XSETINT (milliseconds, 0); |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5756 else |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5757 CHECK_NUMBER (milliseconds, 1); |
2648 | 5758 usec = XINT (milliseconds) * 1000; |
5759 | |
5760 { | |
5761 double duration = extract_float (seconds); | |
5762 sec = (int) duration; | |
5763 usec += (duration - sec) * 1000000; | |
5764 } | |
314 | 5765 |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5766 #ifndef EMACS_HAS_USECS |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5767 if (sec == 0 && usec != 0) |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5768 error ("millisecond `sleep-for' not supported on %s", SYSTEM_TYPE); |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5769 #endif |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5770 |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5771 /* Assure that 0 <= usec < 1000000. */ |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5772 if (usec < 0) |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5773 { |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5774 /* We can't rely on the rounding being correct if user is negative. */ |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5775 if (-1000000 < usec) |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5776 sec--, usec += 1000000; |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5777 else |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5778 sec -= -usec / 1000000, usec = 1000000 - (-usec % 1000000); |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5779 } |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5780 else |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5781 sec += usec / 1000000, usec %= 1000000; |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5782 |
14646
68fe10d1abd0
(Fsleep_for): Accept sub-second intervals.
Erik Naggum <erik@naggum.no>
parents:
14459
diff
changeset
|
5783 if (sec < 0 || (sec == 0 && usec == 0)) |
314 | 5784 return Qnil; |
5785 | |
650 | 5786 { |
5787 Lisp_Object zero; | |
5788 | |
9303
3115ae493c30
(direct_output_for_insert, direct_output_forward_char, change_frame_size,
Karl Heuer <kwzh@gnu.org>
parents:
9264
diff
changeset
|
5789 XSETFASTINT (zero, 0); |
650 | 5790 wait_reading_process_input (sec, usec, zero, 0); |
5791 } | |
587 | 5792 |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5793 /* We should always have wait_reading_process_input; we have a dummy |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5794 implementation for systems which don't support subprocesses. */ |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5795 #if 0 |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5796 /* No wait_reading_process_input */ |
314 | 5797 immediate_quit = 1; |
5798 QUIT; | |
5799 | |
5800 #ifdef VMS | |
5801 sys_sleep (sec); | |
5802 #else /* not VMS */ | |
5803 /* The reason this is done this way | |
5804 (rather than defined (H_S) && defined (H_T)) | |
5805 is because the VMS preprocessor doesn't grok `defined' */ | |
5806 #ifdef HAVE_SELECT | |
554 | 5807 EMACS_GET_TIME (end_time); |
5808 EMACS_SET_SECS_USECS (timeout, sec, usec); | |
587 | 5809 EMACS_ADD_TIME (end_time, end_time, timeout); |
554 | 5810 |
314 | 5811 while (1) |
5812 { | |
554 | 5813 EMACS_GET_TIME (timeout); |
5814 EMACS_SUB_TIME (timeout, end_time, timeout); | |
5815 if (EMACS_TIME_NEG_P (timeout) | |
5816 || !select (1, 0, 0, 0, &timeout)) | |
314 | 5817 break; |
5818 } | |
5819 #else /* not HAVE_SELECT */ | |
5820 sleep (sec); | |
5821 #endif /* HAVE_SELECT */ | |
5822 #endif /* not VMS */ | |
5823 | |
5824 immediate_quit = 0; | |
5825 #endif /* no subprocesses */ | |
5826 | |
5827 return Qnil; | |
5828 } | |
5829 | |
25012 | 5830 |
650 | 5831 /* This is just like wait_reading_process_input, except that |
5832 it does the redisplay. | |
5833 | |
5223
db2e7e6a488e
(Fsit_for): Call prepare_menu_bars.
Richard M. Stallman <rms@gnu.org>
parents:
5218
diff
changeset
|
5834 It's also much like Fsit_for, except that it can be used for |
11411
91bcce2fd486
(Fframe_or_buffer_changed_p): Ignore buffers whose names start with space.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
5835 waiting for input as well. */ |
650 | 5836 |
5837 Lisp_Object | |
17961
86ae1679df19
(sit_for): New arg initial_display.
Richard M. Stallman <rms@gnu.org>
parents:
17895
diff
changeset
|
5838 sit_for (sec, usec, reading, display, initial_display) |
86ae1679df19
(sit_for): New arg initial_display.
Richard M. Stallman <rms@gnu.org>
parents:
17895
diff
changeset
|
5839 int sec, usec, reading, display, initial_display; |
314 | 5840 { |
650 | 5841 Lisp_Object read_kbd; |
314 | 5842 |
14964
9938201005a3
(sit_for): Call swallow_events.
Richard M. Stallman <rms@gnu.org>
parents:
14903
diff
changeset
|
5843 swallow_events (display); |
9938201005a3
(sit_for): Call swallow_events.
Richard M. Stallman <rms@gnu.org>
parents:
14903
diff
changeset
|
5844 |
14757
99125e1e8bac
(sit_for): Pass DISPLAY to detect_input_pending_run_timers.
Richard M. Stallman <rms@gnu.org>
parents:
14646
diff
changeset
|
5845 if (detect_input_pending_run_timers (display)) |
314 | 5846 return Qnil; |
650 | 5847 |
17961
86ae1679df19
(sit_for): New arg initial_display.
Richard M. Stallman <rms@gnu.org>
parents:
17895
diff
changeset
|
5848 if (initial_display) |
314 | 5849 redisplay_preserve_echo_area (); |
5850 | |
673 | 5851 if (sec == 0 && usec == 0) |
5852 return Qt; | |
5853 | |
314 | 5854 #ifdef SIGIO |
1915
98ecf99d7b1a
* dispnew.c (sit_for): Pass the correct number of arguments to
Jim Blandy <jimb@redhat.com>
parents:
1872
diff
changeset
|
5855 gobble_input (0); |
650 | 5856 #endif |
5857 | |
9264
9338a124ea84
(redraw_frame, Fsleep_for, sit_for, Fsit_for): Use new accessor macros instead
Karl Heuer <kwzh@gnu.org>
parents:
8903
diff
changeset
|
5858 XSETINT (read_kbd, reading ? -1 : 1); |
650 | 5859 wait_reading_process_input (sec, usec, read_kbd, display); |
5860 | |
314 | 5861 return detect_input_pending () ? Qnil : Qt; |
5862 } | |
5863 | |
25012 | 5864 |
650 | 5865 DEFUN ("sit-for", Fsit_for, Ssit_for, 1, 3, 0, |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5866 "Perform redisplay, then wait for SECONDS seconds or until input is available.\n\ |
2648 | 5867 SECONDS may be a floating-point value, meaning that you can wait for a\n\ |
5868 fraction of a second. Optional second arg MILLISECONDS specifies an\n\ | |
5869 additional wait period, in milliseconds; this may be useful if your\n\ | |
5870 Emacs was built without floating point support.\n\ | |
5871 \(Not all operating systems support waiting for a fraction of a second.)\n\ | |
14068
a3c83dde295e
(Fsend_string_to_terminal, Fsit_for): Harmonize arguments with
Erik Naggum <erik@naggum.no>
parents:
13526
diff
changeset
|
5872 Optional third arg NODISP non-nil means don't redisplay, just wait for input.\n\ |
650 | 5873 Redisplay is preempted as always if input arrives, and does not happen\n\ |
5874 if input is available before it starts.\n\ | |
5875 Value is t if waited the full time with no input arriving.") | |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5876 (seconds, milliseconds, nodisp) |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5877 Lisp_Object seconds, milliseconds, nodisp; |
650 | 5878 { |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5879 int sec, usec; |
650 | 5880 |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5881 if (NILP (milliseconds)) |
9264
9338a124ea84
(redraw_frame, Fsleep_for, sit_for, Fsit_for): Use new accessor macros instead
Karl Heuer <kwzh@gnu.org>
parents:
8903
diff
changeset
|
5882 XSETINT (milliseconds, 0); |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5883 else |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5884 CHECK_NUMBER (milliseconds, 1); |
2648 | 5885 usec = XINT (milliseconds) * 1000; |
5886 | |
5887 { | |
5888 double duration = extract_float (seconds); | |
5889 sec = (int) duration; | |
5890 usec += (duration - sec) * 1000000; | |
5891 } | |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5892 |
650 | 5893 #ifndef EMACS_HAS_USECS |
2291
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5894 if (usec != 0 && sec == 0) |
bee5c1693cac
* dispnew.c (Fsleep_for): Make this take two arguments SECONDS and
Jim Blandy <jimb@redhat.com>
parents:
2288
diff
changeset
|
5895 error ("millisecond `sit-for' not supported on %s", SYSTEM_TYPE); |
650 | 5896 #endif |
5897 | |
17961
86ae1679df19
(sit_for): New arg initial_display.
Richard M. Stallman <rms@gnu.org>
parents:
17895
diff
changeset
|
5898 return sit_for (sec, usec, 0, NILP (nodisp), NILP (nodisp)); |
650 | 5899 } |
25012 | 5900 |
5901 | |
314 | 5902 |
25012 | 5903 /*********************************************************************** |
5904 Other Lisp Functions | |
5905 ***********************************************************************/ | |
5906 | |
5907 /* A vector of size >= 2 * NFRAMES + 3 * NBUFFERS + 1, containing the | |
5908 session's frames, frame names, buffers, buffer-read-only flags, and | |
5909 buffer-modified-flags, and a trailing sentinel (so we don't need to | |
5910 add length checks). */ | |
5911 | |
5912 static Lisp_Object frame_and_buffer_state; | |
5913 | |
5914 | |
5915 DEFUN ("frame-or-buffer-changed-p", Fframe_or_buffer_changed_p, | |
5916 Sframe_or_buffer_changed_p, 0, 0, 0, | |
5917 "Return non-nil if the frame and buffer state appears to have changed.\n\ | |
5918 The state variable is an internal vector containing all frames and buffers,\n\ | |
5919 aside from buffers whose names start with space,\n\ | |
5920 along with the buffers' read-only and modified flags, which allows a fast\n\ | |
5921 check to see whether the menu bars might need to be recomputed.\n\ | |
5922 If this function returns non-nil, it updates the internal vector to reflect\n\ | |
5923 the current state.\n") | |
5924 () | |
5925 { | |
5926 Lisp_Object tail, frame, buf; | |
5927 Lisp_Object *vecp; | |
5928 int n; | |
5929 | |
5930 vecp = XVECTOR (frame_and_buffer_state)->contents; | |
5931 FOR_EACH_FRAME (tail, frame) | |
5932 { | |
5933 if (!EQ (*vecp++, frame)) | |
5934 goto changed; | |
5935 if (!EQ (*vecp++, XFRAME (frame)->name)) | |
5936 goto changed; | |
5937 } | |
5938 /* Check that the buffer info matches. | |
5939 No need to test for the end of the vector | |
5940 because the last element of the vector is lambda | |
5941 and that will always cause a mismatch. */ | |
26164
d39ec0a27081
more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents:
26088
diff
changeset
|
5942 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail)) |
25012 | 5943 { |
26164
d39ec0a27081
more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents:
26088
diff
changeset
|
5944 buf = XCDR (XCAR (tail)); |
25012 | 5945 /* Ignore buffers that aren't included in buffer lists. */ |
5946 if (XSTRING (XBUFFER (buf)->name)->data[0] == ' ') | |
5947 continue; | |
5948 if (!EQ (*vecp++, buf)) | |
5949 goto changed; | |
5950 if (!EQ (*vecp++, XBUFFER (buf)->read_only)) | |
5951 goto changed; | |
5952 if (!EQ (*vecp++, Fbuffer_modified_p (buf))) | |
5953 goto changed; | |
5954 } | |
5955 /* Detect deletion of a buffer at the end of the list. */ | |
5956 if (EQ (*vecp, Qlambda)) | |
5957 return Qnil; | |
5958 changed: | |
5959 /* Start with 1 so there is room for at least one lambda at the end. */ | |
5960 n = 1; | |
5961 FOR_EACH_FRAME (tail, frame) | |
5962 n += 2; | |
26164
d39ec0a27081
more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents:
26088
diff
changeset
|
5963 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail)) |
25012 | 5964 n += 3; |
5965 /* Reallocate the vector if it's grown, or if it's shrunk a lot. */ | |
5966 if (n > XVECTOR (frame_and_buffer_state)->size | |
5967 || n + 20 < XVECTOR (frame_and_buffer_state)->size / 2) | |
5968 /* Add 20 extra so we grow it less often. */ | |
5969 frame_and_buffer_state = Fmake_vector (make_number (n + 20), Qlambda); | |
5970 vecp = XVECTOR (frame_and_buffer_state)->contents; | |
5971 FOR_EACH_FRAME (tail, frame) | |
5972 { | |
5973 *vecp++ = frame; | |
5974 *vecp++ = XFRAME (frame)->name; | |
5975 } | |
26164
d39ec0a27081
more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents:
26088
diff
changeset
|
5976 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail)) |
25012 | 5977 { |
26164
d39ec0a27081
more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Ken Raeburn <raeburn@raeburn.org>
parents:
26088
diff
changeset
|
5978 buf = XCDR (XCAR (tail)); |
25012 | 5979 /* Ignore buffers that aren't included in buffer lists. */ |
5980 if (XSTRING (XBUFFER (buf)->name)->data[0] == ' ') | |
5981 continue; | |
5982 *vecp++ = buf; | |
5983 *vecp++ = XBUFFER (buf)->read_only; | |
5984 *vecp++ = Fbuffer_modified_p (buf); | |
5985 } | |
5986 /* Fill up the vector with lambdas (always at least one). */ | |
5987 *vecp++ = Qlambda; | |
5988 while (vecp - XVECTOR (frame_and_buffer_state)->contents | |
5989 < XVECTOR (frame_and_buffer_state)->size) | |
5990 *vecp++ = Qlambda; | |
5991 /* Make sure we didn't overflow the vector. */ | |
5992 if (vecp - XVECTOR (frame_and_buffer_state)->contents | |
5993 > XVECTOR (frame_and_buffer_state)->size) | |
5994 abort (); | |
5995 return Qt; | |
5996 } | |
5997 | |
5998 | |
5999 | |
6000 /*********************************************************************** | |
6001 Initialization | |
6002 ***********************************************************************/ | |
6003 | |
314 | 6004 char *terminal_type; |
6005 | |
25012 | 6006 /* Initialization done when Emacs fork is started, before doing stty. |
6007 Determine terminal type and set terminal_driver. Then invoke its | |
6008 decoding routine to set up variables in the terminal package. */ | |
314 | 6009 |
21514 | 6010 void |
314 | 6011 init_display () |
6012 { | |
6013 #ifdef HAVE_X_WINDOWS | |
6014 extern int display_arg; | |
6015 #endif | |
6016 | |
25012 | 6017 /* Construct the space glyph. */ |
6018 space_glyph.type = CHAR_GLYPH; | |
6019 SET_CHAR_GLYPH_FROM_GLYPH (space_glyph, ' '); | |
6020 space_glyph.charpos = -1; | |
6021 | |
314 | 6022 meta_key = 0; |
6023 inverse_video = 0; | |
6024 cursor_in_echo_area = 0; | |
6025 terminal_type = (char *) 0; | |
6026 | |
2339
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
6027 /* Now is the time to initialize this; it's used by init_sys_modes |
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
6028 during startup. */ |
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
6029 Vwindow_system = Qnil; |
314 | 6030 |
2339
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
6031 /* If the user wants to use a window system, we shouldn't bother |
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
6032 initializing the terminal. This is especially important when the |
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
6033 terminal is so dumb that emacs gives up before and doesn't bother |
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
6034 using the window system. |
a302de11debf
* dispnew.c (init_display): Initialize Vwindow_system.
Jim Blandy <jimb@redhat.com>
parents:
2292
diff
changeset
|
6035 |
14125
2f222e8b06f5
(init_display): Treat null string DISPLAY var like not set.
Karl Heuer <kwzh@gnu.org>
parents:
14068
diff
changeset
|
6036 If the DISPLAY environment variable is set and nonempty, |
2f222e8b06f5
(init_display): Treat null string DISPLAY var like not set.
Karl Heuer <kwzh@gnu.org>
parents:
14068
diff
changeset
|
6037 try to use X, and die with an error message if that doesn't work. */ |
314 | 6038 |
6039 #ifdef HAVE_X_WINDOWS | |
2359
90a5f91329f3
* dispnew.c (init_display): Get display name from environment
Jim Blandy <jimb@redhat.com>
parents:
2339
diff
changeset
|
6040 if (! display_arg) |
90a5f91329f3
* dispnew.c (init_display): Get display name from environment
Jim Blandy <jimb@redhat.com>
parents:
2339
diff
changeset
|
6041 { |
14125
2f222e8b06f5
(init_display): Treat null string DISPLAY var like not set.
Karl Heuer <kwzh@gnu.org>
parents:
14068
diff
changeset
|
6042 char *display; |
2359
90a5f91329f3
* dispnew.c (init_display): Get display name from environment
Jim Blandy <jimb@redhat.com>
parents:
2339
diff
changeset
|
6043 #ifdef VMS |
14125
2f222e8b06f5
(init_display): Treat null string DISPLAY var like not set.
Karl Heuer <kwzh@gnu.org>
parents:
14068
diff
changeset
|
6044 display = getenv ("DECW$DISPLAY"); |
2359
90a5f91329f3
* dispnew.c (init_display): Get display name from environment
Jim Blandy <jimb@redhat.com>
parents:
2339
diff
changeset
|
6045 #else |
14125
2f222e8b06f5
(init_display): Treat null string DISPLAY var like not set.
Karl Heuer <kwzh@gnu.org>
parents:
14068
diff
changeset
|
6046 display = getenv ("DISPLAY"); |
2359
90a5f91329f3
* dispnew.c (init_display): Get display name from environment
Jim Blandy <jimb@redhat.com>
parents:
2339
diff
changeset
|
6047 #endif |
14125
2f222e8b06f5
(init_display): Treat null string DISPLAY var like not set.
Karl Heuer <kwzh@gnu.org>
parents:
14068
diff
changeset
|
6048 |
2f222e8b06f5
(init_display): Treat null string DISPLAY var like not set.
Karl Heuer <kwzh@gnu.org>
parents:
14068
diff
changeset
|
6049 display_arg = (display != 0 && *display != 0); |
2364 | 6050 } |
2359
90a5f91329f3
* dispnew.c (init_display): Get display name from environment
Jim Blandy <jimb@redhat.com>
parents:
2339
diff
changeset
|
6051 |
18774
95b4ac950a5d
(init_display): Go ahead and prepare for
Richard M. Stallman <rms@gnu.org>
parents:
18015
diff
changeset
|
6052 if (!inhibit_window_system && display_arg |
95b4ac950a5d
(init_display): Go ahead and prepare for
Richard M. Stallman <rms@gnu.org>
parents:
18015
diff
changeset
|
6053 #ifndef CANNOT_DUMP |
95b4ac950a5d
(init_display): Go ahead and prepare for
Richard M. Stallman <rms@gnu.org>
parents:
18015
diff
changeset
|
6054 && initialized |
95b4ac950a5d
(init_display): Go ahead and prepare for
Richard M. Stallman <rms@gnu.org>
parents:
18015
diff
changeset
|
6055 #endif |
95b4ac950a5d
(init_display): Go ahead and prepare for
Richard M. Stallman <rms@gnu.org>
parents:
18015
diff
changeset
|
6056 ) |
314 | 6057 { |
6058 Vwindow_system = intern ("x"); | |
6059 #ifdef HAVE_X11 | |
6060 Vwindow_system_version = make_number (11); | |
6061 #else | |
6062 Vwindow_system_version = make_number (10); | |
6063 #endif | |
15273
db889dd732a1
(init_display) [HAVE_LIBNCURSES]: If X, call tgetent.
Karl Heuer <kwzh@gnu.org>
parents:
15078
diff
changeset
|
6064 #if defined (LINUX) && defined (HAVE_LIBNCURSES) |
db889dd732a1
(init_display) [HAVE_LIBNCURSES]: If X, call tgetent.
Karl Heuer <kwzh@gnu.org>
parents:
15078
diff
changeset
|
6065 /* In some versions of ncurses, |
15282 | 6066 tputs crashes if we have not called tgetent. |
15273
db889dd732a1
(init_display) [HAVE_LIBNCURSES]: If X, call tgetent.
Karl Heuer <kwzh@gnu.org>
parents:
15078
diff
changeset
|
6067 So call tgetent. */ |
db889dd732a1
(init_display) [HAVE_LIBNCURSES]: If X, call tgetent.
Karl Heuer <kwzh@gnu.org>
parents:
15078
diff
changeset
|
6068 { char b[2044]; tgetent (b, "xterm");} |
db889dd732a1
(init_display) [HAVE_LIBNCURSES]: If X, call tgetent.
Karl Heuer <kwzh@gnu.org>
parents:
15078
diff
changeset
|
6069 #endif |
25012 | 6070 adjust_frame_glyphs_initially (); |
314 | 6071 return; |
6072 } | |
6073 #endif /* HAVE_X_WINDOWS */ | |
6074 | |
13408
7e92386e1cf7
[HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13220
diff
changeset
|
6075 #ifdef HAVE_NTGUI |
7e92386e1cf7
[HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13220
diff
changeset
|
6076 if (!inhibit_window_system) |
7e92386e1cf7
[HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13220
diff
changeset
|
6077 { |
16589
ec300a10e407
(init_display) [HAVE_NTGUI]: Use w32 for window-system.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16412
diff
changeset
|
6078 Vwindow_system = intern ("w32"); |
13408
7e92386e1cf7
[HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13220
diff
changeset
|
6079 Vwindow_system_version = make_number (1); |
25012 | 6080 adjust_frame_glyphs_initially (); |
13408
7e92386e1cf7
[HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13220
diff
changeset
|
6081 return; |
7e92386e1cf7
[HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13220
diff
changeset
|
6082 } |
7e92386e1cf7
[HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13220
diff
changeset
|
6083 #endif /* HAVE_NTGUI */ |
7e92386e1cf7
[HAVE_NTGUI]: Include w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13220
diff
changeset
|
6084 |
314 | 6085 /* If no window system has been specified, try to use the terminal. */ |
6086 if (! isatty (0)) | |
6087 { | |
16896
b2c51d6de440
(init_display): Use `fatal'.
Richard M. Stallman <rms@gnu.org>
parents:
16891
diff
changeset
|
6088 fatal ("standard input is not a tty"); |
314 | 6089 exit (1); |
6090 } | |
6091 | |
6092 /* Look at the TERM variable */ | |
6093 terminal_type = (char *) getenv ("TERM"); | |
6094 if (!terminal_type) | |
6095 { | |
6096 #ifdef VMS | |
6097 fprintf (stderr, "Please specify your terminal type.\n\ | |
6098 For types defined in VMS, use set term /device=TYPE.\n\ | |
6099 For types not defined in VMS, use define emacs_term \"TYPE\".\n\ | |
6100 \(The quotation marks are necessary since terminal types are lower case.)\n"); | |
6101 #else | |
6102 fprintf (stderr, "Please set the environment variable TERM; see tset(1).\n"); | |
6103 #endif | |
6104 exit (1); | |
6105 } | |
6106 | |
6107 #ifdef VMS | |
25012 | 6108 /* VMS DCL tends to up-case things, so down-case term type. |
314 | 6109 Hardly any uppercase letters in terminal types; should be none. */ |
6110 { | |
6111 char *new = (char *) xmalloc (strlen (terminal_type) + 1); | |
6112 char *p; | |
6113 | |
6114 strcpy (new, terminal_type); | |
6115 | |
6116 for (p = new; *p; p++) | |
6117 if (isupper (*p)) | |
6118 *p = tolower (*p); | |
6119 | |
6120 terminal_type = new; | |
6121 } | |
25012 | 6122 #endif /* VMS */ |
314 | 6123 |
6124 term_init (terminal_type); | |
25012 | 6125 |
16891
989845750a4d
(init_display): Check for overflow in screen size.
Richard M. Stallman <rms@gnu.org>
parents:
16881
diff
changeset
|
6126 { |
25666
063da8f6a487
(selected_frame): Make it a Lisp_Object.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6127 struct frame *sf = SELECTED_FRAME (); |
063da8f6a487
(selected_frame): Make it a Lisp_Object.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6128 int width = FRAME_WINDOW_WIDTH (sf); |
063da8f6a487
(selected_frame): Make it a Lisp_Object.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6129 int height = FRAME_HEIGHT (sf); |
16891
989845750a4d
(init_display): Check for overflow in screen size.
Richard M. Stallman <rms@gnu.org>
parents:
16881
diff
changeset
|
6130 |
25012 | 6131 unsigned int total_glyphs = height * (width + 2) * sizeof (struct glyph); |
6132 | |
6133 /* If these sizes are so big they cause overflow, just ignore the | |
6134 change. It's not clear what better we could do. */ | |
6135 if (total_glyphs / sizeof (struct glyph) / height != width + 2) | |
16896
b2c51d6de440
(init_display): Use `fatal'.
Richard M. Stallman <rms@gnu.org>
parents:
16891
diff
changeset
|
6136 fatal ("screen size %dx%d too big", width, height); |
16891
989845750a4d
(init_display): Check for overflow in screen size.
Richard M. Stallman <rms@gnu.org>
parents:
16881
diff
changeset
|
6137 } |
989845750a4d
(init_display): Check for overflow in screen size.
Richard M. Stallman <rms@gnu.org>
parents:
16881
diff
changeset
|
6138 |
25012 | 6139 adjust_frame_glyphs_initially (); |
25666
063da8f6a487
(selected_frame): Make it a Lisp_Object.
Gerd Moellmann <gerd@gnu.org>
parents:
25546
diff
changeset
|
6140 calculate_costs (XFRAME (selected_frame)); |
314 | 6141 |
6142 #ifdef SIGWINCH | |
6143 #ifndef CANNOT_DUMP | |
6144 if (initialized) | |
6145 #endif /* CANNOT_DUMP */ | |
6146 signal (SIGWINCH, window_change_signal); | |
6147 #endif /* SIGWINCH */ | |
25012 | 6148 |
6149 /* Set up faces of the initial terminal frame of a dumped Emacs. */ | |
6150 if (initialized | |
6151 && !noninteractive | |
25118
08ae9ffe6763
(init_display) [MSDOS]: Don't initialize frame faces,
Eli Zaretskii <eliz@gnu.org>
parents:
25012
diff
changeset
|
6152 #ifdef MSDOS |
08ae9ffe6763
(init_display) [MSDOS]: Don't initialize frame faces,
Eli Zaretskii <eliz@gnu.org>
parents:
25012
diff
changeset
|
6153 /* The MSDOS terminal turns on its ``window system'' relatively |
08ae9ffe6763
(init_display) [MSDOS]: Don't initialize frame faces,
Eli Zaretskii <eliz@gnu.org>
parents:
25012
diff
changeset
|
6154 late into the startup, so we cannot do the frame faces' |
08ae9ffe6763
(init_display) [MSDOS]: Don't initialize frame faces,
Eli Zaretskii <eliz@gnu.org>
parents:
25012
diff
changeset
|
6155 initialization just yet. It will be done later by pc-win.el |
08ae9ffe6763
(init_display) [MSDOS]: Don't initialize frame faces,
Eli Zaretskii <eliz@gnu.org>
parents:
25012
diff
changeset
|
6156 and internal_terminal_init. */ |
08ae9ffe6763
(init_display) [MSDOS]: Don't initialize frame faces,
Eli Zaretskii <eliz@gnu.org>
parents:
25012
diff
changeset
|
6157 && (strcmp (terminal_type, "internal") != 0 || inhibit_window_system) |
08ae9ffe6763
(init_display) [MSDOS]: Don't initialize frame faces,
Eli Zaretskii <eliz@gnu.org>
parents:
25012
diff
changeset
|
6158 #endif |
25012 | 6159 && NILP (Vwindow_system)) |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26591
diff
changeset
|
6160 { |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26591
diff
changeset
|
6161 /* For the initial frame, we don't have any way of knowing what |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26591
diff
changeset
|
6162 are the foreground and background colors of the terminal. */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26591
diff
changeset
|
6163 struct frame *sf = SELECTED_FRAME(); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26591
diff
changeset
|
6164 |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26851
diff
changeset
|
6165 FRAME_FOREGROUND_PIXEL (sf) = FACE_TTY_DEFAULT_FG_COLOR; |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26851
diff
changeset
|
6166 FRAME_BACKGROUND_PIXEL (sf) = FACE_TTY_DEFAULT_BG_COLOR; |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26591
diff
changeset
|
6167 call0 (intern ("tty-set-up-initial-frame-faces")); |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26591
diff
changeset
|
6168 } |
314 | 6169 } |
25012 | 6170 |
6171 | |
314 | 6172 |
25012 | 6173 /*********************************************************************** |
6174 Blinking cursor | |
6175 ***********************************************************************/ | |
6176 | |
26280
083835afced5
(Finternal_show_cursor): Renamed from Fshow_cursor.
Gerd Moellmann <gerd@gnu.org>
parents:
26164
diff
changeset
|
6177 DEFUN ("internal-show-cursor", Finternal_show_cursor, |
26334
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6178 Sinternal_show_cursor, 2, 2, 0, |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6179 "Set the cursor-visibility flag of WINDOW to SHOW.\n\ |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6180 WINDOW nil means use the selected window. SHOW non-nil means\n\ |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6181 show a cursor in WINDOW in the next redisplay. SHOW nil means\n\ |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6182 don't show a cursor.") |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6183 (window, show) |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6184 Lisp_Object window, show; |
25012 | 6185 { |
6186 /* Don't change cursor state while redisplaying. This could confuse | |
6187 output routines. */ | |
6188 if (!redisplaying_p) | |
6189 { | |
6190 if (NILP (window)) | |
6191 window = selected_window; | |
6192 else | |
6193 CHECK_WINDOW (window, 2); | |
6194 | |
26334
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6195 XWINDOW (window)->cursor_off_p = NILP (show); |
25012 | 6196 } |
6197 | |
6198 return Qnil; | |
6199 } | |
6200 | |
6201 | |
26334
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6202 DEFUN ("internal-show-cursor-p", Finternal_show_cursor_p, |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6203 Sinternal_show_cursor_p, 0, 1, 0, |
26499
10af169a628b
(Finternal_show_cursor_p): Fix doc string.
Dave Love <fx@gnu.org>
parents:
26334
diff
changeset
|
6204 "Value is non-nil if next redisplay will display a cursor in WINDOW.\n\ |
26334
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6205 WINDOW nil or omitted means report on the selected window.") |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6206 (window) |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6207 Lisp_Object window; |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6208 { |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6209 struct window *w; |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6210 |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6211 if (NILP (window)) |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6212 window = selected_window; |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6213 else |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6214 CHECK_WINDOW (window, 2); |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6215 |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6216 w = XWINDOW (window); |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6217 return w->cursor_off_p ? Qnil : Qt; |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6218 } |
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6219 |
25012 | 6220 |
6221 /*********************************************************************** | |
6222 Initialization | |
6223 ***********************************************************************/ | |
6224 | |
21514 | 6225 void |
314 | 6226 syms_of_display () |
6227 { | |
764 | 6228 defsubr (&Sredraw_frame); |
314 | 6229 defsubr (&Sredraw_display); |
7810
15c0bf73737e
(Fframe_or_buffer_changed_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
7808
diff
changeset
|
6230 defsubr (&Sframe_or_buffer_changed_p); |
314 | 6231 defsubr (&Sopen_termscript); |
6232 defsubr (&Sding); | |
6233 defsubr (&Ssit_for); | |
6234 defsubr (&Ssleep_for); | |
6235 defsubr (&Ssend_string_to_terminal); | |
26280
083835afced5
(Finternal_show_cursor): Renamed from Fshow_cursor.
Gerd Moellmann <gerd@gnu.org>
parents:
26164
diff
changeset
|
6236 defsubr (&Sinternal_show_cursor); |
26334
e3a9ceb7a557
(Finternal_show_cursor): Change it to set the
Gerd Moellmann <gerd@gnu.org>
parents:
26280
diff
changeset
|
6237 defsubr (&Sinternal_show_cursor_p); |
314 | 6238 |
12186
6811992e871c
(Fframe_or_buffer_changed_p): Calculate vector size right.
Karl Heuer <kwzh@gnu.org>
parents:
11919
diff
changeset
|
6239 frame_and_buffer_state = Fmake_vector (make_number (20), Qlambda); |
7810
15c0bf73737e
(Fframe_or_buffer_changed_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
7808
diff
changeset
|
6240 staticpro (&frame_and_buffer_state); |
15c0bf73737e
(Fframe_or_buffer_changed_p): New function.
Karl Heuer <kwzh@gnu.org>
parents:
7808
diff
changeset
|
6241 |
13220
2e9014617492
(Qdisplay_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13105
diff
changeset
|
6242 Qdisplay_table = intern ("display-table"); |
2e9014617492
(Qdisplay_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13105
diff
changeset
|
6243 staticpro (&Qdisplay_table); |
30720
64f3338f72d8
(Qredisplay_dont_pause): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30713
diff
changeset
|
6244 Qredisplay_dont_pause = intern ("redisplay-dont-pause"); |
64f3338f72d8
(Qredisplay_dont_pause): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
30713
diff
changeset
|
6245 staticpro (&Qredisplay_dont_pause); |
13220
2e9014617492
(Qdisplay_table): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
13105
diff
changeset
|
6246 |
314 | 6247 DEFVAR_INT ("baud-rate", &baud_rate, |
7926
b87f2c705501
(syms_of_display): Make baud-rate a user var.
Richard M. Stallman <rms@gnu.org>
parents:
7900
diff
changeset
|
6248 "*The output baud rate of the terminal.\n\ |
314 | 6249 On most systems, changing this value will affect the amount of padding\n\ |
6250 and the other strategic decisions made during redisplay."); | |
25012 | 6251 |
314 | 6252 DEFVAR_BOOL ("inverse-video", &inverse_video, |
764 | 6253 "*Non-nil means invert the entire frame display.\n\ |
314 | 6254 This means everything is in inverse video which otherwise would not be."); |
25012 | 6255 |
314 | 6256 DEFVAR_BOOL ("visible-bell", &visible_bell, |
764 | 6257 "*Non-nil means try to flash the frame to represent a bell."); |
25012 | 6258 |
314 | 6259 DEFVAR_BOOL ("no-redraw-on-reenter", &no_redraw_on_reenter, |
764 | 6260 "*Non-nil means no need to redraw entire frame after suspending.\n\ |
314 | 6261 A non-nil value is useful if the terminal can automatically preserve\n\ |
764 | 6262 Emacs's frame display when you reenter Emacs.\n\ |
314 | 6263 It is up to you to set this variable if your terminal can do that."); |
25012 | 6264 |
314 | 6265 DEFVAR_LISP ("window-system", &Vwindow_system, |
6266 "A symbol naming the window-system under which Emacs is running\n\ | |
6267 \(such as `x'), or nil if emacs is running on an ordinary terminal."); | |
25012 | 6268 |
314 | 6269 DEFVAR_LISP ("window-system-version", &Vwindow_system_version, |
6270 "The version number of the window system in use.\n\ | |
6271 For X windows, this is 10 or 11."); | |
25012 | 6272 |
314 | 6273 DEFVAR_BOOL ("cursor-in-echo-area", &cursor_in_echo_area, |
6274 "Non-nil means put cursor in minibuffer, at end of any message there."); | |
25012 | 6275 |
314 | 6276 DEFVAR_LISP ("glyph-table", &Vglyph_table, |
764 | 6277 "Table defining how to output a glyph code to the frame.\n\ |
314 | 6278 If not nil, this is a vector indexed by glyph code to define the glyph.\n\ |
6279 Each element can be:\n\ | |
6280 integer: a glyph code which this glyph is an alias for.\n\ | |
6281 string: output this glyph using that string (not impl. in X windows).\n\ | |
6282 nil: this glyph mod 256 is char code to output,\n\ | |
6857 | 6283 and this glyph / 256 is face code for X windows (see `face-id')."); |
314 | 6284 Vglyph_table = Qnil; |
6285 | |
6286 DEFVAR_LISP ("standard-display-table", &Vstandard_display_table, | |
6287 "Display table to use for buffers that specify none.\n\ | |
6288 See `buffer-display-table' for more information."); | |
6289 Vstandard_display_table = Qnil; | |
6290 | |
25012 | 6291 DEFVAR_BOOL ("redisplay-dont-pause", &redisplay_dont_pause, |
6292 "*Non-nil means update isn't paused when input is detected."); | |
6293 redisplay_dont_pause = 0; | |
6294 | |
314 | 6295 /* Initialize `window-system', unless init_display already decided it. */ |
6296 #ifdef CANNOT_DUMP | |
6297 if (noninteractive) | |
6298 #endif | |
6299 { | |
6300 Vwindow_system = Qnil; | |
6301 Vwindow_system_version = Qnil; | |
6302 } | |
6303 } |