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