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