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