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