(window_loop) <GET_BUFFER_WINDOW>: Prefer to return
[bpt/emacs.git] / src / window.c
CommitLineData
7ab12479
JB
1/* Window creation, deletion and examination for GNU Emacs.
2 Does not include redisplay.
b0b7ed0e 3 Copyright (C) 1985,86,87,93,94,95,96,97,1998,2000, 2001
6529ed87 4 Free Software Foundation, Inc.
7ab12479
JB
5
6This file is part of GNU Emacs.
7
8GNU Emacs is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
1113d9db 10the Free Software Foundation; either version 2, or (at your option)
7ab12479
JB
11any later version.
12
13GNU Emacs is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
20the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21Boston, MA 02111-1307, USA. */
7ab12479 22
18160b98 23#include <config.h>
7ab12479
JB
24#include "lisp.h"
25#include "buffer.h"
3e4731a3 26#include "keyboard.h"
44fa5b1e 27#include "frame.h"
7ab12479
JB
28#include "window.h"
29#include "commands.h"
30#include "indent.h"
31#include "termchar.h"
32#include "disptab.h"
dfcf069d 33#include "dispextern.h"
5500c422
GM
34#include "blockinput.h"
35#include "intervals.h"
36
6d55d620 37#ifdef HAVE_X_WINDOWS
dfcf069d 38#include "xterm.h"
5500c422 39#endif /* HAVE_X_WINDOWS */
8f23f280
AI
40#ifdef WINDOWSNT
41#include "w32term.h"
42#endif
1e3c8885
EZ
43#ifdef MSDOS
44#include "msdos.h"
45#endif
1a578e9b
AC
46#ifdef macintosh
47#include "macterm.h"
48#endif
5500c422
GM
49
50#ifndef max
51#define max(a, b) ((a) < (b) ? (b) : (a))
dfcf069d 52#endif
7ab12479 53
7442878f
GM
54/* Values returned from coordinates_in_window. */
55
56enum window_part
57{
58 ON_NOTHING,
59 ON_TEXT,
60 ON_MODE_LINE,
61 ON_VERTICAL_BORDER,
62 ON_HEADER_LINE,
63 ON_LEFT_FRINGE,
64 ON_RIGHT_FRINGE
65};
66
5500c422 67
3f8ab7bd 68Lisp_Object Qwindowp, Qwindow_live_p, Qwindow_configuration_p;
7442878f 69Lisp_Object Qwindow_size_fixed, Qleft_fringe, Qright_fringe;
233a4a2c 70extern Lisp_Object Qheight, Qwidth;
7ab12479 71
5e14b1fc 72static struct window *decode_window P_ ((Lisp_Object));
b7354ddf 73static Lisp_Object select_window_1 P_ ((Lisp_Object, int));
5500c422
GM
74static int count_windows P_ ((struct window *));
75static int get_leaf_windows P_ ((struct window *, struct window **, int));
76static void window_scroll P_ ((Lisp_Object, int, int, int));
77static void window_scroll_pixel_based P_ ((Lisp_Object, int, int, int));
78static void window_scroll_line_based P_ ((Lisp_Object, int, int, int));
233a4a2c 79static int window_min_size_1 P_ ((struct window *, int));
f984d4fc 80static int window_min_size P_ ((struct window *, int, int, int *));
233a4a2c 81static void size_window P_ ((Lisp_Object, int, int, int));
f95464e4 82static int freeze_window_start P_ ((struct window *, void *));
f984d4fc 83static int window_fixed_size_p P_ ((struct window *, int, int));
86c8e823 84static void enlarge_window P_ ((Lisp_Object, int, int));
67492200 85static Lisp_Object window_list P_ ((void));
f95464e4 86static int add_window_to_list P_ ((struct window *, void *));
118ea242
GM
87static int candidate_window_p P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
88 Lisp_Object));
67492200
GM
89static Lisp_Object next_window P_ ((Lisp_Object, Lisp_Object,
90 Lisp_Object, int));
91static void decode_next_window_args P_ ((Lisp_Object *, Lisp_Object *,
92 Lisp_Object *));
f95464e4
GM
93static int foreach_window_1 P_ ((struct window *,
94 int (* fn) (struct window *, void *),
95 void *));
cd2904bd 96static Lisp_Object window_list_1 P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
b7354ddf 97
b0b7ed0e
GM
98/* The value of `window-size-fixed'. */
99
100int window_size_fixed;
101
7ab12479
JB
102/* This is the window in which the terminal's cursor should
103 be left when nothing is being done with it. This must
104 always be a leaf window, and its buffer is selected by
105 the top level editing loop at the end of each command.
106
107 This value is always the same as
44fa5b1e 108 FRAME_SELECTED_WINDOW (selected_frame). */
7ab12479
JB
109
110Lisp_Object selected_window;
111
67492200
GM
112/* A list of all windows for use by next_window and Fwindow_list.
113 Functions creating or deleting windows should invalidate this cache
114 by setting it to nil. */
115
116Lisp_Object Vwindow_list;
117
5500c422
GM
118/* The mini-buffer window of the selected frame.
119 Note that you cannot test for mini-bufferness of an arbitrary window
120 by comparing against this; but you can test for mini-bufferness of
7ab12479 121 the selected window. */
5500c422 122
7ab12479
JB
123Lisp_Object minibuf_window;
124
125/* Non-nil means it is the window for C-M-v to scroll
5500c422
GM
126 when the mini-buffer is selected. */
127
7ab12479
JB
128Lisp_Object Vminibuf_scroll_window;
129
130/* Non-nil means this is the buffer whose window C-M-v should scroll. */
5500c422 131
7ab12479
JB
132Lisp_Object Vother_window_scroll_buffer;
133
7ab12479 134/* Non-nil means it's function to call to display temp buffers. */
5500c422 135
7ab12479
JB
136Lisp_Object Vtemp_buffer_show_function;
137
138/* If a window gets smaller than either of these, it is removed. */
5500c422 139
7ab12479
JB
140int window_min_height;
141int window_min_width;
142
143/* Nonzero implies Fdisplay_buffer should create windows. */
5500c422 144
7ab12479
JB
145int pop_up_windows;
146
44fa5b1e 147/* Nonzero implies make new frames for Fdisplay_buffer. */
5500c422 148
44fa5b1e 149int pop_up_frames;
7ab12479 150
9c3da604
GM
151/* Nonzero means reuse existing frames for displaying buffers. */
152
153int display_buffer_reuse_frames;
154
7ab12479 155/* Non-nil means use this function instead of default */
5500c422 156
44fa5b1e 157Lisp_Object Vpop_up_frame_function;
7ab12479
JB
158
159/* Function to call to handle Fdisplay_buffer. */
5500c422 160
7ab12479
JB
161Lisp_Object Vdisplay_buffer_function;
162
6529ed87
GM
163/* Non-nil means that Fdisplay_buffer should even the heights of windows. */
164
165Lisp_Object Veven_window_heights;
166
a90712c2 167/* List of buffer *names* for buffers that should have their own frames. */
5500c422 168
a90712c2
RS
169Lisp_Object Vspecial_display_buffer_names;
170
171/* List of regexps for buffer names that should have their own frames. */
5500c422 172
a90712c2
RS
173Lisp_Object Vspecial_display_regexps;
174
175/* Function to pop up a special frame. */
5500c422 176
a90712c2
RS
177Lisp_Object Vspecial_display_function;
178
855d8627 179/* List of buffer *names* for buffers to appear in selected window. */
5500c422 180
855d8627
RS
181Lisp_Object Vsame_window_buffer_names;
182
183/* List of regexps for buffer names to appear in selected window. */
5500c422 184
855d8627
RS
185Lisp_Object Vsame_window_regexps;
186
a58ec57d 187/* Hook run at end of temp_output_buffer_show. */
5500c422 188
a58ec57d
RS
189Lisp_Object Qtemp_buffer_show_hook;
190
37962e60 191/* Fdisplay_buffer always splits the largest window
7ab12479 192 if that window is more than this high. */
5500c422 193
7ab12479
JB
194int split_height_threshold;
195
196/* Number of lines of continuity in scrolling by screenfuls. */
5500c422 197
7ab12479
JB
198int next_screen_context_lines;
199
200/* Incremented for each window created. */
5500c422 201
7ab12479
JB
202static int sequence_number;
203
5b03d3c0 204/* Nonzero after init_window_once has finished. */
5500c422 205
5b03d3c0
RS
206static int window_initialized;
207
543f5fb1 208/* Hook to run when window config changes. */
5500c422 209
543f5fb1
RS
210Lisp_Object Qwindow_configuration_change_hook;
211Lisp_Object Vwindow_configuration_change_hook;
212
9317a85d
RS
213/* Nonzero means scroll commands try to put point
214 at the same screen height as previously. */
9317a85d 215
5500c422
GM
216Lisp_Object Vscroll_preserve_screen_position;
217
218#if 0 /* This isn't used anywhere. */
91a78190 219/* Nonzero means we can split a frame even if it is "unsplittable". */
eddd51c2 220static int inhibit_frame_unsplittable;
5500c422 221#endif /* 0 */
7d601aaa 222
7ab12479 223#define min(a, b) ((a) < (b) ? (a) : (b))
dba06815 224
9317a85d
RS
225extern int scroll_margin;
226
dba06815 227extern Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions;
7ab12479
JB
228\f
229DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0,
413430c5
EN
230 "Returns t if OBJECT is a window.")
231 (object)
232 Lisp_Object object;
7ab12479 233{
413430c5 234 return WINDOWP (object) ? Qt : Qnil;
7ab12479
JB
235}
236
806b4d9b 237DEFUN ("window-live-p", Fwindow_live_p, Swindow_live_p, 1, 1, 0,
413430c5
EN
238 "Returns t if OBJECT is a window which is currently visible.")
239 (object)
240 Lisp_Object object;
605be8af 241{
9e571f49 242 return WINDOW_LIVE_P (object) ? Qt : Qnil;
605be8af
JB
243}
244
7ab12479
JB
245Lisp_Object
246make_window ()
247{
cffec418 248 Lisp_Object val;
7ab12479 249 register struct window *p;
cffec418
KH
250 register struct Lisp_Vector *vec;
251 int i;
252
253 vec = allocate_vectorlike ((EMACS_INT) VECSIZE (struct window));
254 for (i = 0; i < VECSIZE (struct window); i++)
255 vec->contents[i] = Qnil;
256 vec->size = VECSIZE (struct window);
5500c422 257 p = (struct window *) vec;
d834a2e9
KH
258 XSETFASTINT (p->sequence_number, ++sequence_number);
259 XSETFASTINT (p->left, 0);
260 XSETFASTINT (p->top, 0);
261 XSETFASTINT (p->height, 0);
262 XSETFASTINT (p->width, 0);
263 XSETFASTINT (p->hscroll, 0);
ea68264b 264 XSETFASTINT (p->min_hscroll, 0);
f984d4fc 265 p->orig_top = p->orig_height = Qnil;
7ab12479
JB
266 p->start = Fmake_marker ();
267 p->pointm = Fmake_marker ();
d834a2e9 268 XSETFASTINT (p->use_time, 0);
44fa5b1e 269 p->frame = Qnil;
7ab12479
JB
270 p->display_table = Qnil;
271 p->dedicated = Qnil;
5500c422
GM
272 p->pseudo_window_p = 0;
273 bzero (&p->cursor, sizeof (p->cursor));
274 bzero (&p->last_cursor, sizeof (p->last_cursor));
275 bzero (&p->phys_cursor, sizeof (p->phys_cursor));
276 p->desired_matrix = p->current_matrix = 0;
277 p->phys_cursor_type = -1;
278 p->must_be_updated_p = 0;
279 XSETFASTINT (p->window_end_vpos, 0);
280 XSETFASTINT (p->window_end_pos, 0);
281 p->window_end_valid = Qnil;
282 p->vscroll = 0;
cffec418 283 XSETWINDOW (val, p);
5500c422 284 XSETFASTINT (p->last_point, 0);
7bbb5782 285 p->frozen_window_start_p = 0;
67492200
GM
286
287 Vwindow_list = Qnil;
7ab12479
JB
288 return val;
289}
290
291DEFUN ("selected-window", Fselected_window, Sselected_window, 0, 0, 0,
292 "Return the window that the cursor now appears in and commands apply to.")
293 ()
294{
295 return selected_window;
296}
297
83762ba4
JB
298DEFUN ("minibuffer-window", Fminibuffer_window, Sminibuffer_window, 0, 1, 0,
299 "Return the window used now for minibuffers.\n\
300If the optional argument FRAME is specified, return the minibuffer window\n\
301used by that frame.")
302 (frame)
303 Lisp_Object frame;
7ab12479 304{
83762ba4 305 if (NILP (frame))
1ae1a37d
GM
306 frame = selected_frame;
307 CHECK_LIVE_FRAME (frame, 0);
83762ba4 308 return FRAME_MINIBUF_WINDOW (XFRAME (frame));
7ab12479
JB
309}
310
605be8af 311DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p, Swindow_minibuffer_p, 0, 1, 0,
7ab12479
JB
312 "Returns non-nil if WINDOW is a minibuffer window.")
313 (window)
314 Lisp_Object window;
315{
316 struct window *w = decode_window (window);
53bb6b99 317 return MINI_WINDOW_P (w) ? Qt : Qnil;
81e4d465
MB
318}
319
320
7ab12479 321DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p,
81e4d465 322 Spos_visible_in_window_p, 0, 3, 0,
44fa5b1e 323 "Return t if position POS is currently on the frame in WINDOW.\n\
53bb6b99 324Return nil if that position is scrolled vertically out of view.\n\
5cdb3cf3
MB
325If a character is only partially visible, nil is returned, unless the\n\
326optional argument PARTIALLY is non-nil.\n\
f28b75a9 327POS defaults to point in WINDOW; WINDOW defaults to the selected window.")
5cdb3cf3
MB
328 (pos, window, partially)
329 Lisp_Object pos, window, partially;
7ab12479
JB
330{
331 register struct window *w;
7ab12479
JB
332 register int posint;
333 register struct buffer *buf;
9a132b1f
GM
334 struct text_pos top;
335 Lisp_Object in_window;
53bb6b99 336 int fully_p;
7ab12479 337
f28b75a9
MB
338 w = decode_window (window);
339 buf = XBUFFER (w->buffer);
340 SET_TEXT_POS_FROM_MARKER (top, w->start);
341
342 if (!NILP (pos))
7ab12479
JB
343 {
344 CHECK_NUMBER_COERCE_MARKER (pos, 0);
345 posint = XINT (pos);
346 }
f28b75a9
MB
347 else if (w == XWINDOW (selected_window))
348 posint = PT;
349 else
350 posint = XMARKER (w->pointm)->charpos;
7ab12479 351
53bb6b99 352 /* If position is above window start, it's not visible. */
5500c422 353 if (posint < CHARPOS (top))
9a132b1f
GM
354 in_window = Qnil;
355 else if (XFASTINT (w->last_modified) >= BUF_MODIFF (buf)
81e4d465
MB
356 && XFASTINT (w->last_overlay_modified) >= BUF_OVERLAY_MODIFF (buf)
357 && posint < BUF_Z (buf) - XFASTINT (w->window_end_pos))
81e4d465 358 {
53bb6b99
GM
359 /* If frame is up-to-date, and POSINT is < window end pos, use
360 that info. This doesn't work for POSINT == end pos, because
361 the window end pos is actually the position _after_ the last
362 char in the window. */
5cdb3cf3 363 if (NILP (partially))
53bb6b99 364 {
5cdb3cf3 365 pos_visible_p (w, posint, &fully_p, NILP (partially));
53bb6b99
GM
366 in_window = fully_p ? Qt : Qnil;
367 }
81e4d465 368 else
53bb6b99 369 in_window = Qt;
81e4d465 370 }
9a132b1f
GM
371 else if (posint > BUF_ZV (buf))
372 in_window = Qnil;
373 else if (CHARPOS (top) < BUF_BEGV (buf) || CHARPOS (top) > BUF_ZV (buf))
374 /* If window start is out of range, do something reasonable. */
375 in_window = Qnil;
7ab12479
JB
376 else
377 {
5cdb3cf3
MB
378 if (pos_visible_p (w, posint, &fully_p, NILP (partially)))
379 in_window = !NILP (partially) || fully_p ? Qt : Qnil;
81e4d465
MB
380 else
381 in_window = Qnil;
7ab12479 382 }
9a132b1f
GM
383
384 return in_window;
7ab12479 385}
53bb6b99 386
7ab12479
JB
387\f
388static struct window *
389decode_window (window)
390 register Lisp_Object window;
391{
265a9e55 392 if (NILP (window))
7ab12479
JB
393 return XWINDOW (selected_window);
394
605be8af 395 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
396 return XWINDOW (window);
397}
398
399DEFUN ("window-buffer", Fwindow_buffer, Swindow_buffer, 0, 1, 0,
400 "Return the buffer that WINDOW is displaying.")
401 (window)
402 Lisp_Object window;
403{
404 return decode_window (window)->buffer;
405}
406
407DEFUN ("window-height", Fwindow_height, Swindow_height, 0, 1, 0,
408 "Return the number of lines in WINDOW (including its mode line).")
409 (window)
410 Lisp_Object window;
411{
412 return decode_window (window)->height;
413}
414
415DEFUN ("window-width", Fwindow_width, Swindow_width, 0, 1, 0,
3b5908ef
RS
416 "Return the number of display columns in WINDOW.\n\
417This is the width that is usable columns available for text in WINDOW.\n\
418If you want to find out how many columns WINDOW takes up,\n\
419use (let ((edges (window-edges))) (- (nth 2 edges) (nth 0 edges))).")
7ab12479
JB
420 (window)
421 Lisp_Object window;
422{
ee61d94e 423 return make_number (window_internal_width (decode_window (window)));
7ab12479
JB
424}
425
426DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0,
427 "Return the number of columns by which WINDOW is scrolled from left margin.")
428 (window)
429 Lisp_Object window;
430{
431 return decode_window (window)->hscroll;
432}
433
434DEFUN ("set-window-hscroll", Fset_window_hscroll, Sset_window_hscroll, 2, 2, 0,
435 "Set number of columns WINDOW is scrolled from left margin to NCOL.\n\
436NCOL should be zero or positive.")
437 (window, ncol)
ea68264b 438 Lisp_Object window, ncol;
7ab12479 439{
ea68264b
GM
440 struct window *w = decode_window (window);
441 int hscroll;
7ab12479
JB
442
443 CHECK_NUMBER (ncol, 1);
ea68264b
GM
444 hscroll = max (0, XINT (ncol));
445
446 /* Prevent redisplay shortcuts when changing the hscroll. */
447 if (XINT (w->hscroll) != hscroll)
b1599b4c 448 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
ea68264b 449
c67fa410 450 w->hscroll = make_number (hscroll);
7ab12479
JB
451 return ncol;
452}
453
190eb263
RS
454DEFUN ("window-redisplay-end-trigger", Fwindow_redisplay_end_trigger,
455 Swindow_redisplay_end_trigger, 0, 1, 0,
456 "Return WINDOW's redisplay end trigger value.\n\
457See `set-window-redisplay-end-trigger' for more information.")
458 (window)
459 Lisp_Object window;
460{
461 return decode_window (window)->redisplay_end_trigger;
462}
463
464DEFUN ("set-window-redisplay-end-trigger", Fset_window_redisplay_end_trigger,
465 Sset_window_redisplay_end_trigger, 2, 2, 0,
466 "Set WINDOW's redisplay end trigger value to VALUE.\n\
467VALUE should be a buffer position (typically a marker) or nil.\n\
76854cf2
RS
468If it is a buffer position, then if redisplay in WINDOW reaches a position\n\
469beyond VALUE, the functions in `redisplay-end-trigger-functions' are called\n\
470with two arguments: WINDOW, and the end trigger value.\n\
471Afterwards the end-trigger value is reset to nil.")
190eb263
RS
472 (window, value)
473 register Lisp_Object window, value;
474{
475 register struct window *w;
476
477 w = decode_window (window);
478 w->redisplay_end_trigger = value;
479 return value;
480}
481
7ab12479
JB
482DEFUN ("window-edges", Fwindow_edges, Swindow_edges, 0, 1, 0,
483 "Return a list of the edge coordinates of WINDOW.\n\
44fa5b1e 484\(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.\n\
7ab12479
JB
485RIGHT is one more than the rightmost column used by WINDOW,\n\
486and BOTTOM is one more than the bottommost row used by WINDOW\n\
487 and its mode-line.")
488 (window)
489 Lisp_Object window;
490{
491 register struct window *w = decode_window (window);
492
493 return Fcons (w->left, Fcons (w->top,
111e5992 494 Fcons (make_number (WINDOW_RIGHT_EDGE (w)),
7ab12479
JB
495 Fcons (make_number (XFASTINT (w->top)
496 + XFASTINT (w->height)),
497 Qnil))));
498}
499
fbad6f9a 500/* Test if the character at column *X, row *Y is within window W.
d5783c40
JB
501 If it is not, return 0;
502 if it is in the window's text area,
503 set *x and *y to its location relative to the upper left corner
504 of the window, and
505 return 1;
506 if it is on the window's modeline, return 2;
507 if it is on the border between the window and its right sibling,
5500c422
GM
508 return 3.
509 if it is on the window's top line, return 4;
fbad6f9a
GM
510 if it is in the bitmap area to the left/right of the window,
511 return 5 or 6, and convert *X and *Y to window-relative corrdinates.
5500c422
GM
512
513 X and Y are frame relative pixel coordinates. */
514
7442878f 515static enum window_part
d5783c40
JB
516coordinates_in_window (w, x, y)
517 register struct window *w;
518 register int *x, *y;
519{
1cb794ba
GM
520 /* Let's make this a global enum later, instead of using numbers
521 everywhere. */
b0228ace
GM
522 struct frame *f = XFRAME (WINDOW_FRAME (w));
523 int left_x, right_x, top_y, bottom_y;
524 int flags_area_width = FRAME_LEFT_FLAGS_AREA_WIDTH (f);
7442878f 525 enum window_part part;
b0228ace
GM
526 int ux = CANON_X_UNIT (f), uy = CANON_Y_UNIT (f);
527 int x0 = XFASTINT (w->left) * ux;
528 int x1 = x0 + XFASTINT (w->width) * ux;
529
530 if (*x < x0 || *x >= x1)
531 return ON_NOTHING;
532
466539bc
EZ
533 /* In what's below, we subtract 1 when computing right_x because we
534 want the rightmost pixel, which is given by left_pixel+width-1. */
5500c422
GM
535 if (w->pseudo_window_p)
536 {
537 left_x = 0;
b0228ace 538 right_x = XFASTINT (w->width) * CANON_X_UNIT (f) - 1;
5500c422
GM
539 top_y = WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y (w);
540 bottom_y = WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y (w);
541 }
542 else
543 {
2add4349 544 left_x = (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X (w)
50df5e5a 545 - FRAME_INTERNAL_BORDER_WIDTH_SAFE (f));
466539bc 546 right_x = WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X (w) - 1;
2add4349 547 top_y = (WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y (w)
50df5e5a 548 - FRAME_INTERNAL_BORDER_WIDTH_SAFE (f));
5500c422
GM
549 bottom_y = WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y (w);
550 }
37962e60 551
1cb794ba
GM
552 /* On the mode line or header line? If it's near the start of
553 the mode or header line of window that's has a horizontal
554 sibling, say it's on the vertical line. That's to be able
555 to resize windows horizontally in case we're using toolkit
556 scroll bars. */
b0228ace 557
1cb794ba 558 if (WINDOW_WANTS_MODELINE_P (w)
b0228ace
GM
559 && *y >= bottom_y - CURRENT_MODE_LINE_HEIGHT (w)
560 && *y < bottom_y)
1cb794ba 561 {
b0228ace
GM
562 /* We're somewhere on the mode line. We consider the place
563 between mode lines of horizontally adjacent mode lines
564 as the vertical border. If scroll bars on the left,
565 return the right window. */
566 part = ON_MODE_LINE;
567
568 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
569 {
570 if (abs (*x - x0) < ux / 2)
571 part = ON_VERTICAL_BORDER;
572 }
573 else if (!WINDOW_RIGHTMOST_P (w) && abs (*x - x1) < ux / 2)
574 part = ON_VERTICAL_BORDER;
1cb794ba 575 }
b0228ace
GM
576 else if (WINDOW_WANTS_HEADER_LINE_P (w)
577 && *y < top_y + CURRENT_HEADER_LINE_HEIGHT (w)
578 && *y >= top_y)
579 {
580 part = ON_HEADER_LINE;
581
582 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
583 {
584 if (abs (*x - x0) < ux / 2)
585 part = ON_VERTICAL_BORDER;
586 }
587 else if (!WINDOW_RIGHTMOST_P (w) && abs (*x - x1) < ux / 2)
588 part = ON_VERTICAL_BORDER;
589 }
590 /* Outside anything interesting? */
591 else if (*y < top_y
592 || *y >= bottom_y
593 || *x < (left_x
594 - flags_area_width
595 - FRAME_LEFT_SCROLL_BAR_WIDTH (f) * ux)
7442878f
GM
596 || *x > (right_x
597 + flags_area_width
598 + FRAME_RIGHT_SCROLL_BAR_WIDTH (f) * ux))
1cb794ba 599 {
b0228ace 600 part = ON_NOTHING;
1cb794ba 601 }
b0228ace 602 else if (FRAME_WINDOW_P (f))
fbad6f9a 603 {
447e9da0
GM
604 if (!w->pseudo_window_p
605 && !FRAME_HAS_VERTICAL_SCROLL_BARS (f)
606 && !WINDOW_RIGHTMOST_P (w)
b0228ace
GM
607 && (abs (*x - right_x - flags_area_width) < ux / 2))
608 {
609 part = ON_VERTICAL_BORDER;
610 }
611 else if (*x < left_x || *x > right_x)
447e9da0
GM
612 {
613 /* Other lines than the mode line don't include flags areas and
614 scroll bars on the left. */
fbad6f9a 615
447e9da0
GM
616 /* Convert X and Y to window-relative pixel coordinates. */
617 *x -= left_x;
618 *y -= top_y;
b0228ace
GM
619 part = *x < left_x ? ON_LEFT_FRINGE : ON_RIGHT_FRINGE;
620 }
621 else
622 {
623 *x -= left_x;
624 *y -= top_y;
625 part = ON_TEXT;
447e9da0 626 }
fbad6f9a 627 }
447e9da0
GM
628 else
629 {
630 /* Need to say "*x > right_x" rather than >=, since on character
631 terminals, the vertical line's x coordinate is right_x. */
632 if (*x < left_x || *x > right_x)
633 {
634 /* Other lines than the mode line don't include flags areas and
635 scroll bars on the left. */
636
637 /* Convert X and Y to window-relative pixel coordinates. */
638 *x -= left_x;
639 *y -= top_y;
b0228ace 640 part = *x < left_x ? ON_LEFT_FRINGE : ON_RIGHT_FRINGE;
447e9da0 641 }
447e9da0 642 /* Here, too, "*x > right_x" is because of character terminals. */
b0228ace
GM
643 else if (!w->pseudo_window_p
644 && !WINDOW_RIGHTMOST_P (w)
645 && *x > right_x - ux)
646 {
647 /* On the border on the right side of the window? Assume that
648 this area begins at RIGHT_X minus a canonical char width. */
649 part = ON_VERTICAL_BORDER;
650 }
651 else
652 {
653 /* Convert X and Y to window-relative pixel coordinates. */
654 *x -= left_x;
655 *y -= top_y;
656 part = ON_TEXT;
657 }
447e9da0 658 }
b0228ace
GM
659
660 return part;
d5783c40
JB
661}
662
b0228ace 663
d5783c40
JB
664DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p,
665 Scoordinates_in_window_p, 2, 2, 0,
666 "Return non-nil if COORDINATES are in WINDOW.\n\
1113d9db 667COORDINATES is a cons of the form (X . Y), X and Y being distances\n\
44fa5b1e 668measured in characters from the upper-left corner of the frame.\n\
7442878f 669\(0 . 0) denotes the character in the upper left corner of the\n\
44fa5b1e 670frame.\n\
d5783c40
JB
671If COORDINATES are in the text portion of WINDOW,\n\
672 the coordinates relative to the window are returned.\n\
e5d77022 673If they are in the mode line of WINDOW, `mode-line' is returned.\n\
045dee35 674If they are in the top mode line of WINDOW, `header-line' is returned.\n\
7442878f
GM
675If they are in the fringe to the left of the window,\n\
676 `left-fringe' is returned, if they are in the area on the right of\n\
677 the window, `right-fringe' is returned.\n\
d5783c40 678If they are on the border between WINDOW and its right sibling,\n\
e5d77022 679 `vertical-line' is returned.")
d5783c40
JB
680 (coordinates, window)
681 register Lisp_Object coordinates, window;
682{
5500c422
GM
683 struct window *w;
684 struct frame *f;
d5783c40 685 int x, y;
5500c422 686 Lisp_Object lx, ly;
d5783c40 687
605be8af 688 CHECK_LIVE_WINDOW (window, 0);
5500c422
GM
689 w = XWINDOW (window);
690 f = XFRAME (w->frame);
d5783c40 691 CHECK_CONS (coordinates, 1);
5500c422
GM
692 lx = Fcar (coordinates);
693 ly = Fcdr (coordinates);
694 CHECK_NUMBER_OR_FLOAT (lx, 1);
695 CHECK_NUMBER_OR_FLOAT (ly, 1);
696 x = PIXEL_X_FROM_CANON_X (f, lx);
697 y = PIXEL_Y_FROM_CANON_Y (f, ly);
698
699 switch (coordinates_in_window (w, &x, &y))
d5783c40 700 {
7442878f 701 case ON_NOTHING:
d5783c40
JB
702 return Qnil;
703
7442878f
GM
704 case ON_TEXT:
705 /* X and Y are now window relative pixel coordinates. Convert
706 them to canonical char units before returning them. */
5500c422
GM
707 return Fcons (CANON_X_FROM_PIXEL_X (f, x),
708 CANON_Y_FROM_PIXEL_Y (f, y));
d5783c40 709
7442878f 710 case ON_MODE_LINE:
d5783c40 711 return Qmode_line;
37962e60 712
7442878f 713 case ON_VERTICAL_BORDER:
e5d77022 714 return Qvertical_line;
d5783c40 715
7442878f 716 case ON_HEADER_LINE:
045dee35 717 return Qheader_line;
5500c422 718
7442878f
GM
719 case ON_LEFT_FRINGE:
720 return Qleft_fringe;
fbad6f9a 721
7442878f
GM
722 case ON_RIGHT_FRINGE:
723 return Qright_fringe;
fbad6f9a 724
d5783c40
JB
725 default:
726 abort ();
727 }
728}
729
67492200
GM
730
731/* Callback for foreach_window, used in window_from_coordinates.
f95464e4
GM
732 Check if window W contains coordinates specified by USER_DATA which
733 is actually a pointer to a struct check_window_data CW.
734
735 Check if window W contains coordinates *CW->x and *CW->y. If it
736 does, return W in *CW->window, as Lisp_Object, and return in
5372262f 737 *CW->part the part of the window under coordinates *X,*Y. Return
f95464e4
GM
738 zero from this function to stop iterating over windows. */
739
740struct check_window_data
741{
742 Lisp_Object *window;
743 int *x, *y, *part;
744};
67492200
GM
745
746static int
f95464e4 747check_window_containing (w, user_data)
67492200 748 struct window *w;
f95464e4 749 void *user_data;
67492200 750{
f95464e4 751 struct check_window_data *cw = (struct check_window_data *) user_data;
7442878f
GM
752 enum window_part found;
753 int continue_p = 1;
67492200 754
f95464e4 755 found = coordinates_in_window (w, cw->x, cw->y);
7442878f 756 if (found != ON_NOTHING)
67492200 757 {
f95464e4
GM
758 *cw->part = found - 1;
759 XSETWINDOW (*cw->window, w);
7442878f 760 continue_p = 0;
67492200
GM
761 }
762
7442878f 763 return continue_p;
67492200
GM
764}
765
766
5500c422
GM
767/* Find the window containing frame-relative pixel position X/Y and
768 return it as a Lisp_Object. If X, Y is on the window's modeline,
769 set *PART to 1; if it is on the separating line between the window
770 and its right sibling, set it to 2; otherwise set it to 0. If
771 there is no window under X, Y return nil and leave *PART
67492200
GM
772 unmodified. TOOL_BAR_P non-zero means detect tool-bar windows.
773
774 This function was previously implemented with a loop cycling over
775 windows with Fnext_window, and starting with the frame's selected
776 window. It turned out that this doesn't work with an
777 implementation of next_window using Vwindow_list, because
778 FRAME_SELECTED_WINDOW (F) is not always contained in the window
779 tree of F when this function is called asynchronously from
780 note_mouse_highlight. The original loop didn't terminate in this
781 case. */
5500c422 782
7ab12479 783Lisp_Object
67492200
GM
784window_from_coordinates (f, x, y, part, tool_bar_p)
785 struct frame *f;
7ab12479 786 int x, y;
d5783c40 787 int *part;
9ea173e8 788 int tool_bar_p;
7ab12479 789{
67492200 790 Lisp_Object window;
f95464e4 791 struct check_window_data cw;
5500c422 792
67492200 793 window = Qnil;
f95464e4
GM
794 cw.window = &window, cw.x = &x, cw.y = &y; cw.part = part;
795 foreach_window (f, check_window_containing, &cw);
67492200
GM
796
797 /* If not found above, see if it's in the tool bar window, if a tool
798 bar exists. */
799 if (NILP (window)
800 && tool_bar_p
801 && WINDOWP (f->tool_bar_window)
802 && XINT (XWINDOW (f->tool_bar_window)->height) > 0
7442878f
GM
803 && (coordinates_in_window (XWINDOW (f->tool_bar_window), &x, &y)
804 != ON_NOTHING))
5500c422
GM
805 {
806 *part = 0;
67492200 807 window = f->tool_bar_window;
5500c422 808 }
37962e60 809
67492200 810 return window;
7ab12479
JB
811}
812
ab17c3f2 813DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0,
b0c33a94 814 "Return window containing coordinates X and Y on FRAME.\n\
44fa5b1e
JB
815If omitted, FRAME defaults to the currently selected frame.\n\
816The top left corner of the frame is considered to be row 0,\n\
95605e15 817column 0.")
b0c33a94
RS
818 (x, y, frame)
819 Lisp_Object x, y, frame;
7ab12479
JB
820{
821 int part;
5500c422 822 struct frame *f;
7ab12479 823
44fa5b1e 824 if (NILP (frame))
1ae1a37d
GM
825 frame = selected_frame;
826 CHECK_LIVE_FRAME (frame, 2);
5500c422 827 f = XFRAME (frame);
7ab12479 828
5500c422
GM
829 /* Check that arguments are integers or floats. */
830 CHECK_NUMBER_OR_FLOAT (x, 0);
831 CHECK_NUMBER_OR_FLOAT (y, 1);
832
833 return window_from_coordinates (f,
834 PIXEL_X_FROM_CANON_X (f, x),
835 PIXEL_Y_FROM_CANON_Y (f, y),
836 &part, 0);
7ab12479
JB
837}
838
839DEFUN ("window-point", Fwindow_point, Swindow_point, 0, 1, 0,
840 "Return current value of point in WINDOW.\n\
841For a nonselected window, this is the value point would have\n\
842if that window were selected.\n\
843\n\
844Note that, when WINDOW is the selected window and its buffer\n\
845is also currently selected, the value returned is the same as (point).\n\
846It would be more strictly correct to return the `top-level' value\n\
847of point, outside of any save-excursion forms.\n\
848But that is hard to define.")
849 (window)
850 Lisp_Object window;
851{
852 register struct window *w = decode_window (window);
853
854 if (w == XWINDOW (selected_window)
855 && current_buffer == XBUFFER (w->buffer))
856 return Fpoint ();
857 return Fmarker_position (w->pointm);
858}
859
860DEFUN ("window-start", Fwindow_start, Swindow_start, 0, 1, 0,
0fea6c40
RS
861 "Return position at which display currently starts in WINDOW.\n\
862This is updated by redisplay or by calling `set-window-start'.")
7ab12479
JB
863 (window)
864 Lisp_Object window;
865{
866 return Fmarker_position (decode_window (window)->start);
867}
868
8646118f
RS
869/* This is text temporarily removed from the doc string below.
870
7250968e
RS
871This function returns nil if the position is not currently known.\n\
872That happens when redisplay is preempted and doesn't finish.\n\
873If in that case you want to compute where the end of the window would\n\
874have been if redisplay had finished, do this:\n\
875 (save-excursion\n\
876 (goto-char (window-start window))\n\
877 (vertical-motion (1- (window-height window)) window)\n\
8646118f
RS
878 (point))") */
879
478292ed 880DEFUN ("window-end", Fwindow_end, Swindow_end, 0, 2, 0,
8646118f
RS
881 "Return position at which display currently ends in WINDOW.\n\
882This is updated by redisplay, when it runs to completion.\n\
883Simply changing the buffer text or setting `window-start'\n\
478292ed 884does not update this value.\n\
dffde83f 885If UPDATE is non-nil, compute the up-to-date position\n\
478292ed
RS
886if it isn't already recorded.")
887 (window, update)
888 Lisp_Object window, update;
7ab12479
JB
889{
890 Lisp_Object value;
891 struct window *w = decode_window (window);
5a41ab94
RS
892 Lisp_Object buf;
893
894 buf = w->buffer;
895 CHECK_BUFFER (buf, 0);
896
8646118f 897#if 0 /* This change broke some things. We should make it later. */
7250968e
RS
898 /* If we don't know the end position, return nil.
899 The user can compute it with vertical-motion if he wants to.
900 It would be nicer to do it automatically,
901 but that's so slow that it would probably bother people. */
902 if (NILP (w->window_end_valid))
903 return Qnil;
8646118f 904#endif
7250968e 905
478292ed
RS
906 if (! NILP (update)
907 && ! (! NILP (w->window_end_valid)
908 && XFASTINT (w->last_modified) >= MODIFF))
909 {
cbc099e5
GM
910 struct text_pos startp;
911 struct it it;
2d6d9df0
GM
912
913 /* In case W->start is out of the range, use something
914 reasonable. This situation occured when loading a file with
915 `-l' containing a call to `rmail' with subsequent other
916 commands. At the end, W->start happened to be BEG, while
cbc099e5 917 rmail had already narrowed the buffer. */
2d6d9df0 918 if (XMARKER (w->start)->charpos < BEGV)
cbc099e5 919 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
2d6d9df0 920 else if (XMARKER (w->start)->charpos > ZV)
cbc099e5 921 SET_TEXT_POS (startp, ZV, ZV_BYTE);
2d6d9df0 922 else
cbc099e5
GM
923 SET_TEXT_POS_FROM_MARKER (startp, w->start);
924
925 /* Cannot use Fvertical_motion because that function doesn't
926 cope with variable-height lines. */
927 start_display (&it, w, startp);
928 move_it_vertically (&it, window_box_height (w));
2f3cad6c 929 move_it_past_eol (&it);
cbc099e5 930 value = make_number (IT_CHARPOS (it));
478292ed
RS
931 }
932 else
cbc099e5 933 XSETINT (value, BUF_Z (XBUFFER (buf)) - XFASTINT (w->window_end_pos));
7ab12479
JB
934
935 return value;
936}
937
938DEFUN ("set-window-point", Fset_window_point, Sset_window_point, 2, 2, 0,
939 "Make point value in WINDOW be at position POS in WINDOW's buffer.")
940 (window, pos)
941 Lisp_Object window, pos;
942{
943 register struct window *w = decode_window (window);
944
945 CHECK_NUMBER_COERCE_MARKER (pos, 1);
e90c4fe6
RS
946 if (w == XWINDOW (selected_window)
947 && XBUFFER (w->buffer) == current_buffer)
7ab12479
JB
948 Fgoto_char (pos);
949 else
950 set_marker_restricted (w->pointm, pos, w->buffer);
799417bd 951
0685cb3c
GM
952 /* We have to make sure that redisplay updates the window to show
953 the new value of point. */
954 if (!EQ (window, selected_window))
799417bd 955 ++windows_or_buffers_changed;
ce7fae7d 956
7ab12479
JB
957 return pos;
958}
959
960DEFUN ("set-window-start", Fset_window_start, Sset_window_start, 2, 3, 0,
961 "Make display in WINDOW start at position POS in WINDOW's buffer.\n\
962Optional third arg NOFORCE non-nil inhibits next redisplay\n\
963from overriding motion of point in order to display at this exact start.")
964 (window, pos, noforce)
965 Lisp_Object window, pos, noforce;
966{
967 register struct window *w = decode_window (window);
968
969 CHECK_NUMBER_COERCE_MARKER (pos, 1);
970 set_marker_restricted (w->start, pos, w->buffer);
971 /* this is not right, but much easier than doing what is right. */
972 w->start_at_line_beg = Qnil;
265a9e55 973 if (NILP (noforce))
7ab12479
JB
974 w->force_start = Qt;
975 w->update_mode_line = Qt;
d834a2e9 976 XSETFASTINT (w->last_modified, 0);
3cd21523 977 XSETFASTINT (w->last_overlay_modified, 0);
62c07cc7
JB
978 if (!EQ (window, selected_window))
979 windows_or_buffers_changed++;
ce7fae7d 980
7ab12479
JB
981 return pos;
982}
983
984DEFUN ("window-dedicated-p", Fwindow_dedicated_p, Swindow_dedicated_p,
985 1, 1, 0,
986 "Return WINDOW's dedicated object, usually t or nil.\n\
1f18c48f 987See also `set-window-dedicated-p'.")
7ab12479
JB
988 (window)
989 Lisp_Object window;
990{
991 return decode_window (window)->dedicated;
992}
993
d207b766
RS
994DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p,
995 Sset_window_dedicated_p, 2, 2, 0,
996 "Control whether WINDOW is dedicated to the buffer it displays.\n\
997If it is dedicated, Emacs will not automatically change\n\
998which buffer appears in it.\n\
999The second argument is the new value for the dedication flag;\n\
1000non-nil means yes.")
7ab12479
JB
1001 (window, arg)
1002 Lisp_Object window, arg;
1003{
1004 register struct window *w = decode_window (window);
1005
265a9e55 1006 if (NILP (arg))
7ab12479
JB
1007 w->dedicated = Qnil;
1008 else
d207b766 1009 w->dedicated = Qt;
7ab12479
JB
1010
1011 return w->dedicated;
1012}
1013
1014DEFUN ("window-display-table", Fwindow_display_table, Swindow_display_table,
1015 0, 1, 0,
1016 "Return the display-table that WINDOW is using.")
1017 (window)
1018 Lisp_Object window;
1019{
1020 return decode_window (window)->display_table;
1021}
1022
5500c422
GM
1023/* Get the display table for use on window W. This is either W's
1024 display table or W's buffer's display table. Ignore the specified
1025 tables if they are not valid; if no valid table is specified,
1026 return 0. */
7ab12479 1027
319315f1 1028struct Lisp_Char_Table *
7ab12479
JB
1029window_display_table (w)
1030 struct window *w;
1031{
c756cdbe
GM
1032 struct Lisp_Char_Table *dp = NULL;
1033
1034 if (DISP_TABLE_P (w->display_table))
1035 dp = XCHAR_TABLE (w->display_table);
1036 else if (BUFFERP (w->buffer))
1037 {
1038 struct buffer *b = XBUFFER (w->buffer);
1039
1040 if (DISP_TABLE_P (b->display_table))
1041 dp = XCHAR_TABLE (b->display_table);
1042 else if (DISP_TABLE_P (Vstandard_display_table))
1043 dp = XCHAR_TABLE (Vstandard_display_table);
1044 }
171d003c 1045
c756cdbe 1046 return dp;
7ab12479
JB
1047}
1048
3a2712f9 1049DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_display_table, 2, 2, 0,
7ab12479
JB
1050 "Set WINDOW's display-table to TABLE.")
1051 (window, table)
1052 register Lisp_Object window, table;
1053{
1054 register struct window *w;
7ab12479
JB
1055
1056 w = decode_window (window);
1057 w->display_table = table;
1058 return table;
1059}
1060\f
1061/* Record info on buffer window w is displaying
1062 when it is about to cease to display that buffer. */
dfcf069d 1063static void
7ab12479
JB
1064unshow_buffer (w)
1065 register struct window *w;
1066{
12cae7c0 1067 Lisp_Object buf;
b73ea88e 1068 struct buffer *b;
7ab12479 1069
12cae7c0 1070 buf = w->buffer;
b73ea88e
RS
1071 b = XBUFFER (buf);
1072 if (b != XMARKER (w->pointm)->buffer)
7ab12479
JB
1073 abort ();
1074
573f41ab 1075#if 0
7ab12479
JB
1076 if (w == XWINDOW (selected_window)
1077 || ! EQ (buf, XWINDOW (selected_window)->buffer))
1078 /* Do this except when the selected window's buffer
1079 is being removed from some other window. */
573f41ab
RS
1080#endif
1081 /* last_window_start records the start position that this buffer
1082 had in the last window to be disconnected from it.
1083 Now that this statement is unconditional,
1084 it is possible for the buffer to be displayed in the
1085 selected window, while last_window_start reflects another
1086 window which was recently showing the same buffer.
1087 Some people might say that might be a good thing. Let's see. */
b73ea88e 1088 b->last_window_start = marker_position (w->start);
7ab12479
JB
1089
1090 /* Point in the selected window's buffer
1091 is actually stored in that buffer, and the window's pointm isn't used.
1092 So don't clobber point in that buffer. */
719eaeb1
GM
1093 if (! EQ (buf, XWINDOW (selected_window)->buffer)
1094 /* This line helps to fix Horsley's testbug.el bug. */
8801a864
KR
1095 && !(WINDOWP (b->last_selected_window)
1096 && w != XWINDOW (b->last_selected_window)
719eaeb1 1097 && EQ (buf, XWINDOW (b->last_selected_window)->buffer)))
b73ea88e
RS
1098 temp_set_point_both (b,
1099 clip_to_bounds (BUF_BEGV (b),
1100 XMARKER (w->pointm)->charpos,
1101 BUF_ZV (b)),
1102 clip_to_bounds (BUF_BEGV_BYTE (b),
1103 marker_byte_position (w->pointm),
1104 BUF_ZV_BYTE (b)));
719eaeb1 1105
8801a864
KR
1106 if (WINDOWP (b->last_selected_window)
1107 && w == XWINDOW (b->last_selected_window))
719eaeb1 1108 b->last_selected_window = Qnil;
7ab12479
JB
1109}
1110
1111/* Put replacement into the window structure in place of old. */
dfcf069d 1112static void
7ab12479
JB
1113replace_window (old, replacement)
1114 Lisp_Object old, replacement;
1115{
1116 register Lisp_Object tem;
1117 register struct window *o = XWINDOW (old), *p = XWINDOW (replacement);
1118
44fa5b1e
JB
1119 /* If OLD is its frame's root_window, then replacement is the new
1120 root_window for that frame. */
7ab12479 1121
7f4161e0 1122 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
44fa5b1e 1123 FRAME_ROOT_WINDOW (XFRAME (o->frame)) = replacement;
7ab12479
JB
1124
1125 p->left = o->left;
1126 p->top = o->top;
1127 p->width = o->width;
1128 p->height = o->height;
5500c422
GM
1129 p->desired_matrix = p->current_matrix = 0;
1130 p->vscroll = 0;
1131 bzero (&p->cursor, sizeof (p->cursor));
1132 bzero (&p->last_cursor, sizeof (p->last_cursor));
1133 bzero (&p->phys_cursor, sizeof (p->phys_cursor));
1134 p->phys_cursor_type = -1;
1135 p->must_be_updated_p = 0;
1136 p->pseudo_window_p = 0;
1137 XSETFASTINT (p->window_end_vpos, 0);
1138 XSETFASTINT (p->window_end_pos, 0);
1139 p->window_end_valid = Qnil;
7bbb5782 1140 p->frozen_window_start_p = 0;
f984d4fc 1141 p->orig_top = p->orig_height = Qnil;
7ab12479
JB
1142
1143 p->next = tem = o->next;
265a9e55 1144 if (!NILP (tem))
7ab12479
JB
1145 XWINDOW (tem)->prev = replacement;
1146
1147 p->prev = tem = o->prev;
265a9e55 1148 if (!NILP (tem))
7ab12479
JB
1149 XWINDOW (tem)->next = replacement;
1150
1151 p->parent = tem = o->parent;
265a9e55 1152 if (!NILP (tem))
7ab12479
JB
1153 {
1154 if (EQ (XWINDOW (tem)->vchild, old))
1155 XWINDOW (tem)->vchild = replacement;
1156 if (EQ (XWINDOW (tem)->hchild, old))
1157 XWINDOW (tem)->hchild = replacement;
1158 }
1159
1160/*** Here, if replacement is a vertical combination
1161and so is its new parent, we should make replacement's
1162children be children of that parent instead. ***/
1163}
1164
1165DEFUN ("delete-window", Fdelete_window, Sdelete_window, 0, 1, "",
1166 "Remove WINDOW from the display. Default is selected window.")
1167 (window)
1168 register Lisp_Object window;
543f5fb1
RS
1169{
1170 delete_window (window);
1171
1172 if (! NILP (Vwindow_configuration_change_hook)
1173 && ! NILP (Vrun_hooks))
1174 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
1175
1176 return Qnil;
1177}
1178
5e14b1fc 1179void
543f5fb1
RS
1180delete_window (window)
1181 register Lisp_Object window;
7ab12479
JB
1182{
1183 register Lisp_Object tem, parent, sib;
1184 register struct window *p;
1185 register struct window *par;
951f9df5 1186 struct frame *f;
7ab12479 1187
605be8af
JB
1188 /* Because this function is called by other C code on non-leaf
1189 windows, the CHECK_LIVE_WINDOW macro would choke inappropriately,
1190 so we can't decode_window here. */
265a9e55 1191 if (NILP (window))
7ab12479
JB
1192 window = selected_window;
1193 else
1194 CHECK_WINDOW (window, 0);
7ab12479 1195 p = XWINDOW (window);
605be8af
JB
1196
1197 /* It's okay to delete an already-deleted window. */
1198 if (NILP (p->buffer)
1199 && NILP (p->hchild)
1200 && NILP (p->vchild))
296b535c 1201 return;
605be8af 1202
7ab12479 1203 parent = p->parent;
265a9e55 1204 if (NILP (parent))
7ab12479
JB
1205 error ("Attempt to delete minibuffer or sole ordinary window");
1206 par = XWINDOW (parent);
1207
1208 windows_or_buffers_changed++;
67492200 1209 Vwindow_list = Qnil;
951f9df5
GM
1210 f = XFRAME (WINDOW_FRAME (p));
1211 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
7ab12479 1212
605be8af
JB
1213 /* Are we trying to delete any frame's selected window? */
1214 {
951f9df5 1215 Lisp_Object pwindow;
605be8af 1216
0def0403
RS
1217 /* See if the frame's selected window is either WINDOW
1218 or any subwindow of it, by finding all that window's parents
1219 and comparing each one with WINDOW. */
951f9df5 1220 pwindow = FRAME_SELECTED_WINDOW (f);
0def0403
RS
1221
1222 while (!NILP (pwindow))
1223 {
1224 if (EQ (window, pwindow))
1225 break;
1226 pwindow = XWINDOW (pwindow)->parent;
1227 }
1228
1229 if (EQ (window, pwindow))
605be8af 1230 {
89bca612
RS
1231 Lisp_Object alternative;
1232 alternative = Fnext_window (window, Qlambda, Qnil);
605be8af
JB
1233
1234 /* If we're about to delete the selected window on the
1235 selected frame, then we should use Fselect_window to select
1236 the new window. On the other hand, if we're about to
1237 delete the selected window on any other frame, we shouldn't do
1238 anything but set the frame's selected_window slot. */
1239 if (EQ (window, selected_window))
1240 Fselect_window (alternative);
1241 else
951f9df5 1242 FRAME_SELECTED_WINDOW (f) = alternative;
605be8af
JB
1243 }
1244 }
7ab12479
JB
1245
1246 tem = p->buffer;
1247 /* tem is null for dummy parent windows
1248 (which have inferiors but not any contents themselves) */
265a9e55 1249 if (!NILP (tem))
7ab12479
JB
1250 {
1251 unshow_buffer (p);
1252 unchain_marker (p->pointm);
1253 unchain_marker (p->start);
7ab12479
JB
1254 }
1255
05e71564
GM
1256 /* Free window glyph matrices. It is sure that they are allocated
1257 again when ADJUST_GLYPHS is called. Block input so that expose
1258 events and other events that access glyph matrices are not
1259 processed while we are changing them. */
1260 BLOCK_INPUT;
951f9df5 1261 free_window_matrices (XWINDOW (FRAME_ROOT_WINDOW (f)));
5500c422 1262
7ab12479 1263 tem = p->next;
265a9e55 1264 if (!NILP (tem))
7ab12479
JB
1265 XWINDOW (tem)->prev = p->prev;
1266
1267 tem = p->prev;
265a9e55 1268 if (!NILP (tem))
7ab12479
JB
1269 XWINDOW (tem)->next = p->next;
1270
1271 if (EQ (window, par->hchild))
1272 par->hchild = p->next;
1273 if (EQ (window, par->vchild))
1274 par->vchild = p->next;
1275
1276 /* Find one of our siblings to give our space to. */
1277 sib = p->prev;
265a9e55 1278 if (NILP (sib))
7ab12479
JB
1279 {
1280 /* If p gives its space to its next sibling, that sibling needs
1281 to have its top/left side pulled back to where p's is.
1282 set_window_{height,width} will re-position the sibling's
1283 children. */
1284 sib = p->next;
7f4161e0
JB
1285 XWINDOW (sib)->top = p->top;
1286 XWINDOW (sib)->left = p->left;
7ab12479
JB
1287 }
1288
1289 /* Stretch that sibling. */
265a9e55 1290 if (!NILP (par->vchild))
7ab12479
JB
1291 set_window_height (sib,
1292 XFASTINT (XWINDOW (sib)->height) + XFASTINT (p->height),
1293 1);
265a9e55 1294 if (!NILP (par->hchild))
7ab12479
JB
1295 set_window_width (sib,
1296 XFASTINT (XWINDOW (sib)->width) + XFASTINT (p->width),
1297 1);
1298
1299 /* If parent now has only one child,
1300 put the child into the parent's place. */
7ab12479 1301 tem = par->hchild;
265a9e55 1302 if (NILP (tem))
7ab12479 1303 tem = par->vchild;
265a9e55 1304 if (NILP (XWINDOW (tem)->next))
7ab12479 1305 replace_window (parent, tem);
605be8af
JB
1306
1307 /* Since we may be deleting combination windows, we must make sure that
1308 not only p but all its children have been marked as deleted. */
1309 if (! NILP (p->hchild))
1310 delete_all_subwindows (XWINDOW (p->hchild));
1311 else if (! NILP (p->vchild))
1312 delete_all_subwindows (XWINDOW (p->vchild));
1313
1314 /* Mark this window as deleted. */
1315 p->buffer = p->hchild = p->vchild = Qnil;
5500c422
GM
1316
1317 /* Adjust glyph matrices. */
951f9df5 1318 adjust_glyphs (f);
05e71564 1319 UNBLOCK_INPUT;
7ab12479 1320}
67492200
GM
1321
1322
7ab12479 1323\f
67492200
GM
1324/***********************************************************************
1325 Window List
1326 ***********************************************************************/
1327
f95464e4
GM
1328/* Add window W to *USER_DATA. USER_DATA is actually a Lisp_Object
1329 pointer. This is a callback function for foreach_window, used in
1330 function window_list. */
67492200
GM
1331
1332static int
f95464e4 1333add_window_to_list (w, user_data)
67492200 1334 struct window *w;
f95464e4 1335 void *user_data;
67492200 1336{
f95464e4 1337 Lisp_Object *list = (Lisp_Object *) user_data;
67492200
GM
1338 Lisp_Object window;
1339 XSETWINDOW (window, w);
212116d6 1340 *list = Fcons (window, *list);
67492200
GM
1341 return 1;
1342}
1343
1344
1345/* Return a list of all windows, for use by next_window. If
1346 Vwindow_list is a list, return that list. Otherwise, build a new
1347 list, cache it in Vwindow_list, and return that. */
1348
1349static Lisp_Object
1350window_list ()
1351{
1352 if (!CONSP (Vwindow_list))
1353 {
1354 Lisp_Object tail;
212116d6 1355
67492200
GM
1356 Vwindow_list = Qnil;
1357 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
212116d6
GM
1358 {
1359 Lisp_Object args[2];
1360
1361 /* We are visiting windows in canonical order, and add
1362 new windows at the front of args[1], which means we
1363 have to reverse this list at the end. */
1364 args[1] = Qnil;
1365 foreach_window (XFRAME (XCAR (tail)), add_window_to_list, &args[1]);
1366 args[0] = Vwindow_list;
1367 args[1] = Fnreverse (args[1]);
1368 Vwindow_list = Fnconc (2, args);
1369 }
67492200
GM
1370 }
1371
1372 return Vwindow_list;
1373}
1374
1375
118ea242
GM
1376/* Value is non-zero if WINDOW satisfies the constraints given by
1377 OWINDOW, MINIBUF and ALL_FRAMES.
67492200 1378
118ea242
GM
1379 MINIBUF t means WINDOW may be minibuffer windows.
1380 `lambda' means WINDOW may not be a minibuffer window.
1381 a window means a specific minibuffer window
67492200 1382
118ea242
GM
1383 ALL_FRAMES t means search all frames,
1384 nil means search just current frame,
1385 `visible' means search just visible frames,
1386 0 means search visible and iconified frames,
1387 a window means search the frame that window belongs to,
1388 a frame means consider windows on that frame, only. */
67492200
GM
1389
1390static int
118ea242
GM
1391candidate_window_p (window, owindow, minibuf, all_frames)
1392 Lisp_Object window, owindow, minibuf, all_frames;
67492200
GM
1393{
1394 struct window *w = XWINDOW (window);
1395 struct frame *f = XFRAME (w->frame);
1396 int candidate_p = 1;
1397
1398 if (!BUFFERP (w->buffer))
1399 candidate_p = 0;
1400 else if (MINI_WINDOW_P (w)
1401 && (EQ (minibuf, Qlambda)
1402 || (WINDOWP (minibuf) && !EQ (minibuf, window))))
1403 {
1404 /* If MINIBUF is `lambda' don't consider any mini-windows.
1405 If it is a window, consider only that one. */
1406 candidate_p = 0;
1407 }
118ea242
GM
1408 else if (EQ (all_frames, Qt))
1409 candidate_p = 1;
67492200 1410 else if (NILP (all_frames))
118ea242
GM
1411 {
1412 xassert (WINDOWP (owindow));
1413 candidate_p = EQ (w->frame, XWINDOW (owindow)->frame);
1414 }
67492200
GM
1415 else if (EQ (all_frames, Qvisible))
1416 {
1417 FRAME_SAMPLE_VISIBILITY (f);
1418 candidate_p = FRAME_VISIBLE_P (f);
1419 }
1420 else if (INTEGERP (all_frames) && XINT (all_frames) == 0)
1421 {
1422 FRAME_SAMPLE_VISIBILITY (f);
1423 candidate_p = FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f);
1424 }
67492200
GM
1425 else if (WINDOWP (all_frames))
1426 candidate_p = (EQ (FRAME_MINIBUF_WINDOW (f), all_frames)
1427 || EQ (XWINDOW (all_frames)->frame, w->frame)
1428 || EQ (XWINDOW (all_frames)->frame, FRAME_FOCUS_FRAME (f)));
118ea242
GM
1429 else if (FRAMEP (all_frames))
1430 candidate_p = EQ (all_frames, w->frame);
67492200
GM
1431
1432 return candidate_p;
1433}
1434
1435
1436/* Decode arguments as allowed by Fnext_window, Fprevious_window, and
1437 Fwindow_list. See there for the meaning of WINDOW, MINIBUF, and
1438 ALL_FRAMES. */
1439
1440static void
1441decode_next_window_args (window, minibuf, all_frames)
1442 Lisp_Object *window, *minibuf, *all_frames;
1443{
1444 if (NILP (*window))
1445 *window = selected_window;
1446 else
1447 CHECK_LIVE_WINDOW (*window, 0);
1448
1449 /* MINIBUF nil may or may not include minibuffers. Decide if it
1450 does. */
1451 if (NILP (*minibuf))
1452 *minibuf = minibuf_level ? minibuf_window : Qlambda;
1453 else if (!EQ (*minibuf, Qt))
1454 *minibuf = Qlambda;
1455
1456 /* Now *MINIBUF can be t => count all minibuffer windows, `lambda'
1457 => count none of them, or a specific minibuffer window (the
1458 active one) to count. */
1459
1460 /* ALL_FRAMES nil doesn't specify which frames to include. */
1461 if (NILP (*all_frames))
1462 *all_frames = (!EQ (*minibuf, Qlambda)
1463 ? FRAME_MINIBUF_WINDOW (XFRAME (XWINDOW (*window)->frame))
1464 : Qnil);
1465 else if (EQ (*all_frames, Qvisible))
1466 ;
1467 else if (XFASTINT (*all_frames) == 0)
1468 ;
1469 else if (FRAMEP (*all_frames))
1470 ;
1471 else if (!EQ (*all_frames, Qt))
1472 *all_frames = Qnil;
1473
1474 /* Now *ALL_FRAMES is t meaning search all frames, nil meaning
1475 search just current frame, `visible' meaning search just visible
1476 frames, 0 meaning search visible and iconified frames, or a
1477 window, meaning search the frame that window belongs to, or a
1478 frame, meaning consider windows on that frame, only. */
1479}
1480
1481
1482/* Return the next or previous window of WINDOW in canonical ordering
1483 of windows. NEXT_P non-zero means return the next window. See the
1484 documentation string of next-window for the meaning of MINIBUF and
1485 ALL_FRAMES. */
1486
1487static Lisp_Object
1488next_window (window, minibuf, all_frames, next_p)
1489 Lisp_Object window, minibuf, all_frames;
1490 int next_p;
1491{
1492 decode_next_window_args (&window, &minibuf, &all_frames);
1493
1494 /* If ALL_FRAMES is a frame, and WINDOW isn't on that frame, just
1495 return the first window on the frame. */
1496 if (FRAMEP (all_frames)
1497 && !EQ (all_frames, XWINDOW (window)->frame))
1498 return Fframe_first_window (all_frames);
1499
212116d6 1500 if (next_p)
67492200
GM
1501 {
1502 Lisp_Object list;
1503
1504 /* Find WINDOW in the list of all windows. */
1505 list = Fmemq (window, window_list ());
1506
1507 /* Scan forward from WINDOW to the end of the window list. */
1508 if (CONSP (list))
1509 for (list = XCDR (list); CONSP (list); list = XCDR (list))
118ea242 1510 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
67492200
GM
1511 break;
1512
1513 /* Scan from the start of the window list up to WINDOW. */
1514 if (!CONSP (list))
1515 for (list = Vwindow_list;
1516 CONSP (list) && !EQ (XCAR (list), window);
1517 list = XCDR (list))
118ea242 1518 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
67492200
GM
1519 break;
1520
1521 if (CONSP (list))
1522 window = XCAR (list);
1523 }
1524 else
1525 {
1526 Lisp_Object candidate, list;
1527
1528 /* Scan through the list of windows for candidates. If there are
1529 candidate windows in front of WINDOW, the last one of these
1530 is the one we want. If there are candidates following WINDOW
1531 in the list, again the last one of these is the one we want. */
1532 candidate = Qnil;
1533 for (list = window_list (); CONSP (list); list = XCDR (list))
1534 {
1535 if (EQ (XCAR (list), window))
1536 {
1537 if (WINDOWP (candidate))
1538 break;
1539 }
118ea242
GM
1540 else if (candidate_window_p (XCAR (list), window, minibuf,
1541 all_frames))
67492200
GM
1542 candidate = XCAR (list);
1543 }
1544
1545 if (WINDOWP (candidate))
1546 window = candidate;
1547 }
1548
1549 return window;
1550}
7ab12479 1551
7ab12479 1552
26f6279d
JB
1553/* This comment supplies the doc string for `next-window',
1554 for make-docfile to see. We cannot put this in the real DEFUN
1555 due to limits in the Unix cpp.
1556
1557DEFUN ("next-window", Ffoo, Sfoo, 0, 3, 0,
7ab12479 1558 "Return next window after WINDOW in canonical ordering of windows.\n\
d5783c40
JB
1559If omitted, WINDOW defaults to the selected window.\n\
1560\n\
1561Optional second arg MINIBUF t means count the minibuffer window even\n\
1562if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
1563it is active. MINIBUF neither t nor nil means not to count the\n\
1564minibuffer even if it is active.\n\
1565\n\
44fa5b1e
JB
1566Several frames may share a single minibuffer; if the minibuffer\n\
1567counts, all windows on all frames that share that minibuffer count\n\
ed160f1f 1568too. Therefore, `next-window' can be used to iterate through the\n\
44fa5b1e
JB
1569set of windows even when the minibuffer is on another frame. If the\n\
1570minibuffer does not count, only windows from WINDOW's frame count.\n\
d5783c40 1571\n\
44fa5b1e
JB
1572Optional third arg ALL-FRAMES t means include windows on all frames.\n\
1573ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
89bca612 1574above. ALL-FRAMES = `visible' means include windows on all visible frames.\n\
f812f9c6 1575ALL-FRAMES = 0 means include windows on all visible and iconified frames.\n\
1f4c5d09 1576If ALL-FRAMES is a frame, restrict search to windows on that frame.\n\
89bca612 1577Anything else means restrict to WINDOW's frame.\n\
dbc4e1c1
JB
1578\n\
1579If you use consistent values for MINIBUF and ALL-FRAMES, you can use\n\
1580`next-window' to iterate through the entire cycle of acceptable\n\
1581windows, eventually ending up back at the window you started with.\n\
1582`previous-window' traverses the same cycle, in the reverse order.")
26f6279d
JB
1583 (window, minibuf, all_frames) */
1584
1585DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
1586 0)
44fa5b1e 1587 (window, minibuf, all_frames)
67492200 1588 Lisp_Object window, minibuf, all_frames;
7ab12479 1589{
67492200 1590 return next_window (window, minibuf, all_frames, 1);
7ab12479
JB
1591}
1592
67492200 1593
26f6279d
JB
1594/* This comment supplies the doc string for `previous-window',
1595 for make-docfile to see. We cannot put this in the real DEFUN
1596 due to limits in the Unix cpp.
1597
1598DEFUN ("previous-window", Ffoo, Sfoo, 0, 3, 0,
5c4d25a6 1599 "Return the window preceding WINDOW in canonical ordering of windows.\n\
d5783c40
JB
1600If omitted, WINDOW defaults to the selected window.\n\
1601\n\
1602Optional second arg MINIBUF t means count the minibuffer window even\n\
1603if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
1604it is active. MINIBUF neither t nor nil means not to count the\n\
1605minibuffer even if it is active.\n\
1606\n\
44fa5b1e
JB
1607Several frames may share a single minibuffer; if the minibuffer\n\
1608counts, all windows on all frames that share that minibuffer count\n\
ed160f1f 1609too. Therefore, `previous-window' can be used to iterate through\n\
44fa5b1e 1610the set of windows even when the minibuffer is on another frame. If\n\
ed160f1f 1611the minibuffer does not count, only windows from WINDOW's frame count\n\
d5783c40 1612\n\
44fa5b1e
JB
1613Optional third arg ALL-FRAMES t means include windows on all frames.\n\
1614ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
89bca612 1615above. ALL-FRAMES = `visible' means include windows on all visible frames.\n\
f812f9c6 1616ALL-FRAMES = 0 means include windows on all visible and iconified frames.\n\
1f4c5d09 1617If ALL-FRAMES is a frame, restrict search to windows on that frame.\n\
89bca612 1618Anything else means restrict to WINDOW's frame.\n\
dbc4e1c1
JB
1619\n\
1620If you use consistent values for MINIBUF and ALL-FRAMES, you can use\n\
1621`previous-window' to iterate through the entire cycle of acceptable\n\
1622windows, eventually ending up back at the window you started with.\n\
1623`next-window' traverses the same cycle, in the reverse order.")
26f6279d
JB
1624 (window, minibuf, all_frames) */
1625
1626
1627DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0,
1628 0)
44fa5b1e 1629 (window, minibuf, all_frames)
67492200 1630 Lisp_Object window, minibuf, all_frames;
7ab12479 1631{
67492200 1632 return next_window (window, minibuf, all_frames, 0);
7ab12479
JB
1633}
1634
67492200 1635
62c07cc7 1636DEFUN ("other-window", Fother_window, Sother_window, 1, 2, "p",
44fa5b1e
JB
1637 "Select the ARG'th different window on this frame.\n\
1638All windows on current frame are arranged in a cyclic order.\n\
7ab12479
JB
1639This command selects the window ARG steps away in that order.\n\
1640A negative ARG moves in the opposite order. If the optional second\n\
44fa5b1e 1641argument ALL_FRAMES is non-nil, cycle through all frames.")
413430c5 1642 (arg, all_frames)
67492200 1643 Lisp_Object arg, all_frames;
7ab12479 1644{
67492200
GM
1645 Lisp_Object window;
1646 int i;
7ab12479 1647
413430c5 1648 CHECK_NUMBER (arg, 0);
67492200
GM
1649 window = selected_window;
1650
1651 for (i = XINT (arg); i > 0; --i)
1652 window = Fnext_window (window, Qnil, all_frames);
1653 for (; i < 0; ++i)
1654 window = Fprevious_window (window, Qnil, all_frames);
1655
1656 Fselect_window (window);
7ab12479
JB
1657 return Qnil;
1658}
67492200
GM
1659
1660
1661DEFUN ("window-list", Fwindow_list, Swindow_list, 0, 3, 0,
cd2904bd
GM
1662 "Return a list of windows on FRAME, starting with WINDOW.\n\
1663FRAME nil or omitted means use the selected frame.\n\
1664WINDOW nil or omitted means use the selected window.\n\
1665MINIBUF t means include the minibuffer window, even if it isn't active.\n\
1666MINIBUF nil or omitted means include the minibuffer window only\n\
1667if it's active.\n\
1668MINIBUF neither nil nor t means never include the minibuffer window.")
1669 (frame, minibuf, window)
1670 Lisp_Object frame, minibuf, window;
1671{
cd2904bd
GM
1672 if (NILP (window))
1673 window = selected_window;
1674 if (NILP (frame))
1675 frame = selected_frame;
1676
1677 if (!EQ (frame, XWINDOW (window)->frame))
1678 error ("Window is on a different frame");
1679
1680 return window_list_1 (window, minibuf, frame);
1681}
1682
1683
1684/* Return a list of windows in canonical ordering. Arguments are like
1685 for `next-window'. */
1686
1687static Lisp_Object
1688window_list_1 (window, minibuf, all_frames)
069f5950 1689 Lisp_Object window, minibuf, all_frames;
67492200
GM
1690{
1691 Lisp_Object tail, list;
1692
1693 decode_next_window_args (&window, &minibuf, &all_frames);
1694 list = Qnil;
1695
1696 for (tail = window_list (); CONSP (tail); tail = XCDR (tail))
118ea242 1697 if (candidate_window_p (XCAR (tail), window, minibuf, all_frames))
67492200
GM
1698 list = Fcons (XCAR (tail), list);
1699
118ea242 1700 return Fnreverse (list);
67492200
GM
1701}
1702
1703
7ab12479
JB
1704\f
1705/* Look at all windows, performing an operation specified by TYPE
1706 with argument OBJ.
75d8f668 1707 If FRAMES is Qt, look at all frames;
75d8f668 1708 Qnil, look at just the selected frame;
89bca612 1709 Qvisible, look at visible frames;
75d8f668 1710 a frame, just look at windows on that frame.
85fe3b5e 1711 If MINI is non-zero, perform the operation on minibuffer windows too. */
7ab12479
JB
1712
1713enum window_loop
1714{
1715 WINDOW_LOOP_UNUSED,
1716 GET_BUFFER_WINDOW, /* Arg is buffer */
1717 GET_LRU_WINDOW, /* Arg is t for full-width windows only */
1718 DELETE_OTHER_WINDOWS, /* Arg is window not to delete */
1719 DELETE_BUFFER_WINDOWS, /* Arg is buffer */
1720 GET_LARGEST_WINDOW,
3f8ab7bd
RS
1721 UNSHOW_BUFFER, /* Arg is buffer */
1722 CHECK_ALL_WINDOWS
7ab12479
JB
1723};
1724
1725static Lisp_Object
44fa5b1e 1726window_loop (type, obj, mini, frames)
7ab12479 1727 enum window_loop type;
118ea242 1728 Lisp_Object obj, frames;
7ab12479
JB
1729 int mini;
1730{
118ea242
GM
1731 Lisp_Object window, windows, best_window, frame_arg;
1732 struct frame *f;
ffdc852d 1733 struct gcpro gcpro1;
118ea242 1734
44fa5b1e
JB
1735 /* If we're only looping through windows on a particular frame,
1736 frame points to that frame. If we're looping through windows
1737 on all frames, frame is 0. */
1738 if (FRAMEP (frames))
118ea242 1739 f = XFRAME (frames);
44fa5b1e 1740 else if (NILP (frames))
118ea242 1741 f = SELECTED_FRAME ();
7ab12479 1742 else
118ea242
GM
1743 f = NULL;
1744
1745 if (f)
89bca612 1746 frame_arg = Qlambda;
f812f9c6
RS
1747 else if (XFASTINT (frames) == 0)
1748 frame_arg = frames;
89bca612
RS
1749 else if (EQ (frames, Qvisible))
1750 frame_arg = frames;
118ea242
GM
1751 else
1752 frame_arg = Qt;
7ab12479 1753
89bca612
RS
1754 /* frame_arg is Qlambda to stick to one frame,
1755 Qvisible to consider all visible frames,
1756 or Qt otherwise. */
1757
7ab12479 1758 /* Pick a window to start with. */
017b2bad 1759 if (WINDOWP (obj))
118ea242
GM
1760 window = obj;
1761 else if (f)
1762 window = FRAME_SELECTED_WINDOW (f);
7ab12479 1763 else
118ea242 1764 window = FRAME_SELECTED_WINDOW (SELECTED_FRAME ());
4b206065 1765
cd2904bd 1766 windows = window_list_1 (window, mini ? Qt : Qnil, frame_arg);
118ea242 1767 GCPRO1 (windows);
7ab12479 1768 best_window = Qnil;
118ea242
GM
1769
1770 for (; CONSP (windows); windows = CDR (windows))
7ab12479 1771 {
118ea242
GM
1772 struct window *w;
1773
1774 window = XCAR (windows);
1775 w = XWINDOW (window);
1776
1777 /* Note that we do not pay attention here to whether the frame
1778 is visible, since Fwindow_list skips non-visible frames if
1779 that is desired, under the control of frame_arg. */
1780 if (!MINI_WINDOW_P (w)
65a04b96
RS
1781 /* For UNSHOW_BUFFER, we must always consider all windows. */
1782 || type == UNSHOW_BUFFER
7ab12479
JB
1783 || (mini && minibuf_level > 0))
1784 switch (type)
1785 {
1786 case GET_BUFFER_WINDOW:
118ea242 1787 if (EQ (w->buffer, obj)
5c204627
RS
1788 /* Don't find any minibuffer window
1789 except the one that is currently in use. */
118ea242
GM
1790 && (MINI_WINDOW_P (w)
1791 ? EQ (window, minibuf_window)
1792 : 1))
1793 {
5ddc1b75
GM
1794 if (NILP (best_window))
1795 best_window = window;
1796 else if (EQ (window, selected_window))
1797 /* For compatibility with 20.x, prefer to return
1798 selected-window. */
1799 best_window = window;
118ea242 1800 }
7ab12479
JB
1801 break;
1802
1803 case GET_LRU_WINDOW:
1804 /* t as arg means consider only full-width windows */
118ea242 1805 if (!NILP (obj) && !WINDOW_FULL_WIDTH_P (w))
7ab12479 1806 break;
7ab12479 1807 /* Ignore dedicated windows and minibuffers. */
118ea242 1808 if (MINI_WINDOW_P (w) || !NILP (w->dedicated))
7ab12479 1809 break;
265a9e55 1810 if (NILP (best_window)
7ab12479 1811 || (XFASTINT (XWINDOW (best_window)->use_time)
118ea242
GM
1812 > XFASTINT (w->use_time)))
1813 best_window = window;
7ab12479
JB
1814 break;
1815
1816 case DELETE_OTHER_WINDOWS:
118ea242
GM
1817 if (!EQ (window, obj))
1818 Fdelete_window (window);
7ab12479
JB
1819 break;
1820
1821 case DELETE_BUFFER_WINDOWS:
118ea242 1822 if (EQ (w->buffer, obj))
7ab12479 1823 {
118ea242 1824 struct frame *f = XFRAME (WINDOW_FRAME (w));
3548e138
RS
1825
1826 /* If this window is dedicated, and in a frame of its own,
1827 kill the frame. */
118ea242
GM
1828 if (EQ (window, FRAME_ROOT_WINDOW (f))
1829 && !NILP (w->dedicated)
3548e138 1830 && other_visible_frames (f))
7ab12479 1831 {
3548e138
RS
1832 /* Skip the other windows on this frame.
1833 There might be one, the minibuffer! */
118ea242
GM
1834 while (CONSP (XCDR (windows))
1835 && EQ (XWINDOW (XCAR (windows))->frame,
1836 XWINDOW (XCAR (XCDR (windows)))->frame))
1837 windows = XCDR (windows);
1838
3548e138 1839 /* Now we can safely delete the frame. */
118ea242
GM
1840 Fdelete_frame (w->frame, Qnil);
1841 }
1842 else if (NILP (w->parent))
1843 {
1844 /* If we're deleting the buffer displayed in the
1845 only window on the frame, find a new buffer to
1846 display there. */
1847 Lisp_Object buffer;
1848 buffer = Fother_buffer (obj, Qnil, w->frame);
1849 if (NILP (buffer))
1850 buffer = Fget_buffer_create (build_string ("*scratch*"));
1851 Fset_window_buffer (window, buffer);
1852 if (EQ (window, selected_window))
1853 Fset_buffer (w->buffer);
7ab12479
JB
1854 }
1855 else
118ea242 1856 Fdelete_window (window);
7ab12479
JB
1857 }
1858 break;
1859
1860 case GET_LARGEST_WINDOW:
7ab12479 1861 {
118ea242 1862 /* Ignore dedicated windows and minibuffers. */
c930dfab 1863 if (MINI_WINDOW_P (w) || !NILP (w->dedicated))
118ea242
GM
1864 break;
1865
c930dfab 1866 if (NILP (best_window))
118ea242 1867 best_window = window;
c930dfab
GM
1868 else
1869 {
1870 struct window *b = XWINDOW (best_window);
1871 if (XFASTINT (w->height) * XFASTINT (w->width)
1872 > XFASTINT (b->height) * XFASTINT (b->width))
1873 best_window = window;
1874 }
7ab12479
JB
1875 }
1876 break;
1877
1878 case UNSHOW_BUFFER:
118ea242 1879 if (EQ (w->buffer, obj))
7ab12479 1880 {
118ea242
GM
1881 Lisp_Object buffer;
1882 struct frame *f = XFRAME (w->frame);
1883
7ab12479 1884 /* Find another buffer to show in this window. */
118ea242
GM
1885 buffer = Fother_buffer (obj, Qnil, w->frame);
1886 if (NILP (buffer))
1887 buffer = Fget_buffer_create (build_string ("*scratch*"));
1888
38ab08d1
RS
1889 /* If this window is dedicated, and in a frame of its own,
1890 kill the frame. */
118ea242
GM
1891 if (EQ (window, FRAME_ROOT_WINDOW (f))
1892 && !NILP (w->dedicated)
38ab08d1 1893 && other_visible_frames (f))
45945a7b
RS
1894 {
1895 /* Skip the other windows on this frame.
1896 There might be one, the minibuffer! */
118ea242
GM
1897 while (CONSP (XCDR (windows))
1898 && EQ (XWINDOW (XCAR (windows))->frame,
1899 XWINDOW (XCAR (XCDR (windows)))->frame))
1900 windows = XCDR (windows);
1901
45945a7b 1902 /* Now we can safely delete the frame. */
118ea242 1903 Fdelete_frame (w->frame, Qnil);
45945a7b 1904 }
38ab08d1 1905 else
38ab08d1
RS
1906 {
1907 /* Otherwise show a different buffer in the window. */
118ea242
GM
1908 w->dedicated = Qnil;
1909 Fset_window_buffer (window, buffer);
1910 if (EQ (window, selected_window))
1911 Fset_buffer (w->buffer);
38ab08d1 1912 }
7ab12479
JB
1913 }
1914 break;
3f8ab7bd
RS
1915
1916 /* Check for a window that has a killed buffer. */
1917 case CHECK_ALL_WINDOWS:
118ea242
GM
1918 if (! NILP (w->buffer)
1919 && NILP (XBUFFER (w->buffer)->name))
3f8ab7bd 1920 abort ();
118ea242 1921 break;
6bbd7a29
GM
1922
1923 case WINDOW_LOOP_UNUSED:
1924 break;
7ab12479 1925 }
7ab12479 1926 }
7ab12479 1927
118ea242 1928 UNGCPRO;
7ab12479 1929 return best_window;
37962e60 1930}
605be8af 1931
3f8ab7bd
RS
1932/* Used for debugging. Abort if any window has a dead buffer. */
1933
233a4a2c 1934void
3f8ab7bd
RS
1935check_all_windows ()
1936{
1937 window_loop (CHECK_ALL_WINDOWS, Qnil, 1, Qt);
1938}
1939
7ab12479
JB
1940DEFUN ("get-lru-window", Fget_lru_window, Sget_lru_window, 0, 1, 0,
1941 "Return the window least recently selected or used for display.\n\
89bca612 1942If optional argument FRAME is `visible', search all visible frames.\n\
cee67da9 1943If FRAME is 0, search all visible and iconified frames.\n\
89bca612
RS
1944If FRAME is t, search all frames.\n\
1945If FRAME is nil, search only the selected frame.\n\
1946If FRAME is a frame, search only that frame.")
1947 (frame)
1948 Lisp_Object frame;
7ab12479
JB
1949{
1950 register Lisp_Object w;
1951 /* First try for a window that is full-width */
89bca612 1952 w = window_loop (GET_LRU_WINDOW, Qt, 0, frame);
265a9e55 1953 if (!NILP (w) && !EQ (w, selected_window))
7ab12479
JB
1954 return w;
1955 /* If none of them, try the rest */
89bca612 1956 return window_loop (GET_LRU_WINDOW, Qnil, 0, frame);
7ab12479
JB
1957}
1958
1959DEFUN ("get-largest-window", Fget_largest_window, Sget_largest_window, 0, 1, 0,
1960 "Return the largest window in area.\n\
89bca612 1961If optional argument FRAME is `visible', search all visible frames.\n\
cee67da9 1962If FRAME is 0, search all visible and iconified frames.\n\
89bca612
RS
1963If FRAME is t, search all frames.\n\
1964If FRAME is nil, search only the selected frame.\n\
1965If FRAME is a frame, search only that frame.")
44fa5b1e
JB
1966 (frame)
1967 Lisp_Object frame;
7ab12479
JB
1968{
1969 return window_loop (GET_LARGEST_WINDOW, Qnil, 0,
44fa5b1e 1970 frame);
7ab12479
JB
1971}
1972
1973DEFUN ("get-buffer-window", Fget_buffer_window, Sget_buffer_window, 1, 2, 0,
1974 "Return a window currently displaying BUFFER, or nil if none.\n\
89bca612 1975If optional argument FRAME is `visible', search all visible frames.\n\
f812f9c6 1976If optional argument FRAME is 0, search all visible and iconified frames.\n\
89bca612 1977If FRAME is t, search all frames.\n\
1bc981d2 1978If FRAME is nil, search only the selected frame.\n\
89bca612 1979If FRAME is a frame, search only that frame.")
44fa5b1e
JB
1980 (buffer, frame)
1981 Lisp_Object buffer, frame;
7ab12479
JB
1982{
1983 buffer = Fget_buffer (buffer);
017b2bad 1984 if (BUFFERP (buffer))
44fa5b1e 1985 return window_loop (GET_BUFFER_WINDOW, buffer, 1, frame);
7ab12479
JB
1986 else
1987 return Qnil;
1988}
1989
1990DEFUN ("delete-other-windows", Fdelete_other_windows, Sdelete_other_windows,
1991 0, 1, "",
44fa5b1e 1992 "Make WINDOW (or the selected window) fill its frame.\n\
f16a1ed3
RS
1993Only the frame WINDOW is on is affected.\n\
1994This function tries to reduce display jumps\n\
1995by keeping the text previously visible in WINDOW\n\
1996in the same place on the frame. Doing this depends on\n\
1997the value of (window-start WINDOW), so if calling this function\n\
1998in a program gives strange scrolling, make sure the window-start\n\
1999value is reasonable when this function is called.")
7ab12479
JB
2000 (window)
2001 Lisp_Object window;
2002{
2003 struct window *w;
00d3d838 2004 int startpos;
85fe3b5e 2005 int top, new_top;
7ab12479 2006
265a9e55 2007 if (NILP (window))
7ab12479
JB
2008 window = selected_window;
2009 else
605be8af 2010 CHECK_LIVE_WINDOW (window, 0);
7ab12479 2011 w = XWINDOW (window);
a2b38b3c 2012
00d3d838 2013 startpos = marker_position (w->start);
5500c422 2014 top = XFASTINT (w->top) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
7ab12479 2015
a2b38b3c
RS
2016 if (MINI_WINDOW_P (w) && top > 0)
2017 error ("Can't expand minibuffer to full frame");
2018
70728a80 2019 window_loop (DELETE_OTHER_WINDOWS, window, 0, WINDOW_FRAME (w));
7ab12479 2020
00d3d838
KH
2021 /* Try to minimize scrolling, by setting the window start to the point
2022 will cause the text at the old window start to be at the same place
2023 on the frame. But don't try to do this if the window start is
2024 outside the visible portion (as might happen when the display is
2025 not current, due to typeahead). */
85fe3b5e
GM
2026 new_top = XFASTINT (w->top) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
2027 if (new_top != top
2028 && startpos >= BUF_BEGV (XBUFFER (w->buffer))
00d3d838
KH
2029 && startpos <= BUF_ZV (XBUFFER (w->buffer)))
2030 {
2031 struct position pos;
2032 struct buffer *obuf = current_buffer;
2033
2034 Fset_buffer (w->buffer);
2035 /* This computation used to temporarily move point, but that can
2036 have unwanted side effects due to text properties. */
0383eb57 2037 pos = *vmotion (startpos, -top, w);
4d047f50 2038
b73ea88e 2039 set_marker_both (w->start, w->buffer, pos.bufpos, pos.bytepos);
85fe3b5e 2040 w->window_end_valid = Qnil;
b73ea88e
RS
2041 w->start_at_line_beg = ((pos.bytepos == BEGV_BYTE
2042 || FETCH_BYTE (pos.bytepos - 1) == '\n') ? Qt
00d3d838 2043 : Qnil);
80622eec
RS
2044 /* We need to do this, so that the window-scroll-functions
2045 get called. */
4d047f50 2046 w->optional_new_start = Qt;
00d3d838
KH
2047
2048 set_buffer_internal (obuf);
2049 }
5500c422 2050
7ab12479
JB
2051 return Qnil;
2052}
2053
2054DEFUN ("delete-windows-on", Fdelete_windows_on, Sdelete_windows_on,
3cbbb729 2055 1, 2, "bDelete windows on (buffer): ",
26f6279d
JB
2056 "Delete all windows showing BUFFER.\n\
2057Optional second argument FRAME controls which frames are affected.\n\
c520265e
RS
2058If optional argument FRAME is `visible', search all visible frames.\n\
2059If FRAME is 0, search all visible and iconified frames.\n\
2060If FRAME is nil, search all frames.\n\
2061If FRAME is t, search only the selected frame.\n\
2062If FRAME is a frame, search only that frame.")
26f6279d
JB
2063 (buffer, frame)
2064 Lisp_Object buffer, frame;
7ab12479 2065{
26f6279d
JB
2066 /* FRAME uses t and nil to mean the opposite of what window_loop
2067 expects. */
c520265e
RS
2068 if (NILP (frame))
2069 frame = Qt;
2070 else if (EQ (frame, Qt))
2071 frame = Qnil;
26f6279d 2072
265a9e55 2073 if (!NILP (buffer))
7ab12479
JB
2074 {
2075 buffer = Fget_buffer (buffer);
2076 CHECK_BUFFER (buffer, 0);
26f6279d 2077 window_loop (DELETE_BUFFER_WINDOWS, buffer, 0, frame);
7ab12479 2078 }
5500c422 2079
7ab12479
JB
2080 return Qnil;
2081}
2082
2083DEFUN ("replace-buffer-in-windows", Freplace_buffer_in_windows,
2084 Sreplace_buffer_in_windows,
2085 1, 1, "bReplace buffer in windows: ",
2086 "Replace BUFFER with some other buffer in all windows showing it.")
2087 (buffer)
2088 Lisp_Object buffer;
2089{
265a9e55 2090 if (!NILP (buffer))
7ab12479
JB
2091 {
2092 buffer = Fget_buffer (buffer);
2093 CHECK_BUFFER (buffer, 0);
2094 window_loop (UNSHOW_BUFFER, buffer, 0, Qt);
2095 }
2096 return Qnil;
2097}
ff58478b
RS
2098
2099/* Replace BUFFER with some other buffer in all windows
2100 of all frames, even those on other keyboards. */
2101
2102void
2103replace_buffer_in_all_windows (buffer)
2104 Lisp_Object buffer;
2105{
27abb84f 2106#ifdef MULTI_KBOARD
ff58478b
RS
2107 Lisp_Object tail, frame;
2108
ff58478b
RS
2109 /* A single call to window_loop won't do the job
2110 because it only considers frames on the current keyboard.
2111 So loop manually over frames, and handle each one. */
2112 FOR_EACH_FRAME (tail, frame)
db7f721d 2113 window_loop (UNSHOW_BUFFER, buffer, 1, frame);
ff58478b 2114#else
db7f721d 2115 window_loop (UNSHOW_BUFFER, buffer, 1, Qt);
ff58478b
RS
2116#endif
2117}
7ab12479
JB
2118\f
2119/* Set the height of WINDOW and all its inferiors. */
a481b3ea
JB
2120
2121/* The smallest acceptable dimensions for a window. Anything smaller
2122 might crash Emacs. */
5500c422 2123
a481b3ea
JB
2124#define MIN_SAFE_WINDOW_WIDTH (2)
2125#define MIN_SAFE_WINDOW_HEIGHT (2)
2126
2127/* Make sure that window_min_height and window_min_width are
2128 not too small; if they are, set them to safe minima. */
2129
2130static void
2131check_min_window_sizes ()
2132{
2133 /* Smaller values might permit a crash. */
2134 if (window_min_width < MIN_SAFE_WINDOW_WIDTH)
2135 window_min_width = MIN_SAFE_WINDOW_WIDTH;
2136 if (window_min_height < MIN_SAFE_WINDOW_HEIGHT)
2137 window_min_height = MIN_SAFE_WINDOW_HEIGHT;
2138}
2139
2140/* If *ROWS or *COLS are too small a size for FRAME, set them to the
2141 minimum allowable size. */
5500c422 2142
605be8af 2143void
a481b3ea 2144check_frame_size (frame, rows, cols)
605be8af
JB
2145 FRAME_PTR frame;
2146 int *rows, *cols;
a481b3ea 2147{
628df3bf 2148 /* For height, we have to see:
37962e60 2149 whether the frame has a minibuffer,
628df3bf
JB
2150 whether it wants a mode line, and
2151 whether it has a menu bar. */
a481b3ea 2152 int min_height =
79f92720
JB
2153 (FRAME_MINIBUF_ONLY_P (frame) ? MIN_SAFE_WINDOW_HEIGHT - 1
2154 : (! FRAME_HAS_MINIBUF_P (frame)) ? MIN_SAFE_WINDOW_HEIGHT
a481b3ea 2155 : 2 * MIN_SAFE_WINDOW_HEIGHT - 1);
5500c422
GM
2156
2157 if (FRAME_TOP_MARGIN (frame) > 0)
2158 min_height += FRAME_TOP_MARGIN (frame);
a481b3ea
JB
2159
2160 if (*rows < min_height)
2161 *rows = min_height;
2162 if (*cols < MIN_SAFE_WINDOW_WIDTH)
2163 *cols = MIN_SAFE_WINDOW_WIDTH;
2164}
2165
c1636aa6 2166
233a4a2c
GM
2167/* Value is non-zero if window W is fixed-size. WIDTH_P non-zero means
2168 check if W's width can be changed, otherwise check W's height.
2169 CHECK_SIBLINGS_P non-zero means check resizablity of WINDOW's
2170 siblings, too. If none of the siblings is resizable, WINDOW isn't
2171 either. */
c1636aa6 2172
233a4a2c
GM
2173static int
2174window_fixed_size_p (w, width_p, check_siblings_p)
2175 struct window *w;
2176 int width_p, check_siblings_p;
2177{
2178 int fixed_p;
2179 struct window *c;
2180
2181 if (!NILP (w->hchild))
2182 {
2183 c = XWINDOW (w->hchild);
2184
2185 if (width_p)
2186 {
2187 /* A horiz. combination is fixed-width if all of if its
2188 children are. */
2189 while (c && window_fixed_size_p (c, width_p, 0))
2190 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2191 fixed_p = c == NULL;
2192 }
2193 else
2194 {
2195 /* A horiz. combination is fixed-height if one of if its
2196 children is. */
2197 while (c && !window_fixed_size_p (c, width_p, 0))
2198 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2199 fixed_p = c != NULL;
2200 }
2201 }
2202 else if (!NILP (w->vchild))
2203 {
2204 c = XWINDOW (w->vchild);
2205
2206 if (width_p)
2207 {
2208 /* A vert. combination is fixed-width if one of if its
2209 children is. */
2210 while (c && !window_fixed_size_p (c, width_p, 0))
2211 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2212 fixed_p = c != NULL;
2213 }
2214 else
2215 {
2216 /* A vert. combination is fixed-height if all of if its
2217 children are. */
2218 while (c && window_fixed_size_p (c, width_p, 0))
2219 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2220 fixed_p = c == NULL;
2221 }
2222 }
2223 else if (BUFFERP (w->buffer))
2224 {
a34dfd12
GM
2225 if (w->height_fixed_p && !width_p)
2226 fixed_p = 1;
2227 else
233a4a2c 2228 {
a34dfd12
GM
2229 struct buffer *old = current_buffer;
2230 Lisp_Object val;
2231
2232 current_buffer = XBUFFER (w->buffer);
2233 val = find_symbol_value (Qwindow_size_fixed);
2234 current_buffer = old;
2235
2236 fixed_p = 0;
2237 if (!EQ (val, Qunbound))
2238 {
2239 fixed_p = !NILP (val);
2240
2241 if (fixed_p
2242 && ((EQ (val, Qheight) && width_p)
2243 || (EQ (val, Qwidth) && !width_p)))
2244 fixed_p = 0;
2245 }
233a4a2c
GM
2246 }
2247
2248 /* Can't tell if this one is resizable without looking at
2249 siblings. If all siblings are fixed-size this one is too. */
2250 if (!fixed_p && check_siblings_p && WINDOWP (w->parent))
2251 {
2252 Lisp_Object child;
2253
2254 for (child = w->prev; !NILP (child); child = XWINDOW (child)->prev)
2255 if (!window_fixed_size_p (XWINDOW (child), width_p, 0))
2256 break;
2257
2258 if (NILP (child))
2259 for (child = w->next; !NILP (child); child = XWINDOW (child)->next)
2260 if (!window_fixed_size_p (XWINDOW (child), width_p, 0))
2261 break;
2262
2263 if (NILP (child))
2264 fixed_p = 1;
2265 }
2266 }
2267 else
2268 fixed_p = 1;
2269
2270 return fixed_p;
2271}
2272
2273
2274/* Return the minimum size of window W, not taking fixed-width windows
2275 into account. WIDTH_P non-zero means return the minimum width,
2276 otherwise return the minimum height. If W is a combination window,
2277 compute the minimum size from the minimum sizes of W's children. */
2278
2279static int
2280window_min_size_1 (w, width_p)
c1636aa6
GM
2281 struct window *w;
2282 int width_p;
2283{
233a4a2c 2284 struct window *c;
c1636aa6
GM
2285 int size;
2286
233a4a2c
GM
2287 if (!NILP (w->hchild))
2288 {
2289 c = XWINDOW (w->hchild);
2290 size = 0;
2291
2292 if (width_p)
2293 {
2294 /* The min width of a horizontal combination is
2295 the sum of the min widths of its children. */
2296 while (c)
2297 {
2298 size += window_min_size_1 (c, width_p);
2299 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2300 }
2301 }
2302 else
2303 {
2304 /* The min height a horizontal combination equals
2305 the maximum of all min height of its children. */
2306 while (c)
2307 {
2308 int min_size = window_min_size_1 (c, width_p);
2309 size = max (min_size, size);
2310 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2311 }
2312 }
2313 }
2314 else if (!NILP (w->vchild))
2315 {
2316 c = XWINDOW (w->vchild);
2317 size = 0;
2318
2319 if (width_p)
2320 {
2321 /* The min width of a vertical combination is
2322 the maximum of the min widths of its children. */
2323 while (c)
2324 {
2325 int min_size = window_min_size_1 (c, width_p);
2326 size = max (min_size, size);
2327 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2328 }
2329 }
2330 else
2331 {
2332 /* The min height of a vertical combination equals
2333 the sum of the min height of its children. */
2334 while (c)
2335 {
2336 size += window_min_size_1 (c, width_p);
2337 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2338 }
2339 }
2340 }
c1636aa6
GM
2341 else
2342 {
233a4a2c
GM
2343 if (width_p)
2344 size = window_min_width;
c1636aa6 2345 else
233a4a2c
GM
2346 {
2347 if (MINI_WINDOW_P (w)
2348 || (!WINDOW_WANTS_MODELINE_P (w)
045dee35 2349 && !WINDOW_WANTS_HEADER_LINE_P (w)))
233a4a2c
GM
2350 size = 1;
2351 else
2352 size = window_min_height;
2353 }
c1636aa6
GM
2354 }
2355
2356 return size;
2357}
2358
2359
233a4a2c
GM
2360/* Return the minimum size of window W, taking fixed-size windows into
2361 account. WIDTH_P non-zero means return the minimum width,
f984d4fc
GM
2362 otherwise return the minimum height. IGNORE_FIXED_P non-zero means
2363 ignore if W is fixed-size. Set *FIXED to 1 if W is fixed-size
2364 unless FIXED is null. */
7ab12479 2365
233a4a2c 2366static int
f984d4fc 2367window_min_size (w, width_p, ignore_fixed_p, fixed)
233a4a2c 2368 struct window *w;
f984d4fc 2369 int width_p, ignore_fixed_p, *fixed;
233a4a2c
GM
2370{
2371 int size, fixed_p;
2372
f984d4fc
GM
2373 if (ignore_fixed_p)
2374 fixed_p = 0;
2375 else
2376 fixed_p = window_fixed_size_p (w, width_p, 1);
2377
233a4a2c
GM
2378 if (fixed)
2379 *fixed = fixed_p;
2380
2381 if (fixed_p)
2382 size = width_p ? XFASTINT (w->width) : XFASTINT (w->height);
2383 else
2384 size = window_min_size_1 (w, width_p);
f984d4fc 2385
233a4a2c
GM
2386 return size;
2387}
2388
2389
2390/* Set WINDOW's height or width to SIZE. WIDTH_P non-zero means set
2391 WINDOW's width. Resize WINDOW's children, if any, so that they
2392 keep their proportionate size relative to WINDOW. Propagate
2393 WINDOW's top or left edge position to children. Delete windows
2394 that become too small unless NODELETE_P is non-zero. */
2395
2396static void
2397size_window (window, size, width_p, nodelete_p)
7ab12479 2398 Lisp_Object window;
233a4a2c 2399 int size, width_p, nodelete_p;
7ab12479 2400{
233a4a2c
GM
2401 struct window *w = XWINDOW (window);
2402 struct window *c;
2403 Lisp_Object child, *forward, *sideward;
2404 int old_size, min_size;
7ab12479 2405
a481b3ea 2406 check_min_window_sizes ();
7ae2f10f 2407 size = max (0, size);
233a4a2c 2408
b5f05b50
GM
2409 /* If the window has been "too small" at one point,
2410 don't delete it for being "too small" in the future.
2411 Preserve it as long as that is at all possible. */
233a4a2c
GM
2412 if (width_p)
2413 {
8b6d9dc9 2414 old_size = XINT (w->width);
233a4a2c
GM
2415 min_size = window_min_width;
2416 }
2417 else
2418 {
8b6d9dc9 2419 old_size = XINT (w->height);
233a4a2c
GM
2420 min_size = window_min_height;
2421 }
2422
f18625cd 2423 if (old_size < min_size)
b5f05b50
GM
2424 w->too_small_ok = Qt;
2425
233a4a2c
GM
2426 /* Maybe delete WINDOW if it's too small. */
2427 if (!nodelete_p && !NILP (w->parent))
7ab12479 2428 {
b5f05b50 2429 if (!MINI_WINDOW_P (w) && !NILP (w->too_small_ok))
233a4a2c 2430 min_size = width_p ? MIN_SAFE_WINDOW_WIDTH : MIN_SAFE_WINDOW_HEIGHT;
b5f05b50 2431 else
233a4a2c 2432 min_size = width_p ? window_min_width : window_min_height;
b5f05b50 2433
233a4a2c 2434 if (size < min_size)
c1636aa6
GM
2435 {
2436 delete_window (window);
2437 return;
2438 }
7ab12479
JB
2439 }
2440
233a4a2c 2441 /* Set redisplay hints. */
7ae2f10f
GM
2442 w->last_modified = make_number (0);
2443 w->last_overlay_modified = make_number (0);
7ab12479 2444 windows_or_buffers_changed++;
7ae2f10f 2445 FRAME_WINDOW_SIZES_CHANGED (XFRAME (w->frame)) = 1;
29aeee73 2446
233a4a2c
GM
2447 if (width_p)
2448 {
2449 sideward = &w->vchild;
2450 forward = &w->hchild;
7ae2f10f 2451 w->width = make_number (size);
233a4a2c
GM
2452 }
2453 else
2454 {
2455 sideward = &w->hchild;
2456 forward = &w->vchild;
7ae2f10f 2457 w->height = make_number (size);
0130fe1a 2458 w->orig_height = Qnil;
233a4a2c
GM
2459 }
2460
2461 if (!NILP (*sideward))
7ab12479 2462 {
233a4a2c 2463 for (child = *sideward; !NILP (child); child = c->next)
7ab12479 2464 {
233a4a2c
GM
2465 c = XWINDOW (child);
2466 if (width_p)
2467 c->left = w->left;
2468 else
2469 c->top = w->top;
2470 size_window (child, size, width_p, nodelete_p);
7ab12479
JB
2471 }
2472 }
233a4a2c 2473 else if (!NILP (*forward))
7ab12479 2474 {
233a4a2c
GM
2475 int fixed_size, each, extra, n;
2476 int resize_fixed_p, nfixed;
8b6d9dc9 2477 int last_pos, first_pos, nchildren, total;
233a4a2c
GM
2478
2479 /* Determine the fixed-size portion of the this window, and the
2480 number of child windows. */
8b6d9dc9 2481 fixed_size = nchildren = nfixed = total = 0;
233a4a2c 2482 for (child = *forward; !NILP (child); child = c->next, ++nchildren)
7ab12479 2483 {
8b6d9dc9
GM
2484 int child_size;
2485
7ab12479 2486 c = XWINDOW (child);
8b6d9dc9
GM
2487 child_size = width_p ? XINT (c->width) : XINT (c->height);
2488 total += child_size;
2489
233a4a2c
GM
2490 if (window_fixed_size_p (c, width_p, 0))
2491 {
8b6d9dc9 2492 fixed_size += child_size;
233a4a2c
GM
2493 ++nfixed;
2494 }
2495 }
7ab12479 2496
233a4a2c
GM
2497 /* If the new size is smaller than fixed_size, or if there
2498 aren't any resizable windows, allow resizing fixed-size
2499 windows. */
2500 resize_fixed_p = nfixed == nchildren || size < fixed_size;
2501
2502 /* Compute how many lines/columns to add to each child. The
2503 value of extra takes care of rounding errors. */
2504 n = resize_fixed_p ? nchildren : nchildren - nfixed;
8b6d9dc9
GM
2505 each = (size - total) / n;
2506 extra = (size - total) - n * each;
233a4a2c
GM
2507
2508 /* Compute new children heights and edge positions. */
8b6d9dc9 2509 first_pos = width_p ? XINT (w->left) : XINT (w->top);
233a4a2c
GM
2510 last_pos = first_pos;
2511 for (child = *forward; !NILP (child); child = c->next)
2512 {
2513 int new_size, old_size;
2514
2515 c = XWINDOW (child);
2516 old_size = width_p ? XFASTINT (c->width) : XFASTINT (c->height);
2517 new_size = old_size;
7ab12479 2518
233a4a2c
GM
2519 /* The top or left edge position of this child equals the
2520 bottom or right edge of its predecessor. */
2521 if (width_p)
2522 c->left = make_number (last_pos);
2523 else
2524 c->top = make_number (last_pos);
7ab12479 2525
233a4a2c
GM
2526 /* If this child can be resized, do it. */
2527 if (resize_fixed_p || !window_fixed_size_p (c, width_p, 0))
2528 {
2529 new_size = old_size + each + extra;
2530 extra = 0;
2531 }
2532
2533 /* Set new height. Note that size_window also propagates
2534 edge positions to children, so it's not a no-op if we
2535 didn't change the child's size. */
2536 size_window (child, new_size, width_p, 1);
2537
2538 /* Remember the bottom/right edge position of this child; it
2539 will be used to set the top/left edge of the next child. */
2540 last_pos += new_size;
7ab12479 2541 }
233a4a2c
GM
2542
2543 /* We should have covered the parent exactly with child windows. */
2544 xassert (size == last_pos - first_pos);
2545
7ab12479 2546 /* Now delete any children that became too small. */
233a4a2c
GM
2547 if (!nodelete_p)
2548 for (child = *forward; !NILP (child); child = c->next)
7ab12479 2549 {
233a4a2c
GM
2550 int child_size;
2551 c = XWINDOW (child);
8b6d9dc9 2552 child_size = width_p ? XINT (c->width) : XINT (c->height);
233a4a2c 2553 size_window (child, child_size, width_p, 0);
7ab12479
JB
2554 }
2555 }
2556}
2557
233a4a2c
GM
2558/* Set WINDOW's height to HEIGHT, and recursively change the height of
2559 WINDOW's children. NODELETE non-zero means don't delete windows
2560 that become too small in the process. (The caller should check
2561 later and do so if appropriate.) */
7ab12479 2562
5e14b1fc 2563void
233a4a2c 2564set_window_height (window, height, nodelete)
7ab12479 2565 Lisp_Object window;
233a4a2c 2566 int height;
7ab12479
JB
2567 int nodelete;
2568{
233a4a2c
GM
2569 size_window (window, height, 0, nodelete);
2570}
7ab12479 2571
7ab12479 2572
233a4a2c
GM
2573/* Set WINDOW's width to WIDTH, and recursively change the width of
2574 WINDOW's children. NODELETE non-zero means don't delete windows
2575 that become too small in the process. (The caller should check
2576 later and do so if appropriate.) */
7ab12479 2577
233a4a2c
GM
2578void
2579set_window_width (window, width, nodelete)
2580 Lisp_Object window;
2581 int width;
2582 int nodelete;
2583{
2584 size_window (window, width, 1, nodelete);
7ab12479 2585}
233a4a2c 2586
7ab12479 2587\f
1d8d96fa 2588int window_select_count;
7ab12479 2589
5b03d3c0
RS
2590Lisp_Object
2591Fset_window_buffer_unwind (obuf)
2592 Lisp_Object obuf;
2593{
2594 Fset_buffer (obuf);
2595 return Qnil;
2596}
2597
7ab12479 2598
5500c422
GM
2599/* Make WINDOW display BUFFER as its contents. RUN_HOOKS_P non-zero
2600 means it's allowed to run hooks. See make_frame for a case where
2601 it's not allowed. */
7ab12479 2602
5500c422
GM
2603void
2604set_window_buffer (window, buffer, run_hooks_p)
2605 Lisp_Object window, buffer;
2606 int run_hooks_p;
2607{
2608 struct window *w = XWINDOW (window);
2609 struct buffer *b = XBUFFER (buffer);
2610 int count = specpdl_ptr - specpdl;
7ab12479
JB
2611
2612 w->buffer = buffer;
86e48436
RS
2613
2614 if (EQ (window, selected_window))
5500c422 2615 b->last_selected_window = window;
beb4e312
RS
2616
2617 /* Update time stamps of buffer display. */
5500c422
GM
2618 if (INTEGERP (b->display_count))
2619 XSETINT (b->display_count, XINT (b->display_count) + 1);
2620 b->display_time = Fcurrent_time ();
86e48436 2621
d834a2e9 2622 XSETFASTINT (w->window_end_pos, 0);
5500c422
GM
2623 XSETFASTINT (w->window_end_vpos, 0);
2624 bzero (&w->last_cursor, sizeof w->last_cursor);
5a41ab94 2625 w->window_end_valid = Qnil;
dba06815 2626 XSETFASTINT (w->hscroll, 0);
ea68264b 2627 XSETFASTINT (w->min_hscroll, 0);
5500c422 2628 set_marker_both (w->pointm, buffer, BUF_PT (b), BUF_PT_BYTE (b));
7ab12479 2629 set_marker_restricted (w->start,
5500c422 2630 make_number (b->last_window_start),
7ab12479
JB
2631 buffer);
2632 w->start_at_line_beg = Qnil;
e36ab06b 2633 w->force_start = Qnil;
d834a2e9 2634 XSETFASTINT (w->last_modified, 0);
3cd21523 2635 XSETFASTINT (w->last_overlay_modified, 0);
7ab12479 2636 windows_or_buffers_changed++;
5b03d3c0
RS
2637
2638 /* We must select BUFFER for running the window-scroll-functions.
2639 If WINDOW is selected, switch permanently.
2640 Otherwise, switch but go back to the ambient buffer afterward. */
7ab12479
JB
2641 if (EQ (window, selected_window))
2642 Fset_buffer (buffer);
5b03d3c0
RS
2643 /* We can't check ! NILP (Vwindow_scroll_functions) here
2644 because that might itself be a local variable. */
2645 else if (window_initialized)
2646 {
2647 record_unwind_protect (Fset_window_buffer_unwind, Fcurrent_buffer ());
2648 Fset_buffer (buffer);
2649 }
2650
5500c422 2651 /* Set left and right marginal area width from buffer. */
cfa22082 2652 Fset_window_margins (window, b->left_margin_width, b->right_margin_width);
7ab12479 2653
5500c422
GM
2654 if (run_hooks_p)
2655 {
2656 if (! NILP (Vwindow_scroll_functions))
2657 run_hook_with_args_2 (Qwindow_scroll_functions, window,
2658 Fmarker_position (w->start));
2659
2660 if (! NILP (Vwindow_configuration_change_hook)
2661 && ! NILP (Vrun_hooks))
2662 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
2663 }
543f5fb1 2664
5b03d3c0 2665 unbind_to (count, Qnil);
5500c422 2666}
5b03d3c0 2667
5500c422
GM
2668
2669DEFUN ("set-window-buffer", Fset_window_buffer, Sset_window_buffer, 2, 2, 0,
2670 "Make WINDOW display BUFFER as its contents.\n\
2671BUFFER can be a buffer or buffer name.")
2672 (window, buffer)
2673 register Lisp_Object window, buffer;
2674{
2675 register Lisp_Object tem;
2676 register struct window *w = decode_window (window);
5500c422 2677
bed0c171 2678 XSETWINDOW (window, w);
5500c422
GM
2679 buffer = Fget_buffer (buffer);
2680 CHECK_BUFFER (buffer, 1);
2681
2682 if (NILP (XBUFFER (buffer)->name))
2683 error ("Attempt to display deleted buffer");
2684
2685 tem = w->buffer;
2686 if (NILP (tem))
2687 error ("Window is deleted");
2688 else if (! EQ (tem, Qt)) /* w->buffer is t when the window
2689 is first being set up. */
2690 {
2691 if (!NILP (w->dedicated) && !EQ (tem, buffer))
2692 error ("Window is dedicated to `%s'",
2693 XSTRING (XBUFFER (tem)->name)->data);
2694
2695 unshow_buffer (w);
2696 }
2697
2698 set_window_buffer (window, buffer, 1);
7ab12479
JB
2699 return Qnil;
2700}
2701
2702DEFUN ("select-window", Fselect_window, Sselect_window, 1, 1, 0,
2703 "Select WINDOW. Most editing will apply to WINDOW's buffer.\n\
beb4e312
RS
2704If WINDOW is not already selected, also make WINDOW's buffer current.\n\
2705Note that the main editor command loop\n\
2706selects the buffer of the selected window before each command.")
7ab12479
JB
2707 (window)
2708 register Lisp_Object window;
b7354ddf
RS
2709{
2710 return select_window_1 (window, 1);
2711}
2712\f
719eaeb1
GM
2713/* Note that selected_window can be nil
2714 when this is called from Fset_window_configuration. */
2715
b7354ddf
RS
2716static Lisp_Object
2717select_window_1 (window, recordflag)
2718 register Lisp_Object window;
2719 int recordflag;
7ab12479
JB
2720{
2721 register struct window *w;
719eaeb1 2722 register struct window *ow;
1ae1a37d 2723 struct frame *sf;
7ab12479 2724
605be8af 2725 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
2726
2727 w = XWINDOW (window);
2728
265a9e55 2729 if (NILP (w->buffer))
7ab12479
JB
2730 error ("Trying to select deleted window or non-leaf window");
2731
d834a2e9 2732 XSETFASTINT (w->use_time, ++window_select_count);
7ab12479
JB
2733 if (EQ (window, selected_window))
2734 return window;
2735
719eaeb1
GM
2736 if (!NILP (selected_window))
2737 {
2738 ow = XWINDOW (selected_window);
2739 if (! NILP (ow->buffer))
2740 set_marker_both (ow->pointm, ow->buffer,
2741 BUF_PT (XBUFFER (ow->buffer)),
2742 BUF_PT_BYTE (XBUFFER (ow->buffer)));
2743 }
7ab12479
JB
2744
2745 selected_window = window;
1ae1a37d
GM
2746 sf = SELECTED_FRAME ();
2747 if (XFRAME (WINDOW_FRAME (w)) != sf)
7ab12479 2748 {
44fa5b1e 2749 XFRAME (WINDOW_FRAME (w))->selected_window = window;
147a6615
RS
2750 /* Use this rather than Fhandle_switch_frame
2751 so that FRAME_FOCUS_FRAME is moved appropriately as we
2752 move around in the state where a minibuffer in a separate
2753 frame is active. */
2754 Fselect_frame (WINDOW_FRAME (w), Qnil);
7ab12479
JB
2755 }
2756 else
1ae1a37d 2757 sf->selected_window = window;
7ab12479 2758
b7354ddf
RS
2759 if (recordflag)
2760 record_buffer (w->buffer);
7ab12479
JB
2761 Fset_buffer (w->buffer);
2762
86e48436
RS
2763 XBUFFER (w->buffer)->last_selected_window = window;
2764
7ab12479
JB
2765 /* Go to the point recorded in the window.
2766 This is important when the buffer is in more
2767 than one window. It also matters when
2768 redisplay_window has altered point after scrolling,
2769 because it makes the change only in the window. */
2770 {
2771 register int new_point = marker_position (w->pointm);
2772 if (new_point < BEGV)
2773 SET_PT (BEGV);
a9c95e08 2774 else if (new_point > ZV)
7ab12479
JB
2775 SET_PT (ZV);
2776 else
2777 SET_PT (new_point);
2778 }
2779
2780 windows_or_buffers_changed++;
2781 return window;
2782}
b7354ddf 2783\f
441a127e
RS
2784/* Deiconify the frame containing the window WINDOW,
2785 unless it is the selected frame;
2786 then return WINDOW.
2787
2788 The reason for the exception for the selected frame
2789 is that it seems better not to change the selected frames visibility
2790 merely because of displaying a different buffer in it.
2791 The deiconification is useful when a buffer gets shown in
2792 another frame that you were not using lately. */
d07f802a
RS
2793
2794static Lisp_Object
2795display_buffer_1 (window)
2796 Lisp_Object window;
2797{
1ae1a37d
GM
2798 Lisp_Object frame = XWINDOW (window)->frame;
2799 FRAME_PTR f = XFRAME (frame);
2800
d07f802a 2801 FRAME_SAMPLE_VISIBILITY (f);
1ae1a37d
GM
2802
2803 if (!EQ (frame, selected_frame))
60117126
RS
2804 {
2805 if (FRAME_ICONIFIED_P (f))
1ae1a37d 2806 Fmake_frame_visible (frame);
37962e60 2807 else if (FRAME_VISIBLE_P (f))
1ae1a37d 2808 Fraise_frame (frame);
60117126 2809 }
1ae1a37d 2810
d07f802a
RS
2811 return window;
2812}
2813
4628f7a4 2814DEFUN ("special-display-p", Fspecial_display_p, Sspecial_display_p, 1, 1, 0,
0f7d64d2
GV
2815 "Returns non-nil if a buffer named BUFFER-NAME would be created specially.\n\
2816The value is actually t if the frame should be called with default frame\n\
2817parameters, and a list of frame parameters if they were specified.\n\
4628f7a4
EN
2818See `special-display-buffer-names', and `special-display-regexps'.")
2819 (buffer_name)
2820 Lisp_Object buffer_name;
2821{
2822 Lisp_Object tem;
2823
2824 CHECK_STRING (buffer_name, 1);
2825
2826 tem = Fmember (buffer_name, Vspecial_display_buffer_names);
2827 if (!NILP (tem))
2828 return Qt;
2829
2830 tem = Fassoc (buffer_name, Vspecial_display_buffer_names);
2831 if (!NILP (tem))
2832 return XCDR (tem);
2833
2834 for (tem = Vspecial_display_regexps; CONSP (tem); tem = XCDR (tem))
2835 {
2836 Lisp_Object car = XCAR (tem);
2837 if (STRINGP (car)
2838 && fast_string_match (car, buffer_name) >= 0)
2839 return Qt;
2840 else if (CONSP (car)
2841 && STRINGP (XCAR (car))
2842 && fast_string_match (XCAR (car), buffer_name) >= 0)
0057b00a 2843 return XCDR (car);
4628f7a4
EN
2844 }
2845 return Qnil;
2846}
2847
2848DEFUN ("same-window-p", Fsame_window_p, Ssame_window_p, 1, 1, 0,
0f7d64d2 2849 "Returns non-nil if a new buffer named BUFFER-NAME would use the same window.\n\
4628f7a4
EN
2850See `same-window-buffer-names' and `same-window-regexps'.")
2851 (buffer_name)
2852 Lisp_Object buffer_name;
2853{
2854 Lisp_Object tem;
2855
2856 CHECK_STRING (buffer_name, 1);
2857
2858 tem = Fmember (buffer_name, Vsame_window_buffer_names);
2859 if (!NILP (tem))
2860 return Qt;
2861
2862 tem = Fassoc (buffer_name, Vsame_window_buffer_names);
2863 if (!NILP (tem))
2864 return Qt;
2865
2866 for (tem = Vsame_window_regexps; CONSP (tem); tem = XCDR (tem))
2867 {
2868 Lisp_Object car = XCAR (tem);
2869 if (STRINGP (car)
2870 && fast_string_match (car, buffer_name) >= 0)
2871 return Qt;
2872 else if (CONSP (car)
2873 && STRINGP (XCAR (car))
2874 && fast_string_match (XCAR (car), buffer_name) >= 0)
2875 return Qt;
2876 }
2877 return Qnil;
2878}
2879
53f76081
RS
2880 /* Use B so the default is (other-buffer). */
2881DEFUN ("display-buffer", Fdisplay_buffer, Sdisplay_buffer, 1, 3,
2882 "BDisplay buffer: \nP",
7ab12479
JB
2883 "Make BUFFER appear in some window but don't select it.\n\
2884BUFFER can be a buffer or a buffer name.\n\
2885If BUFFER is shown already in some window, just use that one,\n\
2886unless the window is the selected window and the optional second\n\
46d3268a 2887argument NOT-THIS-WINDOW is non-nil (interactively, with prefix arg).\n\
5141b901 2888If `pop-up-frames' is non-nil, make a new frame if no window shows BUFFER.\n\
5abcf432 2889Returns the window displaying BUFFER.\n\
9c3da604
GM
2890If `display-reuse-frames' is non-nil, and another frame is currently\n\
2891displaying BUFFER, then simply raise that frame.\n\
5abcf432
RS
2892\n\
2893The variables `special-display-buffer-names', `special-display-regexps',\n\
2894`same-window-buffer-names', and `same-window-regexps' customize how certain\n\
53f76081
RS
2895buffer names are handled.\n\
2896\n\
2897If optional argument FRAME is `visible', search all visible frames.\n\
2898If FRAME is 0, search all visible and iconified frames.\n\
2899If FRAME is t, search all frames.\n\
2900If FRAME is a frame, search only that frame.\n\
2901If FRAME is nil, search only the selected frame\n\
2902 (actually the last nonminibuffer frame),\n\
32cf3ee0 2903 unless `pop-up-frames' or `display-buffer-reuse-frames' is non-nil,\n\
6529ed87
GM
2904 which means search visible and iconified frames.\n\
2905\n\
2906If `even-window-heights' is non-nil, window heights will be evened out\n\
e9ce2497 2907if displaying the buffer causes two vertically adjacent windows to be\n\
6529ed87 2908displayed.")
53f76081
RS
2909 (buffer, not_this_window, frame)
2910 register Lisp_Object buffer, not_this_window, frame;
7ab12479 2911{
aee631c2 2912 register Lisp_Object window, tem, swp;
1ae1a37d 2913 struct frame *f;
7ab12479 2914
aee631c2 2915 swp = Qnil;
7ab12479
JB
2916 buffer = Fget_buffer (buffer);
2917 CHECK_BUFFER (buffer, 0);
2918
265a9e55 2919 if (!NILP (Vdisplay_buffer_function))
7ab12479
JB
2920 return call2 (Vdisplay_buffer_function, buffer, not_this_window);
2921
265a9e55 2922 if (NILP (not_this_window)
7ab12479 2923 && XBUFFER (XWINDOW (selected_window)->buffer) == XBUFFER (buffer))
d07f802a 2924 return display_buffer_1 (selected_window);
7ab12479 2925
855d8627
RS
2926 /* See if the user has specified this buffer should appear
2927 in the selected window. */
2928 if (NILP (not_this_window))
2929 {
aee631c2
RS
2930 swp = Fsame_window_p (XBUFFER (buffer)->name);
2931 if (!NILP (swp) && !no_switch_window (selected_window))
c63dc4a2
RS
2932 {
2933 Fswitch_to_buffer (buffer, Qnil);
d07f802a 2934 return display_buffer_1 (selected_window);
c63dc4a2 2935 }
855d8627
RS
2936 }
2937
9c3da604 2938 /* If the user wants pop-up-frames or display-reuse-frames, then
73dc5198
KH
2939 look for a window showing BUFFER on any visible or iconified frame.
2940 Otherwise search only the current frame. */
53f76081
RS
2941 if (! NILP (frame))
2942 tem = frame;
9c3da604
GM
2943 else if (pop_up_frames
2944 || display_buffer_reuse_frames
2945 || last_nonminibuf_frame == 0)
73dc5198
KH
2946 XSETFASTINT (tem, 0);
2947 else
73dc5198 2948 XSETFRAME (tem, last_nonminibuf_frame);
9c3da604 2949
73dc5198 2950 window = Fget_buffer_window (buffer, tem);
265a9e55
JB
2951 if (!NILP (window)
2952 && (NILP (not_this_window) || !EQ (window, selected_window)))
9c3da604 2953 return display_buffer_1 (window);
7ab12479 2954
a90712c2 2955 /* Certain buffer names get special handling. */
aee631c2 2956 if (!NILP (Vspecial_display_function) && NILP (swp))
a90712c2 2957 {
4628f7a4
EN
2958 tem = Fspecial_display_p (XBUFFER (buffer)->name);
2959 if (EQ (tem, Qt))
a90712c2 2960 return call1 (Vspecial_display_function, buffer);
4628f7a4
EN
2961 if (CONSP (tem))
2962 return call2 (Vspecial_display_function, buffer, tem);
a90712c2
RS
2963 }
2964
44fa5b1e
JB
2965 /* If there are no frames open that have more than a minibuffer,
2966 we need to create a new frame. */
2967 if (pop_up_frames || last_nonminibuf_frame == 0)
7ab12479 2968 {
a90712c2 2969 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
7ab12479 2970 Fset_window_buffer (window, buffer);
d07f802a 2971 return display_buffer_1 (window);
7ab12479 2972 }
7ab12479 2973
1ae1a37d 2974 f = SELECTED_FRAME ();
43bad991 2975 if (pop_up_windows
1ae1a37d 2976 || FRAME_MINIBUF_ONLY_P (f)
cee67da9
RS
2977 /* If the current frame is a special display frame,
2978 don't try to reuse its windows. */
1ae1a37d 2979 || !NILP (XWINDOW (FRAME_ROOT_WINDOW (f))->dedicated))
7ab12479 2980 {
12cae7c0
KH
2981 Lisp_Object frames;
2982
37962e60 2983 frames = Qnil;
1ae1a37d 2984 if (FRAME_MINIBUF_ONLY_P (f))
74112613 2985 XSETFRAME (frames, last_nonminibuf_frame);
7ab12479
JB
2986 /* Don't try to create a window if would get an error */
2987 if (split_height_threshold < window_min_height << 1)
2988 split_height_threshold = window_min_height << 1;
2989
cee67da9
RS
2990 /* Note that both Fget_largest_window and Fget_lru_window
2991 ignore minibuffers and dedicated windows.
2992 This means they can return nil. */
7ab12479 2993
cee67da9
RS
2994 /* If the frame we would try to split cannot be split,
2995 try other frames. */
1ae1a37d 2996 if (FRAME_NO_SPLIT_P (NILP (frames) ? f : last_nonminibuf_frame))
cee67da9
RS
2997 {
2998 /* Try visible frames first. */
2999 window = Fget_largest_window (Qvisible);
3000 /* If that didn't work, try iconified frames. */
3001 if (NILP (window))
3002 window = Fget_largest_window (make_number (0));
3003 if (NILP (window))
3004 window = Fget_largest_window (Qt);
3005 }
3006 else
3007 window = Fget_largest_window (frames);
3008
92cca945
RS
3009 /* If we got a tall enough full-width window that can be split,
3010 split it. */
265a9e55 3011 if (!NILP (window)
92cca945 3012 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
7ab12479 3013 && window_height (window) >= split_height_threshold
111e5992 3014 && WINDOW_FULL_WIDTH_P (XWINDOW (window)))
7ab12479
JB
3015 window = Fsplit_window (window, Qnil, Qnil);
3016 else
3017 {
1942f68f
RS
3018 Lisp_Object upper, lower, other;
3019
44fa5b1e 3020 window = Fget_lru_window (frames);
92cca945
RS
3021 /* If the LRU window is selected, and big enough,
3022 and can be split, split it. */
cee67da9 3023 if (!NILP (window)
92cca945 3024 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
cee67da9
RS
3025 && (EQ (window, selected_window)
3026 || EQ (XWINDOW (window)->parent, Qnil))
7ab12479
JB
3027 && window_height (window) >= window_min_height << 1)
3028 window = Fsplit_window (window, Qnil, Qnil);
cee67da9 3029 /* If Fget_lru_window returned nil, try other approaches. */
48d9379d 3030
cee67da9 3031 /* Try visible frames first. */
48d9379d
RS
3032 if (NILP (window))
3033 window = Fget_buffer_window (buffer, Qvisible);
cee67da9
RS
3034 if (NILP (window))
3035 window = Fget_largest_window (Qvisible);
3036 /* If that didn't work, try iconified frames. */
48d9379d
RS
3037 if (NILP (window))
3038 window = Fget_buffer_window (buffer, make_number (0));
cee67da9
RS
3039 if (NILP (window))
3040 window = Fget_largest_window (make_number (0));
3041 /* Try invisible frames. */
48d9379d
RS
3042 if (NILP (window))
3043 window = Fget_buffer_window (buffer, Qt);
cee67da9
RS
3044 if (NILP (window))
3045 window = Fget_largest_window (Qt);
3046 /* As a last resort, make a new frame. */
3047 if (NILP (window))
3048 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
1942f68f
RS
3049 /* If window appears above or below another,
3050 even out their heights. */
cac66e4f 3051 other = upper = lower = Qnil;
1942f68f
RS
3052 if (!NILP (XWINDOW (window)->prev))
3053 other = upper = XWINDOW (window)->prev, lower = window;
3054 if (!NILP (XWINDOW (window)->next))
3055 other = lower = XWINDOW (window)->next, upper = window;
3056 if (!NILP (other)
6529ed87 3057 && !NILP (Veven_window_heights)
1942f68f 3058 /* Check that OTHER and WINDOW are vertically arrayed. */
296b535c
KH
3059 && !EQ (XWINDOW (other)->top, XWINDOW (window)->top)
3060 && (XFASTINT (XWINDOW (other)->height)
3061 > XFASTINT (XWINDOW (window)->height)))
1942f68f 3062 {
296b535c
KH
3063 int total = (XFASTINT (XWINDOW (other)->height)
3064 + XFASTINT (XWINDOW (window)->height));
86c8e823
GM
3065 enlarge_window (upper,
3066 total / 2 - XFASTINT (XWINDOW (upper)->height),
f984d4fc 3067 0);
1942f68f 3068 }
7ab12479
JB
3069 }
3070 }
3071 else
3072 window = Fget_lru_window (Qnil);
3073
3074 Fset_window_buffer (window, buffer);
d07f802a 3075 return display_buffer_1 (window);
7ab12479
JB
3076}
3077
3078void
3079temp_output_buffer_show (buf)
3080 register Lisp_Object buf;
3081{
3082 register struct buffer *old = current_buffer;
3083 register Lisp_Object window;
3084 register struct window *w;
3085
bccd3dd1
RS
3086 XBUFFER (buf)->directory = current_buffer->directory;
3087
7ab12479 3088 Fset_buffer (buf);
c6367666 3089 BUF_SAVE_MODIFF (XBUFFER (buf)) = MODIFF;
7ab12479
JB
3090 BEGV = BEG;
3091 ZV = Z;
3092 SET_PT (BEG);
b1599b4c 3093 XBUFFER (buf)->prevent_redisplay_optimizations_p = 1;
7ab12479
JB
3094 set_buffer_internal (old);
3095
3096 if (!EQ (Vtemp_buffer_show_function, Qnil))
3097 call1 (Vtemp_buffer_show_function, buf);
3098 else
3099 {
53f76081 3100 window = Fdisplay_buffer (buf, Qnil, Qnil);
7ab12479 3101
1ae1a37d 3102 if (!EQ (XWINDOW (window)->frame, selected_frame))
44fa5b1e 3103 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
7ab12479
JB
3104 Vminibuf_scroll_window = window;
3105 w = XWINDOW (window);
d834a2e9 3106 XSETFASTINT (w->hscroll, 0);
ea68264b 3107 XSETFASTINT (w->min_hscroll, 0);
b73ea88e
RS
3108 set_marker_restricted_both (w->start, buf, 1, 1);
3109 set_marker_restricted_both (w->pointm, buf, 1, 1);
a58ec57d 3110
beb4e312
RS
3111 /* Run temp-buffer-show-hook, with the chosen window selected
3112 and it sbuffer current. */
f52cca03 3113 if (!NILP (Vrun_hooks))
2cccc823 3114 {
f52cca03
RS
3115 Lisp_Object tem;
3116 tem = Fboundp (Qtemp_buffer_show_hook);
2cccc823
RS
3117 if (!NILP (tem))
3118 {
f52cca03
RS
3119 tem = Fsymbol_value (Qtemp_buffer_show_hook);
3120 if (!NILP (tem))
3121 {
3122 int count = specpdl_ptr - specpdl;
b7354ddf
RS
3123 Lisp_Object prev_window;
3124 prev_window = selected_window;
2cccc823 3125
f52cca03 3126 /* Select the window that was chosen, for running the hook. */
65a04b96 3127 record_unwind_protect (Fselect_window, prev_window);
b7354ddf 3128 select_window_1 (window, 0);
beb4e312 3129 Fset_buffer (w->buffer);
f52cca03 3130 call1 (Vrun_hooks, Qtemp_buffer_show_hook);
b7354ddf 3131 select_window_1 (prev_window, 0);
f52cca03
RS
3132 unbind_to (count, Qnil);
3133 }
2cccc823
RS
3134 }
3135 }
3136 }
7ab12479
JB
3137}
3138\f
dfcf069d 3139static void
7ab12479
JB
3140make_dummy_parent (window)
3141 Lisp_Object window;
3142{
cffec418 3143 Lisp_Object new;
7ab12479 3144 register struct window *o, *p;
cffec418
KH
3145 register struct Lisp_Vector *vec;
3146 int i;
7ab12479 3147
cffec418
KH
3148 o = XWINDOW (window);
3149 vec = allocate_vectorlike ((EMACS_INT)VECSIZE (struct window));
3150 for (i = 0; i < VECSIZE (struct window); ++i)
3151 vec->contents[i] = ((struct Lisp_Vector *)o)->contents[i];
3152 vec->size = VECSIZE (struct window);
3153 p = (struct window *)vec;
3154 XSETWINDOW (new, p);
7ab12479 3155
d834a2e9 3156 XSETFASTINT (p->sequence_number, ++sequence_number);
7ab12479
JB
3157
3158 /* Put new into window structure in place of window */
3159 replace_window (window, new);
3160
3161 o->next = Qnil;
3162 o->prev = Qnil;
3163 o->vchild = Qnil;
3164 o->hchild = Qnil;
3165 o->parent = new;
3166
3167 p->start = Qnil;
3168 p->pointm = Qnil;
3169 p->buffer = Qnil;
3170}
3171
3172DEFUN ("split-window", Fsplit_window, Ssplit_window, 0, 3, "",
3173 "Split WINDOW, putting SIZE lines in the first of the pair.\n\
3174WINDOW defaults to selected one and SIZE to half its size.\n\
77ae0fe3 3175If optional third arg HORFLAG is non-nil, split side by side\n\
10f96191
RS
3176and put SIZE columns in the first of the pair. In that case,\n\
3177SIZE includes that window's scroll bar, or the divider column to its right.")
77ae0fe3
KH
3178 (window, size, horflag)
3179 Lisp_Object window, size, horflag;
7ab12479
JB
3180{
3181 register Lisp_Object new;
3182 register struct window *o, *p;
c0807608 3183 FRAME_PTR fo;
77ae0fe3 3184 register int size_int;
7ab12479 3185
265a9e55 3186 if (NILP (window))
7ab12479
JB
3187 window = selected_window;
3188 else
605be8af 3189 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
3190
3191 o = XWINDOW (window);
c0807608 3192 fo = XFRAME (WINDOW_FRAME (o));
7ab12479 3193
77ae0fe3 3194 if (NILP (size))
7ab12479 3195 {
265a9e55 3196 if (!NILP (horflag))
c0807608 3197 /* Calculate the size of the left-hand window, by dividing
25b33244
KH
3198 the usable space in columns by two.
3199 We round up, since the left-hand window may include
3200 a dividing line, while the right-hand may not. */
3201 size_int = (XFASTINT (o->width) + 1) >> 1;
7ab12479 3202 else
77ae0fe3 3203 size_int = XFASTINT (o->height) >> 1;
7ab12479
JB
3204 }
3205 else
3206 {
77ae0fe3
KH
3207 CHECK_NUMBER (size, 1);
3208 size_int = XINT (size);
7ab12479
JB
3209 }
3210
3211 if (MINI_WINDOW_P (o))
3212 error ("Attempt to split minibuffer window");
233a4a2c
GM
3213 else if (window_fixed_size_p (o, !NILP (horflag), 0))
3214 error ("Attempt to split fixed-size window");
7ab12479 3215
a481b3ea 3216 check_min_window_sizes ();
7ab12479 3217
265a9e55 3218 if (NILP (horflag))
7ab12479 3219 {
77ae0fe3
KH
3220 if (size_int < window_min_height)
3221 error ("Window height %d too small (after splitting)", size_int);
3222 if (size_int + window_min_height > XFASTINT (o->height))
37962e60 3223 error ("Window height %d too small (after splitting)",
77ae0fe3 3224 XFASTINT (o->height) - size_int);
265a9e55
JB
3225 if (NILP (o->parent)
3226 || NILP (XWINDOW (o->parent)->vchild))
7ab12479
JB
3227 {
3228 make_dummy_parent (window);
3229 new = o->parent;
3230 XWINDOW (new)->vchild = window;
3231 }
3232 }
3233 else
3234 {
77ae0fe3
KH
3235 if (size_int < window_min_width)
3236 error ("Window width %d too small (after splitting)", size_int);
a59fed7e
RS
3237
3238 if (size_int + window_min_width > XFASTINT (o->width))
37962e60 3239 error ("Window width %d too small (after splitting)",
a59fed7e 3240 XFASTINT (o->width) - size_int);
265a9e55
JB
3241 if (NILP (o->parent)
3242 || NILP (XWINDOW (o->parent)->hchild))
7ab12479
JB
3243 {
3244 make_dummy_parent (window);
3245 new = o->parent;
3246 XWINDOW (new)->hchild = window;
3247 }
3248 }
3249
3250 /* Now we know that window's parent is a vertical combination
3251 if we are dividing vertically, or a horizontal combination
3252 if we are making side-by-side windows */
3253
3254 windows_or_buffers_changed++;
c0807608 3255 FRAME_WINDOW_SIZES_CHANGED (fo) = 1;
7ab12479
JB
3256 new = make_window ();
3257 p = XWINDOW (new);
3258
44fa5b1e 3259 p->frame = o->frame;
7ab12479 3260 p->next = o->next;
265a9e55 3261 if (!NILP (p->next))
7ab12479
JB
3262 XWINDOW (p->next)->prev = new;
3263 p->prev = window;
3264 o->next = new;
3265 p->parent = o->parent;
3266 p->buffer = Qt;
5500c422
GM
3267 p->window_end_valid = Qnil;
3268 bzero (&p->last_cursor, sizeof p->last_cursor);
7ab12479 3269
44fa5b1e 3270 /* Apportion the available frame space among the two new windows */
7ab12479 3271
265a9e55 3272 if (!NILP (horflag))
7ab12479
JB
3273 {
3274 p->height = o->height;
3275 p->top = o->top;
a59fed7e 3276 XSETFASTINT (p->width, XFASTINT (o->width) - size_int);
77ae0fe3
KH
3277 XSETFASTINT (o->width, size_int);
3278 XSETFASTINT (p->left, XFASTINT (o->left) + size_int);
7ab12479
JB
3279 }
3280 else
3281 {
3282 p->left = o->left;
3283 p->width = o->width;
77ae0fe3
KH
3284 XSETFASTINT (p->height, XFASTINT (o->height) - size_int);
3285 XSETFASTINT (o->height, size_int);
3286 XSETFASTINT (p->top, XFASTINT (o->top) + size_int);
7ab12479
JB
3287 }
3288
5500c422
GM
3289 /* Adjust glyph matrices. */
3290 adjust_glyphs (fo);
543f5fb1 3291 Fset_window_buffer (new, o->buffer);
7ab12479
JB
3292 return new;
3293}
3294\f
3295DEFUN ("enlarge-window", Fenlarge_window, Senlarge_window, 1, 2, "p",
3296 "Make current window ARG lines bigger.\n\
5a72551e
EZ
3297From program, optional second arg non-nil means grow sideways ARG columns.\n\
3298Interactively, if an argument is not given, make the window one line bigger.")
413430c5
EN
3299 (arg, side)
3300 register Lisp_Object arg, side;
7ab12479 3301{
413430c5 3302 CHECK_NUMBER (arg, 0);
86c8e823 3303 enlarge_window (selected_window, XINT (arg), !NILP (side));
543f5fb1
RS
3304
3305 if (! NILP (Vwindow_configuration_change_hook))
3306 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
3307
7ab12479
JB
3308 return Qnil;
3309}
3310
3311DEFUN ("shrink-window", Fshrink_window, Sshrink_window, 1, 2, "p",
3312 "Make current window ARG lines smaller.\n\
5a72551e
EZ
3313From program, optional second arg non-nil means shrink sideways arg columns.\n\
3314Interactively, if an argument is not given, make the window one line smaller.")
413430c5
EN
3315 (arg, side)
3316 register Lisp_Object arg, side;
7ab12479 3317{
413430c5 3318 CHECK_NUMBER (arg, 0);
86c8e823 3319 enlarge_window (selected_window, -XINT (arg), !NILP (side));
543f5fb1
RS
3320
3321 if (! NILP (Vwindow_configuration_change_hook))
3322 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
3323
7ab12479
JB
3324 return Qnil;
3325}
3326
3327int
3328window_height (window)
3329 Lisp_Object window;
3330{
3331 register struct window *p = XWINDOW (window);
3332 return XFASTINT (p->height);
3333}
3334
3335int
3336window_width (window)
3337 Lisp_Object window;
3338{
3339 register struct window *p = XWINDOW (window);
3340 return XFASTINT (p->width);
3341}
3342
c1636aa6 3343
7ab12479 3344#define CURBEG(w) \
3578db3c 3345 *(widthflag ? &(XWINDOW (w)->left) : &(XWINDOW (w)->top))
7ab12479
JB
3346
3347#define CURSIZE(w) \
3578db3c 3348 *(widthflag ? &(XWINDOW (w)->width) : &(XWINDOW (w)->height))
7ab12479 3349
233a4a2c
GM
3350
3351/* Enlarge selected_window by DELTA. WIDTHFLAG non-zero means
3352 increase its width. Siblings of the selected window are resized to
3353 fullfil the size request. If they become too small in the process,
3354 they will be deleted. */
7ab12479 3355
f984d4fc 3356static void
86c8e823
GM
3357enlarge_window (window, delta, widthflag)
3358 Lisp_Object window;
233a4a2c 3359 int delta, widthflag;
7ab12479 3360{
86c8e823 3361 Lisp_Object parent, next, prev;
233a4a2c 3362 struct window *p;
3578db3c
KR
3363 Lisp_Object *sizep;
3364 int maximum;
5e14b1fc
AS
3365 int (*sizefun) P_ ((Lisp_Object))
3366 = widthflag ? window_width : window_height;
233a4a2c 3367 void (*setsizefun) P_ ((Lisp_Object, int, int))
5e14b1fc 3368 = (widthflag ? set_window_width : set_window_height);
7ab12479 3369
233a4a2c
GM
3370 /* Check values of window_min_width and window_min_height for
3371 validity. */
a481b3ea 3372 check_min_window_sizes ();
7ab12479 3373
233a4a2c 3374 /* Give up if this window cannot be resized. */
233a4a2c
GM
3375 if (window_fixed_size_p (XWINDOW (window), widthflag, 1))
3376 error ("Window is not resizable");
3377
3378 /* Find the parent of the selected window. */
7ab12479
JB
3379 while (1)
3380 {
3381 p = XWINDOW (window);
3382 parent = p->parent;
233a4a2c 3383
265a9e55 3384 if (NILP (parent))
7ab12479
JB
3385 {
3386 if (widthflag)
3387 error ("No other window to side of this one");
3388 break;
3389 }
233a4a2c
GM
3390
3391 if (widthflag
3392 ? !NILP (XWINDOW (parent)->hchild)
265a9e55 3393 : !NILP (XWINDOW (parent)->vchild))
7ab12479 3394 break;
233a4a2c 3395
7ab12479
JB
3396 window = parent;
3397 }
3398
05c2896a 3399 sizep = &CURSIZE (window);
7ab12479 3400
7ab12479
JB
3401 {
3402 register int maxdelta;
7ab12479 3403
3578db3c 3404 maxdelta = (!NILP (parent) ? (*sizefun) (parent) - XINT (*sizep)
c1636aa6
GM
3405 : !NILP (p->next) ? ((*sizefun) (p->next)
3406 - window_min_size (XWINDOW (p->next),
f984d4fc 3407 widthflag, 0, 0))
c1636aa6
GM
3408 : !NILP (p->prev) ? ((*sizefun) (p->prev)
3409 - window_min_size (XWINDOW (p->prev),
f984d4fc 3410 widthflag, 0, 0))
44fa5b1e
JB
3411 /* This is a frame with only one window, a minibuffer-only
3412 or a minibufferless frame. */
d5783c40 3413 : (delta = 0));
7ab12479
JB
3414
3415 if (delta > maxdelta)
3416 /* This case traps trying to make the minibuffer
44fa5b1e
JB
3417 the full frame, or make the only window aside from the
3418 minibuffer the full frame. */
7ab12479 3419 delta = maxdelta;
6b54027b 3420 }
d5783c40 3421
3578db3c 3422 if (XINT (*sizep) + delta < window_min_size (XWINDOW (window), widthflag, 0, 0))
6b54027b 3423 {
543f5fb1 3424 delete_window (window);
d5783c40 3425 return;
6b54027b
RS
3426 }
3427
3428 if (delta == 0)
3429 return;
7ab12479 3430
db98a733
RS
3431 /* Find the total we can get from other siblings. */
3432 maximum = 0;
3433 for (next = p->next; ! NILP (next); next = XWINDOW (next)->next)
c1636aa6 3434 maximum += (*sizefun) (next) - window_min_size (XWINDOW (next),
f984d4fc 3435 widthflag, 0, 0);
db98a733 3436 for (prev = p->prev; ! NILP (prev); prev = XWINDOW (prev)->prev)
c1636aa6 3437 maximum += (*sizefun) (prev) - window_min_size (XWINDOW (prev),
f984d4fc 3438 widthflag, 0, 0);
db98a733
RS
3439
3440 /* If we can get it all from them, do so. */
c6b530ed 3441 if (delta <= maximum)
7ab12479 3442 {
db98a733
RS
3443 Lisp_Object first_unaffected;
3444 Lisp_Object first_affected;
233a4a2c 3445 int fixed_p;
db98a733
RS
3446
3447 next = p->next;
3448 prev = p->prev;
3449 first_affected = window;
3450 /* Look at one sibling at a time,
3451 moving away from this window in both directions alternately,
3452 and take as much as we can get without deleting that sibling. */
233a4a2c 3453 while (delta != 0 && (!NILP (next) || !NILP (prev)))
db98a733 3454 {
db98a733
RS
3455 if (! NILP (next))
3456 {
c1636aa6 3457 int this_one = ((*sizefun) (next)
233a4a2c 3458 - window_min_size (XWINDOW (next),
f984d4fc 3459 widthflag, 0, &fixed_p));
233a4a2c
GM
3460 if (!fixed_p)
3461 {
3462 if (this_one > delta)
3463 this_one = delta;
3464
3465 (*setsizefun) (next, (*sizefun) (next) - this_one, 0);
3578db3c 3466 (*setsizefun) (window, XINT (*sizep) + this_one, 0);
db98a733 3467
233a4a2c
GM
3468 delta -= this_one;
3469 }
3470
db98a733
RS
3471 next = XWINDOW (next)->next;
3472 }
233a4a2c 3473
db98a733
RS
3474 if (delta == 0)
3475 break;
233a4a2c 3476
db98a733
RS
3477 if (! NILP (prev))
3478 {
c1636aa6 3479 int this_one = ((*sizefun) (prev)
233a4a2c 3480 - window_min_size (XWINDOW (prev),
f984d4fc 3481 widthflag, 0, &fixed_p));
233a4a2c
GM
3482 if (!fixed_p)
3483 {
3484 if (this_one > delta)
3485 this_one = delta;
3486
3487 first_affected = prev;
3488
3489 (*setsizefun) (prev, (*sizefun) (prev) - this_one, 0);
3578db3c 3490 (*setsizefun) (window, XINT (*sizep) + this_one, 0);
233a4a2c
GM
3491
3492 delta -= this_one;
3493 }
3494
db98a733
RS
3495 prev = XWINDOW (prev)->prev;
3496 }
3497 }
3498
233a4a2c
GM
3499 xassert (delta == 0);
3500
db98a733
RS
3501 /* Now recalculate the edge positions of all the windows affected,
3502 based on the new sizes. */
3503 first_unaffected = next;
3504 prev = first_affected;
3505 for (next = XWINDOW (prev)->next; ! EQ (next, first_unaffected);
3506 prev = next, next = XWINDOW (next)->next)
3507 {
3578db3c 3508 XSETINT (CURBEG (next), XINT (CURBEG (prev)) + (*sizefun) (prev));
db98a733
RS
3509 /* This does not change size of NEXT,
3510 but it propagates the new top edge to its children */
3511 (*setsizefun) (next, (*sizefun) (next), 0);
3512 }
7ab12479
JB
3513 }
3514 else
3515 {
3516 register int delta1;
3517 register int opht = (*sizefun) (parent);
3518
3519 /* If trying to grow this window to or beyond size of the parent,
3520 make delta1 so big that, on shrinking back down,
3521 all the siblings end up with less than one line and are deleted. */
3578db3c 3522 if (opht <= XINT (*sizep) + delta)
7ab12479 3523 delta1 = opht * opht * 2;
7ab12479 3524 else
233a4a2c
GM
3525 {
3526 /* Otherwise, make delta1 just right so that if we add
3527 delta1 lines to this window and to the parent, and then
3528 shrink the parent back to its original size, the new
3529 proportional size of this window will increase by delta.
3530
3531 The function size_window will compute the new height h'
3532 of the window from delta1 as:
3533
3534 e = delta1/n
3535 x = delta1 - delta1/n * n for the 1st resizable child
3536 h' = h + e + x
3537
3538 where n is the number of children that can be resized.
3539 We can ignore x by choosing a delta1 that is a multiple of
3540 n. We want the height of this window to come out as
3541
3542 h' = h + delta
3543
3544 So, delta1 must be
3545
3546 h + e = h + delta
3547 delta1/n = delta
3548 delta1 = n * delta.
3549
3550 The number of children n rquals the number of resizable
3551 children of this window + 1 because we know window itself
3552 is resizable (otherwise we would have signalled an error. */
3553
3554 struct window *w = XWINDOW (window);
3555 Lisp_Object s;
3556 int n = 1;
3557
3558 for (s = w->next; !NILP (s); s = XWINDOW (s)->next)
3559 if (!window_fixed_size_p (XWINDOW (s), widthflag, 0))
3560 ++n;
3561 for (s = w->prev; !NILP (s); s = XWINDOW (s)->prev)
3562 if (!window_fixed_size_p (XWINDOW (s), widthflag, 0))
3563 ++n;
3564
3565 delta1 = n * delta;
3566 }
7ab12479
JB
3567
3568 /* Add delta1 lines or columns to this window, and to the parent,
3569 keeping things consistent while not affecting siblings. */
3578db3c
KR
3570 XSETINT (CURSIZE (parent), opht + delta1);
3571 (*setsizefun) (window, XINT (*sizep) + delta1, 0);
7ab12479
JB
3572
3573 /* Squeeze out delta1 lines or columns from our parent,
3574 shriking this window and siblings proportionately.
3575 This brings parent back to correct size.
3576 Delta1 was calculated so this makes this window the desired size,
3577 taking it all out of the siblings. */
3578 (*setsizefun) (parent, opht, 0);
3579 }
3580
d834a2e9 3581 XSETFASTINT (p->last_modified, 0);
3cd21523 3582 XSETFASTINT (p->last_overlay_modified, 0);
5500c422
GM
3583
3584 /* Adjust glyph matrices. */
3585 adjust_glyphs (XFRAME (WINDOW_FRAME (XWINDOW (window))));
7ab12479 3586}
c1636aa6 3587
7ab12479
JB
3588#undef CURBEG
3589#undef CURSIZE
3590
5500c422 3591
f984d4fc
GM
3592\f
3593/***********************************************************************
3594 Resizing Mini-Windows
3595 ***********************************************************************/
3596
3597static void shrink_window_lowest_first P_ ((struct window *, int));
f984d4fc 3598
43b4a21f
GM
3599enum save_restore_action
3600{
3601 CHECK_ORIG_SIZES,
3602 SAVE_ORIG_SIZES,
3603 RESTORE_ORIG_SIZES
3604};
3605
3606static int save_restore_orig_size P_ ((struct window *,
3607 enum save_restore_action));
f984d4fc
GM
3608
3609/* Shrink windows rooted in window W to HEIGHT. Take the space needed
3610 from lowest windows first. */
3611
3612static void
3613shrink_window_lowest_first (w, height)
3614 struct window *w;
3615 int height;
3616{
3617 struct window *c;
3618 Lisp_Object child;
3619 int old_height;
3620
3621 xassert (!MINI_WINDOW_P (w));
3622
3623 /* Set redisplay hints. */
3624 XSETFASTINT (w->last_modified, 0);
3625 XSETFASTINT (w->last_overlay_modified, 0);
3626 windows_or_buffers_changed++;
3627 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (w))) = 1;
3628
3629 old_height = XFASTINT (w->height);
3630 XSETFASTINT (w->height, height);
3631
3632 if (!NILP (w->hchild))
3633 {
3634 for (child = w->hchild; !NILP (child); child = c->next)
3635 {
3636 c = XWINDOW (child);
3637 c->top = w->top;
3638 shrink_window_lowest_first (c, height);
3639 }
3640 }
3641 else if (!NILP (w->vchild))
3642 {
3643 Lisp_Object last_child;
3644 int delta = old_height - height;
3645 int last_top;
6bbd7a29
GM
3646
3647 last_child = Qnil;
f984d4fc
GM
3648
3649 /* Find the last child. We are taking space from lowest windows
3650 first, so we iterate over children from the last child
3651 backwards. */
3652 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
3653 last_child = child;
3654
3655 /* Assign new heights. We leave only MIN_SAFE_WINDOW_HEIGHT. */
3656 for (child = last_child; delta && !NILP (child); child = c->prev)
3657 {
3658 int this_one;
3659
3660 c = XWINDOW (child);
3661 this_one = XFASTINT (c->height) - MIN_SAFE_WINDOW_HEIGHT;
3662
3663 if (this_one > delta)
3664 this_one = delta;
3665
3666 shrink_window_lowest_first (c, XFASTINT (c->height) - this_one);
3667 delta -= this_one;
3668 }
3669
3670 /* Compute new positions. */
3578db3c 3671 last_top = XINT (w->top);
f984d4fc
GM
3672 for (child = w->vchild; !NILP (child); child = c->next)
3673 {
3674 c = XWINDOW (child);
3675 c->top = make_number (last_top);
3676 shrink_window_lowest_first (c, XFASTINT (c->height));
3677 last_top += XFASTINT (c->height);
3678 }
3679 }
3680}
3681
3682
43b4a21f
GM
3683/* Save, restore, or check positions and sizes in the window tree
3684 rooted at W. ACTION says what to do.
f984d4fc 3685
43b4a21f
GM
3686 If ACTION is CHECK_ORIG_SIZES, check if orig_top and orig_height
3687 members are valid for all windows in the window tree. Value is
3688 non-zero if they are valid.
3689
3690 If ACTION is SAVE_ORIG_SIZES, save members top and height in
3691 orig_top and orig_height for all windows in the tree.
3692
3693 If ACTION is RESTORE_ORIG_SIZES, restore top and height from
3694 values stored in orig_top and orig_height for all windows. */
3695
3696static int
3697save_restore_orig_size (w, action)
f984d4fc 3698 struct window *w;
43b4a21f 3699 enum save_restore_action action;
f984d4fc 3700{
43b4a21f
GM
3701 int success_p = 1;
3702
f984d4fc
GM
3703 while (w)
3704 {
3705 if (!NILP (w->hchild))
43b4a21f
GM
3706 {
3707 if (!save_restore_orig_size (XWINDOW (w->hchild), action))
3708 success_p = 0;
3709 }
f984d4fc 3710 else if (!NILP (w->vchild))
43b4a21f
GM
3711 {
3712 if (!save_restore_orig_size (XWINDOW (w->vchild), action))
3713 success_p = 0;
3714 }
f984d4fc 3715
43b4a21f 3716 switch (action)
f984d4fc 3717 {
43b4a21f
GM
3718 case CHECK_ORIG_SIZES:
3719 if (!INTEGERP (w->orig_top) || !INTEGERP (w->orig_height))
3720 return 0;
3721 break;
3722
3723 case SAVE_ORIG_SIZES:
f984d4fc
GM
3724 w->orig_top = w->top;
3725 w->orig_height = w->height;
43b4a21f
GM
3726 XSETFASTINT (w->last_modified, 0);
3727 XSETFASTINT (w->last_overlay_modified, 0);
3728 break;
3729
3730 case RESTORE_ORIG_SIZES:
f984d4fc
GM
3731 xassert (INTEGERP (w->orig_top) && INTEGERP (w->orig_height));
3732 w->top = w->orig_top;
3733 w->height = w->orig_height;
3734 w->orig_height = w->orig_top = Qnil;
43b4a21f
GM
3735 XSETFASTINT (w->last_modified, 0);
3736 XSETFASTINT (w->last_overlay_modified, 0);
3737 break;
3738
3739 default:
3740 abort ();
f984d4fc 3741 }
43b4a21f 3742
f984d4fc
GM
3743 w = NILP (w->next) ? NULL : XWINDOW (w->next);
3744 }
43b4a21f
GM
3745
3746 return success_p;
f984d4fc
GM
3747}
3748
3749
3750/* Grow mini-window W by DELTA lines, DELTA >= 0, or as much as we can
3751 without deleting other windows. */
3752
3753void
3754grow_mini_window (w, delta)
3755 struct window *w;
3756 int delta;
3757{
3758 struct frame *f = XFRAME (w->frame);
3759 struct window *root;
3760
3761 xassert (MINI_WINDOW_P (w));
3762 xassert (delta >= 0);
3763
3764 /* Check values of window_min_width and window_min_height for
3765 validity. */
3766 check_min_window_sizes ();
3767
3768 /* Compute how much we can enlarge the mini-window without deleting
3769 other windows. */
3770 root = XWINDOW (FRAME_ROOT_WINDOW (f));
3771 if (delta)
3772 {
3773 int min_height = window_min_size (root, 0, 0, 0);
3774 if (XFASTINT (root->height) - delta < min_height)
3775 delta = XFASTINT (root->height) - min_height;
3776 }
3777
3778 if (delta)
3779 {
3780 /* Save original window sizes and positions, if not already done. */
43b4a21f
GM
3781 if (!save_restore_orig_size (root, CHECK_ORIG_SIZES))
3782 save_restore_orig_size (root, SAVE_ORIG_SIZES);
f984d4fc
GM
3783
3784 /* Shrink other windows. */
3785 shrink_window_lowest_first (root, XFASTINT (root->height) - delta);
3786
3787 /* Grow the mini-window. */
3578db3c 3788 w->top = make_number (XFASTINT (root->top) + XFASTINT (root->height));
f984d4fc
GM
3789 w->height = make_number (XFASTINT (w->height) + delta);
3790 XSETFASTINT (w->last_modified, 0);
3791 XSETFASTINT (w->last_overlay_modified, 0);
3792
3793 adjust_glyphs (f);
3794 }
3795}
3796
3797
86c8e823
GM
3798/* Shrink mini-window W. If there is recorded info about window sizes
3799 before a call to grow_mini_window, restore recorded window sizes.
3800 Otherwise, if the mini-window is higher than 1 line, resize it to 1
3801 line. */
f984d4fc
GM
3802
3803void
3804shrink_mini_window (w)
3805 struct window *w;
3806{
3807 struct frame *f = XFRAME (w->frame);
3808 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f));
3809
43b4a21f 3810 if (save_restore_orig_size (root, CHECK_ORIG_SIZES))
f984d4fc 3811 {
43b4a21f 3812 save_restore_orig_size (root, RESTORE_ORIG_SIZES);
f984d4fc
GM
3813 adjust_glyphs (f);
3814 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
3815 windows_or_buffers_changed = 1;
3816 }
86c8e823
GM
3817 else if (XFASTINT (w->height) > 1)
3818 {
0130fe1a
GM
3819 /* Distribute the additional lines of the mini-window
3820 among the other windows. */
86c8e823
GM
3821 Lisp_Object window;
3822 XSETWINDOW (window, w);
3823 enlarge_window (window, 1 - XFASTINT (w->height), 0);
3824 }
f984d4fc
GM
3825}
3826
3827
3828\f
5500c422
GM
3829/* Mark window cursors off for all windows in the window tree rooted
3830 at W by setting their phys_cursor_on_p flag to zero. Called from
3831 xterm.c, e.g. when a frame is cleared and thereby all cursors on
3832 the frame are cleared. */
3833
3834void
3835mark_window_cursors_off (w)
3836 struct window *w;
3837{
3838 while (w)
3839 {
3840 if (!NILP (w->hchild))
3841 mark_window_cursors_off (XWINDOW (w->hchild));
3842 else if (!NILP (w->vchild))
3843 mark_window_cursors_off (XWINDOW (w->vchild));
3844 else
3845 w->phys_cursor_on_p = 0;
3846
3847 w = NILP (w->next) ? 0 : XWINDOW (w->next);
3848 }
3849}
3850
3851
7ab12479
JB
3852/* Return number of lines of text (not counting mode line) in W. */
3853
3854int
3855window_internal_height (w)
3856 struct window *w;
3857{
3858 int ht = XFASTINT (w->height);
3859
3860 if (MINI_WINDOW_P (w))
3861 return ht;
3862
265a9e55
JB
3863 if (!NILP (w->parent) || !NILP (w->vchild) || !NILP (w->hchild)
3864 || !NILP (w->next) || !NILP (w->prev)
44fa5b1e 3865 || FRAME_WANTS_MODELINE_P (XFRAME (WINDOW_FRAME (w))))
7ab12479
JB
3866 return ht - 1;
3867
3868 return ht;
3869}
3870
535e0b8e
JB
3871
3872/* Return the number of columns in W.
a3c87d4e 3873 Don't count columns occupied by scroll bars or the vertical bar
535e0b8e 3874 separating W from the sibling to its right. */
5500c422 3875
535e0b8e
JB
3876int
3877window_internal_width (w)
3878 struct window *w;
3879{
5500c422 3880 struct frame *f = XFRAME (WINDOW_FRAME (w));
535e0b8e
JB
3881 int width = XINT (w->width);
3882
a3c87d4e 3883 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
5500c422
GM
3884 /* Scroll bars occupy a few columns. */
3885 width -= FRAME_SCROLL_BAR_COLS (f);
3886 else if (!WINDOW_RIGHTMOST_P (w) && !WINDOW_FULL_WIDTH_P (w))
3887 /* The column of `|' characters separating side-by-side windows
3888 occupies one column only. */
3889 width -= 1;
3890
3891 /* On window-systems, areas to the left and right of the window
3892 are used to display bitmaps there. */
3893 if (FRAME_WINDOW_P (f))
b46dfc64 3894 width -= FRAME_FLAGS_AREA_COLS (f);
111e5992
RS
3895
3896 return width;
535e0b8e
JB
3897}
3898
5500c422
GM
3899\f
3900/************************************************************************
3901 Window Scrolling
3902 ***********************************************************************/
535e0b8e 3903
5500c422
GM
3904/* Scroll contents of window WINDOW up. If WHOLE is non-zero, scroll
3905 one screen-full, which is defined as the height of the window minus
3906 next_screen_context_lines. If WHOLE is zero, scroll up N lines
3907 instead. Negative values of N mean scroll down. NOERROR non-zero
3908 means don't signal an error if we try to move over BEGV or ZV,
3909 respectively. */
7ab12479 3910
101d1605
RS
3911static void
3912window_scroll (window, n, whole, noerror)
7ab12479
JB
3913 Lisp_Object window;
3914 int n;
101d1605 3915 int whole;
f8026fd8 3916 int noerror;
5500c422
GM
3917{
3918 /* If we must, use the pixel-based version which is much slower than
3919 the line-based one but can handle varying line heights. */
3920 if (FRAME_WINDOW_P (XFRAME (XWINDOW (window)->frame)))
3921 window_scroll_pixel_based (window, n, whole, noerror);
3922 else
3923 window_scroll_line_based (window, n, whole, noerror);
3924}
3925
3926
3927/* Implementation of window_scroll that works based on pixel line
3928 heights. See the comment of window_scroll for parameter
3929 descriptions. */
3930
3931static void
3932window_scroll_pixel_based (window, n, whole, noerror)
3933 Lisp_Object window;
3934 int n;
3935 int whole;
3936 int noerror;
3937{
3938 struct it it;
3939 struct window *w = XWINDOW (window);
3940 struct text_pos start;
3941 Lisp_Object tem;
3942 int this_scroll_margin;
3943 int preserve_y;
5cdb3cf3
MB
3944 /* True if we fiddled the window vscroll field without really scrolling. */
3945 int vscrolled = 0;
5500c422
GM
3946
3947 SET_TEXT_POS_FROM_MARKER (start, w->start);
3948
3949 /* If PT is not visible in WINDOW, move back one half of
3950 the screen. */
d72340d4 3951 tem = Fpos_visible_in_window_p (make_number (PT), window, Qnil);
5500c422
GM
3952 if (NILP (tem))
3953 {
3954 /* Move backward half the height of the window. Performance note:
3955 vmotion used here is about 10% faster, but would give wrong
3956 results for variable height lines. */
3957 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
3958 it.current_y = it.last_visible_y;
3959 move_it_vertically (&it, -it.last_visible_y / 2);
3960
3961 /* The function move_iterator_vertically may move over more than
3962 the specified y-distance. If it->w is small, e.g. a
3963 mini-buffer window, we may end up in front of the window's
3964 display area. This is the case when Start displaying at the
3965 start of the line containing PT in this case. */
3966 if (it.current_y <= 0)
3967 {
3968 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
3969 move_it_vertically (&it, 0);
3970 it.current_y = 0;
3971 }
3972
3973 start = it.current.pos;
3974 }
3975
3976 /* If scroll_preserve_screen_position is non-zero, we try to set
3977 point in the same window line as it is now, so get that line. */
3978 if (!NILP (Vscroll_preserve_screen_position))
3979 {
3980 start_display (&it, w, start);
3981 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
3982 preserve_y = it.current_y;
3983 }
3984 else
3985 preserve_y = -1;
3986
3987 /* Move iterator it from start the specified distance forward or
3988 backward. The result is the new window start. */
3989 start_display (&it, w, start);
3990 if (whole)
3991 {
3992 int screen_full = (it.last_visible_y
3993 - next_screen_context_lines * CANON_Y_UNIT (it.f));
3994 int direction = n < 0 ? -1 : 1;
d72340d4
GM
3995 int dy = direction * screen_full;
3996
3997 /* Note that move_it_vertically always moves the iterator to the
3998 start of a line. So, if the last line doesn't have a newline,
3999 we would end up at the start of the line ending at ZV. */
4000 if (dy <= 0)
4001 move_it_vertically_backward (&it, -dy);
4002 else if (dy > 0)
4003 move_it_to (&it, ZV, -1, it.current_y + dy, -1,
4004 MOVE_TO_POS | MOVE_TO_Y);
5500c422
GM
4005 }
4006 else
4007 move_it_by_lines (&it, n, 1);
4008
4009 /* End if we end up at ZV or BEGV. */
4010 if ((n > 0 && IT_CHARPOS (it) == ZV)
4011 || (n < 0 && IT_CHARPOS (it) == CHARPOS (start)))
4012 {
5cdb3cf3
MB
4013 if (IT_CHARPOS (it) == ZV)
4014 {
4015 if (it.current_y + it.max_ascent + it.max_descent
4016 > it.last_visible_y)
a74eca50
GM
4017 {
4018 /* The last line was only partially visible, make it fully
4019 visible. */
4020 w->vscroll = (it.last_visible_y
4021 - it.current_y + it.max_ascent + it.max_descent);
4022 adjust_glyphs (it.f);
4023 }
5cdb3cf3
MB
4024 else if (noerror)
4025 return;
4026 else
4027 Fsignal (Qend_of_buffer, Qnil);
4028 }
5500c422 4029 else
5cdb3cf3
MB
4030 {
4031 if (w->vscroll != 0)
4032 /* The first line was only partially visible, make it fully
4033 visible. */
4034 w->vscroll = 0;
4035 else if (noerror)
4036 return;
4037 else
4038 Fsignal (Qbeginning_of_buffer, Qnil);
4039 }
4040
4041 /* If control gets here, then we vscrolled. */
4042
4043 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
4044
4045 /* Don't try to change the window start below. */
4046 vscrolled = 1;
5500c422
GM
4047 }
4048
5cdb3cf3
MB
4049 if (! vscrolled)
4050 {
4051 /* Set the window start, and set up the window for redisplay. */
4052 set_marker_restricted (w->start, make_number (IT_CHARPOS (it)),
4053 w->buffer);
4054 w->start_at_line_beg = Fbolp ();
4055 w->update_mode_line = Qt;
4056 XSETFASTINT (w->last_modified, 0);
4057 XSETFASTINT (w->last_overlay_modified, 0);
4058 /* Set force_start so that redisplay_window will run the
4059 window-scroll-functions. */
4060 w->force_start = Qt;
4061 }
5500c422
GM
4062
4063 it.current_y = it.vpos = 0;
4064
4065 /* Preserve the screen position if we must. */
4066 if (preserve_y >= 0)
4067 {
4068 move_it_to (&it, -1, -1, preserve_y, -1, MOVE_TO_Y);
4069 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4070 }
4071 else
4072 {
4073 /* Move PT out of scroll margins. */
4074 this_scroll_margin = max (0, scroll_margin);
4075 this_scroll_margin = min (this_scroll_margin, XFASTINT (w->height) / 4);
4076 this_scroll_margin *= CANON_Y_UNIT (it.f);
4077
4078 if (n > 0)
4079 {
4080 /* We moved the window start towards ZV, so PT may be now
4081 in the scroll margin at the top. */
4082 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
4083 while (it.current_y < this_scroll_margin)
4084 move_it_by_lines (&it, 1, 1);
4085 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4086 }
4087 else if (n < 0)
4088 {
5cdb3cf3
MB
4089 int charpos, bytepos;
4090
5500c422
GM
4091 /* We moved the window start towards BEGV, so PT may be now
4092 in the scroll margin at the bottom. */
4093 move_it_to (&it, PT, -1,
4094 it.last_visible_y - this_scroll_margin - 1, -1,
4095 MOVE_TO_POS | MOVE_TO_Y);
5cdb3cf3
MB
4096
4097 /* Save our position, in case it's correct. */
4098 charpos = IT_CHARPOS (it);
4099 bytepos = IT_BYTEPOS (it);
5500c422 4100
5cdb3cf3
MB
4101 /* See if point is on a partially visible line at the end. */
4102 move_it_by_lines (&it, 1, 1);
4103 if (it.current_y > it.last_visible_y)
4104 /* The last line was only partially visible, so back up two
4105 lines to make sure we're on a fully visible line. */
4106 {
4107 move_it_by_lines (&it, -2, 0);
4108 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4109 }
4110 else
4111 /* No, the position we saved is OK, so use it. */
4112 SET_PT_BOTH (charpos, bytepos);
5500c422
GM
4113 }
4114 }
4115}
4116
4117
4118/* Implementation of window_scroll that works based on screen lines.
4119 See the comment of window_scroll for parameter descriptions. */
4120
4121static void
4122window_scroll_line_based (window, n, whole, noerror)
4123 Lisp_Object window;
4124 int n;
4125 int whole;
4126 int noerror;
7ab12479
JB
4127{
4128 register struct window *w = XWINDOW (window);
5500c422 4129 register int opoint = PT, opoint_byte = PT_BYTE;
b73ea88e 4130 register int pos, pos_byte;
7ab12479
JB
4131 register int ht = window_internal_height (w);
4132 register Lisp_Object tem;
4133 int lose;
5500c422 4134 Lisp_Object bolp;
345d45b2 4135 int startpos;
101d1605
RS
4136 struct position posit;
4137 int original_vpos;
4138
4139 startpos = marker_position (w->start);
4140
4141 posit = *compute_motion (startpos, 0, 0, 0,
4142 PT, ht, 0,
4143 window_internal_width (w), XINT (w->hscroll),
4144 0, w);
4145 original_vpos = posit.vpos;
0a1f771a 4146
d834a2e9 4147 XSETFASTINT (tem, PT);
6ffdb539 4148 tem = Fpos_visible_in_window_p (tem, window, Qnil);
7ab12479 4149
265a9e55 4150 if (NILP (tem))
7ab12479 4151 {
cd2be1dd 4152 Fvertical_motion (make_number (- (ht / 2)), window);
345d45b2 4153 startpos = PT;
7ab12479
JB
4154 }
4155
345d45b2 4156 SET_PT (startpos);
5ce7b543 4157 lose = n < 0 && PT == BEGV;
540b6aa0 4158 Fvertical_motion (make_number (n), window);
5ce7b543 4159 pos = PT;
b73ea88e 4160 pos_byte = PT_BYTE;
7ab12479 4161 bolp = Fbolp ();
b73ea88e 4162 SET_PT_BOTH (opoint, opoint_byte);
7ab12479
JB
4163
4164 if (lose)
f8026fd8
JB
4165 {
4166 if (noerror)
4167 return;
4168 else
4169 Fsignal (Qbeginning_of_buffer, Qnil);
4170 }
7ab12479
JB
4171
4172 if (pos < ZV)
7ab12479 4173 {
0c7da84e
RS
4174 int this_scroll_margin = scroll_margin;
4175
4176 /* Don't use a scroll margin that is negative or too large. */
4177 if (this_scroll_margin < 0)
4178 this_scroll_margin = 0;
4179
4180 if (XINT (w->height) < 4 * scroll_margin)
4181 this_scroll_margin = XINT (w->height) / 4;
4182
b73ea88e 4183 set_marker_restricted_both (w->start, w->buffer, pos, pos_byte);
7ab12479
JB
4184 w->start_at_line_beg = bolp;
4185 w->update_mode_line = Qt;
d834a2e9 4186 XSETFASTINT (w->last_modified, 0);
3cd21523 4187 XSETFASTINT (w->last_overlay_modified, 0);
345d45b2
RS
4188 /* Set force_start so that redisplay_window will run
4189 the window-scroll-functions. */
4190 w->force_start = Qt;
0c7da84e 4191
5500c422 4192 if (whole && !NILP (Vscroll_preserve_screen_position))
0c7da84e 4193 {
b73ea88e 4194 SET_PT_BOTH (pos, pos_byte);
101d1605 4195 Fvertical_motion (make_number (original_vpos), window);
0c7da84e 4196 }
101d1605
RS
4197 /* If we scrolled forward, put point enough lines down
4198 that it is outside the scroll margin. */
4199 else if (n > 0)
0c7da84e 4200 {
101d1605
RS
4201 int top_margin;
4202
4203 if (this_scroll_margin > 0)
4204 {
b73ea88e 4205 SET_PT_BOTH (pos, pos_byte);
101d1605
RS
4206 Fvertical_motion (make_number (this_scroll_margin), window);
4207 top_margin = PT;
4208 }
4209 else
4210 top_margin = pos;
4211
4212 if (top_margin <= opoint)
b73ea88e 4213 SET_PT_BOTH (opoint, opoint_byte);
5500c422 4214 else if (!NILP (Vscroll_preserve_screen_position))
101d1605 4215 {
b73ea88e 4216 SET_PT_BOTH (pos, pos_byte);
101d1605
RS
4217 Fvertical_motion (make_number (original_vpos), window);
4218 }
9317a85d 4219 else
335406fc 4220 SET_PT (top_margin);
0c7da84e 4221 }
101d1605 4222 else if (n < 0)
7ab12479 4223 {
101d1605
RS
4224 int bottom_margin;
4225
0c7da84e
RS
4226 /* If we scrolled backward, put point near the end of the window
4227 but not within the scroll margin. */
b73ea88e 4228 SET_PT_BOTH (pos, pos_byte);
0c7da84e 4229 tem = Fvertical_motion (make_number (ht - this_scroll_margin), window);
101d1605
RS
4230 if (XFASTINT (tem) == ht - this_scroll_margin)
4231 bottom_margin = PT;
4232 else
4233 bottom_margin = PT + 1;
4234
4235 if (bottom_margin > opoint)
b73ea88e 4236 SET_PT_BOTH (opoint, opoint_byte);
7ab12479 4237 else
101d1605 4238 {
5500c422 4239 if (!NILP (Vscroll_preserve_screen_position))
9317a85d 4240 {
b73ea88e 4241 SET_PT_BOTH (pos, pos_byte);
9317a85d
RS
4242 Fvertical_motion (make_number (original_vpos), window);
4243 }
4244 else
4245 Fvertical_motion (make_number (-1), window);
101d1605 4246 }
7ab12479
JB
4247 }
4248 }
4249 else
f8026fd8
JB
4250 {
4251 if (noerror)
4252 return;
4253 else
4254 Fsignal (Qend_of_buffer, Qnil);
4255 }
7ab12479 4256}
5500c422
GM
4257
4258
4259/* Scroll selected_window up or down. If N is nil, scroll a
4260 screen-full which is defined as the height of the window minus
4261 next_screen_context_lines. If N is the symbol `-', scroll.
4262 DIRECTION may be 1 meaning to scroll down, or -1 meaning to scroll
4263 up. This is the guts of Fscroll_up and Fscroll_down. */
7ab12479
JB
4264
4265static void
4266scroll_command (n, direction)
5500c422 4267 Lisp_Object n;
7ab12479
JB
4268 int direction;
4269{
4270 register int defalt;
4271 int count = specpdl_ptr - specpdl;
4272
5500c422
GM
4273 xassert (abs (direction) == 1);
4274
4275 /* If selected window's buffer isn't current, make it current for
4276 the moment. But don't screw up if window_scroll gets an error. */
7ab12479 4277 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
95605e15
JB
4278 {
4279 record_unwind_protect (save_excursion_restore, save_excursion_save ());
4280 Fset_buffer (XWINDOW (selected_window)->buffer);
5500c422
GM
4281
4282 /* Make redisplay consider other windows than just selected_window. */
4283 ++windows_or_buffers_changed;
95605e15 4284 }
7ab12479
JB
4285
4286 defalt = (window_internal_height (XWINDOW (selected_window))
4287 - next_screen_context_lines);
4288 defalt = direction * (defalt < 1 ? 1 : defalt);
4289
265a9e55 4290 if (NILP (n))
101d1605 4291 window_scroll (selected_window, defalt, 1, 0);
7ab12479 4292 else if (EQ (n, Qminus))
101d1605 4293 window_scroll (selected_window, - defalt, 1, 0);
7ab12479
JB
4294 else
4295 {
4296 n = Fprefix_numeric_value (n);
101d1605 4297 window_scroll (selected_window, XINT (n) * direction, 0, 0);
7ab12479 4298 }
95605e15
JB
4299
4300 unbind_to (count, Qnil);
7ab12479
JB
4301}
4302
4303DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P",
4304 "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\
4305A near full screen is `next-screen-context-lines' less than a full screen.\n\
279e0e0c 4306Negative ARG means scroll downward.\n\
dd394ff9
KH
4307If ARG is the atom `-', scroll downward by nearly full screen.\n\
4308When calling from a program, supply as argument a number, nil, or `-'.")
413430c5
EN
4309 (arg)
4310 Lisp_Object arg;
7ab12479 4311{
413430c5 4312 scroll_command (arg, 1);
7ab12479
JB
4313 return Qnil;
4314}
4315
4316DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P",
a5fcbc4e 4317 "Scroll text of current window down ARG lines; or near full screen if no ARG.\n\
7ab12479 4318A near full screen is `next-screen-context-lines' less than a full screen.\n\
279e0e0c 4319Negative ARG means scroll upward.\n\
dd394ff9
KH
4320If ARG is the atom `-', scroll upward by nearly full screen.\n\
4321When calling from a program, supply as argument a number, nil, or `-'.")
413430c5
EN
4322 (arg)
4323 Lisp_Object arg;
7ab12479 4324{
413430c5 4325 scroll_command (arg, -1);
7ab12479
JB
4326 return Qnil;
4327}
ccd0664b
RS
4328\f
4329DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling, Sother_window_for_scrolling, 0, 0, 0,
4330 "Return the other window for \"other window scroll\" commands.\n\
77b24de6 4331If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
ccd0664b
RS
4332specifies the window.\n\
4333If `other-window-scroll-buffer' is non-nil, a window\n\
4334showing that buffer is used.")
eb16ec06 4335 ()
7ab12479 4336{
ccd0664b 4337 Lisp_Object window;
7ab12479
JB
4338
4339 if (MINI_WINDOW_P (XWINDOW (selected_window))
265a9e55 4340 && !NILP (Vminibuf_scroll_window))
7ab12479
JB
4341 window = Vminibuf_scroll_window;
4342 /* If buffer is specified, scroll that buffer. */
265a9e55 4343 else if (!NILP (Vother_window_scroll_buffer))
7ab12479
JB
4344 {
4345 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil);
265a9e55 4346 if (NILP (window))
53f76081 4347 window = Fdisplay_buffer (Vother_window_scroll_buffer, Qt, Qnil);
7ab12479
JB
4348 }
4349 else
dbc4e1c1
JB
4350 {
4351 /* Nothing specified; look for a neighboring window on the same
4352 frame. */
4353 window = Fnext_window (selected_window, Qnil, Qnil);
4354
4355 if (EQ (window, selected_window))
4356 /* That didn't get us anywhere; look for a window on another
4357 visible frame. */
4358 do
4359 window = Fnext_window (window, Qnil, Qt);
4360 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
4361 && ! EQ (window, selected_window));
4362 }
4363
605be8af 4364 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
4365
4366 if (EQ (window, selected_window))
4367 error ("There is no other window");
4368
ccd0664b
RS
4369 return window;
4370}
4371
4372DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P",
4373 "Scroll next window upward ARG lines; or near full screen if no ARG.\n\
dd394ff9 4374A near full screen is `next-screen-context-lines' less than a full screen.\n\
ccd0664b
RS
4375The next window is the one below the current one; or the one at the top\n\
4376if the current one is at the bottom. Negative ARG means scroll downward.\n\
dd394ff9
KH
4377If ARG is the atom `-', scroll downward by nearly full screen.\n\
4378When calling from a program, supply as argument a number, nil, or `-'.\n\
ccd0664b
RS
4379\n\
4380If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
4381specifies the window to scroll.\n\
4382If `other-window-scroll-buffer' is non-nil, scroll the window\n\
4383showing that buffer, popping the buffer up if necessary.")
413430c5
EN
4384 (arg)
4385 register Lisp_Object arg;
ccd0664b
RS
4386{
4387 register Lisp_Object window;
2f787aa3 4388 register int defalt;
ccd0664b
RS
4389 register struct window *w;
4390 register int count = specpdl_ptr - specpdl;
4391
4392 window = Fother_window_for_scrolling ();
4393
7ab12479 4394 w = XWINDOW (window);
2f787aa3
KH
4395 defalt = window_internal_height (w) - next_screen_context_lines;
4396 if (defalt < 1) defalt = 1;
7ab12479
JB
4397
4398 /* Don't screw up if window_scroll gets an error. */
4399 record_unwind_protect (save_excursion_restore, save_excursion_save ());
5500c422 4400 ++windows_or_buffers_changed;
7ab12479
JB
4401
4402 Fset_buffer (w->buffer);
4403 SET_PT (marker_position (w->pointm));
4404
413430c5 4405 if (NILP (arg))
101d1605 4406 window_scroll (window, defalt, 1, 1);
413430c5 4407 else if (EQ (arg, Qminus))
101d1605 4408 window_scroll (window, -defalt, 1, 1);
7ab12479
JB
4409 else
4410 {
413430c5
EN
4411 if (CONSP (arg))
4412 arg = Fcar (arg);
4413 CHECK_NUMBER (arg, 0);
101d1605 4414 window_scroll (window, XINT (arg), 0, 1);
7ab12479
JB
4415 }
4416
b73ea88e 4417 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
f4e7b2c2 4418 unbind_to (count, Qnil);
7ab12479
JB
4419
4420 return Qnil;
4421}
4422\f
644b477c 4423DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 1, "P",
7ab12479
JB
4424 "Scroll selected window display ARG columns left.\n\
4425Default for ARG is window width minus 2.")
4426 (arg)
4427 register Lisp_Object arg;
4428{
c67fa410
GM
4429 Lisp_Object result;
4430 int hscroll;
4431 struct window *w = XWINDOW (selected_window);
4432
265a9e55 4433 if (NILP (arg))
c67fa410 4434 XSETFASTINT (arg, window_internal_width (w) - 2);
7ab12479
JB
4435 else
4436 arg = Fprefix_numeric_value (arg);
4437
c67fa410
GM
4438 hscroll = XINT (w->hscroll) + XINT (arg);
4439 result = Fset_window_hscroll (selected_window, make_number (hscroll));
4440
f5686fbd 4441 if (interactive_p (0))
c67fa410
GM
4442 w->min_hscroll = w->hscroll;
4443
4444 return result;
7ab12479
JB
4445}
4446
644b477c 4447DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 1, "P",
7ab12479
JB
4448 "Scroll selected window display ARG columns right.\n\
4449Default for ARG is window width minus 2.")
4450 (arg)
4451 register Lisp_Object arg;
4452{
c67fa410
GM
4453 Lisp_Object result;
4454 int hscroll;
4455 struct window *w = XWINDOW (selected_window);
4456
265a9e55 4457 if (NILP (arg))
c67fa410 4458 XSETFASTINT (arg, window_internal_width (w) - 2);
7ab12479
JB
4459 else
4460 arg = Fprefix_numeric_value (arg);
4461
c67fa410
GM
4462 hscroll = XINT (w->hscroll) - XINT (arg);
4463 result = Fset_window_hscroll (selected_window, make_number (hscroll));
4464
f5686fbd 4465 if (interactive_p (0))
c67fa410
GM
4466 w->min_hscroll = w->hscroll;
4467
4468 return result;
7ab12479
JB
4469}
4470
12c8b416
GM
4471/* Value is the number of lines actually displayed in window W,
4472 as opposed to its height. */
4473
4474static int
4475displayed_window_lines (w)
4476 struct window *w;
4477{
4478 struct it it;
4479 struct text_pos start;
4480 int height = window_box_height (w);
4481 struct buffer *old_buffer;
4482 int bottom_y;
4483
4484 if (XBUFFER (w->buffer) != current_buffer)
4485 {
4486 old_buffer = current_buffer;
4487 set_buffer_internal (XBUFFER (w->buffer));
4488 }
4489 else
4490 old_buffer = NULL;
4491
4492 SET_TEXT_POS_FROM_MARKER (start, w->start);
4493 start_display (&it, w, start);
4494 move_it_vertically (&it, height);
4495
4496 if (old_buffer)
4497 set_buffer_internal (old_buffer);
4498
4499 bottom_y = it.current_y + it.max_ascent + it.max_descent;
4500
4501 if (bottom_y > it.current_y && bottom_y <= it.last_visible_y)
4502 /* Hit a line without a terminating newline. */
4503 it.vpos++;
4504
4505 /* Add in empty lines at the bottom of the window. */
4506 if (bottom_y < height)
4507 {
4508 struct frame *f = XFRAME (w->frame);
4509 int rest = height - bottom_y;
4510 int lines = rest / CANON_Y_UNIT (f);
4511 it.vpos += lines;
4512 }
4513
4514 return it.vpos;
4515}
4516
4517
7ab12479 4518DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P",
04212fcb
RS
4519 "Center point in window and redisplay frame.\n\
4520With prefix argument ARG, recenter putting point on screen line ARG\n\
4521relative to the current window. If ARG is negative, it counts up from the\n\
4522bottom of the window. (ARG should be less than the height of the window.)\n\
4523\n\
4524If ARG is omitted or nil, erase the entire frame and then\n\
4525redraw with point in the center of the current window.\n\
4526Just C-u as prefix means put point in the center of the window\n\
4527and redisplay normally--don't erase and redraw the frame.")
413430c5
EN
4528 (arg)
4529 register Lisp_Object arg;
7ab12479 4530{
6df47b59 4531 struct window *w = XWINDOW (selected_window);
478292ed
RS
4532 struct buffer *buf = XBUFFER (w->buffer);
4533 struct buffer *obuf = current_buffer;
6df47b59
GM
4534 int center_p = 0;
4535 int charpos, bytepos;
7ab12479 4536
413430c5 4537 if (NILP (arg))
7ab12479 4538 {
f02d6d5c
KH
4539 int i;
4540
4541 /* Invalidate pixel data calculated for all compositions. */
4542 for (i = 0; i < n_compositions; i++)
4543 composition_table[i]->font = NULL;
7ab12479 4544
527b6458 4545 Fredraw_frame (w->frame);
44fa5b1e 4546 SET_FRAME_GARBAGED (XFRAME (WINDOW_FRAME (w)));
6df47b59 4547 center_p = 1;
7ab12479 4548 }
413430c5 4549 else if (CONSP (arg)) /* Just C-u. */
6df47b59 4550 center_p = 1;
7ab12479
JB
4551 else
4552 {
413430c5
EN
4553 arg = Fprefix_numeric_value (arg);
4554 CHECK_NUMBER (arg, 0);
7ab12479
JB
4555 }
4556
478292ed 4557 set_buffer_internal (buf);
7ab12479 4558
6df47b59
GM
4559 /* Handle centering on a gfaphical frame specially. Such frames can
4560 have variable-height lines and centering point on the basis of
4561 line counts would lead to strange effects. */
4562 if (center_p && FRAME_WINDOW_P (XFRAME (w->frame)))
4563 {
4564 struct it it;
4565 struct text_pos pt;
4566
4567 SET_TEXT_POS (pt, PT, PT_BYTE);
4568 start_display (&it, w, pt);
4569 move_it_vertically (&it, - it.last_visible_y / 2);
4570 charpos = IT_CHARPOS (it);
4571 bytepos = IT_BYTEPOS (it);
4572 }
4573 else
4574 {
4575 struct position pos;
4576
4577 if (center_p)
4578 {
4579 int ht = displayed_window_lines (w);
4580 arg = make_number (ht / 2);
4581 }
4582 else if (XINT (arg) < 0)
4583 {
4584 int ht = displayed_window_lines (w);
4585 XSETINT (arg, XINT (arg) + ht);
4586 }
4587
4588 pos = *vmotion (PT, - XINT (arg), w);
4589 charpos = pos.bufpos;
4590 bytepos = pos.bytepos;
4591 }
4592
4593 /* Set the new window start. */
4594 set_marker_both (w->start, w->buffer, charpos, bytepos);
2f3cad6c 4595 w->window_end_valid = Qnil;
7ab12479 4596 w->force_start = Qt;
6df47b59
GM
4597 if (bytepos == BEGV_BYTE || FETCH_BYTE (bytepos - 1) == '\n')
4598 w->start_at_line_beg = Qt;
4599 else
4600 w->start_at_line_beg = Qnil;
4601
478292ed 4602 set_buffer_internal (obuf);
7ab12479
JB
4603 return Qnil;
4604}
b7617575
GM
4605
4606
81fe0836
MB
4607DEFUN ("window-text-height", Fwindow_text_height, Swindow_text_height,
4608 0, 1, 0,
4609 "Return the height in lines of the text display area of WINDOW.\n\
4610This doesn't include the mode-line (or header-line if any) or any\n\
4611partial-height lines in the text display area.")
4612 (window)
4613 Lisp_Object window;
4614{
4615 struct window *w = decode_window (window);
4616 int pixel_height = window_box_height (w);
4617 int line_height = pixel_height / CANON_Y_UNIT (XFRAME (w->frame));
4618 return make_number (line_height);
4619}
4620
4621
7ab12479
JB
4622\f
4623DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
4624 1, 1, "P",
4625 "Position point relative to window.\n\
19e3bf0a 4626With no argument, position point at center of window.\n\
d81724c7
RS
4627An argument specifies vertical position within the window;\n\
4628zero means top of window, negative means relative to bottom of window.")
7ab12479 4629 (arg)
b7617575 4630 Lisp_Object arg;
7ab12479 4631{
b7617575
GM
4632 struct window *w = XWINDOW (selected_window);
4633 int lines, start;
540b6aa0 4634 Lisp_Object window;
7ab12479 4635
b7617575 4636 window = selected_window;
7ab12479
JB
4637 start = marker_position (w->start);
4638 if (start < BEGV || start > ZV)
4639 {
b7617575 4640 int height = window_internal_height (w);
cd2be1dd 4641 Fvertical_motion (make_number (- (height / 2)), window);
b73ea88e 4642 set_marker_both (w->start, w->buffer, PT, PT_BYTE);
7ab12479
JB
4643 w->start_at_line_beg = Fbolp ();
4644 w->force_start = Qt;
4645 }
4646 else
b73ea88e 4647 Fgoto_char (w->start);
7ab12479 4648
b7617575
GM
4649 lines = displayed_window_lines (w);
4650 if (NILP (arg))
4651 XSETFASTINT (arg, lines / 2);
4652 else
4653 {
4654 arg = Fprefix_numeric_value (arg);
4655 if (XINT (arg) < 0)
4656 XSETINT (arg, XINT (arg) + lines);
4657 }
4658
f53df7de
GM
4659#if 0 /* I don't understand why this is done. Among other things,
4660 it means that C-u 0 M-r moves to line 1, and C-u -1 M-r
4661 moves to the line below the window end. 2000-02-05, gerd */
163784df
MB
4662 if (w->vscroll)
4663 /* Skip past a partially visible first line. */
4664 XSETINT (arg, XINT (arg) + 1);
f53df7de 4665#endif
163784df 4666
540b6aa0 4667 return Fvertical_motion (arg, window);
7ab12479 4668}
5500c422
GM
4669
4670
7ab12479 4671\f
5500c422
GM
4672/***********************************************************************
4673 Window Configuration
4674 ***********************************************************************/
4675
7ab12479
JB
4676struct save_window_data
4677 {
f5ccc0cc 4678 EMACS_INT size_from_Lisp_Vector_struct;
7ab12479 4679 struct Lisp_Vector *next_from_Lisp_Vector_struct;
8f6ea2e9 4680 Lisp_Object frame_width, frame_height, frame_menu_bar_lines;
9ea173e8 4681 Lisp_Object frame_tool_bar_lines;
bdc727bf 4682 Lisp_Object selected_frame;
7ab12479
JB
4683 Lisp_Object current_window;
4684 Lisp_Object current_buffer;
4685 Lisp_Object minibuf_scroll_window;
4686 Lisp_Object root_window;
bdc727bf 4687 Lisp_Object focus_frame;
756b6edc
RS
4688 /* Record the values of window-min-width and window-min-height
4689 so that window sizes remain consistent with them. */
4690 Lisp_Object min_width, min_height;
cbff28e8
RS
4691 /* A vector, each of whose elements is a struct saved_window
4692 for one window. */
7ab12479
JB
4693 Lisp_Object saved_windows;
4694 };
ff06df24 4695
cbff28e8 4696/* This is saved as a Lisp_Vector */
7ab12479 4697struct saved_window
ea68264b
GM
4698{
4699 /* these first two must agree with struct Lisp_Vector in lisp.h */
4700 EMACS_INT size_from_Lisp_Vector_struct;
4701 struct Lisp_Vector *next_from_Lisp_Vector_struct;
7ab12479 4702
ea68264b
GM
4703 Lisp_Object window;
4704 Lisp_Object buffer, start, pointm, mark;
4705 Lisp_Object left, top, width, height, hscroll, min_hscroll;
4706 Lisp_Object parent, prev;
4707 Lisp_Object start_at_line_beg;
4708 Lisp_Object display_table;
4709 Lisp_Object orig_top, orig_height;
4710};
4711
4712#define SAVED_WINDOW_VECTOR_SIZE 17 /* Arg to Fmake_vector */
7ab12479
JB
4713
4714#define SAVED_WINDOW_N(swv,n) \
4715 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
4716
4717DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
cbff28e8 4718 "Return t if OBJECT is a window-configuration object.")
413430c5
EN
4719 (object)
4720 Lisp_Object object;
7ab12479 4721{
413430c5 4722 if (WINDOW_CONFIGURATIONP (object))
7ab12479
JB
4723 return Qt;
4724 return Qnil;
4725}
4726
3f8ab7bd
RS
4727DEFUN ("window-configuration-frame", Fwindow_configuration_frame, Swindow_configuration_frame, 1, 1, 0,
4728 "Return the frame that CONFIG, a window-configuration object, is about.")
4729 (config)
4730 Lisp_Object config;
4731{
4732 register struct save_window_data *data;
4733 struct Lisp_Vector *saved_windows;
4734
4735 if (! WINDOW_CONFIGURATIONP (config))
4736 wrong_type_argument (Qwindow_configuration_p, config);
4737
4738 data = (struct save_window_data *) XVECTOR (config);
4739 saved_windows = XVECTOR (data->saved_windows);
4740 return XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
4741}
4742
d5b2799e
RS
4743DEFUN ("set-window-configuration", Fset_window_configuration,
4744 Sset_window_configuration, 1, 1, 0,
7ab12479
JB
4745 "Set the configuration of windows and buffers as specified by CONFIGURATION.\n\
4746CONFIGURATION must be a value previously returned\n\
3f8ab7bd
RS
4747by `current-window-configuration' (which see).\n\
4748If CONFIGURATION was made from a frame that is now deleted,\n\
4749only frame-independent values can be restored. In this case,\n\
4750the return value is nil. Otherwise the value is t.")
4751 (configuration)
2f83aebe 4752 Lisp_Object configuration;
7ab12479 4753{
7ab12479
JB
4754 register struct save_window_data *data;
4755 struct Lisp_Vector *saved_windows;
7ab12479 4756 Lisp_Object new_current_buffer;
fd482be5 4757 Lisp_Object frame;
44fa5b1e 4758 FRAME_PTR f;
d2b35234 4759 int old_point = -1;
7ab12479 4760
017b2bad 4761 while (!WINDOW_CONFIGURATIONP (configuration))
3f8ab7bd 4762 wrong_type_argument (Qwindow_configuration_p, configuration);
7ab12479 4763
2f83aebe 4764 data = (struct save_window_data *) XVECTOR (configuration);
7ab12479
JB
4765 saved_windows = XVECTOR (data->saved_windows);
4766
7ab12479 4767 new_current_buffer = data->current_buffer;
265a9e55 4768 if (NILP (XBUFFER (new_current_buffer)->name))
7ab12479 4769 new_current_buffer = Qnil;
d2b35234
RS
4770 else
4771 {
4772 if (XBUFFER (new_current_buffer) == current_buffer)
4773 old_point = PT;
4774 }
7ab12479 4775
fd482be5
JB
4776 frame = XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
4777 f = XFRAME (frame);
aa35ba9e 4778
fd482be5
JB
4779 /* If f is a dead frame, don't bother rebuilding its window tree.
4780 However, there is other stuff we should still try to do below. */
4781 if (FRAME_LIVE_P (f))
7ab12479 4782 {
fd482be5
JB
4783 register struct window *w;
4784 register struct saved_window *p;
5500c422
GM
4785 struct window *root_window;
4786 struct window **leaf_windows;
4787 int n_leaf_windows;
c4280705 4788 int k, i, n;
fd482be5
JB
4789
4790 /* If the frame has been resized since this window configuration was
4791 made, we change the frame to the size specified in the
4792 configuration, restore the configuration, and then resize it
4793 back. We keep track of the prevailing height in these variables. */
4794 int previous_frame_height = FRAME_HEIGHT (f);
4795 int previous_frame_width = FRAME_WIDTH (f);
8f6ea2e9 4796 int previous_frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
9ea173e8 4797 int previous_frame_tool_bar_lines = FRAME_TOOL_BAR_LINES (f);
fd482be5 4798
d2b35234
RS
4799 /* The mouse highlighting code could get screwed up
4800 if it runs during this. */
4801 BLOCK_INPUT;
4802
fd482be5
JB
4803 if (XFASTINT (data->frame_height) != previous_frame_height
4804 || XFASTINT (data->frame_width) != previous_frame_width)
f8ad443a 4805 change_frame_size (f, XFASTINT (data->frame_height),
2b653806 4806 XFASTINT (data->frame_width), 0, 0, 0);
e3678b64 4807#if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
8f6ea2e9
KH
4808 if (XFASTINT (data->frame_menu_bar_lines)
4809 != previous_frame_menu_bar_lines)
f8ad443a 4810 x_set_menu_bar_lines (f, data->frame_menu_bar_lines, make_number (0));
4314246f 4811#ifdef HAVE_WINDOW_SYSTEM
9ea173e8
GM
4812 if (XFASTINT (data->frame_tool_bar_lines)
4813 != previous_frame_tool_bar_lines)
4814 x_set_tool_bar_lines (f, data->frame_tool_bar_lines, make_number (0));
4314246f 4815#endif
217f2871 4816#endif
fd482be5 4817
719eaeb1
GM
4818 /* "Swap out" point from the selected window
4819 into its buffer. We do this now, before
4820 restoring the window contents, and prevent it from
4821 being done later on when we select a new window. */
596ae0cf
RS
4822 if (! NILP (XWINDOW (selected_window)->buffer))
4823 {
4824 w = XWINDOW (selected_window);
4825 set_marker_both (w->pointm,
4826 w->buffer,
4827 BUF_PT (XBUFFER (w->buffer)),
4828 BUF_PT_BYTE (XBUFFER (w->buffer)));
4829 }
4830
fd482be5 4831 windows_or_buffers_changed++;
29aeee73 4832 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
fd482be5 4833
5500c422
GM
4834 /* Problem: Freeing all matrices and later allocating them again
4835 is a serious redisplay flickering problem. What we would
4836 really like to do is to free only those matrices not reused
4837 below. */
4838 root_window = XWINDOW (FRAME_ROOT_WINDOW (f));
4839 leaf_windows
4840 = (struct window **) alloca (count_windows (root_window)
4841 * sizeof (struct window *));
4842 n_leaf_windows = get_leaf_windows (root_window, leaf_windows, 0);
4843
756b6edc
RS
4844 /* Temporarily avoid any problems with windows that are smaller
4845 than they are supposed to be. */
4846 window_min_height = 1;
4847 window_min_width = 1;
4848
fd482be5
JB
4849 /* Kludge Alert!
4850 Mark all windows now on frame as "deleted".
4851 Restoring the new configuration "undeletes" any that are in it.
37962e60 4852
fd482be5
JB
4853 Save their current buffers in their height fields, since we may
4854 need it later, if a buffer saved in the configuration is now
4855 dead. */
4856 delete_all_subwindows (XWINDOW (FRAME_ROOT_WINDOW (f)));
4857
4858 for (k = 0; k < saved_windows->size; k++)
4859 {
4860 p = SAVED_WINDOW_N (saved_windows, k);
4861 w = XWINDOW (p->window);
4862 w->next = Qnil;
7ab12479 4863
fd482be5
JB
4864 if (!NILP (p->parent))
4865 w->parent = SAVED_WINDOW_N (saved_windows,
4866 XFASTINT (p->parent))->window;
4867 else
4868 w->parent = Qnil;
7ab12479 4869
fd482be5 4870 if (!NILP (p->prev))
7ab12479 4871 {
fd482be5
JB
4872 w->prev = SAVED_WINDOW_N (saved_windows,
4873 XFASTINT (p->prev))->window;
4874 XWINDOW (w->prev)->next = p->window;
4875 }
4876 else
4877 {
4878 w->prev = Qnil;
4879 if (!NILP (w->parent))
4880 {
4881 if (EQ (p->width, XWINDOW (w->parent)->width))
4882 {
4883 XWINDOW (w->parent)->vchild = p->window;
4884 XWINDOW (w->parent)->hchild = Qnil;
4885 }
4886 else
4887 {
4888 XWINDOW (w->parent)->hchild = p->window;
4889 XWINDOW (w->parent)->vchild = Qnil;
4890 }
4891 }
4892 }
4893
4894 /* If we squirreled away the buffer in the window's height,
4895 restore it now. */
017b2bad 4896 if (BUFFERP (w->height))
fd482be5
JB
4897 w->buffer = w->height;
4898 w->left = p->left;
4899 w->top = p->top;
4900 w->width = p->width;
4901 w->height = p->height;
4902 w->hscroll = p->hscroll;
ea68264b 4903 w->min_hscroll = p->min_hscroll;
fd482be5 4904 w->display_table = p->display_table;
a1d58e5b
GM
4905 w->orig_top = p->orig_top;
4906 w->orig_height = p->orig_height;
d834a2e9 4907 XSETFASTINT (w->last_modified, 0);
3cd21523 4908 XSETFASTINT (w->last_overlay_modified, 0);
fd482be5
JB
4909
4910 /* Reinstall the saved buffer and pointers into it. */
4911 if (NILP (p->buffer))
4912 w->buffer = p->buffer;
4913 else
4914 {
4915 if (!NILP (XBUFFER (p->buffer)->name))
4916 /* If saved buffer is alive, install it. */
4917 {
4918 w->buffer = p->buffer;
4919 w->start_at_line_beg = p->start_at_line_beg;
b73ea88e
RS
4920 set_marker_restricted (w->start, p->start, w->buffer);
4921 set_marker_restricted (w->pointm, p->pointm, w->buffer);
fd482be5 4922 Fset_marker (XBUFFER (w->buffer)->mark,
b73ea88e 4923 p->mark, w->buffer);
fd482be5
JB
4924
4925 /* As documented in Fcurrent_window_configuration, don't
4926 save the location of point in the buffer which was current
4927 when the window configuration was recorded. */
6b54027b
RS
4928 if (!EQ (p->buffer, new_current_buffer)
4929 && XBUFFER (p->buffer) == current_buffer)
fd482be5
JB
4930 Fgoto_char (w->pointm);
4931 }
52a68e98
RS
4932 else if (NILP (w->buffer) || NILP (XBUFFER (w->buffer)->name))
4933 /* Else unless window has a live buffer, get one. */
7ab12479 4934 {
fd482be5
JB
4935 w->buffer = Fcdr (Fcar (Vbuffer_alist));
4936 /* This will set the markers to beginning of visible
4937 range. */
4938 set_marker_restricted (w->start, make_number (0), w->buffer);
4939 set_marker_restricted (w->pointm, make_number (0),w->buffer);
4940 w->start_at_line_beg = Qt;
7ab12479
JB
4941 }
4942 else
fd482be5 4943 /* Keeping window's old buffer; make sure the markers
52a68e98 4944 are real. */
7ab12479 4945 {
fd482be5
JB
4946 /* Set window markers at start of visible range. */
4947 if (XMARKER (w->start)->buffer == 0)
4948 set_marker_restricted (w->start, make_number (0),
4949 w->buffer);
4950 if (XMARKER (w->pointm)->buffer == 0)
b73ea88e
RS
4951 set_marker_restricted_both (w->pointm, w->buffer,
4952 BUF_PT (XBUFFER (w->buffer)),
4953 BUF_PT_BYTE (XBUFFER (w->buffer)));
fd482be5 4954 w->start_at_line_beg = Qt;
7ab12479
JB
4955 }
4956 }
4957 }
9ace597f 4958
fd482be5 4959 FRAME_ROOT_WINDOW (f) = data->root_window;
719eaeb1
GM
4960 /* Prevent "swapping out point" in the old selected window
4961 using the buffer that has been restored into it.
4962 That swapping out has already been done,
4963 near the beginning of this function. */
4964 selected_window = Qnil;
fd482be5 4965 Fselect_window (data->current_window);
396a830c
RS
4966 XBUFFER (XWINDOW (selected_window)->buffer)->last_selected_window
4967 = selected_window;
7ab12479 4968
db269683 4969 if (NILP (data->focus_frame)
017b2bad 4970 || (FRAMEP (data->focus_frame)
db269683
JB
4971 && FRAME_LIVE_P (XFRAME (data->focus_frame))))
4972 Fredirect_frame_focus (frame, data->focus_frame);
7ab12479 4973
fd482be5
JB
4974#if 0 /* I don't understand why this is needed, and it causes problems
4975 when the frame's old selected window has been deleted. */
e4e59717 4976 if (f != selected_frame && FRAME_WINDOW_P (f))
9a7c6fc3
RS
4977 do_switch_frame (WINDOW_FRAME (XWINDOW (data->root_window)),
4978 Qnil, 0);
fd482be5
JB
4979#endif
4980
4981 /* Set the screen height to the value it had before this function. */
4982 if (previous_frame_height != FRAME_HEIGHT (f)
4983 || previous_frame_width != FRAME_WIDTH (f))
4984 change_frame_size (f, previous_frame_height, previous_frame_width,
2b653806 4985 0, 0, 0);
e3678b64 4986#if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
8f6ea2e9 4987 if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f))
f8ad443a
AS
4988 x_set_menu_bar_lines (f, make_number (previous_frame_menu_bar_lines),
4989 make_number (0));
4314246f 4990#ifdef HAVE_WINDOW_SYSTEM
9ea173e8
GM
4991 if (previous_frame_tool_bar_lines != FRAME_TOOL_BAR_LINES (f))
4992 x_set_tool_bar_lines (f, make_number (previous_frame_tool_bar_lines),
4993 make_number (0));
4314246f 4994#endif
217f2871 4995#endif
d2b35234 4996
5500c422 4997 /* Now, free glyph matrices in windows that were not reused. */
c4280705
GM
4998 for (i = n = 0; i < n_leaf_windows; ++i)
4999 {
5000 if (NILP (leaf_windows[i]->buffer))
5001 {
5002 /* Assert it's not reused as a combination. */
5003 xassert (NILP (leaf_windows[i]->hchild)
5004 && NILP (leaf_windows[i]->vchild));
5005 free_window_matrices (leaf_windows[i]);
c4280705
GM
5006 }
5007 else if (EQ (leaf_windows[i]->buffer, new_current_buffer))
5008 ++n;
5009 }
5010
5011 /* If more than one window shows the new and old current buffer,
5012 don't try to preserve point in that buffer. */
5013 if (old_point > 0 && n > 1)
5014 old_point = -1;
5500c422
GM
5015
5016 adjust_glyphs (f);
5017
d2b35234 5018 UNBLOCK_INPUT;
756b6edc 5019
478292ed
RS
5020 /* Fselect_window will have made f the selected frame, so we
5021 reselect the proper frame here. Fhandle_switch_frame will change the
5022 selected window too, but that doesn't make the call to
5023 Fselect_window above totally superfluous; it still sets f's
5024 selected window. */
5025 if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
5026 do_switch_frame (data->selected_frame, Qnil, 0);
5027
5028 if (! NILP (Vwindow_configuration_change_hook)
5029 && ! NILP (Vrun_hooks))
5030 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
5031 }
bdc727bf
JB
5032
5033 if (!NILP (new_current_buffer))
d2b35234
RS
5034 {
5035 Fset_buffer (new_current_buffer);
5036
5037 /* If the buffer that is current now is the same
5038 that was current before setting the window configuration,
5039 don't alter its PT. */
5040 if (old_point >= 0)
5041 SET_PT (old_point);
5042 }
bdc727bf 5043
478292ed
RS
5044 /* Restore the minimum heights recorded in the configuration. */
5045 window_min_height = XINT (data->min_height);
5046 window_min_width = XINT (data->min_width);
543f5fb1 5047
478292ed 5048 Vminibuf_scroll_window = data->minibuf_scroll_window;
543f5fb1 5049
3f8ab7bd 5050 return (FRAME_LIVE_P (f) ? Qt : Qnil);
7ab12479
JB
5051}
5052
44fa5b1e 5053/* Mark all windows now on frame as deleted
7ab12479
JB
5054 by setting their buffers to nil. */
5055
fd482be5 5056void
7ab12479
JB
5057delete_all_subwindows (w)
5058 register struct window *w;
5059{
265a9e55 5060 if (!NILP (w->next))
7ab12479 5061 delete_all_subwindows (XWINDOW (w->next));
265a9e55 5062 if (!NILP (w->vchild))
7ab12479 5063 delete_all_subwindows (XWINDOW (w->vchild));
265a9e55 5064 if (!NILP (w->hchild))
7ab12479 5065 delete_all_subwindows (XWINDOW (w->hchild));
605be8af
JB
5066
5067 w->height = w->buffer; /* See Fset_window_configuration for excuse. */
5068
86e48436
RS
5069 if (!NILP (w->buffer))
5070 unshow_buffer (w);
5071
605be8af
JB
5072 /* We set all three of these fields to nil, to make sure that we can
5073 distinguish this dead window from any live window. Live leaf
5074 windows will have buffer set, and combination windows will have
5075 vchild or hchild set. */
5076 w->buffer = Qnil;
5077 w->vchild = Qnil;
5078 w->hchild = Qnil;
acf70840
GM
5079
5080 Vwindow_list = Qnil;
7ab12479
JB
5081}
5082\f
5083static int
5084count_windows (window)
5085 register struct window *window;
5086{
5087 register int count = 1;
265a9e55 5088 if (!NILP (window->next))
7ab12479 5089 count += count_windows (XWINDOW (window->next));
265a9e55 5090 if (!NILP (window->vchild))
7ab12479 5091 count += count_windows (XWINDOW (window->vchild));
265a9e55 5092 if (!NILP (window->hchild))
7ab12479
JB
5093 count += count_windows (XWINDOW (window->hchild));
5094 return count;
5095}
5096
5500c422
GM
5097
5098/* Fill vector FLAT with leaf windows under W, starting at index I.
5099 Value is last index + 1. */
5100
5101static int
5102get_leaf_windows (w, flat, i)
5103 struct window *w;
5104 struct window **flat;
5105 int i;
5106{
5107 while (w)
5108 {
5109 if (!NILP (w->hchild))
5110 i = get_leaf_windows (XWINDOW (w->hchild), flat, i);
5111 else if (!NILP (w->vchild))
5112 i = get_leaf_windows (XWINDOW (w->vchild), flat, i);
5113 else
5114 flat[i++] = w;
5115
5116 w = NILP (w->next) ? 0 : XWINDOW (w->next);
5117 }
5118
5119 return i;
5120}
5121
5122
5123/* Return a pointer to the glyph W's physical cursor is on. Value is
5124 null if W's current matrix is invalid, so that no meaningfull glyph
5125 can be returned. */
5126
5127struct glyph *
5128get_phys_cursor_glyph (w)
5129 struct window *w;
5130{
5131 struct glyph_row *row;
5132 struct glyph *glyph;
5133
5134 if (w->phys_cursor.vpos >= 0
5135 && w->phys_cursor.vpos < w->current_matrix->nrows
5136 && (row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos),
5137 row->enabled_p)
5138 && row->used[TEXT_AREA] > w->phys_cursor.hpos)
5139 glyph = row->glyphs[TEXT_AREA] + w->phys_cursor.hpos;
5140 else
5141 glyph = NULL;
5142
5143 return glyph;
5144}
5145
5146
7ab12479
JB
5147static int
5148save_window_save (window, vector, i)
5149 Lisp_Object window;
5150 struct Lisp_Vector *vector;
5151 int i;
5152{
5153 register struct saved_window *p;
5154 register struct window *w;
5155 register Lisp_Object tem;
5156
265a9e55 5157 for (;!NILP (window); window = w->next)
7ab12479
JB
5158 {
5159 p = SAVED_WINDOW_N (vector, i);
5160 w = XWINDOW (window);
5161
d834a2e9 5162 XSETFASTINT (w->temslot, i++);
7ab12479
JB
5163 p->window = window;
5164 p->buffer = w->buffer;
5165 p->left = w->left;
5166 p->top = w->top;
5167 p->width = w->width;
5168 p->height = w->height;
5169 p->hscroll = w->hscroll;
ea68264b 5170 p->min_hscroll = w->min_hscroll;
7ab12479 5171 p->display_table = w->display_table;
a1d58e5b
GM
5172 p->orig_top = w->orig_top;
5173 p->orig_height = w->orig_height;
265a9e55 5174 if (!NILP (w->buffer))
7ab12479
JB
5175 {
5176 /* Save w's value of point in the window configuration.
5177 If w is the selected window, then get the value of point
5178 from the buffer; pointm is garbage in the selected window. */
5179 if (EQ (window, selected_window))
5180 {
5181 p->pointm = Fmake_marker ();
b73ea88e
RS
5182 set_marker_both (p->pointm, w->buffer,
5183 BUF_PT (XBUFFER (w->buffer)),
5184 BUF_PT_BYTE (XBUFFER (w->buffer)));
7ab12479
JB
5185 }
5186 else
eeb82665 5187 p->pointm = Fcopy_marker (w->pointm, Qnil);
7ab12479 5188
eeb82665 5189 p->start = Fcopy_marker (w->start, Qnil);
7ab12479
JB
5190 p->start_at_line_beg = w->start_at_line_beg;
5191
5192 tem = XBUFFER (w->buffer)->mark;
eeb82665 5193 p->mark = Fcopy_marker (tem, Qnil);
7ab12479
JB
5194 }
5195 else
5196 {
5197 p->pointm = Qnil;
5198 p->start = Qnil;
5199 p->mark = Qnil;
5200 p->start_at_line_beg = Qnil;
5201 }
5202
265a9e55 5203 if (NILP (w->parent))
7ab12479
JB
5204 p->parent = Qnil;
5205 else
5206 p->parent = XWINDOW (w->parent)->temslot;
5207
265a9e55 5208 if (NILP (w->prev))
7ab12479
JB
5209 p->prev = Qnil;
5210 else
5211 p->prev = XWINDOW (w->prev)->temslot;
5212
265a9e55 5213 if (!NILP (w->vchild))
7ab12479 5214 i = save_window_save (w->vchild, vector, i);
265a9e55 5215 if (!NILP (w->hchild))
7ab12479
JB
5216 i = save_window_save (w->hchild, vector, i);
5217 }
5218
5219 return i;
5220}
5221
a0d76c27
EN
5222DEFUN ("current-window-configuration", Fcurrent_window_configuration,
5223 Scurrent_window_configuration, 0, 1, 0,
44fa5b1e
JB
5224 "Return an object representing the current window configuration of FRAME.\n\
5225If FRAME is nil or omitted, use the selected frame.\n\
7ab12479
JB
5226This describes the number of windows, their sizes and current buffers,\n\
5227and for each displayed buffer, where display starts, and the positions of\n\
5228point and mark. An exception is made for point in the current buffer:\n\
bdc727bf
JB
5229its value is -not- saved.\n\
5230This also records the currently selected frame, and FRAME's focus\n\
5231redirection (see `redirect-frame-focus').")
44fa5b1e
JB
5232 (frame)
5233 Lisp_Object frame;
7ab12479
JB
5234{
5235 register Lisp_Object tem;
5236 register int n_windows;
5237 register struct save_window_data *data;
da2792e0 5238 register struct Lisp_Vector *vec;
7ab12479 5239 register int i;
44fa5b1e 5240 FRAME_PTR f;
43bad991 5241
44fa5b1e 5242 if (NILP (frame))
1ae1a37d
GM
5243 frame = selected_frame;
5244 CHECK_LIVE_FRAME (frame, 0);
5245 f = XFRAME (frame);
7ab12479 5246
44fa5b1e 5247 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
da2792e0
KH
5248 vec = allocate_vectorlike (VECSIZE (struct save_window_data));
5249 for (i = 0; i < VECSIZE (struct save_window_data); i++)
5250 vec->contents[i] = Qnil;
5251 vec->size = VECSIZE (struct save_window_data);
5252 data = (struct save_window_data *)vec;
5253
d834a2e9
KH
5254 XSETFASTINT (data->frame_width, FRAME_WIDTH (f));
5255 XSETFASTINT (data->frame_height, FRAME_HEIGHT (f));
5256 XSETFASTINT (data->frame_menu_bar_lines, FRAME_MENU_BAR_LINES (f));
9ea173e8 5257 XSETFASTINT (data->frame_tool_bar_lines, FRAME_TOOL_BAR_LINES (f));
1ae1a37d 5258 data->selected_frame = selected_frame;
44fa5b1e 5259 data->current_window = FRAME_SELECTED_WINDOW (f);
74112613 5260 XSETBUFFER (data->current_buffer, current_buffer);
7ab12479 5261 data->minibuf_scroll_window = Vminibuf_scroll_window;
44fa5b1e 5262 data->root_window = FRAME_ROOT_WINDOW (f);
bdc727bf 5263 data->focus_frame = FRAME_FOCUS_FRAME (f);
74112613
KH
5264 XSETINT (data->min_height, window_min_height);
5265 XSETINT (data->min_width, window_min_width);
7ab12479
JB
5266 tem = Fmake_vector (make_number (n_windows), Qnil);
5267 data->saved_windows = tem;
5268 for (i = 0; i < n_windows; i++)
5269 XVECTOR (tem)->contents[i]
5270 = Fmake_vector (make_number (SAVED_WINDOW_VECTOR_SIZE), Qnil);
a1d58e5b 5271 save_window_save (FRAME_ROOT_WINDOW (f), XVECTOR (tem), 0);
74112613 5272 XSETWINDOW_CONFIGURATION (tem, data);
7ab12479
JB
5273 return (tem);
5274}
5275
5276DEFUN ("save-window-excursion", Fsave_window_excursion, Ssave_window_excursion,
5277 0, UNEVALLED, 0,
5278 "Execute body, preserving window sizes and contents.\n\
eb16ec06
RS
5279Restore which buffer appears in which window, where display starts,\n\
5280and the value of point and mark for each window.\n\
8ed92cf0 5281Also restore the choice of selected window.\n\
eb16ec06 5282Also restore which buffer is current.\n\
7ab12479
JB
5283Does not restore the value of point in current buffer.")
5284 (args)
5285 Lisp_Object args;
5286{
5287 register Lisp_Object val;
5288 register int count = specpdl_ptr - specpdl;
5289
5290 record_unwind_protect (Fset_window_configuration,
43bad991 5291 Fcurrent_window_configuration (Qnil));
7ab12479
JB
5292 val = Fprogn (args);
5293 return unbind_to (count, val);
5294}
5500c422
GM
5295
5296\f
5297/***********************************************************************
5298 Marginal Areas
5299 ***********************************************************************/
5300
5301DEFUN ("set-window-margins", Fset_window_margins, Sset_window_margins,
a7bdfc08 5302 2, 3, 0,
5500c422 5303 "Set width of marginal areas of window WINDOW.\n\
a7bdfc08 5304If window is nil, set margins of the currently selected window.\n\
5500c422
GM
5305First parameter LEFT-WIDTH specifies the number of character\n\
5306cells to reserve for the left marginal area. Second parameter\n\
5307RIGHT-WIDTH does the same for the right marginal area.\n\
5308A nil width parameter means no margin.")
cfa22082 5309 (window, left, right)
5500c422
GM
5310 Lisp_Object window, left, right;
5311{
5312 struct window *w = decode_window (window);
5500c422
GM
5313
5314 if (!NILP (left))
cfa22082 5315 CHECK_NUMBER_OR_FLOAT (left, 1);
5500c422 5316 if (!NILP (right))
cfa22082 5317 CHECK_NUMBER_OR_FLOAT (right, 2);
5500c422
GM
5318
5319 /* Check widths < 0 and translate a zero width to nil.
5320 Margins that are too wide have to be checked elsewhere. */
5321 if ((INTEGERP (left) && XINT (left) < 0)
7539e11f 5322 || (FLOATP (left) && XFLOAT_DATA (left) <= 0))
5500c422
GM
5323 XSETFASTINT (left, 0);
5324 if (INTEGERP (left) && XFASTINT (left) == 0)
5325 left = Qnil;
5326
5327 if ((INTEGERP (right) && XINT (right) < 0)
7539e11f 5328 || (FLOATP (right) && XFLOAT_DATA (right) <= 0))
5500c422
GM
5329 XSETFASTINT (right, 0);
5330 if (INTEGERP (right) && XFASTINT (right) == 0)
5331 right = Qnil;
5332
5333 w->left_margin_width = left;
5334 w->right_margin_width = right;
5335
5336 ++windows_or_buffers_changed;
5337 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
5338 return Qnil;
5339}
5340
5341
5342DEFUN ("window-margins", Fwindow_margins, Swindow_margins,
5343 0, 1, 0,
5344 "Get width of marginal areas of window WINDOW.\n\
5345If WINDOW is omitted or nil, use the currently selected window.\n\
5346Value is a cons of the form (LEFT-WIDTH . RIGHT-WIDTH).\n\
5347If a marginal area does not exist, its width will be returned\n\
5348as nil.")
5349 (window)
5350 Lisp_Object window;
5351{
5352 struct window *w = decode_window (window);
5353 return Fcons (w->left_margin_width, w->right_margin_width);
5354}
5355
5356
7ab12479 5357\f
5500c422
GM
5358/***********************************************************************
5359 Smooth scrolling
5360 ***********************************************************************/
5361
5362DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 1, 0,
5363 "Return the amount by which WINDOW is scrolled vertically.\n\
5364Use the selected window if WINDOW is nil or omitted.\n\
5365Value is a multiple of the canonical character height of WINDOW.")
5366 (window)
5367 Lisp_Object window;
5368{
47004952 5369 Lisp_Object result;
5500c422
GM
5370 struct frame *f;
5371 struct window *w;
5372
5373 if (NILP (window))
5374 window = selected_window;
47004952
GM
5375 else
5376 CHECK_WINDOW (window, 0);
5500c422
GM
5377 w = XWINDOW (window);
5378 f = XFRAME (w->frame);
5379
5380 if (FRAME_WINDOW_P (f))
47004952 5381 result = CANON_Y_FROM_PIXEL_Y (f, -w->vscroll);
5500c422 5382 else
47004952
GM
5383 result = make_number (0);
5384 return result;
5500c422
GM
5385}
5386
5387
5388DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll,
47004952
GM
5389 2, 2, 0,
5390 "Set amount by which WINDOW should be scrolled vertically to VSCROLL.\n\
5500c422 5391WINDOW nil or omitted means use the selected window. VSCROLL is a\n\
47004952
GM
5392non-negative multiple of the canonical character height of WINDOW.")
5393 (window, vscroll)
5394 Lisp_Object window, vscroll;
5500c422
GM
5395{
5396 struct window *w;
5397 struct frame *f;
5398
5500c422
GM
5399 if (NILP (window))
5400 window = selected_window;
47004952
GM
5401 else
5402 CHECK_WINDOW (window, 0);
5403 CHECK_NUMBER_OR_FLOAT (vscroll, 1);
5404
5500c422
GM
5405 w = XWINDOW (window);
5406 f = XFRAME (w->frame);
5407
5408 if (FRAME_WINDOW_P (f))
5409 {
5410 int old_dy = w->vscroll;
47004952
GM
5411
5412 w->vscroll = - CANON_Y_UNIT (f) * XFLOATINT (vscroll);
5413 w->vscroll = min (w->vscroll, 0);
5500c422
GM
5414
5415 /* Adjust glyph matrix of the frame if the virtual display
5416 area becomes larger than before. */
5417 if (w->vscroll < 0 && w->vscroll < old_dy)
5418 adjust_glyphs (f);
5419
5420 /* Prevent redisplay shortcuts. */
b1599b4c 5421 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
5500c422
GM
5422 }
5423
47004952 5424 return Fwindow_vscroll (window);
5500c422
GM
5425}
5426
7bbb5782
GM
5427\f
5428/* Call FN for all leaf windows on frame F. FN is called with the
5429 first argument being a pointer to the leaf window, and with
f95464e4 5430 additional argument USER_DATA. Stops when FN returns 0. */
7bbb5782
GM
5431
5432void
f95464e4 5433foreach_window (f, fn, user_data)
7bbb5782 5434 struct frame *f;
f95464e4
GM
5435 int (* fn) P_ ((struct window *, void *));
5436 void *user_data;
7bbb5782 5437{
f95464e4 5438 foreach_window_1 (XWINDOW (FRAME_ROOT_WINDOW (f)), fn, user_data);
7bbb5782
GM
5439}
5440
5441
5442/* Helper function for foreach_window. Call FN for all leaf windows
5443 reachable from W. FN is called with the first argument being a
f95464e4 5444 pointer to the leaf window, and with additional argument USER_DATA.
67492200 5445 Stop when FN returns 0. Value is 0 if stopped by FN. */
7bbb5782 5446
67492200 5447static int
f95464e4 5448foreach_window_1 (w, fn, user_data)
7bbb5782 5449 struct window *w;
f95464e4
GM
5450 int (* fn) P_ ((struct window *, void *));
5451 void *user_data;
7bbb5782 5452{
67492200
GM
5453 int cont;
5454
5455 for (cont = 1; w && cont;)
7bbb5782
GM
5456 {
5457 if (!NILP (w->hchild))
f95464e4 5458 cont = foreach_window_1 (XWINDOW (w->hchild), fn, user_data);
7bbb5782 5459 else if (!NILP (w->vchild))
f95464e4 5460 cont = foreach_window_1 (XWINDOW (w->vchild), fn, user_data);
0f532a9a
GM
5461 else
5462 cont = fn (w, user_data);
7bbb5782
GM
5463
5464 w = NILP (w->next) ? 0 : XWINDOW (w->next);
5465 }
67492200
GM
5466
5467 return cont;
7bbb5782
GM
5468}
5469
5470
5471/* Freeze or unfreeze the window start of W if unless it is a
f95464e4 5472 mini-window or the selected window. FREEZE_P non-null means freeze
7bbb5782
GM
5473 the window start. */
5474
67492200 5475static int
7bbb5782
GM
5476freeze_window_start (w, freeze_p)
5477 struct window *w;
f95464e4 5478 void *freeze_p;
7bbb5782
GM
5479{
5480 if (w == XWINDOW (selected_window)
5481 || MINI_WINDOW_P (w)
5482 || (MINI_WINDOW_P (XWINDOW (selected_window))
24d744ac 5483 && ! NILP (Vminibuf_scroll_window)
7bbb5782 5484 && w == XWINDOW (Vminibuf_scroll_window)))
f95464e4 5485 freeze_p = NULL;
7bbb5782 5486
f95464e4 5487 w->frozen_window_start_p = freeze_p != NULL;
67492200 5488 return 1;
7bbb5782
GM
5489}
5490
5491
5492/* Freeze or unfreeze the window starts of all leaf windows on frame
5493 F, except the selected window and a mini-window. FREEZE_P non-zero
5494 means freeze the window start. */
5495
5496void
5497freeze_window_starts (f, freeze_p)
5498 struct frame *f;
5499 int freeze_p;
5500{
cbccabec 5501 foreach_window (f, freeze_window_start, (void *) (freeze_p ? f : 0));
7bbb5782 5502}
5500c422
GM
5503
5504\f
5505/***********************************************************************
5506 Initialization
5507 ***********************************************************************/
5508
cbff28e8
RS
5509/* Return 1 if window configurations C1 and C2
5510 describe the same state of affairs. This is used by Fequal. */
5511
5512int
2f8274be 5513compare_window_configurations (c1, c2, ignore_positions)
cbff28e8 5514 Lisp_Object c1, c2;
2f8274be 5515 int ignore_positions;
cbff28e8
RS
5516{
5517 register struct save_window_data *d1, *d2;
5518 struct Lisp_Vector *sw1, *sw2;
5519 int i;
5520
4d3edcb4
GM
5521 if (!WINDOW_CONFIGURATIONP (c1))
5522 wrong_type_argument (Qwindow_configuration_p, c1);
5523 if (!WINDOW_CONFIGURATIONP (c2))
5524 wrong_type_argument (Qwindow_configuration_p, c2);
5525
cbff28e8
RS
5526 d1 = (struct save_window_data *) XVECTOR (c1);
5527 d2 = (struct save_window_data *) XVECTOR (c2);
5528 sw1 = XVECTOR (d1->saved_windows);
5529 sw2 = XVECTOR (d2->saved_windows);
5530
5531 if (! EQ (d1->frame_width, d2->frame_width))
5532 return 0;
5533 if (! EQ (d1->frame_height, d2->frame_height))
5534 return 0;
5535 if (! EQ (d1->frame_menu_bar_lines, d2->frame_menu_bar_lines))
5536 return 0;
5537 if (! EQ (d1->selected_frame, d2->selected_frame))
5538 return 0;
5539 /* Don't compare the current_window field directly.
5540 Instead see w1_is_current and w2_is_current, below. */
5541 if (! EQ (d1->current_buffer, d2->current_buffer))
5542 return 0;
2f8274be
RS
5543 if (! ignore_positions)
5544 if (! EQ (d1->minibuf_scroll_window, d2->minibuf_scroll_window))
5545 return 0;
cbff28e8
RS
5546 /* Don't compare the root_window field.
5547 We don't require the two configurations
5548 to use the same window object,
5549 and the two root windows must be equivalent
5550 if everything else compares equal. */
5551 if (! EQ (d1->focus_frame, d2->focus_frame))
5552 return 0;
5553 if (! EQ (d1->min_width, d2->min_width))
5554 return 0;
5555 if (! EQ (d1->min_height, d2->min_height))
5556 return 0;
5557
5558 /* Verify that the two confis have the same number of windows. */
5559 if (sw1->size != sw2->size)
5560 return 0;
5561
5562 for (i = 0; i < sw1->size; i++)
5563 {
5564 struct saved_window *p1, *p2;
5565 int w1_is_current, w2_is_current;
5566
5567 p1 = SAVED_WINDOW_N (sw1, i);
5568 p2 = SAVED_WINDOW_N (sw2, i);
5569
5570 /* Verify that the current windows in the two
5571 configurations correspond to each other. */
5572 w1_is_current = EQ (d1->current_window, p1->window);
5573 w2_is_current = EQ (d2->current_window, p2->window);
5574
5575 if (w1_is_current != w2_is_current)
5576 return 0;
5577
5578 /* Verify that the corresponding windows do match. */
5579 if (! EQ (p1->buffer, p2->buffer))
5580 return 0;
5581 if (! EQ (p1->left, p2->left))
5582 return 0;
5583 if (! EQ (p1->top, p2->top))
5584 return 0;
5585 if (! EQ (p1->width, p2->width))
5586 return 0;
5587 if (! EQ (p1->height, p2->height))
5588 return 0;
cbff28e8
RS
5589 if (! EQ (p1->display_table, p2->display_table))
5590 return 0;
5591 if (! EQ (p1->parent, p2->parent))
5592 return 0;
5593 if (! EQ (p1->prev, p2->prev))
5594 return 0;
2f8274be
RS
5595 if (! ignore_positions)
5596 {
5597 if (! EQ (p1->hscroll, p2->hscroll))
5598 return 0;
ea68264b
GM
5599 if (!EQ (p1->min_hscroll, p2->min_hscroll))
5600 return 0;
2f8274be
RS
5601 if (! EQ (p1->start_at_line_beg, p2->start_at_line_beg))
5602 return 0;
5603 if (NILP (Fequal (p1->start, p2->start)))
5604 return 0;
5605 if (NILP (Fequal (p1->pointm, p2->pointm)))
5606 return 0;
5607 if (NILP (Fequal (p1->mark, p2->mark)))
5608 return 0;
5609 }
cbff28e8
RS
5610 }
5611
5612 return 1;
5613}
2f8274be
RS
5614
5615DEFUN ("compare-window-configurations", Fcompare_window_configurations,
5616 Scompare_window_configurations, 2, 2, 0,
5617 "Compare two window configurations as regards the structure of windows.\n\
5618This function ignores details such as the values of point and mark\n\
5619and scrolling positions.")
5620 (x, y)
5621 Lisp_Object x, y;
5622{
5623 if (compare_window_configurations (x, y, 1))
5624 return Qt;
5625 return Qnil;
5626}
cbff28e8 5627\f
dfcf069d 5628void
7ab12479
JB
5629init_window_once ()
5630{
1ae1a37d
GM
5631 struct frame *f = make_terminal_frame ();
5632 XSETFRAME (selected_frame, f);
5633 Vterminal_frame = selected_frame;
5634 minibuf_window = f->minibuffer_window;
5635 selected_window = f->selected_window;
5636 last_nonminibuf_frame = f;
5b03d3c0
RS
5637
5638 window_initialized = 1;
7ab12479
JB
5639}
5640
67492200
GM
5641void
5642init_window ()
5643{
5644 Vwindow_list = Qnil;
5645}
5646
dfcf069d 5647void
7ab12479
JB
5648syms_of_window ()
5649{
7442878f
GM
5650 Qleft_fringe = intern ("left-fringe");
5651 staticpro (&Qleft_fringe);
5652 Qright_fringe = intern ("right-fringe");
5653 staticpro (&Qright_fringe);
fbad6f9a 5654
8a37516b
GM
5655 Qwindow_size_fixed = intern ("window-size-fixed");
5656 staticpro (&Qwindow_size_fixed);
233a4a2c 5657
543f5fb1
RS
5658 staticpro (&Qwindow_configuration_change_hook);
5659 Qwindow_configuration_change_hook
5660 = intern ("window-configuration-change-hook");
5661
7ab12479
JB
5662 Qwindowp = intern ("windowp");
5663 staticpro (&Qwindowp);
5664
3f8ab7bd
RS
5665 Qwindow_configuration_p = intern ("window-configuration-p");
5666 staticpro (&Qwindow_configuration_p);
5667
806b4d9b
JB
5668 Qwindow_live_p = intern ("window-live-p");
5669 staticpro (&Qwindow_live_p);
605be8af 5670
2cccc823 5671 Qtemp_buffer_show_hook = intern ("temp-buffer-show-hook");
a58ec57d
RS
5672 staticpro (&Qtemp_buffer_show_hook);
5673
67492200
GM
5674 staticpro (&Vwindow_list);
5675
7ab12479
JB
5676 DEFVAR_LISP ("temp-buffer-show-function", &Vtemp_buffer_show_function,
5677 "Non-nil means call as function to display a help buffer.\n\
c3ef6b1d 5678The function is called with one argument, the buffer to be displayed.\n\
f52cca03
RS
5679Used by `with-output-to-temp-buffer'.\n\
5680If this function is used, then it must do the entire job of showing\n\
5681the buffer; `temp-buffer-show-hook' is not run unless this function runs it.");
7ab12479
JB
5682 Vtemp_buffer_show_function = Qnil;
5683
5684 DEFVAR_LISP ("display-buffer-function", &Vdisplay_buffer_function,
5685 "If non-nil, function to call to handle `display-buffer'.\n\
5686It will receive two args, the buffer and a flag which if non-nil means\n\
5687 that the currently selected window is not acceptable.\n\
5688Commands such as `switch-to-buffer-other-window' and `find-file-other-window'\n\
5689work using this function.");
5690 Vdisplay_buffer_function = Qnil;
5691
6529ed87
GM
5692 DEFVAR_LISP ("even-window-heights", &Veven_window_heights,
5693 "*If non-nil, `display-buffer' should even the window heights.\n\
85d19b32 5694If nil, `display-buffer' will leave the window configuration alone.");
6529ed87
GM
5695 Veven_window_heights = Qt;
5696
7ab12479
JB
5697 DEFVAR_LISP ("minibuffer-scroll-window", &Vminibuf_scroll_window,
5698 "Non-nil means it is the window that C-M-v in minibuffer should scroll.");
5699 Vminibuf_scroll_window = Qnil;
5700
5701 DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer,
5702 "If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window.");
5703 Vother_window_scroll_buffer = Qnil;
5704
44fa5b1e 5705 DEFVAR_BOOL ("pop-up-frames", &pop_up_frames,
700f75a4 5706 "*Non-nil means `display-buffer' should make a separate frame.");
44fa5b1e 5707 pop_up_frames = 0;
7ab12479 5708
9c3da604 5709 DEFVAR_BOOL ("display-buffer-reuse-frames", &display_buffer_reuse_frames,
5372262f 5710 "*Non-nil means `display-buffer' should reuse frames.\n\
9c3da604
GM
5711If the buffer in question is already displayed in a frame, raise that frame.");
5712 display_buffer_reuse_frames = 0;
5713
44fa5b1e 5714 DEFVAR_LISP ("pop-up-frame-function", &Vpop_up_frame_function,
a90712c2 5715 "Function to call to handle automatic new frame creation.\n\
44fa5b1e 5716It is called with no arguments and should return a newly created frame.\n\
7ab12479 5717\n\
44fa5b1e
JB
5718A typical value might be `(lambda () (new-frame pop-up-frame-alist))'\n\
5719where `pop-up-frame-alist' would hold the default frame parameters.");
5720 Vpop_up_frame_function = Qnil;
7ab12479 5721
a90712c2
RS
5722 DEFVAR_LISP ("special-display-buffer-names", &Vspecial_display_buffer_names,
5723 "*List of buffer names that should have their own special frames.\n\
5724Displaying a buffer whose name is in this list makes a special frame for it\n\
524580a4 5725using `special-display-function'. See also `special-display-regexps'.\n\
3548e138 5726\n\
524580a4
RS
5727An element of the list can be a list instead of just a string.\n\
5728There are two ways to use a list as an element:\n\
5729 (BUFFER FRAME-PARAMETERS...) (BUFFER FUNCTION OTHER-ARGS...)\n\
5730In the first case, FRAME-PARAMETERS are used to create the frame.\n\
5731In the latter case, FUNCTION is called with BUFFER as the first argument,\n\
5732followed by OTHER-ARGS--it can display BUFFER in any way it likes.\n\
4caa7448
RS
5733All this is done by the function found in `special-display-function'.\n\
5734\n\
5735If this variable appears \"not to work\", because you add a name to it\n\
5736but that buffer still appears in the selected window, look at the\n\
5737values of `same-window-buffer-names' and `same-window-regexps'.\n\
5738Those variables take precedence over this one.");
a90712c2
RS
5739 Vspecial_display_buffer_names = Qnil;
5740
5741 DEFVAR_LISP ("special-display-regexps", &Vspecial_display_regexps,
5742 "*List of regexps saying which buffers should have their own special frames.\n\
5743If a buffer name matches one of these regexps, it gets its own frame.\n\
5744Displaying a buffer whose name is in this list makes a special frame for it\n\
0a952b57 5745using `special-display-function'.\n\
3548e138 5746\n\
524580a4
RS
5747An element of the list can be a list instead of just a string.\n\
5748There are two ways to use a list as an element:\n\
5749 (REGEXP FRAME-PARAMETERS...) (REGEXP FUNCTION OTHER-ARGS...)\n\
5750In the first case, FRAME-PARAMETERS are used to create the frame.\n\
5751In the latter case, FUNCTION is called with the buffer as first argument,\n\
5752followed by OTHER-ARGS--it can display the buffer in any way it likes.\n\
4caa7448
RS
5753All this is done by the function found in `special-display-function'.\n\
5754\n\
5755If this variable appears \"not to work\", because you add a regexp to it\n\
5756but the matching buffers still appear in the selected window, look at the\n\
5757values of `same-window-buffer-names' and `same-window-regexps'.\n\
5758Those variables take precedence over this one.");
a90712c2
RS
5759 Vspecial_display_regexps = Qnil;
5760
5761 DEFVAR_LISP ("special-display-function", &Vspecial_display_function,
5762 "Function to call to make a new frame for a special buffer.\n\
0a952b57
RS
5763It is called with two arguments, the buffer and optional buffer specific\n\
5764data, and should return a window displaying that buffer.\n\
a90712c2 5765The default value makes a separate frame for the buffer,\n\
bdd3a802 5766using `special-display-frame-alist' to specify the frame parameters.\n\
a90712c2
RS
5767\n\
5768A buffer is special if its is listed in `special-display-buffer-names'\n\
5769or matches a regexp in `special-display-regexps'.");
5770 Vspecial_display_function = Qnil;
5771
855d8627
RS
5772 DEFVAR_LISP ("same-window-buffer-names", &Vsame_window_buffer_names,
5773 "*List of buffer names that should appear in the selected window.\n\
5774Displaying one of these buffers using `display-buffer' or `pop-to-buffer'\n\
5775switches to it in the selected window, rather than making it appear\n\
2e5ce1a0 5776in some other window.\n\
855d8627
RS
5777\n\
5778An element of the list can be a cons cell instead of just a string.\n\
5779Then the car must be a string, which specifies the buffer name.\n\
5780This is for compatibility with `special-display-buffer-names';\n\
5781the cdr of the cons cell is ignored.\n\
5782\n\
5783See also `same-window-regexps'.");
5784 Vsame_window_buffer_names = Qnil;
5785
5786 DEFVAR_LISP ("same-window-regexps", &Vsame_window_regexps,
5787 "*List of regexps saying which buffers should appear in the selected window.\n\
5788If a buffer name matches one of these regexps, then displaying it\n\
5789using `display-buffer' or `pop-to-buffer' switches to it\n\
5790in the selected window, rather than making it appear in some other window.\n\
5791\n\
5792An element of the list can be a cons cell instead of just a string.\n\
5793Then the car must be a string, which specifies the buffer name.\n\
5794This is for compatibility with `special-display-buffer-names';\n\
5795the cdr of the cons cell is ignored.\n\
5796\n\
5797See also `same-window-buffer-names'.");
5798 Vsame_window_regexps = Qnil;
5799
7ab12479
JB
5800 DEFVAR_BOOL ("pop-up-windows", &pop_up_windows,
5801 "*Non-nil means display-buffer should make new windows.");
5802 pop_up_windows = 1;
5803
5804 DEFVAR_INT ("next-screen-context-lines", &next_screen_context_lines,
5805 "*Number of lines of continuity when scrolling by screenfuls.");
5806 next_screen_context_lines = 2;
5807
5808 DEFVAR_INT ("split-height-threshold", &split_height_threshold,
5809 "*display-buffer would prefer to split the largest window if this large.\n\
5810If there is only one window, it is split regardless of this value.");
5811 split_height_threshold = 500;
5812
5813 DEFVAR_INT ("window-min-height", &window_min_height,
5814 "*Delete any window less than this tall (including its mode line).");
5815 window_min_height = 4;
5816
5817 DEFVAR_INT ("window-min-width", &window_min_width,
5818 "*Delete any window less than this wide.");
5819 window_min_width = 10;
5820
5500c422
GM
5821 DEFVAR_LISP ("scroll-preserve-screen-position",
5822 &Vscroll_preserve_screen_position,
2afb2f41 5823 "*Non-nil means scroll commands move point to keep its screen line unchanged.");
5500c422 5824 Vscroll_preserve_screen_position = Qnil;
9317a85d 5825
543f5fb1
RS
5826 DEFVAR_LISP ("window-configuration-change-hook",
5827 &Vwindow_configuration_change_hook,
5828 "Functions to call when window configuration changes.\n\
e3e041eb 5829The selected frame is the one whose configuration has changed.");
543f5fb1
RS
5830 Vwindow_configuration_change_hook = Qnil;
5831
b0b7ed0e
GM
5832 DEFVAR_BOOL ("window-size-fixed", &window_size_fixed,
5833 "Non-nil in a buffer means windows displaying the buffer are fixed-size.\n\
5834Emacs won't change the size of any window displaying that buffer,\n\
5835unless you explicitly change the size, or Emacs has no other choice.\n\
5836This variable automatically becomes buffer-local when set.");
5837 Fmake_variable_buffer_local (Qwindow_size_fixed);
5838 window_size_fixed = 0;
5839
7ab12479
JB
5840 defsubr (&Sselected_window);
5841 defsubr (&Sminibuffer_window);
5842 defsubr (&Swindow_minibuffer_p);
5843 defsubr (&Swindowp);
806b4d9b 5844 defsubr (&Swindow_live_p);
7ab12479
JB
5845 defsubr (&Spos_visible_in_window_p);
5846 defsubr (&Swindow_buffer);
5847 defsubr (&Swindow_height);
5848 defsubr (&Swindow_width);
5849 defsubr (&Swindow_hscroll);
5850 defsubr (&Sset_window_hscroll);
190eb263
RS
5851 defsubr (&Swindow_redisplay_end_trigger);
5852 defsubr (&Sset_window_redisplay_end_trigger);
7ab12479 5853 defsubr (&Swindow_edges);
d5783c40
JB
5854 defsubr (&Scoordinates_in_window_p);
5855 defsubr (&Swindow_at);
7ab12479
JB
5856 defsubr (&Swindow_point);
5857 defsubr (&Swindow_start);
5858 defsubr (&Swindow_end);
5859 defsubr (&Sset_window_point);
5860 defsubr (&Sset_window_start);
5861 defsubr (&Swindow_dedicated_p);
d207b766 5862 defsubr (&Sset_window_dedicated_p);
7ab12479
JB
5863 defsubr (&Swindow_display_table);
5864 defsubr (&Sset_window_display_table);
5865 defsubr (&Snext_window);
5866 defsubr (&Sprevious_window);
5867 defsubr (&Sother_window);
5868 defsubr (&Sget_lru_window);
5869 defsubr (&Sget_largest_window);
5870 defsubr (&Sget_buffer_window);
5871 defsubr (&Sdelete_other_windows);
5872 defsubr (&Sdelete_windows_on);
5873 defsubr (&Sreplace_buffer_in_windows);
5874 defsubr (&Sdelete_window);
5875 defsubr (&Sset_window_buffer);
5876 defsubr (&Sselect_window);
4628f7a4
EN
5877 defsubr (&Sspecial_display_p);
5878 defsubr (&Ssame_window_p);
7ab12479
JB
5879 defsubr (&Sdisplay_buffer);
5880 defsubr (&Ssplit_window);
5881 defsubr (&Senlarge_window);
5882 defsubr (&Sshrink_window);
5883 defsubr (&Sscroll_up);
5884 defsubr (&Sscroll_down);
5885 defsubr (&Sscroll_left);
5886 defsubr (&Sscroll_right);
ccd0664b 5887 defsubr (&Sother_window_for_scrolling);
7ab12479
JB
5888 defsubr (&Sscroll_other_window);
5889 defsubr (&Srecenter);
81fe0836 5890 defsubr (&Swindow_text_height);
7ab12479
JB
5891 defsubr (&Smove_to_window_line);
5892 defsubr (&Swindow_configuration_p);
3f8ab7bd 5893 defsubr (&Swindow_configuration_frame);
7ab12479
JB
5894 defsubr (&Sset_window_configuration);
5895 defsubr (&Scurrent_window_configuration);
5896 defsubr (&Ssave_window_excursion);
5500c422
GM
5897 defsubr (&Sset_window_margins);
5898 defsubr (&Swindow_margins);
5899 defsubr (&Swindow_vscroll);
5900 defsubr (&Sset_window_vscroll);
2f8274be 5901 defsubr (&Scompare_window_configurations);
67492200 5902 defsubr (&Swindow_list);
7ab12479
JB
5903}
5904
dfcf069d 5905void
7ab12479
JB
5906keys_of_window ()
5907{
5908 initial_define_key (control_x_map, '1', "delete-other-windows");
5909 initial_define_key (control_x_map, '2', "split-window");
5910 initial_define_key (control_x_map, '0', "delete-window");
5911 initial_define_key (control_x_map, 'o', "other-window");
5912 initial_define_key (control_x_map, '^', "enlarge-window");
5913 initial_define_key (control_x_map, '<', "scroll-left");
5914 initial_define_key (control_x_map, '>', "scroll-right");
5915
5916 initial_define_key (global_map, Ctl ('V'), "scroll-up");
5917 initial_define_key (meta_map, Ctl ('V'), "scroll-other-window");
5918 initial_define_key (meta_map, 'v', "scroll-down");
5919
5920 initial_define_key (global_map, Ctl('L'), "recenter");
5921 initial_define_key (meta_map, 'r', "move-to-window-line");
5922}