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