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